diff --git a/.gitignore b/.gitignore index 58190ba..13ebedb 100644 --- a/.gitignore +++ b/.gitignore @@ -4,14 +4,16 @@ .idea/ .vscode/ -.env +.venv __pycache__/ src/ build/ dist/ +docs/_build *.egg-info/ *.code-workspace environment.yml +requirements.txt defaults/Input Files/OCHRE* outputs/ diff --git a/README.md b/README.md index 6d26ea5..1650e6c 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,8 @@ +![OCHRE](docs\source\images\OCHRE-Logo-Horiz-2Color.png) + # OCHRE: The Object-oriented Controllable High-resolution Residential Energy Model -A high-fidelity, high-resolution residential building model with behind-the-meter DERs and flexible load models -that integrates with controllers and distribution models in building-to-grid co-simulation platforms. +OCHRE™ is a Python-based building energy modeling (BEM) tool designed to model flexible loads in residential buildings. OCHRE includes detailed models and controls for flexible devices including HVAC equipment, water heaters, electric vehicles, solar PV, and batteries. It is designed to run in co-simulation with custom controllers, aggregators, and grid models. The full documentation for OCHRE can be found at https://ochre-docs-final.readthedocs.io/en/latest/ @@ -9,7 +10,7 @@ Contact: jeff.maguire@nrel.gov, michael.blonsky@nrel.gov, killian.mckenna@nrel.g ## Installation -Note that OCHRE requires Python version 3.9 or higher +Note that OCHRE requires Python version >=3.9 and <3.12 ### Stand-alone Installation diff --git a/bin/run_equipment.py b/bin/run_equipment.py index 5707c2e..4eb4d7e 100644 --- a/bin/run_equipment.py +++ b/bin/run_equipment.py @@ -81,7 +81,7 @@ def run_water_heater(): water_draw_magnitude = 12 # L/min withdraw_rate = np.random.choice([0, water_draw_magnitude], p=[0.99, 0.01], size=len(times)) schedule = pd.DataFrame({ - 'Fixtures (L/min)': withdraw_rate, + 'Water Heating (L/min)': withdraw_rate, 'Zone Temperature (C)': 20, 'Mains Temperature (C)': 7, }, index=times) diff --git a/bin/run_external_control.py b/bin/run_external_control.py index e4caa03..3f1139a 100644 --- a/bin/run_external_control.py +++ b/bin/run_external_control.py @@ -1,48 +1,100 @@ import datetime as dt import pandas as pd -from ochre import Dwelling +from ochre import Dwelling, CreateFigures from bin.run_dwelling import dwelling_args # Test script to run single Dwelling with constant external control signal -dwelling_args.update({ - 'ext_time_res': dt.timedelta(minutes=60), -}) +dwelling_args.update( + { + "time_res": dt.timedelta(minutes=10), + "ext_time_res": dt.timedelta(minutes=60), # for duty cycle control only + "Equipment": { + "EV": { + 'vehicle_type': 'BEV', + 'charging_level': 'Level 2', + 'mileage': 150, + }, + }, + } +) example_control_signal = { - 'HVAC Heating': {'Setpoint': 19}, # in C - 'HVAC Cooling': {'Setpoint': 22}, # in C - 'Water Heating': {'Setpoint': 50}, # in C - 'PV': {'P Setpoint': -1.1, 'Q Setpoint': 0.5}, # in kW, kVAR - 'Battery': {'P Setpoint': -1.0}, # in kW + "HVAC Heating": { + "Setpoint": 19, + # 'Max Capacity Fraction': 0.8, + "Max ER Capacity Fraction": 0.5, + }, # in C + "HVAC Cooling": {"Setpoint": 22}, # in C + "Water Heating": {"Setpoint": 50}, # in C + "PV": {"P Setpoint": -1.1, "Q Setpoint": 0.5}, # in kW, kVAR + "Battery": { + # 'P Setpoint': -1.0, # in kW + # "SOC": 0.8, + "Self Consumption Mode": True, + "Max Import Limit": 1, # in kW + "Max Export Limit": 1, # in kW + # 'Min SOC': 0.2, + # 'Max SOC': 0.8, + }, + "EV": { + # "Delay": True, + "Max Power": 6, + "Max SOC": 0.7, + # "P Setpoint": 5, + # "SOC": 0.6, + # "SOC Rate": 0.02, + }, } -def run_constant_control_signal(control_signal): +def run_with_schedule_control(): + # Create Dwelling model (same as above) + dwelling = Dwelling(name="Test House with Controller", **dwelling_args) + + # Get HVAC heater setpoints + heater = dwelling.get_equipment_by_end_use('HVAC Heating') + setpoints = heater.schedule['HVAC Heating Setpoint (C)'] + + # Reduce heating setpoint by 1C from 5-9PM + peak_times = setpoints.between_time(dt.time(17, 0, 0), dt.time(21, 0, 0), inclusive='left').index + setpoints.loc[peak_times] -= 1 + heater.reset_time() # resets the schedule + + # Run simulation + dwelling.simulate() + + +def run_constant_control_signal(control_signal=None): # Initialization - dwelling = Dwelling(name='Test House with Controller', **dwelling_args) + dwelling = Dwelling(name='OCHRE with Controller', **dwelling_args) # Simulation for t in dwelling.sim_times: - assert dwelling.current_time == t + # assert dwelling.current_time == t house_status = dwelling.update(control_signal=control_signal) - return dwelling.finalize() + df, _, _ = dwelling.finalize() + + df["EV Electric Power (kW)"].plot() + df["EV SOC (-)"].plot() + CreateFigures.plt.show() def get_hvac_controls(hour_of_day, occupancy, heating_setpoint, **unused_inputs): # Use some of the controller_inputs to determine setpoints (or other control signals) if 14 <= hour_of_day < 20: # 2PM-8PM - if occupancy > 0: - heating_setpoint -= 1 # reduce setpoint by 1 degree C - else: - heating_setpoint -= 2 # reduce setpoint by 2 degrees C + heating_setpoint -= 1 # reduce setpoint by 1 degree C + # if occupancy > 0: + # heating_setpoint -= 1 # reduce setpoint by 1 degree C + # else: + # heating_setpoint -= 2 # reduce setpoint by 2 degrees C return { - # 'HVAC Heating': {'Duty Cycle': 1 if heating_on else 0}, 'HVAC Heating': { - 'Setpoint': heating_setpoint, + 'Capacity': 1000, + # 'Setpoint': heating_setpoint, # 'Deadband': 2, # 'Load Fraction': 0, # Set to 0 for force heater off # 'Duty Cycle': 0.5, # Sets fraction of on-time explicitly @@ -53,7 +105,7 @@ def get_hvac_controls(hour_of_day, occupancy, heating_setpoint, **unused_inputs) def run_with_hvac_controller(): # Initialization - dwelling = Dwelling(name='Test House with Controller', **dwelling_args) + dwelling = Dwelling(name="OCHRE with Controller", **dwelling_args) heater = dwelling.get_equipment_by_end_use('HVAC Heating') cooler = dwelling.get_equipment_by_end_use('HVAC Cooling') @@ -73,8 +125,9 @@ def run_with_hvac_controller(): 'hour_of_day': t.hour, 'outdoor_temp': dwelling.envelope.schedule.loc[t, 'Ambient Dry Bulb (C)'], 'occupancy': dwelling.envelope.schedule.loc[t, 'Occupancy (Persons)'], - 'heating_setpoint': heater.schedule.loc[t, 'HVAC Heating Setpoint (C)'], # Original setpoint for current time - 'cooling_setpoint': cooler.schedule.loc[t, 'HVAC Cooling Setpoint (C)'], # Original setpoint for current time + # Original setpoints for current time + 'heating_setpoint': heater.schedule.loc[t, 'HVAC Heating Setpoint (C)'], + 'cooling_setpoint': cooler.schedule.loc[t, 'HVAC Cooling Setpoint (C)'], }) control_signal = get_hvac_controls(**controller_inputs) @@ -95,7 +148,7 @@ def run_controls_from_file(control_file): df_ext = pd.read_csv(control_file, index_col='Time', parse_dates=True) # Initialization - dwelling = Dwelling(name='Test House with Controller', **dwelling_args) + dwelling = Dwelling(name="OCHRE with Controller", **dwelling_args) # Simulation control_signal = None @@ -110,6 +163,7 @@ def run_controls_from_file(control_file): if __name__ == '__main__': - # run_constant_control_signal(example_control_signal) - # run_controls_from_file(external_control_file='path/to/control_file.csv') - run_with_hvac_controller() \ No newline at end of file + # run_with_schedule_control() + run_constant_control_signal(example_control_signal) + # run_with_hvac_controller() + # run_controls_from_file(external_control_file='path/to/control_file.csv') \ No newline at end of file diff --git a/bin/run_fleet.py b/bin/run_fleet.py index 8bce0f2..9468db5 100644 --- a/bin/run_fleet.py +++ b/bin/run_fleet.py @@ -41,7 +41,7 @@ def run_water_heater_fleet(num_water_heaters=5): 'Tank Height (m)': 1.22, 'UA (W/K)': 2.17, 'schedule': pd.DataFrame({ - 'Fixtures (L/min)': withdraw_rate[wh_name], + 'Water Heating (L/min)': withdraw_rate[wh_name], 'Zone Temperature (C)': np.random.uniform(15, 18), 'Mains Temperature (C)': np.random.uniform(5.6, 8.3), }, index=times), diff --git a/bin/run_multiple.py b/bin/run_multiple.py index bcf6495..ba39756 100644 --- a/bin/run_multiple.py +++ b/bin/run_multiple.py @@ -138,7 +138,6 @@ def run_single_building(input_path, simulation_name='ochre', output_path=None): def compile_results(main_folder): # Sample script to compile results from multiple OCHRE runs # assumes each run is in a different folder, and all simulation names are 'ochre' - dirs_to_include = int(dirs_to_include) # set up main_folder = os.path.abspath(main_folder) diff --git a/changelog.md b/changelog.md index c8e15ab..4887766 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,33 @@ ## OCHRE Changelog +### Changes from PRs + +- Updated PV model to integrate with PVWatts using PySAM v5.0 (not backwards compatible) +- PV model accepts tilt and azimuth angles from roof boundary in envelope +- Removed and renamed PV input arguments related to PySAM +- Changed the units for some outputs related to heat gains/capacity +- Added controls and optional schedule columns for HVAC, WH, EV, Battery +- Added HVAC capacity and max capacity controls, ideal mode only +- Require HVAC duty cycle control for thermostatic mode only +- Added water heater max power control +- Added EV max power and max SOC controls +- Added `equipment_event_file` input for EVs +- Added OCHREException class to handle errors +- Added warnings for HVAC and WH heat pumps with low COP +- Moved default input file path for package installation +- Replaced setup.py with pyproject.toml +- Fixed bug with schedule file import using Pandas v2.2 +- Fixed bug with accounting for HVAC delivered heat for standalone HVAC runs +- Fixed bug with ASHP backup heater units +- Fixed bug with named HVAC/Water Heating equipment arguments +- Fixed bug in ASHP duty cycle control +- Fixed bug with accounting for HVAC delivered heat for standalone HVAC runs +- Fixed bug with ASHP backup heater units +- Fixed bug with battery/generator self-consumption controls +- Fixed bug with WH and battery islanding time metrics +- Fixed bug with state space model reduction algorithm +- Fixed syntax warning for Python 3.12 + ### OCHRE v0.8.4-beta - Fixed bug with air infiltration inputs (works with ResStock 3.0 and 3.1, and OS-HPXML 1.6.0) diff --git a/defaults/PV/sam_weather_header.csv b/defaults/PV/sam_weather_header.csv deleted file mode 100644 index 20029b3..0000000 --- a/defaults/PV/sam_weather_header.csv +++ /dev/null @@ -1,2 +0,0 @@ -Source,Location ID,City,State,Country,Latitude,Longitude,Time Zone,Elevation,Local Time Zone,Clearsky DHI Units,Clearsky DNI Units,Clearsky GHI Units,Dew Point Units,DHI Units,DNI Units,GHI Units,Solar Zenith Angle Units,Temperature Units,Pressure Units,Relative Humidity Units,Precipitable Water Units,Wind Direction Units,Wind Speed,Cloud Type -15,Cloud Type 0,Cloud Type 1,Cloud Type 2,Cloud Type 3,Cloud Type 4,Cloud Type 5,Cloud Type 6,Cloud Type 7,Cloud Type 8,Cloud Type 9,Cloud Type 10,Cloud Type 11,Cloud Type 12,Fill Flag 0,Fill Flag 1,Fill Flag 2,Fill Flag 3,Fill Flag 4,Fill Flag 5,Surface Albedo Units,Version -OCHRE,-,-,-,-,-,-,-,0,-,w/m2,w/m2,w/m2,c,w/m2,w/m2,w/m2,Degree,c,mbar,%,cm,Degrees,m/s,N/A,Clear,Probably Clear,Fog,Water,Super-Cooled Water,Mixed,Opaque Ice,Cirrus,Overlapping,Overshooting,Unknown,Dust,Smoke,N/A,Missing Image,Low Irradiance,Exceeds Clearsky,Missing CLoud Properties,Rayleigh Violation,N/A,unknown diff --git a/defaults/Variable names and units.csv b/defaults/Variable names and units.csv deleted file mode 100644 index ccf09da..0000000 --- a/defaults/Variable names and units.csv +++ /dev/null @@ -1,165 +0,0 @@ -Category,OCHRE Name,OCHRE Units,OS-HPXML Name,OS-HPXML Units,Eplus Detailed Name,Eplus Detailed Units,Verbosity,Include in Docs,Description,Notes -Dwelling,Total Electric Power (kW),kW,Fuel Use: Electricity: Total,kW,Electricity:Facility [J](Hourly),J/hour,1,TRUE,Total dwelling real electric power, -Docs, Electric Power (kW),kW,,,,,2,TRUE,Real electric power of all equipment within the end use, -HVAC Heating,HVAC Heating Electric Power (kW),kW,"['End Use: Electricity: Heating', 'End Use: Electricity: Heating Fans/Pumps']",kW,BASEBOARD:Baseboard Electricity Energy [J](Hourly),J/hour,2,FALSE,, -HVAC Cooling,HVAC Cooling Electric Power (kW),kW,"['End Use: Electricity: Cooling', 'End Use: Electricity: Cooling Fans/Pumps']",kW,"['CENTRAL AC CLG COIL:Cooling Coil Electricity Energy [J](Hourly), 'CENTRAL AC CLG COIL:Cooling Coil Crankcase Heater Electricity Energy [J](Hourly)']",J/hour,2,FALSE,, -Water Heating,Water Heating Electric Power (kW),kW,End Use: Electricity: Hot Water,kW,,,2,FALSE,, -EV,EV Electric Power (kW),kW,End Use: Electricity: Electric Vehicle Charging,kW,,,2,FALSE,, -PV,PV Electric Power (kW),kW,End Use: Electricity: PV,kW,,,2,FALSE,, -Battery,Battery Electric Power (kW),kW,,,,,2,FALSE,, -Gas Generator,Gas Generator Electric Power (kW),kW,End Use: Electricity: Generator,kW,,,2,FALSE,, -Lighting,Lighting Electric Power (kW),kW,"['End Use: Electricity: Lighting Interior', 'End Use: Electricity: Lighting Garage', 'End Use: Electricity: Lighting Exterior']",kW,,,2,FALSE,, -Other,Other Electric Power (kW),kW,"['End Use: Electricity: Mech Vent', 'End Use: Electricity: Refrigerator', 'End Use: Electricity: Dishwasher', 'End Use: Electricity: Clothes Washer', 'End Use: Electricity: Clothes Dryer', 'End Use: Electricity: Range/Oven', 'End Use: Electricity: Ceiling Fan', 'End Use: Electricity: Pool Pump', 'End Use: Electricity: Pool Heater', 'End Use: Electricity: Hot Tub Pump', 'End Use: Electricity: Hot Tub Heater', 'End Use: Electricity: Well Pump', 'End Use: Electricity: Television', 'End Use: Electricity: Plug Loads']",kW,,,2,FALSE,, -Docs, Electric Power (kW),kW,,,,,6,TRUE,Real electric power of the equipment (Lighting and Other equipment only), -Lighting,Indoor Lighting Electric Power (kW),kW,,,,,6,FALSE,,"Only Indoor Lighting for OCHRE, ResStock/E+ include Basement Lighting" -Lighting,Basement Lighting Electric Power (kW),kW,,,,,6,FALSE,, -Lighting,Garage Lighting Electric Power (kW),kW,End Use: Electricity: Lighting Garage,kW,,,6,FALSE,, -Lighting,Exterior Lighting Electric Power (kW),kW,End Use: Electricity: Lighting Exterior,kW,,,6,FALSE,, -Other,Clothes Washer Electric Power (kW),kW,End Use: Electricity: Clothes Washer,kW,,,6,FALSE,, -Other,Clothes Dryer Electric Power (kW),kW,End Use: Electricity: Clothes Dryer,kW,,,6,FALSE,, -Other,Dishwasher Electric Power (kW),kW,End Use: Electricity: Dishwasher,kW,,,6,FALSE,, -Other,Refrigerator Electric Power (kW),kW,End Use: Electricity: Refrigerator,kW,,,6,FALSE,, -Other,Cooking Range Electric Power (kW),kW,End Use: Electricity: Range/Oven,kW,,,6,FALSE,, -Other,MELs Electric Power (kW),kW,End Use: Electricity: Plug Loads,kW,,,6,FALSE,, -Other,TV Electric Power (kW),kW,End Use: Electricity: Television,kW,,,6,FALSE,, -Other,Well Pump Electric Power (kW),kW,End Use: Electricity: Well Pump,kW,,,6,FALSE,, -Other,Pool Pump Electric Power (kW),kW,End Use: Electricity: Pool Pump,kW,,,6,FALSE,, -Other,Pool Heater Electric Power (kW),kW,End Use: Electricity: Pool Heater,kW,,,6,FALSE,, -Other,Hot Tub Pump Electric Power (kW),kW,End Use: Electricity: Hot Tub Pump,kW,,,6,FALSE,, -Other,Hot Tub Heater Electric Power (kW),kW,End Use: Electricity: Hot Tub Heater,kW,,,6,FALSE,, -Other,Ceiling Fan Electric Power (kW),kW,End Use: Electricity: Ceiling Fan,kW,,,6,FALSE,, -Other,Ventilation Fan Electric Power (kW),kW,End Use: Electricity: Mech Vent,kW,,,6,FALSE,, -Docs,Total Electric Energy (kWh),kWh,,,,,1,TRUE,Total dwelling real electric energy for 1 time step, -,Total Reactive Power (kVAR),kVAR,,,,,1,TRUE,Total dwelling reactive power, -Docs, Reactive Power (kVAR),kVAR,,,,,5,TRUE,Reactive electric power of all equipment within the end use, -Docs, Reactive Power (kVAR),kVAR,,,,,5,TRUE,Reactive electric power of the equipment, -,Total Reactive Energy (kVARh),kVARh,,,,,1,TRUE,Total dwelling reactive energy for 1 time step, -Dwelling,Total Gas Power (therms/hour),therms/hour,Fuel Use: Natural Gas: Total,kBtu/hour,,,1,TRUE,Total dwelling gas power, -Docs, Gas Power (therms/hour),therms/hour,,,,,2,TRUE,Gas power of all equipment within the end use, -HVAC Heating,HVAC Heating Gas Power (therms/hour),therms/hour,End Use: Natural Gas: Heating,kBtu/hour,,,2,FALSE,, -Water Heating,Water Heating Gas Power (therms/hour),therms/hour,End Use: Natural Gas: Hot Water,kBtu/hour,,,2,FALSE,, -Gas Generator,Generator Gas Power (therms/hour),therms/hour,End Use: Natural Gas: Generator,kBtu/hour,,,2,FALSE,, -Other,Other Gas Power (therms/hour),therms/hour,,,,,2,FALSE,, -, Gas Power (therms/hour),therms/hour,,,,,2,TRUE,Gas power of the equipment, -Other,Clothes Dryer Gas Power (therms/hour),therms/hour,End Use: Natural Gas: Clothes Dryer,kBtu/hour,,,2,FALSE,, -Other,Cooking Range Gas Power (therms/hour),therms/hour,End Use: Natural Gas: Range/Oven,kBtu/hour,,,2,FALSE,, -Other,MGLs Gas Power (therms/hour),therms/hour,"['End Use: Natural Gas: Grill', 'End Use: Natural Gas: Lighting', 'End Use: Natural Gas: Fireplace']",kBtu/hour,,,2,FALSE,, -Dwelling,Total Gas Energy (therms),therms,,,,,1,TRUE,Total dwelling gas energy consumption for 1 time step, -Dwelling,Grid Voltage (-),p.u.,,,,,5,TRUE,Per-unit grid voltage, -Equipment, Mode,N/A,,,,,6,TRUE,Current mode of equipment operation, -Envelope,Temperature - (C),degC,,,,,1,TRUE,Temperature of envelope zone, -Envelope,Temperature - Indoor (C),degC,Temperature: Living Space,degF,LIVING SPACE:Zone Mean Air Temperature [C](Hourly),degC,1,FALSE,, -Envelope,Temperature - Garage (C),degC,Temperature: Garage,degF,,,1,FALSE,, -Envelope,Temperature - Foundation (C),degC,"['Temperature: Crawlspace - Vented', 'Temperature: Basement - Vented']",degF,,,1,FALSE,, -Envelope,Temperature - Attic (C),degC,"['Temperature: Attic - Vented', 'Temperature: Attic - Unvented']",degF,"['ATTIC - VENTED:Zone Mean Air Temperature [C](Hourly), 'ATTIC - UNVENTED:Zone Mean Air Temperature [C](Hourly)']",degC,1,FALSE,, -Schedule,Temperature - Outdoor (C),degC,Weather: Drybulb Temperature,degF,Environment:Site Outdoor Air Drybulb Temperature [C](Hourly),degC,1,FALSE,, -Envelope,Temperature - Ground (C),degC,,,,,1,FALSE,, -Envelope,Unmet HVAC Load (C),degC,,,,,1,TRUE,"Absolute difference between Indoor temperature and thermal comfort limit (positive if hot, negative if cold)","Compare to ""Unmet Hours| Heating"" and ""Unmet Hours| Cooling""" -Envelope,Occupancy (Persons),Persons,,,,,4,TRUE,Number of current occupants, -Envelope,Net Sensible Heat Gain - (W),W,,,,,4,TRUE,"Net sensible heat injected into zone. Includes heat gains from infiltration, ventilation, radiation, HVAC, other equipment, and occupants", -Envelope,Window Transmitted Solar Gain (W),W,,,LIVING SPACE:Zone Windows Total Transmitted Solar Radiation Rate [W](Hourly),W,4,TRUE,Heat gains from solar transmitted through windows to Indoor zone, -Envelope,Infiltration Flow Rate - (m^3/s),m^3/s,,,,,7,TRUE,Infiltration flow rate between zone and outdoors, -Envelope,Infiltration Flow Rate - Indoor (m^3/s),m^3/s,Airflow: Infiltration,cubic_feet/min,"['LIVING SPACE:Zone Infiltration Current Density Volume Flow Rate [m3/s](Hourly)', 'EMS:infil_flow_act_timeseries_outvar [M^3/S](Hourly)']",m^3/s,7,FALSE,, -Envelope,Infiltration Flow Rate - Foundation (m^3/s),m^3/s,,,,,7,FALSE,, -Envelope,Infiltration Flow Rate - Garage (m^3/s),m^3/s,,,,,7,FALSE,, -Envelope,Infiltration Flow Rate - Attic (m^3/s),m^3/s,,,"['ATTIC - VENTED:Zone Infiltration Current Density Volume Flow Rate [m3/s](Hourly)', 'ATTIC - UNVENTED:Zone Infiltration Current Density Volume Flow Rate [m3/s](Hourly)']",m^3/s,7,FALSE,, -Envelope,Forced Ventilation Flow Rate - Indoor (m^3/s),m^3/s,"['Airflow: Mechanical Ventilation', 'Airflow: Whole House Fan']",cubic_feet/min,,,7,TRUE,Mecahnical ventilation flow rate , -Envelope,Natural Ventilation Flow Rate - Indoor (m^3/s),m^3/s,Airflow: Natural Ventilation,cubic_feet/min,"['EMS:Qfan_timeseries_outvar [M^3/S](Hourly)', 'EMS:natural_vent_flow_act_timeseries_outvar [M^3/S](Hourly)', 'EMS:whole_house_fan_flow_act_timeseries_outvar [M^3/S](Hourly)']",m^3/s,7,TRUE,Natural ventilation flow rate (open windows), -Envelope,Infiltration Heat Gain - (W),W,,,,,7,TRUE,Infiltration heat gain into zone, -Envelope,Infiltration Heat Gain - Indoor (W),W,"['~Component Load: Heating: Infiltration', 'Component Load: Cooling: Infiltration']",kBtu/hour,"['LIVING SPACE:Zone Infiltration Sensible Heat Loss Energy [J](Hourly)', '~LIVING SPACE:Zone Infiltration Sensible Heat Gain Energy [J](Hourly)']",J/hour,7,FALSE,, -Envelope,Infiltration Heat Gain - Foundation (W),W,,,,,7,FALSE,, -Envelope,Infiltration Heat Gain - Garage (W),W,,,,,7,FALSE,, -Envelope,Infiltration Heat Gain - Attic (W),W,,,"['ATTIC - VENTED:Zone Infiltration Sensible Heat Loss Energy [J](Hourly)', '~ATTIC - VENTED:Zone Infiltration Sensible Heat Gain Energy [J](Hourly)']",J/hour,7,FALSE,, -Envelope,Forced Ventilation Heat Gain - Indoor (W),W,"['~Component Load: Heating: Mechanical Ventilation', 'Component Load: Cooling: Mechanical Ventilation']",kBtu/hour,,,7,TRUE,Heat gain from mechanical ventilation, -Envelope,Natural Ventilation Heat Gain - Indoor (W),W,"['~Component Load: Heating: Natural Ventilation', 'Component Load: Cooling: Natural Ventilation']",kBtu/hour,,,7,TRUE,Heat gain from natural ventilation, -Envelope,Occupancy Heat Gain - Indoor (W),W,,,OCCUPANTS:People Sensible Heating Rate [W](Hourly),W,7,TRUE,Heat gain from occupancy, -Envelope,Internal Heat Gain - Indoor (W),W,"['~Component Load: Heating: Internal Gains', 'Component Load: Cooling: Internal Gains', '~Component Load: Heating: Lighting', 'Component Load: Cooling: Lighting']",kBtu/hour,,,7,TRUE,Heat gain from non-HVAC equipment, -Envelope,Radiation Heat Gain - Indoor (W),W,,,,,7,TRUE,Heat gain from radiation. Includes transmitted solar and internal radiation to zone, -Envelope,Net Latent Heat Gain - Indoor (W),W,,,,,7,TRUE,"Net latent heat injected into zone. Includes heat gains from infiltration, ventilation, HVAC, other equipment, and occupants", -Envelope,Relative Humidity - Indoor (-),unitless,,,,,7,TRUE,Relative humidity of zone, -Envelope,Humidity Ratio - Indoor (-),unitless,,,,,7,TRUE,Humidity ratio of zone, -Envelope,Wet Bulb - Indoor (C),W,,,,,7,TRUE,Wet bulb temperature in zone, -Envelope,Air Density - Indoor (kg/m^3),unitless,,,,,7,TRUE,Air density of zone, -Envelope, Ext. Solar Gain (W),W,,,,,8,TRUE,Solar heat gain on external boundary surface, -Envelope, Ext. LWR Gain (W),W,,,,,8,TRUE,Long wave radiation heat gain on external boundary surface, -Envelope, Ext. Surface Temperature (C),degC,,,,,8,TRUE,External boundary surface temperature, -Envelope, Ext. Film Coefficient (m^2-K/W),m^2-K/W,,,,,8,TRUE,Film coefficient of external boundary surface, -Envelope, LWR Gain (W),W,,,,,8,TRUE,Long wave radiation heat gain on internal boundary surface, -Envelope, Surface Temperature (C),C,,,,,8,TRUE,Internal boundary surface temperature, -Envelope, Film Coefficient (m^2-K/W),m^2-K/W,,,,,8,TRUE,Film coefficient of internal boundary surface, -HVAC,HVAC Setpoint (C),degC,,,,,6,TRUE,HVAC temperature setpoint, -HVAC,HVAC Delivered (kW),kW,,,,,3,TRUE,HVAC sensible heat gain delivered to indoor zone, -HVAC,HVAC Main Power (kW),kW,,,,,6,TRUE,"HVAC electric or gas power excluding fan, peripherals, and backup element", -HVAC,HVAC ER Power (kW),kW,,,,,6,TRUE,HVAC backup element power (ASHPHeater only), -HVAC,HVAC Fan Power (kW),kW,,,,,6,TRUE,HVAC fan and peripherals power, -HVAC,HVAC Latent Gains (kW),kW,,,,,6,TRUE,HVAC latent heat gain delivered to indoor zone, -HVAC,HVAC Capacity (kW),kW,,,,,6,TRUE,HVAC heat capacity of main unit, -HVAC,HVAC Max Capacity (kW),kW,,,,,6,TRUE,HVAC maximum heat capacity of main unit, -HVAC,HVAC COP (-),unitless,,,,,6,TRUE,HVAC coefficient of performance of main unit, -HVAC,HVAC SHR (-),unitless,,,,,6,TRUE,HVAC sensible heat ratio, -HVAC,HVAC Speed (-),unitless,,,,,6,TRUE,HVAC speed index. Fractions indicate the relative time in adjacent speeds, -HVAC,HVAC Duct Losses (W),W,,,,,6,TRUE,Heat gains to duct zone due to duct losses, -HVAC Heating,HVAC Heating Main Power (kW),kW,End Use: Electricity: Heating,kW,BASEBOARD:Baseboard Electricity Energy [J](Hourly),J/hour,,FALSE,, -HVAC Heating,HVAC Heating ER Power (kW),kW,,,,,,FALSE,, -HVAC Heating,HVAC Heating Fan Power (kW),kW,End Use: Electricity: Heating Fans/Pumps,kW,,,,FALSE,, -HVAC Heating,HVAC Heating Delivered (kW),kW,Load: Heating: Delivered,kBtu/hour,BASEBOARD:Baseboard Total Heating Energy [J](Hourly),J/hour,,FALSE,, -HVAC Heating,HVAC Heating Duct Losses (W),W,Component Load: Heating: Ducts,kBtu/hour,,,,FALSE,, -HVAC Heating,HVAC Heating Capacity (kW),kW,,,,,,FALSE,, -HVAC Heating,HVAC Heating Setpoint (C),degC,Temperature: Heating Setpoint,degF,,,,FALSE,, -HVAC Cooling,HVAC Cooling Main Power (kW),kW,End Use: Electricity: Cooling,kW,CENTRAL AC CLG COIL:Cooling Coil Electricity Energy [J](Hourly),J/hour,,FALSE,, -HVAC Cooling,HVAC Cooling Fan Power (kW),kW,End Use: Electricity: Cooling Fans/Pumps,kW,EMS:central ac supply fan clg disaggregate [J](Hourly),J/hour,,FALSE,, -HVAC Cooling,HVAC Cooling Delivered (kW),kW,Load: Cooling: Delivered,kBtu/hour,CENTRAL AC CLG COIL:Cooling Coil Total Cooling Energy [J](Hourly),J/hour,,FALSE,, -HVAC Cooling,HVAC Cooling Latent Gains (kW),kW,,,,,,FALSE,, -HVAC Cooling,HVAC Cooling Duct Losses (W),W,Component Load: Cooling: Ducts,kBtu/hour,,,,FALSE,, -HVAC Cooling,HVAC Cooling Capacity (kW),kW,,,,,,FALSE,, -HVAC Cooling,HVAC Cooling Sensible Capacity (kW),kW,,,,,,FALSE,, -HVAC Cooling,HVAC Cooling Setpoint (C),degC,Temperature: Cooling Setpoint,degF,,,,FALSE,, -Water Heating,Water Heating Delivered (kW),kW,,,,,3,TRUE,Heat delivered by water heater to tank, -Water Heating,Water Heating COP (-),unitless,,,,,6,TRUE,Water heater coefficient of performance, -Water Heating,Water Heating Total Sensible Heat Gain (kW),kW,,,,,6,TRUE,Sensible heat gain from water tank to envelope zone, -Water Heating,Water Heating Deadband Upper Limit (C),C,,,,,6,TRUE,Upper temperature limit for water heater deadband control, -Water Heating,Water Heating Deadband Lower Limit (C),C,,,,,6,TRUE,Lower temperature limit for water heater deadband control, -Water Heating,Water Heating Heat Pump Max Capacity (kW),kW,,,,,6,TRUE,Maximum capacity of HPWH heat pump element, -Water Heating,Water Heating Heat Pump On Fraction (-),unitless,,,,,6,TRUE,Fraction of time HPWH heat pump element is on, -Water Heating,Water Heating Heat Pump COP (-),unitless,,,,,6,TRUE,HPWH heat pump coefficient of performance, -Hot Water,Hot Water Delivered (L/min),L/min,"['Hot Water: Clothes Washer', 'Hot Water: Dishwasher', 'Hot Water: Fixtures', 'Hot Water: Distribution Waste']",gallon/hour,,,3,TRUE,Hot water draw volumetric flow rate, -Hot Water,Hot Water Delivered (kW),kW,Load: Hot Water: Delivered,kBtu/hour,,,3,TRUE,Hot water draw heat flow rate, -Hot Water,Hot Water Unmet Demand (kW),kW,,,,,3,TRUE,"Unmet hot water demand, based on flow rate and desired temperature", -Hot Water,Hot Water Outlet Temperature (C),degC,,,,,3,TRUE,Hot water outlet temperature, -Hot Water,Hot Water Heat Injected (kW),kW,,,,,6,TRUE,Water tank heat gains from water heater, -Hot Water,Hot Water Heat Loss (kW),kW,,,,,6,TRUE,Water tank heat losses to envelope zone, -Hot Water,Hot Water Average Temperature (C),degC,,,,,6,TRUE,Water tank average temperature, -Hot Water,Hot Water Maximum Temperature (C),degC,,,,,6,TRUE,Water tank maximum temperature, -Hot Water,Hot Water Minimum Temperature (C),degC,,,,,6,TRUE,Water tank minimum temperature, -Hot Water,Hot Water Mains Temperature (C),degC,,,,,6,TRUE,Water mains temperature, -EV,EV SOC (-),unitless,,,,,3,TRUE,EV state of charge, -EV,EV Parked,N/A,,,,,3,TRUE,True if EV is parked at home, -EV,EV Unmet Load (kW),kW,,,,,3,TRUE,"Unmet EV demand, determined at parking End Time. Negative value", -EV,EV Start Time,N/A,,,,,6,TRUE,"If parked, time that EV arrived. If away, next time that EV will arrive", -EV,EV End Time,N/A,,,,,6,TRUE,Next time that EV will depart, -EV,EV Remaining Charge Time (min),minutes,,,,,7,TRUE,"Estimated time to fully charge, based on SOC and max charge rate", -PV,PV P Setpoint (kW),kW,,,,,6,TRUE,PV real power setpoint, -PV,PV Q Setpoint (kW),kVAR,,,,,6,TRUE,PV reactive power setpoint, -Battery,Battery SOC (-),unitless,,,,,3,TRUE,Battery state of charge, -Battery,Battery Setpoint (kW),kW,,,,,6,TRUE,Battery real power setpoint, -Battery,Battery Efficiency (-),unitless,,,,,6,TRUE,Battery efficiency, -Battery,Battery Energy to Discharge (kWh),kWh,,,,,6,TRUE,"Estimated energy available for discharge, based on SOC and max discharge rate", -Battery,Battery Nominal Capacity (kWh),kWh,,,,,9,TRUE,"Nominal battery capacity, including degradation model", -Battery,Battery Actual Capacity (kWh),kWh,,,,,9,TRUE,"Actual battery capacity, including degradation and temperature models", -Battery,Battery Degradation State Q1,unitless,,,,,9,FALSE,, -Battery,Battery Degradation State Q2,unitless,,,,,9,FALSE,, -Battery,Battery Degradation State Q3,unitless,,,,,9,FALSE,, -EBM, EBM Energy (kWh),kWh,,,,,N/A,TRUE,Energy state of equivalent battery model (EBM), -EBM, EBM Min Energy (kWh),kWh,,,,,N/A,TRUE,Minimum energy constraint, -EBM, EBM Max Energy (kWh),kWh,,,,,N/A,TRUE,Maximum energy constraint, -EBM, EBM Max Power (kW),kW,,,,,N/A,TRUE,Maximum power constraint, -EBM, EBM Efficiency (-),unitless,,,,,N/A,TRUE,Input/output power efficiency, -EBM, EBM Baseline Power (kW),kW,,,,,N/A,TRUE,Power to maintain constant energy state, -EBM, EBM Max Discharge Power (kW),kW,,,,,N/A,TRUE,Minimum power constraint (negative for discharge), -EBM, EBM Discharge Efficiency (-),unitless,,,,,N/A,TRUE,Input/output power efficiency while discharging, -Schedule,Ambient Humidity Ratio (-),unitless,,,,,,,, -Schedule,Ambient Relative Humidity (-),unitless,Weather: Relative Humidity,percent,Environment:Site Outdoor Air Relative Humidity [%](Hourly),percent,,,, -Schedule,Wind Speed (m/s),m/s,Weather: Wind Speed,mph,Environment:Site Wind Speed [m/s](Hourly),m/s,,,, -Schedule,DNI (W/m^2),W/m^2,Weather: Diffuse Solar Radiation,Btu/(hour*ft^2),Environment:Site Direct Solar Radiation Rate per Area [W/m2](Hourly),W/m^2,,,, -Schedule,DHI (W/m^2),W/m^2,Weather: Direct Solar Radiation,Btu/(hour*ft^2),Environment:Site Diffuse Solar Radiation Rate per Area [W/m2](Hourly),W/m^2,,,, -Schedule,GHI (W/m^2),W/m^2,,,,,,,, diff --git a/defaults/Weather/sample_SAM_weather.csv b/defaults/Weather/sample_SAM_weather.csv deleted file mode 100644 index 8a26adf..0000000 --- a/defaults/Weather/sample_SAM_weather.csv +++ /dev/null @@ -1,35043 +0,0 @@ -Source,Location ID,City,State,Country,Latitude,Longitude,Time Zone,Elevation,Local Time Zone,Clearsky DHI Units,Clearsky DNI Units,Clearsky GHI Units,Dew Point Units,DHI Units,DNI Units,GHI Units,Solar Zenith Angle Units,Temperature Units,Pressure Units,Relative Humidity Units,Precipitable Water Units,Wind Direction Units,Wind Speed,Cloud Type -15,Cloud Type 0,Cloud Type 1,Cloud Type 2,Cloud Type 3,Cloud Type 4,Cloud Type 5,Cloud Type 6,Cloud Type 7,Cloud Type 8,Cloud Type 9,Cloud Type 10,Cloud Type 11,Cloud Type 12,Fill Flag 0,Fill Flag 1,Fill Flag 2,Fill Flag 3,Fill Flag 4,Fill Flag 5,Surface Albedo Units,Version -OCHRE,-,-,-,-,33.63,-84.43,-5.0,0,-5.0,w/m2,w/m2,w/m2,c,w/m2,w/m2,w/m2,Degree,c,mbar,%,cm,Degrees,m/s,,Clear,Probably Clear,Fog,Water,Super-Cooled Water,Mixed,Opaque Ice,Cirrus,Overlapping,Overshooting,Unknown,Dust,Smoke,,Missing Image,Low Irradiance,Exceeds Clearsky,Missing CLoud Properties,Rayleigh Violation,,unknown -Year,Month,Day,Hour,Minute,DNI,GHI,DHI,Temperature,Wind Speed -2019,1,1,0,0,0.0,0.0,0.0,14.9,1.6 -2019,1,1,0,15,0.0,0.0,0.0,14.9,1.6 -2019,1,1,0,30,0.0,0.0,0.0,14.9,1.6 -2019,1,1,0,45,0.0,0.0,0.0,14.9,1.6 -2019,1,1,1,0,0.0,0.0,0.0,13.6,2.2 -2019,1,1,1,15,0.0,0.0,0.0,13.6,2.2 -2019,1,1,1,30,0.0,0.0,0.0,13.6,2.2 -2019,1,1,1,45,0.0,0.0,0.0,13.6,2.2 -2019,1,1,2,0,0.0,0.0,0.0,11.3,2.5 -2019,1,1,2,15,0.0,0.0,0.0,11.3,2.5 -2019,1,1,2,30,0.0,0.0,0.0,11.3,2.5 -2019,1,1,2,45,0.0,0.0,0.0,11.3,2.5 -2019,1,1,3,0,0.0,0.0,0.0,12.7,2.0 -2019,1,1,3,15,0.0,0.0,0.0,12.7,2.0 -2019,1,1,3,30,0.0,0.0,0.0,12.7,2.0 -2019,1,1,3,45,0.0,0.0,0.0,12.7,2.0 -2019,1,1,4,0,0.0,0.0,0.0,12.4,1.5 -2019,1,1,4,15,0.0,0.0,0.0,12.4,1.5 -2019,1,1,4,30,0.0,0.0,0.0,12.4,1.5 -2019,1,1,4,45,0.0,0.0,0.0,12.4,1.5 -2019,1,1,5,0,0.0,0.0,0.0,13.6,1.5 -2019,1,1,5,15,0.0,0.0,0.0,13.6,1.5 -2019,1,1,5,30,0.0,0.0,0.0,13.6,1.5 -2019,1,1,5,45,0.0,0.0,0.0,13.6,1.5 -2019,1,1,6,0,0.0,0.0,0.0,11.6,1.6 -2019,1,1,6,15,0.0,0.0,0.0,11.6,1.6 -2019,1,1,6,30,0.0,0.0,0.0,11.6,1.6 -2019,1,1,6,45,0.0,0.0,0.0,11.6,1.6 -2019,1,1,7,0,598.0,-61.4478386403494,24.0,15.1,2.1 -2019,1,1,7,15,598.0,-31.728941166236154,24.0,15.1,2.1 -2019,1,1,7,30,598.0,-2.3276703365674294,24.0,15.1,2.1 -2019,1,1,7,45,598.0,26.630073093199037,24.0,15.1,2.1 -2019,1,1,8,0,887.0,86.01169752334584,40.0,16.9,2.1 -2019,1,1,8,15,887.0,127.1001397362094,40.0,16.9,2.1 -2019,1,1,8,30,887.0,166.99050810541684,40.0,16.9,2.1 -2019,1,1,8,45,887.0,205.51198594953055,40.0,16.9,2.1 -2019,1,1,9,0,1030.0,280.1461183067557,45.0,23.6,2.3 -2019,1,1,9,15,1030.0,321.1317578992675,45.0,23.6,2.3 -2019,1,1,9,30,1030.0,359.97684098222635,45.0,23.6,2.3 -2019,1,1,9,45,1030.0,396.51502694626566,45.0,23.6,2.3 -2019,1,1,10,0,1098.0,457.04627119346355,46.0,25.8,3.5 -2019,1,1,10,15,1098.0,490.58916257218004,46.0,25.8,3.5 -2019,1,1,10,30,1098.0,521.2068825848905,46.0,25.8,3.5 -2019,1,1,10,45,1098.0,548.7683214539826,46.0,25.8,3.5 -2019,1,1,11,0,1126.0,586.5984011221683,46.0,27.5,2.5 -2019,1,1,11,15,1126.0,608.2450871092443,46.0,27.5,2.5 -2019,1,1,11,30,1126.0,626.4367350742779,46.0,27.5,2.5 -2019,1,1,11,45,1126.0,641.0954455878498,46.0,27.5,2.5 -2019,1,1,12,0,1122.0,650.0051318231158,46.0,29.5,2.3 -2019,1,1,12,15,1122.0,657.3986937525813,46.0,29.5,2.3 -2019,1,1,12,30,1122.0,661.1304552164873,46.0,29.5,2.3 -2019,1,1,12,45,1122.0,661.1844362393349,46.0,29.5,2.3 -2019,1,1,13,0,1086.0,637.9381466607676,46.0,29.9,4.0 -2019,1,1,13,15,1086.0,630.8854153450415,46.0,29.9,4.0 -2019,1,1,13,30,1086.0,620.31790510925,46.0,29.9,4.0 -2019,1,1,13,45,1086.0,606.2808676545768,46.0,29.9,4.0 -2019,1,1,14,0,1005.0,546.3467622367036,44.0,29.2,3.0 -2019,1,1,14,15,1005.0,527.1155727146745,44.0,29.2,3.0 -2019,1,1,14,30,1005.0,504.8807455008757,44.0,29.2,3.0 -2019,1,1,14,45,1005.0,479.7374935389893,44.0,29.2,3.0 -2019,1,1,15,0,836.0,377.21925642046364,38.0,27.9,2.6 -2019,1,1,15,15,836.0,351.74404354310354,38.0,27.9,2.6 -2019,1,1,15,30,836.0,324.14767362167544,38.0,27.9,2.6 -2019,1,1,15,45,836.0,294.5483185488547,38.0,27.9,2.6 -2019,1,1,16,0,664.0,188.76589824402706,10.0,25.9,2.6 -2019,1,1,16,15,664.0,162.3829828372424,10.0,25.9,2.6 -2019,1,1,16,30,664.0,134.72987961307882,10.0,25.9,2.6 -2019,1,1,16,45,664.0,105.92500340492369,10.0,25.9,2.6 -2019,1,1,17,0,0.0,0.0,0.0,24.1,2.5 -2019,1,1,17,15,0.0,0.0,0.0,24.1,2.5 -2019,1,1,17,30,0.0,0.0,0.0,24.1,2.5 -2019,1,1,17,45,0.0,0.0,0.0,24.1,2.5 -2019,1,1,18,0,0.0,0.0,0.0,21.8,1.7 -2019,1,1,18,15,0.0,0.0,0.0,21.8,1.7 -2019,1,1,18,30,0.0,0.0,0.0,21.8,1.7 -2019,1,1,18,45,0.0,0.0,0.0,21.8,1.7 -2019,1,1,19,0,0.0,0.0,0.0,19.0,3.0 -2019,1,1,19,15,0.0,0.0,0.0,19.0,3.0 -2019,1,1,19,30,0.0,0.0,0.0,19.0,3.0 -2019,1,1,19,45,0.0,0.0,0.0,19.0,3.0 -2019,1,1,20,0,0.0,0.0,0.0,19.2,2.5 -2019,1,1,20,15,0.0,0.0,0.0,19.2,2.5 -2019,1,1,20,30,0.0,0.0,0.0,19.2,2.5 -2019,1,1,20,45,0.0,0.0,0.0,19.2,2.5 -2019,1,1,21,0,0.0,0.0,0.0,17.7,2.0 -2019,1,1,21,15,0.0,0.0,0.0,17.7,2.0 -2019,1,1,21,30,0.0,0.0,0.0,17.7,2.0 -2019,1,1,21,45,0.0,0.0,0.0,17.7,2.0 -2019,1,1,22,0,0.0,0.0,0.0,17.1,1.6 -2019,1,1,22,15,0.0,0.0,0.0,17.1,1.6 -2019,1,1,22,30,0.0,0.0,0.0,17.1,1.6 -2019,1,1,22,45,0.0,0.0,0.0,17.1,1.6 -2019,1,1,23,0,0.0,0.0,0.0,16.0,2.1 -2019,1,1,23,15,0.0,0.0,0.0,16.0,2.1 -2019,1,1,23,30,0.0,0.0,0.0,16.0,2.1 -2019,1,1,23,45,0.0,0.0,0.0,16.0,2.1 -2019,1,2,0,0,0.0,0.0,0.0,15.3,2.1 -2019,1,2,0,15,0.0,0.0,0.0,15.3,2.1 -2019,1,2,0,30,0.0,0.0,0.0,15.3,2.1 -2019,1,2,0,45,0.0,0.0,0.0,15.3,2.1 -2019,1,2,1,0,0.0,0.0,0.0,13.1,1.9 -2019,1,2,1,15,0.0,0.0,0.0,13.1,1.9 -2019,1,2,1,30,0.0,0.0,0.0,13.1,1.9 -2019,1,2,1,45,0.0,0.0,0.0,13.1,1.9 -2019,1,2,2,0,0.0,0.0,0.0,11.8,0.2 -2019,1,2,2,15,0.0,0.0,0.0,11.8,0.2 -2019,1,2,2,30,0.0,0.0,0.0,11.8,0.2 -2019,1,2,2,45,0.0,0.0,0.0,11.8,0.2 -2019,1,2,3,0,0.0,0.0,0.0,12.1,2.1 -2019,1,2,3,15,0.0,0.0,0.0,12.1,2.1 -2019,1,2,3,30,0.0,0.0,0.0,12.1,2.1 -2019,1,2,3,45,0.0,0.0,0.0,12.1,2.1 -2019,1,2,4,0,0.0,0.0,0.0,11.2,2.1 -2019,1,2,4,15,0.0,0.0,0.0,11.2,2.1 -2019,1,2,4,30,0.0,0.0,0.0,11.2,2.1 -2019,1,2,4,45,0.0,0.0,0.0,11.2,2.1 -2019,1,2,5,0,0.0,0.0,0.0,11.6,2.2 -2019,1,2,5,15,0.0,0.0,0.0,11.6,2.2 -2019,1,2,5,30,0.0,0.0,0.0,11.6,2.2 -2019,1,2,5,45,0.0,0.0,0.0,11.6,2.2 -2019,1,2,6,0,0.0,0.0,0.0,11.0,3.2 -2019,1,2,6,15,0.0,0.0,0.0,11.0,3.2 -2019,1,2,6,30,0.0,0.0,0.0,11.0,3.2 -2019,1,2,6,45,0.0,0.0,0.0,11.0,3.2 -2019,1,2,7,0,625.0,-65.87760622282694,23.0,14.9,3.5 -2019,1,2,7,15,625.0,-34.800143424890294,23.0,14.9,3.5 -2019,1,2,7,30,625.0,-4.054827209274009,23.0,14.9,3.5 -2019,1,2,7,45,625.0,26.226686259879898,23.0,14.9,3.5 -2019,1,2,8,0,920.0,85.45047798648724,37.0,19.3,2.5 -2019,1,2,8,15,920.0,128.09054826704568,37.0,19.3,2.5 -2019,1,2,8,30,920.0,169.4873016890545,37.0,19.3,2.5 -2019,1,2,8,45,920.0,209.46347099901527,37.0,19.3,2.5 -2019,1,2,9,0,1065.0,284.0793302058315,40.0,22.7,2.0 -2019,1,2,9,15,1065.0,326.48052827530535,40.0,22.7,2.0 -2019,1,2,9,30,1065.0,366.6672394795542,40.0,22.7,2.0 -2019,1,2,9,45,1065.0,404.46737815162567,40.0,22.7,2.0 -2019,1,2,10,0,1134.0,464.61637069109065,39.0,26.3,1.3 -2019,1,2,10,15,1134.0,499.2777019120616,39.0,26.3,1.3 -2019,1,2,10,30,1134.0,530.9163261024883,39.0,26.3,1.3 -2019,1,2,10,45,1134.0,559.396761816337,39.0,26.3,1.3 -2019,1,2,11,0,1162.0,598.0685835901884,39.0,27.9,0.0 -2019,1,2,11,15,1162.0,620.4193892765799,39.0,27.9,0.0 -2019,1,2,11,30,1162.0,639.2027720551006,39.0,27.9,0.0 -2019,1,2,11,45,1162.0,654.3382985970163,39.0,27.9,0.0 -2019,1,2,12,0,1159.0,664.1430121328881,39.0,29.0,0.2 -2019,1,2,12,15,1159.0,671.7845069369471,39.0,29.0,0.2 -2019,1,2,12,30,1159.0,675.6414078608143,39.0,29.0,0.2 -2019,1,2,12,45,1159.0,675.6971990626116,39.0,29.0,0.2 -2019,1,2,13,0,1123.0,653.29136631325,40.0,30.0,1.3 -2019,1,2,13,15,1123.0,645.9944175256635,40.0,30.0,1.3 -2019,1,2,13,30,1123.0,635.0609823002314,40.0,30.0,1.3 -2019,1,2,13,45,1123.0,620.5378792851207,40.0,30.0,1.3 -2019,1,2,14,0,1042.0,560.9160865359098,39.0,29.9,0.2 -2019,1,2,14,15,1042.0,540.9661355419053,39.0,29.9,0.2 -2019,1,2,14,30,1042.0,517.9002865590678,39.0,29.9,0.2 -2019,1,2,14,45,1042.0,491.8173110938759,39.0,29.9,0.2 -2019,1,2,15,0,872.0,389.6821508577706,35.0,28.9,1.5 -2019,1,2,15,15,872.0,363.09559641315076,35.0,28.9,1.5 -2019,1,2,15,30,872.0,334.2953506636067,35.0,28.9,1.5 -2019,1,2,15,45,872.0,303.4047406829324,35.0,28.9,1.5 -2019,1,2,16,0,681.0,193.96062673455302,10.0,27.3,1.5 -2019,1,2,16,15,681.0,166.88766024701704,10.0,27.3,1.5 -2019,1,2,16,30,681.0,138.5112838943251,10.0,27.3,1.5 -2019,1,2,16,45,681.0,108.95300967643999,10.0,27.3,1.5 -2019,1,2,17,0,0.0,0.0,0.0,25.2,1.3 -2019,1,2,17,15,0.0,0.0,0.0,25.2,1.3 -2019,1,2,17,30,0.0,0.0,0.0,25.2,1.3 -2019,1,2,17,45,0.0,0.0,0.0,25.2,1.3 -2019,1,2,18,0,0.0,0.0,0.0,22.1,0.2 -2019,1,2,18,15,0.0,0.0,0.0,22.1,0.2 -2019,1,2,18,30,0.0,0.0,0.0,22.1,0.2 -2019,1,2,18,45,0.0,0.0,0.0,22.1,0.2 -2019,1,2,19,0,0.0,0.0,0.0,20.8,2.1 -2019,1,2,19,15,0.0,0.0,0.0,20.8,2.1 -2019,1,2,19,30,0.0,0.0,0.0,20.8,2.1 -2019,1,2,19,45,0.0,0.0,0.0,20.8,2.1 -2019,1,2,20,0,0.0,0.0,0.0,18.8,1.9 -2019,1,2,20,15,0.0,0.0,0.0,18.8,1.9 -2019,1,2,20,30,0.0,0.0,0.0,18.8,1.9 -2019,1,2,20,45,0.0,0.0,0.0,18.8,1.9 -2019,1,2,21,0,0.0,0.0,0.0,17.7,0.0 -2019,1,2,21,15,0.0,0.0,0.0,17.7,0.0 -2019,1,2,21,30,0.0,0.0,0.0,17.7,0.0 -2019,1,2,21,45,0.0,0.0,0.0,17.7,0.0 -2019,1,2,22,0,0.0,0.0,0.0,16.4,0.0 -2019,1,2,22,15,0.0,0.0,0.0,16.4,0.0 -2019,1,2,22,30,0.0,0.0,0.0,16.4,0.0 -2019,1,2,22,45,0.0,0.0,0.0,16.4,0.0 -2019,1,2,23,0,0.0,0.0,0.0,14.5,0.4 -2019,1,2,23,15,0.0,0.0,0.0,14.5,0.4 -2019,1,2,23,30,0.0,0.0,0.0,14.5,0.4 -2019,1,2,23,45,0.0,0.0,0.0,14.5,0.4 -2019,1,3,0,0,0.0,0.0,0.0,14.9,3.0 -2019,1,3,0,15,0.0,0.0,0.0,14.9,3.0 -2019,1,3,0,30,0.0,0.0,0.0,14.9,3.0 -2019,1,3,0,45,0.0,0.0,0.0,14.9,3.0 -2019,1,3,1,0,0.0,0.0,0.0,13.8,2.7 -2019,1,3,1,15,0.0,0.0,0.0,13.8,2.7 -2019,1,3,1,30,0.0,0.0,0.0,13.8,2.7 -2019,1,3,1,45,0.0,0.0,0.0,13.8,2.7 -2019,1,3,2,0,0.0,0.0,0.0,13.0,3.1 -2019,1,3,2,15,0.0,0.0,0.0,13.0,3.1 -2019,1,3,2,30,0.0,0.0,0.0,13.0,3.1 -2019,1,3,2,45,0.0,0.0,0.0,13.0,3.1 -2019,1,3,3,0,0.0,0.0,0.0,10.7,2.9 -2019,1,3,3,15,0.0,0.0,0.0,10.7,2.9 -2019,1,3,3,30,0.0,0.0,0.0,10.7,2.9 -2019,1,3,3,45,0.0,0.0,0.0,10.7,2.9 -2019,1,3,4,0,0.0,0.0,0.0,11.6,1.3 -2019,1,3,4,15,0.0,0.0,0.0,11.6,1.3 -2019,1,3,4,30,0.0,0.0,0.0,11.6,1.3 -2019,1,3,4,45,0.0,0.0,0.0,11.6,1.3 -2019,1,3,5,0,0.0,0.0,0.0,10.9,0.4 -2019,1,3,5,15,0.0,0.0,0.0,10.9,0.4 -2019,1,3,5,30,0.0,0.0,0.0,10.9,0.4 -2019,1,3,5,45,0.0,0.0,0.0,10.9,0.4 -2019,1,3,6,0,0.0,0.0,0.0,12.9,3.5 -2019,1,3,6,15,0.0,0.0,0.0,12.9,3.5 -2019,1,3,6,30,0.0,0.0,0.0,12.9,3.5 -2019,1,3,6,45,0.0,0.0,0.0,12.9,3.5 -2019,1,3,7,0,567.0,-55.20457511820365,25.0,14.2,2.3 -2019,1,3,7,15,567.0,-26.994535692977728,25.0,14.2,2.3 -2019,1,3,7,30,567.0,0.914003309155941,25.0,14.2,2.3 -2019,1,3,7,45,567.0,28.401533239593277,25.0,14.2,2.3 -2019,1,3,8,0,889.0,87.58634853026777,40.0,17.2,0.0 -2019,1,3,8,15,889.0,128.8138429691523,40.0,17.2,0.0 -2019,1,3,8,30,889.0,168.83920902188825,40.0,17.2,0.0 -2019,1,3,8,45,889.0,207.49105192623205,40.0,17.2,0.0 -2019,1,3,9,0,966.0,277.3254526051662,55.0,21.0,0.0 -2019,1,3,9,15,966.0,315.80772797329547,55.0,21.0,0.0 -2019,1,3,9,30,966.0,352.28019000532373,55.0,21.0,0.0 -2019,1,3,9,45,966.0,386.58665801947564,55.0,21.0,0.0 -2019,1,3,10,0,1112.0,461.53127517144253,43.0,24.2,0.0 -2019,1,3,10,15,1112.0,495.54013463186055,43.0,24.2,0.0 -2019,1,3,10,30,1112.0,526.5831870972602,43.0,24.2,0.0 -2019,1,3,10,45,1112.0,554.5275014511682,43.0,24.2,0.0 -2019,1,3,11,0,933.0,537.9320476506477,88.0,26.4,0.0 -2019,1,3,11,15,933.0,555.8886346869217,88.0,26.4,0.0 -2019,1,3,11,30,933.0,570.9791621797863,88.0,26.4,0.0 -2019,1,3,11,45,933.0,583.1390101737773,88.0,26.4,0.0 -2019,1,3,12,0,1215.0,685.7460574754114,29.0,29.0,0.2 -2019,1,3,12,15,1215.0,693.7614770425477,29.0,29.0,0.2 -2019,1,3,12,30,1215.0,697.8071094647867,29.0,29.0,0.2 -2019,1,3,12,45,1215.0,697.8656307229993,29.0,29.0,0.2 -2019,1,3,13,0,1153.0,666.005859361202,35.0,29.3,1.6 -2019,1,3,13,15,1153.0,658.5095768462966,35.0,29.3,1.6 -2019,1,3,13,30,1153.0,647.27746850977,35.0,29.3,1.6 -2019,1,3,13,45,1153.0,632.3576319639044,35.0,29.3,1.6 -2019,1,3,14,0,609.0,414.7222023848642,109.0,28.8,2.6 -2019,1,3,14,15,609.0,403.055543413041,109.0,28.8,2.6 -2019,1,3,14,30,609.0,389.56671860042843,109.0,28.8,2.6 -2019,1,3,14,45,609.0,374.3134891657157,109.0,28.8,2.6 -2019,1,3,15,0,492.0,272.6464639003251,72.0,28.0,2.4 -2019,1,3,15,15,492.0,257.6369795765382,72.0,28.0,2.4 -2019,1,3,15,30,492.0,241.37775207869052,72.0,28.0,2.4 -2019,1,3,15,45,492.0,223.93840591508976,72.0,28.0,2.4 -2019,1,3,16,0,381.0,122.29871718600529,19.0,26.5,1.1 -2019,1,3,16,15,381.0,107.14326824489042,19.0,26.5,1.1 -2019,1,3,16,30,381.0,91.25817035046231,19.0,26.5,1.1 -2019,1,3,16,45,381.0,74.71144593062934,19.0,26.5,1.1 -2019,1,3,17,0,0.0,0.0,0.0,24.6,0.2 -2019,1,3,17,15,0.0,0.0,0.0,24.6,0.2 -2019,1,3,17,30,0.0,0.0,0.0,24.6,0.2 -2019,1,3,17,45,0.0,0.0,0.0,24.6,0.2 -2019,1,3,18,0,0.0,0.0,0.0,21.4,1.5 -2019,1,3,18,15,0.0,0.0,0.0,21.4,1.5 -2019,1,3,18,30,0.0,0.0,0.0,21.4,1.5 -2019,1,3,18,45,0.0,0.0,0.0,21.4,1.5 -2019,1,3,19,0,0.0,0.0,0.0,19.1,1.3 -2019,1,3,19,15,0.0,0.0,0.0,19.1,1.3 -2019,1,3,19,30,0.0,0.0,0.0,19.1,1.3 -2019,1,3,19,45,0.0,0.0,0.0,19.1,1.3 -2019,1,3,20,0,0.0,0.0,0.0,17.2,0.2 -2019,1,3,20,15,0.0,0.0,0.0,17.2,0.2 -2019,1,3,20,30,0.0,0.0,0.0,17.2,0.2 -2019,1,3,20,45,0.0,0.0,0.0,17.2,0.2 -2019,1,3,21,0,0.0,0.0,0.0,16.9,1.6 -2019,1,3,21,15,0.0,0.0,0.0,16.9,1.6 -2019,1,3,21,30,0.0,0.0,0.0,16.9,1.6 -2019,1,3,21,45,0.0,0.0,0.0,16.9,1.6 -2019,1,3,22,0,0.0,0.0,0.0,15.0,2.3 -2019,1,3,22,15,0.0,0.0,0.0,15.0,2.3 -2019,1,3,22,30,0.0,0.0,0.0,15.0,2.3 -2019,1,3,22,45,0.0,0.0,0.0,15.0,2.3 -2019,1,3,23,0,0.0,0.0,0.0,14.9,0.2 -2019,1,3,23,15,0.0,0.0,0.0,14.9,0.2 -2019,1,3,23,30,0.0,0.0,0.0,14.9,0.2 -2019,1,3,23,45,0.0,0.0,0.0,14.9,0.2 -2019,1,4,0,0,0.0,0.0,0.0,13.8,1.6 -2019,1,4,0,15,0.0,0.0,0.0,13.8,1.6 -2019,1,4,0,30,0.0,0.0,0.0,13.8,1.6 -2019,1,4,0,45,0.0,0.0,0.0,13.8,1.6 -2019,1,4,1,0,0.0,0.0,0.0,13.3,2.1 -2019,1,4,1,15,0.0,0.0,0.0,13.3,2.1 -2019,1,4,1,30,0.0,0.0,0.0,13.3,2.1 -2019,1,4,1,45,0.0,0.0,0.0,13.3,2.1 -2019,1,4,2,0,0.0,0.0,0.0,13.2,2.2 -2019,1,4,2,15,0.0,0.0,0.0,13.2,2.2 -2019,1,4,2,30,0.0,0.0,0.0,13.2,2.2 -2019,1,4,2,45,0.0,0.0,0.0,13.2,2.2 -2019,1,4,3,0,0.0,0.0,0.0,12.9,2.6 -2019,1,4,3,15,0.0,0.0,0.0,12.9,2.6 -2019,1,4,3,30,0.0,0.0,0.0,12.9,2.6 -2019,1,4,3,45,0.0,0.0,0.0,12.9,2.6 -2019,1,4,4,0,0.0,0.0,0.0,13.2,2.7 -2019,1,4,4,15,0.0,0.0,0.0,13.2,2.7 -2019,1,4,4,30,0.0,0.0,0.0,13.2,2.7 -2019,1,4,4,45,0.0,0.0,0.0,13.2,2.7 -2019,1,4,5,0,0.0,0.0,0.0,12.2,3.0 -2019,1,4,5,15,0.0,0.0,0.0,12.2,3.0 -2019,1,4,5,30,0.0,0.0,0.0,12.2,3.0 -2019,1,4,5,45,0.0,0.0,0.0,12.2,3.0 -2019,1,4,6,0,0.0,0.0,0.0,12.5,2.6 -2019,1,4,6,15,0.0,0.0,0.0,12.5,2.6 -2019,1,4,6,30,0.0,0.0,0.0,12.5,2.6 -2019,1,4,6,45,0.0,0.0,0.0,12.5,2.6 -2019,1,4,7,0,596.0,-59.821343058184794,24.0,14.8,2.5 -2019,1,4,7,15,596.0,-30.14962245064865,24.0,14.8,2.5 -2019,1,4,7,30,596.0,-0.7950242753855825,24.0,14.8,2.5 -2019,1,4,7,45,596.0,28.116750571618034,24.0,14.8,2.5 -2019,1,4,8,0,886.0,89.25711598090625,41.0,18.5,1.6 -2019,1,4,8,15,886.0,130.37159009876,41.0,18.5,1.6 -2019,1,4,8,30,886.0,170.28723132387267,41.0,18.5,1.6 -2019,1,4,8,45,886.0,208.8331147525574,41.0,18.5,1.6 -2019,1,4,9,0,1029.0,282.9059393263386,45.0,24.5,2.2 -2019,1,4,9,15,1029.0,323.92397215335836,45.0,24.5,2.2 -2019,1,4,9,30,1029.0,362.7997566697531,45.0,24.5,2.2 -2019,1,4,9,45,1029.0,399.3668207979052,45.0,24.5,2.2 -2019,1,4,10,0,1099.0,460.89501268427426,46.0,29.0,3.3 -2019,1,4,10,15,1099.0,494.5276411422888,46.0,29.0,3.3 -2019,1,4,10,30,1099.0,525.2272725423536,46.0,29.0,3.3 -2019,1,4,10,45,1099.0,552.8624463497201,46.0,29.0,3.3 -2019,1,4,11,0,1127.0,590.8515079344596,46.0,29.5,4.9 -2019,1,4,11,15,1127.0,612.5556140556322,46.0,29.5,4.9 -2019,1,4,11,30,1127.0,630.7955172993817,46.0,29.5,4.9 -2019,1,4,11,45,1127.0,645.4931115997776,46.0,29.5,4.9 -2019,1,4,12,0,1124.0,654.960121199831,46.0,30.7,3.5 -2019,1,4,12,15,1124.0,662.3799200324885,46.0,30.7,3.5 -2019,1,4,12,30,1124.0,666.1249240803071,46.0,30.7,3.5 -2019,1,4,12,45,1124.0,666.1790966610105,46.0,30.7,3.5 -2019,1,4,13,0,1089.0,643.3438275048296,46.0,31.2,3.0 -2019,1,4,13,15,1089.0,636.2591456092177,46.0,31.2,3.0 -2019,1,4,13,30,1089.0,625.6437619943242,46.0,31.2,3.0 -2019,1,4,13,45,1089.0,611.5431333624917,46.0,31.2,3.0 -2019,1,4,14,0,1010.0,553.2624583819949,45.0,31.4,2.1 -2019,1,4,14,15,1010.0,533.9015191719335,45.0,31.4,2.1 -2019,1,4,14,30,1010.0,511.5166772182176,45.0,31.4,2.1 -2019,1,4,14,45,1010.0,486.20378785067646,45.0,31.4,2.1 -2019,1,4,15,0,845.0,384.58930872455005,39.0,29.6,2.1 -2019,1,4,15,15,845.0,358.7944463685584,39.0,29.6,2.1 -2019,1,4,15,30,845.0,330.85181181334787,39.0,29.6,2.1 -2019,1,4,15,45,845.0,300.88105970991523,39.0,29.6,2.1 -2019,1,4,16,0,634.0,185.5759475174617,13.0,27.3,2.1 -2019,1,4,16,15,634.0,160.34062119931681,13.0,27.3,2.1 -2019,1,4,16,30,634.0,133.89035697295867,13.0,27.3,2.1 -2019,1,4,16,45,634.0,106.33841893052258,13.0,27.3,2.1 -2019,1,4,17,0,0.0,0.0,0.0,25.4,2.2 -2019,1,4,17,15,0.0,0.0,0.0,25.4,2.2 -2019,1,4,17,30,0.0,0.0,0.0,25.4,2.2 -2019,1,4,17,45,0.0,0.0,0.0,25.4,2.2 -2019,1,4,18,0,0.0,0.0,0.0,23.5,3.0 -2019,1,4,18,15,0.0,0.0,0.0,23.5,3.0 -2019,1,4,18,30,0.0,0.0,0.0,23.5,3.0 -2019,1,4,18,45,0.0,0.0,0.0,23.5,3.0 -2019,1,4,19,0,0.0,0.0,0.0,20.5,2.3 -2019,1,4,19,15,0.0,0.0,0.0,20.5,2.3 -2019,1,4,19,30,0.0,0.0,0.0,20.5,2.3 -2019,1,4,19,45,0.0,0.0,0.0,20.5,2.3 -2019,1,4,20,0,0.0,0.0,0.0,19.8,3.4 -2019,1,4,20,15,0.0,0.0,0.0,19.8,3.4 -2019,1,4,20,30,0.0,0.0,0.0,19.8,3.4 -2019,1,4,20,45,0.0,0.0,0.0,19.8,3.4 -2019,1,4,21,0,0.0,0.0,0.0,18.2,1.7 -2019,1,4,21,15,0.0,0.0,0.0,18.2,1.7 -2019,1,4,21,30,0.0,0.0,0.0,18.2,1.7 -2019,1,4,21,45,0.0,0.0,0.0,18.2,1.7 -2019,1,4,22,0,0.0,0.0,0.0,17.7,3.1 -2019,1,4,22,15,0.0,0.0,0.0,17.7,3.1 -2019,1,4,22,30,0.0,0.0,0.0,17.7,3.1 -2019,1,4,22,45,0.0,0.0,0.0,17.7,3.1 -2019,1,4,23,0,0.0,0.0,0.0,16.6,2.9 -2019,1,4,23,15,0.0,0.0,0.0,16.6,2.9 -2019,1,4,23,30,0.0,0.0,0.0,16.6,2.9 -2019,1,4,23,45,0.0,0.0,0.0,16.6,2.9 -2019,1,5,0,0,0.0,0.0,0.0,15.9,1.5 -2019,1,5,0,15,0.0,0.0,0.0,15.9,1.5 -2019,1,5,0,30,0.0,0.0,0.0,15.9,1.5 -2019,1,5,0,45,0.0,0.0,0.0,15.9,1.5 -2019,1,5,1,0,0.0,0.0,0.0,14.0,1.6 -2019,1,5,1,15,0.0,0.0,0.0,14.0,1.6 -2019,1,5,1,30,0.0,0.0,0.0,14.0,1.6 -2019,1,5,1,45,0.0,0.0,0.0,14.0,1.6 -2019,1,5,2,0,0.0,0.0,0.0,11.4,2.1 -2019,1,5,2,15,0.0,0.0,0.0,11.4,2.1 -2019,1,5,2,30,0.0,0.0,0.0,11.4,2.1 -2019,1,5,2,45,0.0,0.0,0.0,11.4,2.1 -2019,1,5,3,0,0.0,0.0,0.0,13.9,2.2 -2019,1,5,3,15,0.0,0.0,0.0,13.9,2.2 -2019,1,5,3,30,0.0,0.0,0.0,13.9,2.2 -2019,1,5,3,45,0.0,0.0,0.0,13.9,2.2 -2019,1,5,4,0,0.0,0.0,0.0,13.8,3.0 -2019,1,5,4,15,0.0,0.0,0.0,13.8,3.0 -2019,1,5,4,30,0.0,0.0,0.0,13.8,3.0 -2019,1,5,4,45,0.0,0.0,0.0,13.8,3.0 -2019,1,5,5,0,0.0,0.0,0.0,12.8,2.1 -2019,1,5,5,15,0.0,0.0,0.0,12.8,2.1 -2019,1,5,5,30,0.0,0.0,0.0,12.8,2.1 -2019,1,5,5,45,0.0,0.0,0.0,12.8,2.1 -2019,1,5,6,0,0.0,0.0,0.0,12.9,2.2 -2019,1,5,6,15,0.0,0.0,0.0,12.9,2.2 -2019,1,5,6,30,0.0,0.0,0.0,12.9,2.2 -2019,1,5,6,45,0.0,0.0,0.0,12.9,2.2 -2019,1,5,7,0,286.0,-5.9716512999406675,34.0,13.8,2.3 -2019,1,5,7,15,286.0,8.27650689694838,34.0,13.8,2.3 -2019,1,5,7,30,286.0,22.372385061190347,34.0,13.8,2.3 -2019,1,5,7,45,286.0,36.255622478447485,34.0,13.8,2.3 -2019,1,5,8,0,708.0,99.27857499388693,60.0,18.3,0.2 -2019,1,5,8,15,708.0,132.15544765874301,60.0,18.3,0.2 -2019,1,5,8,30,708.0,164.073682831408,60.0,18.3,0.2 -2019,1,5,8,45,708.0,194.89660172869597,60.0,18.3,0.2 -2019,1,5,9,0,927.0,277.3732826562683,62.0,22.7,1.6 -2019,1,5,9,15,927.0,314.35060096335667,62.0,22.7,1.6 -2019,1,5,9,30,927.0,349.39670530879926,62.0,22.7,1.6 -2019,1,5,9,45,927.0,382.36152289341277,62.0,22.7,1.6 -2019,1,5,10,0,1112.0,465.17317082835325,44.0,26.3,1.9 -2019,1,5,10,15,1112.0,499.2268569334072,44.0,26.3,1.9 -2019,1,5,10,30,1112.0,530.3108268510051,44.0,26.3,1.9 -2019,1,5,10,45,1112.0,558.2919742498616,44.0,26.3,1.9 -2019,1,5,11,0,1162.0,602.2883608362987,39.0,27.9,0.0 -2019,1,5,11,15,1162.0,624.6817764390705,39.0,27.9,0.0 -2019,1,5,11,30,1162.0,643.5009681446058,39.0,27.9,0.0 -2019,1,5,11,45,1162.0,658.6653492848467,39.0,27.9,0.0 -2019,1,5,12,0,1157.0,668.3943641006756,40.0,28.9,0.2 -2019,1,5,12,15,1157.0,676.0372152695481,40.0,28.9,0.2 -2019,1,5,12,30,1157.0,679.89480079307,40.0,28.9,0.2 -2019,1,5,12,45,1157.0,679.9506018978018,40.0,28.9,0.2 -2019,1,5,13,0,1020.0,619.8716224957162,59.0,28.9,1.7 -2019,1,5,13,15,1020.0,613.231304599072,59.0,28.9,1.7 -2019,1,5,13,30,1020.0,603.2817369492698,59.0,28.9,1.7 -2019,1,5,13,45,1020.0,590.0655251224714,59.0,28.9,1.7 -2019,1,5,14,0,904.0,518.1116605116714,62.0,28.8,2.9 -2019,1,5,14,15,904.0,500.77083764072415,62.0,28.8,2.9 -2019,1,5,14,30,904.0,480.7216254045832,62.0,28.8,2.9 -2019,1,5,14,45,904.0,458.0498776080554,62.0,28.8,2.9 -2019,1,5,15,0,732.0,351.29221284299933,51.0,27.6,1.6 -2019,1,5,15,15,732.0,328.9315943997824,51.0,27.6,1.6 -2019,1,5,15,30,732.0,304.709151148707,51.0,27.6,1.6 -2019,1,5,15,45,732.0,278.7286073104714,51.0,27.6,1.6 -2019,1,5,16,0,472.0,147.02701331345773,18.0,26.1,2.1 -2019,1,5,16,15,472.0,128.2270115585302,18.0,26.1,2.1 -2019,1,5,16,30,472.0,108.52189629254332,18.0,26.1,2.1 -2019,1,5,16,45,472.0,87.99604784425061,18.0,26.1,2.1 -2019,1,5,17,0,0.0,0.0,0.0,24.1,2.3 -2019,1,5,17,15,0.0,0.0,0.0,24.1,2.3 -2019,1,5,17,30,0.0,0.0,0.0,24.1,2.3 -2019,1,5,17,45,0.0,0.0,0.0,24.1,2.3 -2019,1,5,18,0,0.0,0.0,0.0,21.5,0.0 -2019,1,5,18,15,0.0,0.0,0.0,21.5,0.0 -2019,1,5,18,30,0.0,0.0,0.0,21.5,0.0 -2019,1,5,18,45,0.0,0.0,0.0,21.5,0.0 -2019,1,5,19,0,0.0,0.0,0.0,19.7,0.0 -2019,1,5,19,15,0.0,0.0,0.0,19.7,0.0 -2019,1,5,19,30,0.0,0.0,0.0,19.7,0.0 -2019,1,5,19,45,0.0,0.0,0.0,19.7,0.0 -2019,1,5,20,0,0.0,0.0,0.0,17.5,0.2 -2019,1,5,20,15,0.0,0.0,0.0,17.5,0.2 -2019,1,5,20,30,0.0,0.0,0.0,17.5,0.2 -2019,1,5,20,45,0.0,0.0,0.0,17.5,0.2 -2019,1,5,21,0,0.0,0.0,0.0,14.9,1.3 -2019,1,5,21,15,0.0,0.0,0.0,14.9,1.3 -2019,1,5,21,30,0.0,0.0,0.0,14.9,1.3 -2019,1,5,21,45,0.0,0.0,0.0,14.9,1.3 -2019,1,5,22,0,0.0,0.0,0.0,14.3,0.2 -2019,1,5,22,15,0.0,0.0,0.0,14.3,0.2 -2019,1,5,22,30,0.0,0.0,0.0,14.3,0.2 -2019,1,5,22,45,0.0,0.0,0.0,14.3,0.2 -2019,1,5,23,0,0.0,0.0,0.0,13.4,1.7 -2019,1,5,23,15,0.0,0.0,0.0,13.4,1.7 -2019,1,5,23,30,0.0,0.0,0.0,13.4,1.7 -2019,1,5,23,45,0.0,0.0,0.0,13.4,1.7 -2019,1,6,0,0,0.0,0.0,0.0,13.6,3.4 -2019,1,6,0,15,0.0,0.0,0.0,13.6,3.4 -2019,1,6,0,30,0.0,0.0,0.0,13.6,3.4 -2019,1,6,0,45,0.0,0.0,0.0,13.6,3.4 -2019,1,6,1,0,0.0,0.0,0.0,11.7,1.3 -2019,1,6,1,15,0.0,0.0,0.0,11.7,1.3 -2019,1,6,1,30,0.0,0.0,0.0,11.7,1.3 -2019,1,6,1,45,0.0,0.0,0.0,11.7,1.3 -2019,1,6,2,0,0.0,0.0,0.0,11.5,0.3 -2019,1,6,2,15,0.0,0.0,0.0,11.5,0.3 -2019,1,6,2,30,0.0,0.0,0.0,11.5,0.3 -2019,1,6,2,45,0.0,0.0,0.0,11.5,0.3 -2019,1,6,3,0,0.0,0.0,0.0,9.7,2.5 -2019,1,6,3,15,0.0,0.0,0.0,9.7,2.5 -2019,1,6,3,30,0.0,0.0,0.0,9.7,2.5 -2019,1,6,3,45,0.0,0.0,0.0,9.7,2.5 -2019,1,6,4,0,0.0,0.0,0.0,8.0,1.7 -2019,1,6,4,15,0.0,0.0,0.0,8.0,1.7 -2019,1,6,4,30,0.0,0.0,0.0,8.0,1.7 -2019,1,6,4,45,0.0,0.0,0.0,8.0,1.7 -2019,1,6,5,0,0.0,0.0,0.0,9.1,2.7 -2019,1,6,5,15,0.0,0.0,0.0,9.1,2.7 -2019,1,6,5,30,0.0,0.0,0.0,9.1,2.7 -2019,1,6,5,45,0.0,0.0,0.0,9.1,2.7 -2019,1,6,6,0,0.0,0.0,0.0,7.6,0.2 -2019,1,6,6,15,0.0,0.0,0.0,7.6,0.2 -2019,1,6,6,30,0.0,0.0,0.0,7.6,0.2 -2019,1,6,6,45,0.0,0.0,0.0,7.6,0.2 -2019,1,6,7,0,561.0,-52.8768996491396,25.0,10.9,1.5 -2019,1,6,7,15,561.0,-24.90823134362641,25.0,10.9,1.5 -2019,1,6,7,30,561.0,2.761516240780079,25.0,10.9,1.5 -2019,1,6,7,45,561.0,30.01385699698654,25.0,10.9,1.5 -2019,1,6,8,0,843.0,92.68298349338735,45.0,13.8,1.3 -2019,1,6,8,15,843.0,131.8572657731761,45.0,13.8,1.3 -2019,1,6,8,30,843.0,169.88928807872986,45.0,13.8,1.3 -2019,1,6,8,45,843.0,206.6161914517542,45.0,13.8,1.3 -2019,1,6,9,0,984.0,282.81093044262377,53.0,18.1,0.2 -2019,1,6,9,15,984.0,322.09052604814616,53.0,18.1,0.2 -2019,1,6,9,30,984.0,359.3186666830507,53.0,18.1,0.2 -2019,1,6,9,45,984.0,394.3359357337709,53.0,18.1,0.2 -2019,1,6,10,0,1052.0,454.83738601621235,55.0,20.2,1.5 -2019,1,6,10,15,1052.0,487.07710985173895,55.0,20.2,1.5 -2019,1,6,10,30,1052.0,516.5053075147944,55.0,20.2,1.5 -2019,1,6,10,45,1052.0,542.9959629450859,55.0,20.2,1.5 -2019,1,6,11,0,1081.0,581.5341500526258,56.0,22.0,1.5 -2019,1,6,11,15,1081.0,602.3817535278131,56.0,22.0,1.5 -2019,1,6,11,30,1081.0,619.9018609272385,56.0,22.0,1.5 -2019,1,6,11,45,1081.0,634.0194484612819,56.0,22.0,1.5 -2019,1,6,12,0,1079.0,643.5849337525615,56.0,24.0,1.6 -2019,1,6,12,15,1079.0,650.7177283878864,56.0,24.0,1.6 -2019,1,6,12,30,1079.0,654.317872459715,56.0,24.0,1.6 -2019,1,6,12,45,1079.0,654.369949598427,56.0,24.0,1.6 -2019,1,6,13,0,1045.0,631.1288739182547,55.0,24.5,2.5 -2019,1,6,13,15,1045.0,624.3208476664187,55.0,24.5,2.5 -2019,1,6,13,30,1045.0,614.1199930072611,55.0,24.5,2.5 -2019,1,6,13,45,1045.0,600.5699915664957,55.0,24.5,2.5 -2019,1,6,14,0,968.0,541.7698974177507,52.0,24.8,2.3 -2019,1,6,14,15,968.0,523.1878800846134,52.0,24.8,2.3 -2019,1,6,14,30,968.0,501.7036165026423,52.0,24.8,2.3 -2019,1,6,14,45,968.0,477.4091055868188,52.0,24.8,2.3 -2019,1,6,15,0,810.0,377.3789131526273,44.0,23.3,4.0 -2019,1,6,15,15,810.0,352.6175824381296,44.0,23.3,4.0 -2019,1,6,15,30,810.0,325.79453505345526,44.0,23.3,4.0 -2019,1,6,15,45,810.0,297.0246314054548,44.0,23.3,4.0 -2019,1,6,16,0,586.0,176.91926694085583,16.0,21.5,3.5 -2019,1,6,16,15,586.0,153.5615850712417,16.0,21.5,3.5 -2019,1,6,16,30,586.0,129.0793632296208,16.0,21.5,3.5 -2019,1,6,16,45,586.0,103.5774380484982,16.0,21.5,3.5 -2019,1,6,17,0,0.0,0.0,0.0,19.8,2.7 -2019,1,6,17,15,0.0,0.0,0.0,19.8,2.7 -2019,1,6,17,30,0.0,0.0,0.0,19.8,2.7 -2019,1,6,17,45,0.0,0.0,0.0,19.8,2.7 -2019,1,6,18,0,0.0,0.0,0.0,18.1,0.0 -2019,1,6,18,15,0.0,0.0,0.0,18.1,0.0 -2019,1,6,18,30,0.0,0.0,0.0,18.1,0.0 -2019,1,6,18,45,0.0,0.0,0.0,18.1,0.0 -2019,1,6,19,0,0.0,0.0,0.0,16.5,0.0 -2019,1,6,19,15,0.0,0.0,0.0,16.5,0.0 -2019,1,6,19,30,0.0,0.0,0.0,16.5,0.0 -2019,1,6,19,45,0.0,0.0,0.0,16.5,0.0 -2019,1,6,20,0,0.0,0.0,0.0,14.8,0.0 -2019,1,6,20,15,0.0,0.0,0.0,14.8,0.0 -2019,1,6,20,30,0.0,0.0,0.0,14.8,0.0 -2019,1,6,20,45,0.0,0.0,0.0,14.8,0.0 -2019,1,6,21,0,0.0,0.0,0.0,13.1,0.0 -2019,1,6,21,15,0.0,0.0,0.0,13.1,0.0 -2019,1,6,21,30,0.0,0.0,0.0,13.1,0.0 -2019,1,6,21,45,0.0,0.0,0.0,13.1,0.0 -2019,1,6,22,0,0.0,0.0,0.0,11.7,0.0 -2019,1,6,22,15,0.0,0.0,0.0,11.7,0.0 -2019,1,6,22,30,0.0,0.0,0.0,11.7,0.0 -2019,1,6,22,45,0.0,0.0,0.0,11.7,0.0 -2019,1,6,23,0,0.0,0.0,0.0,11.6,0.0 -2019,1,6,23,15,0.0,0.0,0.0,11.6,0.0 -2019,1,6,23,30,0.0,0.0,0.0,11.6,0.0 -2019,1,6,23,45,0.0,0.0,0.0,11.6,0.0 -2019,1,7,0,0,0.0,0.0,0.0,10.9,0.0 -2019,1,7,0,15,0.0,0.0,0.0,10.9,0.0 -2019,1,7,0,30,0.0,0.0,0.0,10.9,0.0 -2019,1,7,0,45,0.0,0.0,0.0,10.9,0.0 -2019,1,7,1,0,0.0,0.0,0.0,9.2,0.0 -2019,1,7,1,15,0.0,0.0,0.0,9.2,0.0 -2019,1,7,1,30,0.0,0.0,0.0,9.2,0.0 -2019,1,7,1,45,0.0,0.0,0.0,9.2,0.0 -2019,1,7,2,0,0.0,0.0,0.0,7.8,0.0 -2019,1,7,2,15,0.0,0.0,0.0,7.8,0.0 -2019,1,7,2,30,0.0,0.0,0.0,7.8,0.0 -2019,1,7,2,45,0.0,0.0,0.0,7.8,0.0 -2019,1,7,3,0,0.0,0.0,0.0,7.7,0.0 -2019,1,7,3,15,0.0,0.0,0.0,7.7,0.0 -2019,1,7,3,30,0.0,0.0,0.0,7.7,0.0 -2019,1,7,3,45,0.0,0.0,0.0,7.7,0.0 -2019,1,7,4,0,0.0,0.0,0.0,7.2,0.2 -2019,1,7,4,15,0.0,0.0,0.0,7.2,0.2 -2019,1,7,4,30,0.0,0.0,0.0,7.2,0.2 -2019,1,7,4,45,0.0,0.0,0.0,7.2,0.2 -2019,1,7,5,0,0.0,0.0,0.0,7.1,1.9 -2019,1,7,5,15,0.0,0.0,0.0,7.1,1.9 -2019,1,7,5,30,0.0,0.0,0.0,7.1,1.9 -2019,1,7,5,45,0.0,0.0,0.0,7.1,1.9 -2019,1,7,6,0,0.0,0.0,0.0,6.8,0.0 -2019,1,7,6,15,0.0,0.0,0.0,6.8,0.0 -2019,1,7,6,30,0.0,0.0,0.0,6.8,0.0 -2019,1,7,6,45,0.0,0.0,0.0,6.8,0.0 -2019,1,7,7,0,415.0,-27.19155981197555,30.0,8.1,0.0 -2019,1,7,7,15,415.0,-6.485719547921612,30.0,8.1,0.0 -2019,1,7,7,30,415.0,13.998822918352182,30.0,8.1,0.0 -2019,1,7,7,45,415.0,34.1743496311611,30.0,8.1,0.0 -2019,1,7,8,0,644.0,105.17271332937415,68.0,10.2,0.2 -2019,1,7,8,15,644.0,135.12259952921045,68.0,10.2,0.2 -2019,1,7,8,30,644.0,164.19919452246825,68.0,10.2,0.2 -2019,1,7,8,45,644.0,192.2779878654664,68.0,10.2,0.2 -2019,1,7,9,0,765.0,269.6547166437846,90.0,12.0,1.9 -2019,1,7,9,15,765.0,300.21583058566216,90.0,12.0,1.9 -2019,1,7,9,30,765.0,329.1808295946539,90.0,12.0,1.9 -2019,1,7,9,45,765.0,356.42568109821616,90.0,12.0,1.9 -2019,1,7,10,0,825.0,417.72263755436796,103.0,14.2,0.2 -2019,1,7,10,15,825.0,443.02524962549865,103.0,14.2,0.2 -2019,1,7,10,30,825.0,466.1212994930326,103.0,14.2,0.2 -2019,1,7,10,45,825.0,486.91188632566656,103.0,14.2,0.2 -2019,1,7,11,0,850.0,523.4991325975047,109.0,16.8,1.6 -2019,1,7,11,15,850.0,539.9044714530353,109.0,16.8,1.6 -2019,1,7,11,30,850.0,553.6913462377056,109.0,16.8,1.6 -2019,1,7,11,45,850.0,564.8007194370882,109.0,16.8,1.6 -2019,1,7,12,0,849.0,572.638918987237,109.0,17.9,2.1 -2019,1,7,12,15,849.0,578.2556264007092,109.0,17.9,2.1 -2019,1,7,12,30,849.0,581.0905539335535,109.0,17.9,2.1 -2019,1,7,12,45,849.0,581.1315619908481,109.0,17.9,2.1 -2019,1,7,13,0,819.0,554.7926631334076,102.0,19.0,2.2 -2019,1,7,13,15,819.0,549.4528670996098,102.0,19.0,2.2 -2019,1,7,13,30,819.0,541.4519456525707,102.0,19.0,2.2 -2019,1,7,13,45,819.0,530.8241599662508,102.0,19.0,2.2 -2019,1,7,14,0,753.0,470.12223436810257,88.0,19.4,2.6 -2019,1,7,14,15,753.0,455.65623921875545,88.0,19.4,2.6 -2019,1,7,14,30,753.0,438.93086181800015,88.0,19.4,2.6 -2019,1,7,14,45,753.0,420.0177227995937,88.0,19.4,2.6 -2019,1,7,15,0,619.0,319.6542431453996,64.0,20.0,2.7 -2019,1,7,15,15,619.0,300.7170570843678,64.0,20.0,2.7 -2019,1,7,15,30,619.0,280.20309340025744,64.0,20.0,2.7 -2019,1,7,15,45,619.0,258.20019603492506,64.0,20.0,2.7 -2019,1,7,16,0,432.0,140.20309631965213,21.0,20.1,3.4 -2019,1,7,16,15,432.0,122.97046069122871,21.0,20.1,3.4 -2019,1,7,16,30,432.0,104.90817134565287,21.0,20.1,3.4 -2019,1,7,16,45,432.0,86.09357377887544,21.0,20.1,3.4 -2019,1,7,17,0,0.0,0.0,0.0,20.5,4.3 -2019,1,7,17,15,0.0,0.0,0.0,20.5,4.3 -2019,1,7,17,30,0.0,0.0,0.0,20.5,4.3 -2019,1,7,17,45,0.0,0.0,0.0,20.5,4.3 -2019,1,7,18,0,0.0,0.0,0.0,19.9,5.8 -2019,1,7,18,15,0.0,0.0,0.0,19.9,5.8 -2019,1,7,18,30,0.0,0.0,0.0,19.9,5.8 -2019,1,7,18,45,0.0,0.0,0.0,19.9,5.8 -2019,1,7,19,0,0.0,0.0,0.0,19.3,6.1 -2019,1,7,19,15,0.0,0.0,0.0,19.3,6.1 -2019,1,7,19,30,0.0,0.0,0.0,19.3,6.1 -2019,1,7,19,45,0.0,0.0,0.0,19.3,6.1 -2019,1,7,20,0,0.0,0.0,0.0,18.8,5.1 -2019,1,7,20,15,0.0,0.0,0.0,18.8,5.1 -2019,1,7,20,30,0.0,0.0,0.0,18.8,5.1 -2019,1,7,20,45,0.0,0.0,0.0,18.8,5.1 -2019,1,7,21,0,0.0,0.0,0.0,17.7,4.9 -2019,1,7,21,15,0.0,0.0,0.0,17.7,4.9 -2019,1,7,21,30,0.0,0.0,0.0,17.7,4.9 -2019,1,7,21,45,0.0,0.0,0.0,17.7,4.9 -2019,1,7,22,0,0.0,0.0,0.0,17.2,3.3 -2019,1,7,22,15,0.0,0.0,0.0,17.2,3.3 -2019,1,7,22,30,0.0,0.0,0.0,17.2,3.3 -2019,1,7,22,45,0.0,0.0,0.0,17.2,3.3 -2019,1,7,23,0,0.0,0.0,0.0,17.1,5.1 -2019,1,7,23,15,0.0,0.0,0.0,17.1,5.1 -2019,1,7,23,30,0.0,0.0,0.0,17.1,5.1 -2019,1,7,23,45,0.0,0.0,0.0,17.1,5.1 -2019,1,8,0,0,0.0,0.0,0.0,16.6,5.0 -2019,1,8,0,15,0.0,0.0,0.0,16.6,5.0 -2019,1,8,0,30,0.0,0.0,0.0,16.6,5.0 -2019,1,8,0,45,0.0,0.0,0.0,16.6,5.0 -2019,1,8,1,0,0.0,0.0,0.0,16.0,4.0 -2019,1,8,1,15,0.0,0.0,0.0,16.0,4.0 -2019,1,8,1,30,0.0,0.0,0.0,16.0,4.0 -2019,1,8,1,45,0.0,0.0,0.0,16.0,4.0 -2019,1,8,2,0,0.0,0.0,0.0,15.7,3.0 -2019,1,8,2,15,0.0,0.0,0.0,15.7,3.0 -2019,1,8,2,30,0.0,0.0,0.0,15.7,3.0 -2019,1,8,2,45,0.0,0.0,0.0,15.7,3.0 -2019,1,8,3,0,0.0,0.0,0.0,16.0,2.2 -2019,1,8,3,15,0.0,0.0,0.0,16.0,2.2 -2019,1,8,3,30,0.0,0.0,0.0,16.0,2.2 -2019,1,8,3,45,0.0,0.0,0.0,16.0,2.2 -2019,1,8,4,0,0.0,0.0,0.0,15.5,3.2 -2019,1,8,4,15,0.0,0.0,0.0,15.5,3.2 -2019,1,8,4,30,0.0,0.0,0.0,15.5,3.2 -2019,1,8,4,45,0.0,0.0,0.0,15.5,3.2 -2019,1,8,5,0,0.0,0.0,0.0,15.0,4.3 -2019,1,8,5,15,0.0,0.0,0.0,15.0,4.3 -2019,1,8,5,30,0.0,0.0,0.0,15.0,4.3 -2019,1,8,5,45,0.0,0.0,0.0,15.0,4.3 -2019,1,8,6,0,0.0,0.0,0.0,15.1,9.4 -2019,1,8,6,15,0.0,0.0,0.0,15.1,9.4 -2019,1,8,6,30,0.0,0.0,0.0,15.1,9.4 -2019,1,8,6,45,0.0,0.0,0.0,15.1,9.4 -2019,1,8,7,0,476.0,-37.08832759146378,28.0,16.2,10.1 -2019,1,8,7,15,476.0,-13.319556642715682,28.0,16.2,10.1 -2019,1,8,7,30,476.0,10.195180825631738,28.0,16.2,10.1 -2019,1,8,7,45,476.0,33.35519109769087,28.0,16.2,10.1 -2019,1,8,8,0,731.0,101.09413844704142,58.0,17.4,7.8 -2019,1,8,8,15,731.0,135.11785066608581,58.0,17.4,7.8 -2019,1,8,8,30,731.0,168.14948536944956,58.0,17.4,7.8 -2019,1,8,8,45,731.0,200.0475960262242,58.0,17.4,7.8 -2019,1,8,9,0,862.0,276.62018961069884,73.0,19.0,5.5 -2019,1,8,9,15,862.0,311.0845339659213,73.0,19.0,5.5 -2019,1,8,9,30,862.0,343.74890942007215,73.0,19.0,5.5 -2019,1,8,9,45,862.0,374.4734421027309,73.0,19.0,5.5 -2019,1,8,10,0,927.0,436.02009932033366,81.0,20.1,8.1 -2019,1,8,10,15,927.0,464.47428445793383,81.0,20.1,8.1 -2019,1,8,10,30,927.0,490.44706849424546,81.0,20.1,8.1 -2019,1,8,10,45,927.0,513.827231980611,81.0,20.1,8.1 -2019,1,8,11,0,954.0,550.7238222482032,84.0,20.7,7.3 -2019,1,8,11,15,954.0,569.1514599190904,84.0,20.7,7.3 -2019,1,8,11,30,954.0,584.6378534269052,84.0,20.7,7.3 -2019,1,8,11,45,954.0,597.1166876571334,84.0,20.7,7.3 -2019,1,8,12,0,953.0,605.9867962143625,84.0,21.2,6.5 -2019,1,8,12,15,953.0,612.2966896061095,84.0,21.2,6.5 -2019,1,8,12,30,953.0,615.4814897369955,84.0,21.2,6.5 -2019,1,8,12,45,953.0,615.5275588039209,84.0,21.2,6.5 -2019,1,8,13,0,921.0,591.6908271448426,81.0,22.2,4.8 -2019,1,8,13,15,921.0,585.6810909696862,81.0,22.2,4.8 -2019,1,8,13,30,921.0,576.6763599367943,81.0,22.2,4.8 -2019,1,8,13,45,921.0,564.7151936868805,81.0,22.2,4.8 -2019,1,8,14,0,850.0,504.70520087363525,72.0,22.1,6.1 -2019,1,8,14,15,850.0,488.3623704330357,72.0,22.1,6.1 -2019,1,8,14,30,850.0,469.46702281998745,72.0,22.1,6.1 -2019,1,8,14,45,850.0,448.1000708138368,72.0,22.1,6.1 -2019,1,8,15,0,707.0,348.074798547359,55.0,21.5,5.1 -2019,1,8,15,15,707.0,326.42772357926634,55.0,21.5,5.1 -2019,1,8,15,30,707.0,302.97823597685806,55.0,21.5,5.1 -2019,1,8,15,45,707.0,277.82675004607825,55.0,21.5,5.1 -2019,1,8,16,0,490.0,155.89770080961014,20.0,20.8,5.1 -2019,1,8,16,15,490.0,136.33543982236517,20.0,20.8,5.1 -2019,1,8,16,30,490.0,115.83136686311964,20.0,20.8,5.1 -2019,1,8,16,45,490.0,94.4732835201276,20.0,20.8,5.1 -2019,1,8,17,0,0.0,0.0,0.0,19.9,4.9 -2019,1,8,17,15,0.0,0.0,0.0,19.9,4.9 -2019,1,8,17,30,0.0,0.0,0.0,19.9,4.9 -2019,1,8,17,45,0.0,0.0,0.0,19.9,4.9 -2019,1,8,18,0,0.0,0.0,0.0,19.3,3.4 -2019,1,8,18,15,0.0,0.0,0.0,19.3,3.4 -2019,1,8,18,30,0.0,0.0,0.0,19.3,3.4 -2019,1,8,18,45,0.0,0.0,0.0,19.3,3.4 -2019,1,8,19,0,0.0,0.0,0.0,18.8,1.7 -2019,1,8,19,15,0.0,0.0,0.0,18.8,1.7 -2019,1,8,19,30,0.0,0.0,0.0,18.8,1.7 -2019,1,8,19,45,0.0,0.0,0.0,18.8,1.7 -2019,1,8,20,0,0.0,0.0,0.0,18.2,3.0 -2019,1,8,20,15,0.0,0.0,0.0,18.2,3.0 -2019,1,8,20,30,0.0,0.0,0.0,18.2,3.0 -2019,1,8,20,45,0.0,0.0,0.0,18.2,3.0 -2019,1,8,21,0,0.0,0.0,0.0,17.2,2.6 -2019,1,8,21,15,0.0,0.0,0.0,17.2,2.6 -2019,1,8,21,30,0.0,0.0,0.0,17.2,2.6 -2019,1,8,21,45,0.0,0.0,0.0,17.2,2.6 -2019,1,8,22,0,0.0,0.0,0.0,17.1,2.6 -2019,1,8,22,15,0.0,0.0,0.0,17.1,2.6 -2019,1,8,22,30,0.0,0.0,0.0,17.1,2.6 -2019,1,8,22,45,0.0,0.0,0.0,17.1,2.6 -2019,1,8,23,0,0.0,0.0,0.0,16.4,2.5 -2019,1,8,23,15,0.0,0.0,0.0,16.4,2.5 -2019,1,8,23,30,0.0,0.0,0.0,16.4,2.5 -2019,1,8,23,45,0.0,0.0,0.0,16.4,2.5 -2019,1,9,0,0,0.0,0.0,0.0,13.8,2.2 -2019,1,9,0,15,0.0,0.0,0.0,13.8,2.2 -2019,1,9,0,30,0.0,0.0,0.0,13.8,2.2 -2019,1,9,0,45,0.0,0.0,0.0,13.8,2.2 -2019,1,9,1,0,0.0,0.0,0.0,12.7,2.3 -2019,1,9,1,15,0.0,0.0,0.0,12.7,2.3 -2019,1,9,1,30,0.0,0.0,0.0,12.7,2.3 -2019,1,9,1,45,0.0,0.0,0.0,12.7,2.3 -2019,1,9,2,0,0.0,0.0,0.0,11.5,0.2 -2019,1,9,2,15,0.0,0.0,0.0,11.5,0.2 -2019,1,9,2,30,0.0,0.0,0.0,11.5,0.2 -2019,1,9,2,45,0.0,0.0,0.0,11.5,0.2 -2019,1,9,3,0,0.0,0.0,0.0,10.0,1.7 -2019,1,9,3,15,0.0,0.0,0.0,10.0,1.7 -2019,1,9,3,30,0.0,0.0,0.0,10.0,1.7 -2019,1,9,3,45,0.0,0.0,0.0,10.0,1.7 -2019,1,9,4,0,0.0,0.0,0.0,9.9,3.1 -2019,1,9,4,15,0.0,0.0,0.0,9.9,3.1 -2019,1,9,4,30,0.0,0.0,0.0,9.9,3.1 -2019,1,9,4,45,0.0,0.0,0.0,9.9,3.1 -2019,1,9,5,0,0.0,0.0,0.0,9.5,3.0 -2019,1,9,5,15,0.0,0.0,0.0,9.5,3.0 -2019,1,9,5,30,0.0,0.0,0.0,9.5,3.0 -2019,1,9,5,45,0.0,0.0,0.0,9.5,3.0 -2019,1,9,6,0,0.0,0.0,0.0,10.1,2.1 -2019,1,9,6,15,0.0,0.0,0.0,10.1,2.1 -2019,1,9,6,30,0.0,0.0,0.0,10.1,2.1 -2019,1,9,6,45,0.0,0.0,0.0,10.1,2.1 -2019,1,9,7,0,544.0,-47.769565764094466,26.0,11.7,2.2 -2019,1,9,7,15,544.0,-20.581869771845653,26.0,11.7,2.2 -2019,1,9,7,30,544.0,6.315252296665964,26.0,11.7,2.2 -2019,1,9,7,45,544.0,32.80662283542196,26.0,11.7,2.2 -2019,1,9,8,0,822.0,97.52973349453916,48.0,16.7,3.2 -2019,1,9,8,15,822.0,135.82189390084767,48.0,16.7,3.2 -2019,1,9,8,30,822.0,172.99751560845792,48.0,16.7,3.2 -2019,1,9,8,45,822.0,208.89740689791302,48.0,16.7,3.2 -2019,1,9,9,0,962.0,285.64216672040857,57.0,21.3,4.0 -2019,1,9,9,15,962.0,324.13780809059716,57.0,21.3,4.0 -2019,1,9,9,30,962.0,360.6229380586549,57.0,21.3,4.0 -2019,1,9,9,45,962.0,394.94132169675964,57.0,21.3,4.0 -2019,1,9,10,0,1030.0,456.09603169443244,60.0,22.9,3.0 -2019,1,9,10,15,1030.0,487.73901164508993,60.0,22.9,3.0 -2019,1,9,10,30,1030.0,516.6225056038661,60.0,22.9,3.0 -2019,1,9,10,45,1030.0,542.6228300153546,60.0,22.9,3.0 -2019,1,9,11,0,1059.0,580.8647938846715,61.0,23.4,2.0 -2019,1,9,11,15,1059.0,601.3382415387039,61.0,23.4,2.0 -2019,1,9,11,30,1059.0,618.5439123085882,61.0,23.4,2.0 -2019,1,9,11,45,1059.0,632.4081288706248,61.0,23.4,2.0 -2019,1,9,12,0,1058.0,642.3220687698218,61.0,24.0,1.5 -2019,1,9,12,15,1058.0,649.3332068660093,61.0,24.0,1.5 -2019,1,9,12,30,1058.0,652.8719470855516,61.0,24.0,1.5 -2019,1,9,12,45,1058.0,652.9231359995509,61.0,24.0,1.5 -2019,1,9,13,0,1025.0,630.1311136762288,60.0,24.5,1.6 -2019,1,9,13,15,1025.0,623.4369955024891,60.0,24.5,1.6 -2019,1,9,13,30,1025.0,613.4068158240358,60.0,24.5,1.6 -2019,1,9,13,45,1025.0,600.0835254101123,60.0,24.5,1.6 -2019,1,9,14,0,951.0,541.7282848590744,56.0,24.9,2.5 -2019,1,9,14,15,951.0,523.4277998975024,56.0,24.9,2.5 -2019,1,9,14,30,951.0,502.2690400307154,56.0,24.9,2.5 -2019,1,9,14,45,951.0,478.34261031681524,56.0,24.9,2.5 -2019,1,9,15,0,800.0,379.9135372459214,47.0,23.9,2.0 -2019,1,9,15,15,800.0,355.3978807831128,47.0,23.9,2.0 -2019,1,9,15,30,800.0,328.84096336415917,47.0,23.9,2.0 -2019,1,9,15,45,800.0,300.35650578654077,47.0,23.9,2.0 -2019,1,9,16,0,550.0,172.35820697355,19.0,22.7,0.9 -2019,1,9,16,15,550.0,150.38166328699938,19.0,22.7,0.9 -2019,1,9,16,30,550.0,127.34707360256122,19.0,22.7,0.9 -2019,1,9,16,45,550.0,103.3530755695987,19.0,22.7,0.9 -2019,1,9,17,0,0.0,0.0,0.0,21.4,0.0 -2019,1,9,17,15,0.0,0.0,0.0,21.4,0.0 -2019,1,9,17,30,0.0,0.0,0.0,21.4,0.0 -2019,1,9,17,45,0.0,0.0,0.0,21.4,0.0 -2019,1,9,18,0,0.0,0.0,0.0,19.1,0.2 -2019,1,9,18,15,0.0,0.0,0.0,19.1,0.2 -2019,1,9,18,30,0.0,0.0,0.0,19.1,0.2 -2019,1,9,18,45,0.0,0.0,0.0,19.1,0.2 -2019,1,9,19,0,0.0,0.0,0.0,17.0,1.9 -2019,1,9,19,15,0.0,0.0,0.0,17.0,1.9 -2019,1,9,19,30,0.0,0.0,0.0,17.0,1.9 -2019,1,9,19,45,0.0,0.0,0.0,17.0,1.9 -2019,1,9,20,0,0.0,0.0,0.0,15.3,0.0 -2019,1,9,20,15,0.0,0.0,0.0,15.3,0.0 -2019,1,9,20,30,0.0,0.0,0.0,15.3,0.0 -2019,1,9,20,45,0.0,0.0,0.0,15.3,0.0 -2019,1,9,21,0,0.0,0.0,0.0,13.1,0.2 -2019,1,9,21,15,0.0,0.0,0.0,13.1,0.2 -2019,1,9,21,30,0.0,0.0,0.0,13.1,0.2 -2019,1,9,21,45,0.0,0.0,0.0,13.1,0.2 -2019,1,9,22,0,0.0,0.0,0.0,11.6,1.3 -2019,1,9,22,15,0.0,0.0,0.0,11.6,1.3 -2019,1,9,22,30,0.0,0.0,0.0,11.6,1.3 -2019,1,9,22,45,0.0,0.0,0.0,11.6,1.3 -2019,1,9,23,0,0.0,0.0,0.0,11.0,0.2 -2019,1,9,23,15,0.0,0.0,0.0,11.0,0.2 -2019,1,9,23,30,0.0,0.0,0.0,11.0,0.2 -2019,1,9,23,45,0.0,0.0,0.0,11.0,0.2 -2019,1,10,0,0,0.0,0.0,0.0,9.9,1.9 -2019,1,10,0,15,0.0,0.0,0.0,9.9,1.9 -2019,1,10,0,30,0.0,0.0,0.0,9.9,1.9 -2019,1,10,0,45,0.0,0.0,0.0,9.9,1.9 -2019,1,10,1,0,0.0,0.0,0.0,8.8,0.2 -2019,1,10,1,15,0.0,0.0,0.0,8.8,0.2 -2019,1,10,1,30,0.0,0.0,0.0,8.8,0.2 -2019,1,10,1,45,0.0,0.0,0.0,8.8,0.2 -2019,1,10,2,0,0.0,0.0,0.0,8.2,2.0 -2019,1,10,2,15,0.0,0.0,0.0,8.2,2.0 -2019,1,10,2,30,0.0,0.0,0.0,8.2,2.0 -2019,1,10,2,45,0.0,0.0,0.0,8.2,2.0 -2019,1,10,3,0,0.0,0.0,0.0,7.7,1.5 -2019,1,10,3,15,0.0,0.0,0.0,7.7,1.5 -2019,1,10,3,30,0.0,0.0,0.0,7.7,1.5 -2019,1,10,3,45,0.0,0.0,0.0,7.7,1.5 -2019,1,10,4,0,0.0,0.0,0.0,7.3,1.6 -2019,1,10,4,15,0.0,0.0,0.0,7.3,1.6 -2019,1,10,4,30,0.0,0.0,0.0,7.3,1.6 -2019,1,10,4,45,0.0,0.0,0.0,7.3,1.6 -2019,1,10,5,0,0.0,0.0,0.0,7.7,2.7 -2019,1,10,5,15,0.0,0.0,0.0,7.7,2.7 -2019,1,10,5,30,0.0,0.0,0.0,7.7,2.7 -2019,1,10,5,45,0.0,0.0,0.0,7.7,2.7 -2019,1,10,6,0,0.0,0.0,0.0,7.4,3.5 -2019,1,10,6,15,0.0,0.0,0.0,7.4,3.5 -2019,1,10,6,30,0.0,0.0,0.0,7.4,3.5 -2019,1,10,6,45,0.0,0.0,0.0,7.4,3.5 -2019,1,10,7,0,416.0,-25.913784581136532,30.0,9.2,2.3 -2019,1,10,7,15,416.0,-5.104420175773733,30.0,9.2,2.3 -2019,1,10,7,30,416.0,15.482539996900018,30.0,9.2,2.3 -2019,1,10,7,45,416.0,35.75893941285762,30.0,9.2,2.3 -2019,1,10,8,0,698.0,105.01752425241241,62.0,12.2,0.0 -2019,1,10,8,15,698.0,137.56261254179725,62.0,12.2,0.0 -2019,1,10,8,30,698.0,169.1587376454523,62.0,12.2,0.0 -2019,1,10,8,45,698.0,199.67060010495842,62.0,12.2,0.0 -2019,1,10,9,0,934.0,285.420752971192,62.0,16.2,0.0 -2019,1,10,9,15,934.0,322.829687885276,62.0,16.2,0.0 -2019,1,10,9,30,934.0,358.28486680233453,62.0,16.2,0.0 -2019,1,10,9,45,934.0,391.6344652030673,62.0,16.2,0.0 -2019,1,10,10,0,976.0,448.9571935626398,72.0,17.5,0.0 -2019,1,10,10,15,976.0,478.96829594828137,72.0,17.5,0.0 -2019,1,10,10,30,976.0,506.3622233155389,72.0,17.5,0.0 -2019,1,10,10,45,976.0,531.021670661833,72.0,17.5,0.0 -2019,1,10,11,0,1009.0,569.0989875306052,72.0,19.5,0.2 -2019,1,10,11,15,1009.0,588.6234087261944,72.0,19.5,0.2 -2019,1,10,11,30,1009.0,605.0315276097613,72.0,19.5,0.2 -2019,1,10,11,45,1009.0,618.2530820972269,72.0,19.5,0.2 -2019,1,10,12,0,616.0,507.58233554497406,168.0,20.7,1.3 -2019,1,10,12,15,616.0,511.6681208798345,168.0,20.7,1.3 -2019,1,10,12,30,616.0,513.7303442584823,168.0,20.7,1.3 -2019,1,10,12,45,616.0,513.760174923812,168.0,20.7,1.3 -2019,1,10,13,0,773.0,545.3710000168614,114.0,21.2,0.4 -2019,1,10,13,15,773.0,540.3180967653757,114.0,21.2,0.4 -2019,1,10,13,30,773.0,532.7470431635636,114.0,21.2,0.4 -2019,1,10,13,45,773.0,522.6902596252778,114.0,21.2,0.4 -2019,1,10,14,0,866.0,514.8567169324758,71.0,21.6,3.1 -2019,1,10,14,15,866.0,498.1768741363124,71.0,21.6,3.1 -2019,1,10,14,30,866.0,478.8918776413639,71.0,21.6,3.1 -2019,1,10,14,45,866.0,457.0843087633083,71.0,21.6,3.1 -2019,1,10,15,0,58.0,115.2345934756147,91.0,20.8,3.1 -2019,1,10,15,15,58.0,113.45560345044824,91.0,20.8,3.1 -2019,1,10,15,30,58.0,111.52848837363355,91.0,20.8,3.1 -2019,1,10,15,45,58.0,109.46150044778565,91.0,20.8,3.1 -2019,1,10,16,0,16.0,23.486480229664213,19.0,19.7,2.8 -2019,1,10,16,15,16.0,22.84658530827365,19.0,19.7,2.8 -2019,1,10,16,30,16.0,22.17588307385415,19.0,19.7,2.8 -2019,1,10,16,45,16.0,21.477245576341566,19.0,19.7,2.8 -2019,1,10,17,0,0.0,0.0,0.0,18.7,2.5 -2019,1,10,17,15,0.0,0.0,0.0,18.7,2.5 -2019,1,10,17,30,0.0,0.0,0.0,18.7,2.5 -2019,1,10,17,45,0.0,0.0,0.0,18.7,2.5 -2019,1,10,18,0,0.0,0.0,0.0,17.0,1.3 -2019,1,10,18,15,0.0,0.0,0.0,17.0,1.3 -2019,1,10,18,30,0.0,0.0,0.0,17.0,1.3 -2019,1,10,18,45,0.0,0.0,0.0,17.0,1.3 -2019,1,10,19,0,0.0,0.0,0.0,15.4,0.0 -2019,1,10,19,15,0.0,0.0,0.0,15.4,0.0 -2019,1,10,19,30,0.0,0.0,0.0,15.4,0.0 -2019,1,10,19,45,0.0,0.0,0.0,15.4,0.0 -2019,1,10,20,0,0.0,0.0,0.0,13.8,0.0 -2019,1,10,20,15,0.0,0.0,0.0,13.8,0.0 -2019,1,10,20,30,0.0,0.0,0.0,13.8,0.0 -2019,1,10,20,45,0.0,0.0,0.0,13.8,0.0 -2019,1,10,21,0,0.0,0.0,0.0,12.6,0.0 -2019,1,10,21,15,0.0,0.0,0.0,12.6,0.0 -2019,1,10,21,30,0.0,0.0,0.0,12.6,0.0 -2019,1,10,21,45,0.0,0.0,0.0,12.6,0.0 -2019,1,10,22,0,0.0,0.0,0.0,11.0,0.2 -2019,1,10,22,15,0.0,0.0,0.0,11.0,0.2 -2019,1,10,22,30,0.0,0.0,0.0,11.0,0.2 -2019,1,10,22,45,0.0,0.0,0.0,11.0,0.2 -2019,1,10,23,0,0.0,0.0,0.0,10.5,1.3 -2019,1,10,23,15,0.0,0.0,0.0,10.5,1.3 -2019,1,10,23,30,0.0,0.0,0.0,10.5,1.3 -2019,1,10,23,45,0.0,0.0,0.0,10.5,1.3 -2019,1,11,0,0,0.0,0.0,0.0,9.9,0.2 -2019,1,11,0,15,0.0,0.0,0.0,9.9,0.2 -2019,1,11,0,30,0.0,0.0,0.0,9.9,0.2 -2019,1,11,0,45,0.0,0.0,0.0,9.9,0.2 -2019,1,11,1,0,0.0,0.0,0.0,8.9,1.3 -2019,1,11,1,15,0.0,0.0,0.0,8.9,1.3 -2019,1,11,1,30,0.0,0.0,0.0,8.9,1.3 -2019,1,11,1,45,0.0,0.0,0.0,8.9,1.3 -2019,1,11,2,0,0.0,0.0,0.0,8.9,0.3 -2019,1,11,2,15,0.0,0.0,0.0,8.9,0.3 -2019,1,11,2,30,0.0,0.0,0.0,8.9,0.3 -2019,1,11,2,45,0.0,0.0,0.0,8.9,0.3 -2019,1,11,3,0,0.0,0.0,0.0,8.8,2.6 -2019,1,11,3,15,0.0,0.0,0.0,8.8,2.6 -2019,1,11,3,30,0.0,0.0,0.0,8.8,2.6 -2019,1,11,3,45,0.0,0.0,0.0,8.8,2.6 -2019,1,11,4,0,0.0,0.0,0.0,7.9,2.6 -2019,1,11,4,15,0.0,0.0,0.0,7.9,2.6 -2019,1,11,4,30,0.0,0.0,0.0,7.9,2.6 -2019,1,11,4,45,0.0,0.0,0.0,7.9,2.6 -2019,1,11,5,0,0.0,0.0,0.0,8.2,2.3 -2019,1,11,5,15,0.0,0.0,0.0,8.2,2.3 -2019,1,11,5,30,0.0,0.0,0.0,8.2,2.3 -2019,1,11,5,45,0.0,0.0,0.0,8.2,2.3 -2019,1,11,6,0,0.0,0.0,0.0,7.3,0.0 -2019,1,11,6,15,0.0,0.0,0.0,7.3,0.0 -2019,1,11,6,30,0.0,0.0,0.0,7.3,0.0 -2019,1,11,6,45,0.0,0.0,0.0,7.3,0.0 -2019,1,11,7,0,9.0,17.801673474403078,19.0,8.5,0.2 -2019,1,11,7,15,9.0,18.252301006924142,19.0,8.5,0.2 -2019,1,11,7,30,9.0,18.698112367809852,19.0,8.5,0.2 -2019,1,11,7,45,9.0,19.13719852437069,19.0,8.5,0.2 -2019,1,11,8,0,450.0,117.38396211372607,89.0,10.5,1.3 -2019,1,11,8,15,450.0,138.38555684993423,89.0,10.5,1.3 -2019,1,11,8,30,450.0,158.77477837427517,89.0,10.5,1.3 -2019,1,11,8,45,450.0,178.46431690997127,89.0,10.5,1.3 -2019,1,11,9,0,39.0,161.39205443195237,152.0,14.0,0.0 -2019,1,11,9,15,39.0,162.95557213418084,152.0,14.0,0.0 -2019,1,11,9,30,39.0,164.43743201604633,152.0,14.0,0.0 -2019,1,11,9,45,39.0,165.83128852603545,152.0,14.0,0.0 -2019,1,11,10,0,189.0,300.3279920203671,227.0,15.1,0.2 -2019,1,11,10,15,189.0,306.14505362991105,227.0,15.1,0.2 -2019,1,11,10,30,189.0,311.45482736547865,227.0,15.1,0.2 -2019,1,11,10,45,189.0,316.23457596076275,227.0,15.1,0.2 -2019,1,11,11,0,780.0,513.7237502794333,128.0,16.4,1.3 -2019,1,11,11,15,780.0,528.8312061034682,128.0,16.4,1.3 -2019,1,11,11,30,780.0,541.5273535951545,128.0,16.4,1.3 -2019,1,11,11,45,780.0,551.7578259017846,128.0,16.4,1.3 -2019,1,11,12,0,32.0,235.70169495673153,218.0,18.6,0.0 -2019,1,11,12,15,32.0,235.91414388274737,218.0,18.6,0.0 -2019,1,11,12,30,32.0,236.02137348638328,218.0,18.6,0.0 -2019,1,11,12,45,32.0,236.0229245940143,218.0,18.6,0.0 -2019,1,11,13,0,149.0,308.4343685615736,225.0,20.6,0.2 -2019,1,11,13,15,149.0,307.45947436330243,225.0,20.6,0.2 -2019,1,11,13,30,149.0,305.9987346926911,225.0,20.6,0.2 -2019,1,11,13,45,149.0,304.0584046612659,225.0,20.6,0.2 -2019,1,11,14,0,707.0,462.68646103016937,99.0,20.6,1.3 -2019,1,11,14,15,707.0,449.0562304274535,99.0,20.6,1.3 -2019,1,11,14,30,707.0,433.29715208295136,99.0,20.6,1.3 -2019,1,11,14,45,707.0,415.47670878951214,99.0,20.6,1.3 -2019,1,11,15,0,819.0,389.6686298938217,46.0,20.6,0.1 -2019,1,11,15,15,819.0,364.5243530496412,46.0,20.6,0.1 -2019,1,11,15,30,819.0,337.2864740753121,46.0,20.6,0.1 -2019,1,11,15,45,819.0,308.07162975023795,46.0,20.6,0.1 -2019,1,11,16,0,210.0,89.23203141614435,30.0,19.9,0.8 -2019,1,11,16,15,210.0,80.8254832828928,30.0,19.9,0.8 -2019,1,11,16,30,210.0,72.01420751206103,30.0,19.9,0.8 -2019,1,11,16,45,210.0,62.835935339231455,30.0,19.9,0.8 -2019,1,11,17,0,0.0,0.0,0.0,19.1,1.3 -2019,1,11,17,15,0.0,0.0,0.0,19.1,1.3 -2019,1,11,17,30,0.0,0.0,0.0,19.1,1.3 -2019,1,11,17,45,0.0,0.0,0.0,19.1,1.3 -2019,1,11,18,0,0.0,0.0,0.0,17.1,0.0 -2019,1,11,18,15,0.0,0.0,0.0,17.1,0.0 -2019,1,11,18,30,0.0,0.0,0.0,17.1,0.0 -2019,1,11,18,45,0.0,0.0,0.0,17.1,0.0 -2019,1,11,19,0,0.0,0.0,0.0,16.5,0.0 -2019,1,11,19,15,0.0,0.0,0.0,16.5,0.0 -2019,1,11,19,30,0.0,0.0,0.0,16.5,0.0 -2019,1,11,19,45,0.0,0.0,0.0,16.5,0.0 -2019,1,11,20,0,0.0,0.0,0.0,14.9,0.2 -2019,1,11,20,15,0.0,0.0,0.0,14.9,0.2 -2019,1,11,20,30,0.0,0.0,0.0,14.9,0.2 -2019,1,11,20,45,0.0,0.0,0.0,14.9,0.2 -2019,1,11,21,0,0.0,0.0,0.0,14.5,1.5 -2019,1,11,21,15,0.0,0.0,0.0,14.5,1.5 -2019,1,11,21,30,0.0,0.0,0.0,14.5,1.5 -2019,1,11,21,45,0.0,0.0,0.0,14.5,1.5 -2019,1,11,22,0,0.0,0.0,0.0,15.5,1.5 -2019,1,11,22,15,0.0,0.0,0.0,15.5,1.5 -2019,1,11,22,30,0.0,0.0,0.0,15.5,1.5 -2019,1,11,22,45,0.0,0.0,0.0,15.5,1.5 -2019,1,11,23,0,0.0,0.0,0.0,15.1,1.5 -2019,1,11,23,15,0.0,0.0,0.0,15.1,1.5 -2019,1,11,23,30,0.0,0.0,0.0,15.1,1.5 -2019,1,11,23,45,0.0,0.0,0.0,15.1,1.5 -2019,1,12,0,0,0.0,0.0,0.0,15.3,1.6 -2019,1,12,0,15,0.0,0.0,0.0,15.3,1.6 -2019,1,12,0,30,0.0,0.0,0.0,15.3,1.6 -2019,1,12,0,45,0.0,0.0,0.0,15.3,1.6 -2019,1,12,1,0,0.0,0.0,0.0,13.2,2.1 -2019,1,12,1,15,0.0,0.0,0.0,13.2,2.1 -2019,1,12,1,30,0.0,0.0,0.0,13.2,2.1 -2019,1,12,1,45,0.0,0.0,0.0,13.2,2.1 -2019,1,12,2,0,0.0,0.0,0.0,12.8,2.1 -2019,1,12,2,15,0.0,0.0,0.0,12.8,2.1 -2019,1,12,2,30,0.0,0.0,0.0,12.8,2.1 -2019,1,12,2,45,0.0,0.0,0.0,12.8,2.1 -2019,1,12,3,0,0.0,0.0,0.0,12.8,2.0 -2019,1,12,3,15,0.0,0.0,0.0,12.8,2.0 -2019,1,12,3,30,0.0,0.0,0.0,12.8,2.0 -2019,1,12,3,45,0.0,0.0,0.0,12.8,2.0 -2019,1,12,4,0,0.0,0.0,0.0,12.9,1.6 -2019,1,12,4,15,0.0,0.0,0.0,12.9,1.6 -2019,1,12,4,30,0.0,0.0,0.0,12.9,1.6 -2019,1,12,4,45,0.0,0.0,0.0,12.9,1.6 -2019,1,12,5,0,0.0,0.0,0.0,13.4,2.5 -2019,1,12,5,15,0.0,0.0,0.0,13.4,2.5 -2019,1,12,5,30,0.0,0.0,0.0,13.4,2.5 -2019,1,12,5,45,0.0,0.0,0.0,13.4,2.5 -2019,1,12,6,0,0.0,0.0,0.0,14.5,2.3 -2019,1,12,6,15,0.0,0.0,0.0,14.5,2.3 -2019,1,12,6,30,0.0,0.0,0.0,14.5,2.3 -2019,1,12,6,45,0.0,0.0,0.0,14.5,2.3 -2019,1,12,7,0,90.0,22.13585256181983,34.0,15.9,3.5 -2019,1,12,7,15,90.0,26.646560219137275,34.0,15.9,3.5 -2019,1,12,7,30,90.0,31.109058788667685,34.0,15.9,3.5 -2019,1,12,7,45,90.0,35.50423916644108,34.0,15.9,3.5 -2019,1,12,8,0,627.0,111.49918759005922,71.0,18.1,3.0 -2019,1,12,8,15,627.0,140.79019164901968,71.0,18.1,3.0 -2019,1,12,8,30,627.0,169.2271164602037,71.0,18.1,3.0 -2019,1,12,8,45,627.0,196.68819074585377,71.0,18.1,3.0 -2019,1,12,9,0,769.0,277.49270669045154,91.0,20.9,2.7 -2019,1,12,9,15,769.0,308.3523920472039,91.0,20.9,2.7 -2019,1,12,9,30,769.0,337.60036898535145,91.0,20.9,2.7 -2019,1,12,9,45,769.0,365.1113931774141,91.0,20.9,2.7 -2019,1,12,10,0,869.0,433.74914820648564,95.0,22.8,3.4 -2019,1,12,10,15,869.0,460.5216276646135,95.0,22.8,3.4 -2019,1,12,10,30,869.0,484.95936235003535,95.0,22.8,3.4 -2019,1,12,10,45,869.0,506.95770613107914,95.0,22.8,3.4 -2019,1,12,11,0,865.0,537.4366246201373,108.0,22.8,5.6 -2019,1,12,11,15,865.0,554.2068846276154,108.0,22.8,5.6 -2019,1,12,11,30,865.0,568.3004353226391,108.0,22.8,5.6 -2019,1,12,11,45,865.0,579.6569259574512,108.0,22.8,5.6 -2019,1,12,12,0,892.0,595.2174934748448,100.0,22.8,4.8 -2019,1,12,12,15,892.0,601.1453321273576,100.0,22.8,4.8 -2019,1,12,12,30,892.0,604.1372973071635,100.0,22.8,4.8 -2019,1,12,12,45,892.0,604.1805769600278,100.0,22.8,4.8 -2019,1,12,13,0,761.0,545.6572468163549,118.0,22.7,6.3 -2019,1,12,13,15,761.0,540.6731917447821,118.0,22.7,6.3 -2019,1,12,13,30,761.0,533.2052973040634,118.0,22.7,6.3 -2019,1,12,13,45,761.0,523.2855421646859,118.0,22.7,6.3 -2019,1,12,14,0,800.0,496.09477449783475,83.0,22.1,7.0 -2019,1,12,14,15,800.0,480.6564297446453,83.0,22.1,7.0 -2019,1,12,14,30,800.0,462.8068355913032,83.0,22.1,7.0 -2019,1,12,14,45,800.0,442.6224267402926,83.0,22.1,7.0 -2019,1,12,15,0,750.0,370.1152836835126,54.0,21.5,5.7 -2019,1,12,15,15,750.0,347.0667410736228,54.0,21.5,5.7 -2019,1,12,15,30,750.0,322.09909463728695,54.0,21.5,5.7 -2019,1,12,15,45,750.0,295.3192596696482,54.0,21.5,5.7 -2019,1,12,16,0,548.0,178.51649002849808,23.0,20.8,6.0 -2019,1,12,16,15,548.0,156.55782539579607,23.0,20.8,6.0 -2019,1,12,16,30,548.0,133.54197554029662,23.0,20.8,6.0 -2019,1,12,16,45,548.0,109.56749786453848,23.0,20.8,6.0 -2019,1,12,17,0,0.0,0.0,0.0,19.9,6.1 -2019,1,12,17,15,0.0,0.0,0.0,19.9,6.1 -2019,1,12,17,30,0.0,0.0,0.0,19.9,6.1 -2019,1,12,17,45,0.0,0.0,0.0,19.9,6.1 -2019,1,12,18,0,0.0,0.0,0.0,18.8,4.9 -2019,1,12,18,15,0.0,0.0,0.0,18.8,4.9 -2019,1,12,18,30,0.0,0.0,0.0,18.8,4.9 -2019,1,12,18,45,0.0,0.0,0.0,18.8,4.9 -2019,1,12,19,0,0.0,0.0,0.0,18.2,3.0 -2019,1,12,19,15,0.0,0.0,0.0,18.2,3.0 -2019,1,12,19,30,0.0,0.0,0.0,18.2,3.0 -2019,1,12,19,45,0.0,0.0,0.0,18.2,3.0 -2019,1,12,20,0,0.0,0.0,0.0,16.9,2.5 -2019,1,12,20,15,0.0,0.0,0.0,16.9,2.5 -2019,1,12,20,30,0.0,0.0,0.0,16.9,2.5 -2019,1,12,20,45,0.0,0.0,0.0,16.9,2.5 -2019,1,12,21,0,0.0,0.0,0.0,15.2,2.2 -2019,1,12,21,15,0.0,0.0,0.0,15.2,2.2 -2019,1,12,21,30,0.0,0.0,0.0,15.2,2.2 -2019,1,12,21,45,0.0,0.0,0.0,15.2,2.2 -2019,1,12,22,0,0.0,0.0,0.0,16.4,3.0 -2019,1,12,22,15,0.0,0.0,0.0,16.4,3.0 -2019,1,12,22,30,0.0,0.0,0.0,16.4,3.0 -2019,1,12,22,45,0.0,0.0,0.0,16.4,3.0 -2019,1,12,23,0,0.0,0.0,0.0,14.1,1.9 -2019,1,12,23,15,0.0,0.0,0.0,14.1,1.9 -2019,1,12,23,30,0.0,0.0,0.0,14.1,1.9 -2019,1,12,23,45,0.0,0.0,0.0,14.1,1.9 -2019,1,13,0,0,0.0,0.0,0.0,11.9,0.2 -2019,1,13,0,15,0.0,0.0,0.0,11.9,0.2 -2019,1,13,0,30,0.0,0.0,0.0,11.9,0.2 -2019,1,13,0,45,0.0,0.0,0.0,11.9,0.2 -2019,1,13,1,0,0.0,0.0,0.0,9.1,1.6 -2019,1,13,1,15,0.0,0.0,0.0,9.1,1.6 -2019,1,13,1,30,0.0,0.0,0.0,9.1,1.6 -2019,1,13,1,45,0.0,0.0,0.0,9.1,1.6 -2019,1,13,2,0,0.0,0.0,0.0,7.1,2.2 -2019,1,13,2,15,0.0,0.0,0.0,7.1,2.2 -2019,1,13,2,30,0.0,0.0,0.0,7.1,2.2 -2019,1,13,2,45,0.0,0.0,0.0,7.1,2.2 -2019,1,13,3,0,0.0,0.0,0.0,6.4,2.5 -2019,1,13,3,15,0.0,0.0,0.0,6.4,2.5 -2019,1,13,3,30,0.0,0.0,0.0,6.4,2.5 -2019,1,13,3,45,0.0,0.0,0.0,6.4,2.5 -2019,1,13,4,0,0.0,0.0,0.0,4.8,2.1 -2019,1,13,4,15,0.0,0.0,0.0,4.8,2.1 -2019,1,13,4,30,0.0,0.0,0.0,4.8,2.1 -2019,1,13,4,45,0.0,0.0,0.0,4.8,2.1 -2019,1,13,5,0,0.0,0.0,0.0,7.6,2.0 -2019,1,13,5,15,0.0,0.0,0.0,7.6,2.0 -2019,1,13,5,30,0.0,0.0,0.0,7.6,2.0 -2019,1,13,5,45,0.0,0.0,0.0,7.6,2.0 -2019,1,13,6,0,0.0,0.0,0.0,6.4,1.7 -2019,1,13,6,15,0.0,0.0,0.0,6.4,1.7 -2019,1,13,6,30,0.0,0.0,0.0,6.4,1.7 -2019,1,13,6,45,0.0,0.0,0.0,6.4,1.7 -2019,1,13,7,0,592.0,-53.2191966093652,24.0,9.4,3.0 -2019,1,13,7,15,592.0,-23.518439095127455,24.0,9.4,3.0 -2019,1,13,7,30,592.0,5.864885649105066,24.0,9.4,3.0 -2019,1,13,7,45,592.0,34.8049537157677,24.0,9.4,3.0 -2019,1,13,8,0,883.0,100.43586502273256,42.0,13.5,2.7 -2019,1,13,8,15,883.0,141.72835476118672,42.0,13.5,2.7 -2019,1,13,8,30,883.0,181.81682095358425,42.0,13.5,2.7 -2019,1,13,8,45,883.0,220.52959863319597,42.0,13.5,2.7 -2019,1,13,9,0,1027.0,297.8775066973466,47.0,19.2,3.4 -2019,1,13,9,15,1027.0,339.1327587941989,47.0,19.2,3.4 -2019,1,13,9,30,1027.0,378.2333733324537,47.0,19.2,3.4 -2019,1,13,9,45,1027.0,415.01191547782304,47.0,19.2,3.4 -2019,1,13,10,0,1097.0,477.7322790375317,48.0,21.8,2.1 -2019,1,13,10,15,1097.0,511.56361071377495,48.0,21.8,2.1 -2019,1,13,10,30,1097.0,542.44461704162,48.0,21.8,2.1 -2019,1,13,10,45,1097.0,570.2430608110319,48.0,21.8,2.1 -2019,1,13,11,0,1127.0,608.7945056791199,47.0,22.4,2.2 -2019,1,13,11,15,1127.0,630.666644433796,47.0,22.4,2.2 -2019,1,13,11,30,1127.0,649.0477605411293,47.0,22.4,2.2 -2019,1,13,11,45,1127.0,663.8591432400281,47.0,22.4,2.2 -2019,1,13,12,0,1126.0,674.4801031706236,47.0,23.9,3.0 -2019,1,13,12,15,1126.0,681.9706505980967,47.0,23.9,3.0 -2019,1,13,12,30,1126.0,685.7513636698307,47.0,23.9,3.0 -2019,1,13,12,45,1126.0,685.8060527920265,47.0,23.9,3.0 -2019,1,13,13,0,1094.0,665.0844806861004,48.0,23.9,2.3 -2019,1,13,13,15,1094.0,657.9121691475015,48.0,23.9,2.3 -2019,1,13,13,30,1094.0,647.1654850324516,48.0,23.9,2.3 -2019,1,13,13,45,1094.0,632.8904472921923,48.0,23.9,2.3 -2019,1,13,14,0,1021.0,576.3037437754103,47.0,23.8,3.9 -2019,1,13,14,15,1021.0,556.5804184698789,47.0,23.8,3.9 -2019,1,13,14,30,1021.0,533.7765908778467,47.0,23.8,3.9 -2019,1,13,14,45,1021.0,507.98991048997095,47.0,23.8,3.9 -2019,1,13,15,0,871.0,409.8150114127117,41.0,23.2,2.7 -2019,1,13,15,15,871.0,383.0206131080429,41.0,23.2,2.7 -2019,1,13,15,30,871.0,353.99521767769255,41.0,23.2,2.7 -2019,1,13,15,45,871.0,322.8631163209535,41.0,23.2,2.7 -2019,1,13,16,0,577.0,186.79121422647626,22.0,22.1,3.4 -2019,1,13,16,15,577.0,163.64687274903022,22.0,22.1,3.4 -2019,1,13,16,30,577.0,139.38826243007642,22.0,22.1,3.4 -2019,1,13,16,45,577.0,114.11926236325048,22.0,22.1,3.4 -2019,1,13,17,0,0.0,0.0,0.0,20.7,4.0 -2019,1,13,17,15,0.0,0.0,0.0,20.7,4.0 -2019,1,13,17,30,0.0,0.0,0.0,20.7,4.0 -2019,1,13,17,45,0.0,0.0,0.0,20.7,4.0 -2019,1,13,18,0,0.0,0.0,0.0,17.7,3.5 -2019,1,13,18,15,0.0,0.0,0.0,17.7,3.5 -2019,1,13,18,30,0.0,0.0,0.0,17.7,3.5 -2019,1,13,18,45,0.0,0.0,0.0,17.7,3.5 -2019,1,13,19,0,0.0,0.0,0.0,16.9,2.5 -2019,1,13,19,15,0.0,0.0,0.0,16.9,2.5 -2019,1,13,19,30,0.0,0.0,0.0,16.9,2.5 -2019,1,13,19,45,0.0,0.0,0.0,16.9,2.5 -2019,1,13,20,0,0.0,0.0,0.0,14.4,1.6 -2019,1,13,20,15,0.0,0.0,0.0,14.4,1.6 -2019,1,13,20,30,0.0,0.0,0.0,14.4,1.6 -2019,1,13,20,45,0.0,0.0,0.0,14.4,1.6 -2019,1,13,21,0,0.0,0.0,0.0,14.4,2.6 -2019,1,13,21,15,0.0,0.0,0.0,14.4,2.6 -2019,1,13,21,30,0.0,0.0,0.0,14.4,2.6 -2019,1,13,21,45,0.0,0.0,0.0,14.4,2.6 -2019,1,13,22,0,0.0,0.0,0.0,14.1,2.7 -2019,1,13,22,15,0.0,0.0,0.0,14.1,2.7 -2019,1,13,22,30,0.0,0.0,0.0,14.1,2.7 -2019,1,13,22,45,0.0,0.0,0.0,14.1,2.7 -2019,1,13,23,0,0.0,0.0,0.0,11.6,3.2 -2019,1,13,23,15,0.0,0.0,0.0,11.6,3.2 -2019,1,13,23,30,0.0,0.0,0.0,11.6,3.2 -2019,1,13,23,45,0.0,0.0,0.0,11.6,3.2 -2019,1,14,0,0,0.0,0.0,0.0,10.5,3.2 -2019,1,14,0,15,0.0,0.0,0.0,10.5,3.2 -2019,1,14,0,30,0.0,0.0,0.0,10.5,3.2 -2019,1,14,0,45,0.0,0.0,0.0,10.5,3.2 -2019,1,14,1,0,0.0,0.0,0.0,9.7,0.0 -2019,1,14,1,15,0.0,0.0,0.0,9.7,0.0 -2019,1,14,1,30,0.0,0.0,0.0,9.7,0.0 -2019,1,14,1,45,0.0,0.0,0.0,9.7,0.0 -2019,1,14,2,0,0.0,0.0,0.0,7.9,0.2 -2019,1,14,2,15,0.0,0.0,0.0,7.9,0.2 -2019,1,14,2,30,0.0,0.0,0.0,7.9,0.2 -2019,1,14,2,45,0.0,0.0,0.0,7.9,0.2 -2019,1,14,3,0,0.0,0.0,0.0,8.2,1.9 -2019,1,14,3,15,0.0,0.0,0.0,8.2,1.9 -2019,1,14,3,30,0.0,0.0,0.0,8.2,1.9 -2019,1,14,3,45,0.0,0.0,0.0,8.2,1.9 -2019,1,14,4,0,0.0,0.0,0.0,7.0,0.2 -2019,1,14,4,15,0.0,0.0,0.0,7.0,0.2 -2019,1,14,4,30,0.0,0.0,0.0,7.0,0.2 -2019,1,14,4,45,0.0,0.0,0.0,7.0,0.2 -2019,1,14,5,0,0.0,0.0,0.0,5.7,1.6 -2019,1,14,5,15,0.0,0.0,0.0,5.7,1.6 -2019,1,14,5,30,0.0,0.0,0.0,5.7,1.6 -2019,1,14,5,45,0.0,0.0,0.0,5.7,1.6 -2019,1,14,6,0,0.0,0.0,0.0,6.8,2.2 -2019,1,14,6,15,0.0,0.0,0.0,6.8,2.2 -2019,1,14,6,30,0.0,0.0,0.0,6.8,2.2 -2019,1,14,6,45,0.0,0.0,0.0,6.8,2.2 -2019,1,14,7,0,18.0,21.678186960965093,24.0,7.9,2.3 -2019,1,14,7,15,18.0,22.58220709215068,24.0,7.9,2.3 -2019,1,14,7,30,18.0,23.476565327869626,24.0,7.9,2.3 -2019,1,14,7,45,18.0,24.357431888852215,24.0,7.9,2.3 -2019,1,14,8,0,196.0,122.29571193184657,109.0,9.4,0.2 -2019,1,14,8,15,196.0,131.47113745745594,109.0,9.4,0.2 -2019,1,14,8,30,196.0,140.37902211914803,109.0,9.4,0.2 -2019,1,14,8,45,196.0,148.98122098723803,109.0,9.4,0.2 -2019,1,14,9,0,852.0,286.70023062734424,77.0,13.0,1.9 -2019,1,14,9,15,852.0,320.9618726932619,77.0,13.0,1.9 -2019,1,14,9,30,852.0,353.43413238815054,77.0,13.0,1.9 -2019,1,14,9,45,852.0,383.97795851076546,77.0,13.0,1.9 -2019,1,14,10,0,93.0,262.6173918625449,226.0,14.6,0.0 -2019,1,14,10,15,93.0,265.48853729291875,226.0,14.6,0.0 -2019,1,14,10,30,93.0,268.10929904867896,226.0,14.6,0.0 -2019,1,14,10,45,93.0,270.4684546256407,226.0,14.6,0.0 -2019,1,14,11,0,366.0,413.22000046476126,230.0,16.3,0.0 -2019,1,14,11,15,366.0,420.33063239833086,230.0,16.3,0.0 -2019,1,14,11,30,366.0,426.30633292919515,230.0,16.3,0.0 -2019,1,14,11,45,366.0,431.12151319027464,230.0,16.3,0.0 -2019,1,14,12,0,1032.0,645.3435288616012,68.0,17.8,0.0 -2019,1,14,12,15,1032.0,652.2160271783222,68.0,17.8,0.0 -2019,1,14,12,30,1032.0,655.6847915741257,68.0,17.8,0.0 -2019,1,14,12,45,1032.0,655.7349682673346,68.0,17.8,0.0 -2019,1,14,13,0,981.0,626.4877731474475,71.0,17.9,0.2 -2019,1,14,13,15,981.0,620.0494820606698,71.0,17.9,0.2 -2019,1,14,13,30,981.0,610.4026227213923,71.0,17.9,0.2 -2019,1,14,13,45,981.0,597.5885044623187,71.0,17.9,0.2 -2019,1,14,14,0,295.0,320.56298653924836,167.0,18.3,1.3 -2019,1,14,14,15,295.0,314.85824216311437,167.0,18.3,1.3 -2019,1,14,14,30,295.0,308.2624980279461,167.0,18.3,1.3 -2019,1,14,14,45,295.0,300.80399812272765,167.0,18.3,1.3 -2019,1,14,15,0,775.0,382.7419582679816,53.0,18.0,0.0 -2019,1,14,15,15,775.0,358.8755352659331,53.0,18.0,0.0 -2019,1,14,15,30,775.0,333.0219088002191,53.0,18.0,0.0 -2019,1,14,15,45,775.0,305.29178806848716,53.0,18.0,0.0 -2019,1,14,16,0,556.0,183.84384289539767,24.0,17.4,0.0 -2019,1,14,16,15,556.0,161.51822003792108,24.0,17.4,0.0 -2019,1,14,16,30,556.0,138.11774499933682,24.0,17.4,0.0 -2019,1,14,16,45,556.0,113.74262220626612,24.0,17.4,0.0 -2019,1,14,17,0,0.0,0.0,0.0,16.6,0.0 -2019,1,14,17,15,0.0,0.0,0.0,16.6,0.0 -2019,1,14,17,30,0.0,0.0,0.0,16.6,0.0 -2019,1,14,17,45,0.0,0.0,0.0,16.6,0.0 -2019,1,14,18,0,0.0,0.0,0.0,15.3,0.2 -2019,1,14,18,15,0.0,0.0,0.0,15.3,0.2 -2019,1,14,18,30,0.0,0.0,0.0,15.3,0.2 -2019,1,14,18,45,0.0,0.0,0.0,15.3,0.2 -2019,1,14,19,0,0.0,0.0,0.0,13.0,2.0 -2019,1,14,19,15,0.0,0.0,0.0,13.0,2.0 -2019,1,14,19,30,0.0,0.0,0.0,13.0,2.0 -2019,1,14,19,45,0.0,0.0,0.0,13.0,2.0 -2019,1,14,20,0,0.0,0.0,0.0,10.5,1.3 -2019,1,14,20,15,0.0,0.0,0.0,10.5,1.3 -2019,1,14,20,30,0.0,0.0,0.0,10.5,1.3 -2019,1,14,20,45,0.0,0.0,0.0,10.5,1.3 -2019,1,14,21,0,0.0,0.0,0.0,9.9,0.0 -2019,1,14,21,15,0.0,0.0,0.0,9.9,0.0 -2019,1,14,21,30,0.0,0.0,0.0,9.9,0.0 -2019,1,14,21,45,0.0,0.0,0.0,9.9,0.0 -2019,1,14,22,0,0.0,0.0,0.0,8.8,0.2 -2019,1,14,22,15,0.0,0.0,0.0,8.8,0.2 -2019,1,14,22,30,0.0,0.0,0.0,8.8,0.2 -2019,1,14,22,45,0.0,0.0,0.0,8.8,0.2 -2019,1,14,23,0,0.0,0.0,0.0,7.8,1.5 -2019,1,14,23,15,0.0,0.0,0.0,7.8,1.5 -2019,1,14,23,30,0.0,0.0,0.0,7.8,1.5 -2019,1,14,23,45,0.0,0.0,0.0,7.8,1.5 -2019,1,15,0,0,0.0,0.0,0.0,7.6,1.7 -2019,1,15,0,15,0.0,0.0,0.0,7.6,1.7 -2019,1,15,0,30,0.0,0.0,0.0,7.6,1.7 -2019,1,15,0,45,0.0,0.0,0.0,7.6,1.7 -2019,1,15,1,0,0.0,0.0,0.0,6.2,3.0 -2019,1,15,1,15,0.0,0.0,0.0,6.2,3.0 -2019,1,15,1,30,0.0,0.0,0.0,6.2,3.0 -2019,1,15,1,45,0.0,0.0,0.0,6.2,3.0 -2019,1,15,2,0,0.0,0.0,0.0,7.2,2.3 -2019,1,15,2,15,0.0,0.0,0.0,7.2,2.3 -2019,1,15,2,30,0.0,0.0,0.0,7.2,2.3 -2019,1,15,2,45,0.0,0.0,0.0,7.2,2.3 -2019,1,15,3,0,0.0,0.0,0.0,7.1,0.3 -2019,1,15,3,15,0.0,0.0,0.0,7.1,0.3 -2019,1,15,3,30,0.0,0.0,0.0,7.1,0.3 -2019,1,15,3,45,0.0,0.0,0.0,7.1,0.3 -2019,1,15,4,0,0.0,0.0,0.0,6.2,2.5 -2019,1,15,4,15,0.0,0.0,0.0,6.2,2.5 -2019,1,15,4,30,0.0,0.0,0.0,6.2,2.5 -2019,1,15,4,45,0.0,0.0,0.0,6.2,2.5 -2019,1,15,5,0,0.0,0.0,0.0,6.7,2.0 -2019,1,15,5,15,0.0,0.0,0.0,6.7,2.0 -2019,1,15,5,30,0.0,0.0,0.0,6.7,2.0 -2019,1,15,5,45,0.0,0.0,0.0,6.7,2.0 -2019,1,15,6,0,0.0,0.0,0.0,6.8,1.3 -2019,1,15,6,15,0.0,0.0,0.0,6.8,1.3 -2019,1,15,6,30,0.0,0.0,0.0,6.8,1.3 -2019,1,15,6,45,0.0,0.0,0.0,6.8,1.3 -2019,1,15,7,0,4.0,13.490081891314984,14.0,8.1,0.2 -2019,1,15,7,15,4.0,13.691195248288833,14.0,8.1,0.2 -2019,1,15,7,30,4.0,13.890159166146235,14.0,8.1,0.2 -2019,1,15,7,45,4.0,14.086121650845426,14.0,8.1,0.2 -2019,1,15,8,0,13.0,72.90429157306221,72.0,10.2,1.3 -2019,1,15,8,15,13.0,73.51353215299808,72.0,10.2,1.3 -2019,1,15,8,30,13.0,74.10500824335963,72.0,10.2,1.3 -2019,1,15,8,45,13.0,74.6761870527229,72.0,10.2,1.3 -2019,1,15,9,0,11.0,122.72852690485456,120.0,11.8,0.0 -2019,1,15,9,15,11.0,123.17135645262528,120.0,11.8,0.0 -2019,1,15,9,30,11.0,123.5910583468928,120.0,11.8,0.0 -2019,1,15,9,45,11.0,123.98583535971204,120.0,11.8,0.0 -2019,1,15,10,0,11.0,166.35399699530686,162.0,12.6,0.2 -2019,1,15,10,15,11.0,166.6939667290324,162.0,12.6,0.2 -2019,1,15,10,30,11.0,167.00428875829581,162.0,12.6,0.2 -2019,1,15,10,45,11.0,167.28363423652624,162.0,12.6,0.2 -2019,1,15,11,0,30.0,236.08401899136362,221.0,15.7,1.6 -2019,1,15,11,15,30.0,236.66749592996422,221.0,15.7,1.6 -2019,1,15,11,30,30.0,237.15784383213617,221.0,15.7,1.6 -2019,1,15,11,45,30.0,237.55296295288278,221.0,15.7,1.6 -2019,1,15,12,0,57.0,274.0172065297915,242.0,16.6,2.2 -2019,1,15,12,15,57.0,274.39720786965046,242.0,16.6,2.2 -2019,1,15,12,30,57.0,274.58900640597795,242.0,16.6,2.2 -2019,1,15,12,45,57.0,274.59178082799605,242.0,16.6,2.2 -2019,1,15,13,0,47.0,234.72034043850124,208.0,15.9,2.7 -2019,1,15,13,15,47.0,234.4115422201367,208.0,15.9,2.7 -2019,1,15,13,30,47.0,233.94885220866763,208.0,15.9,2.7 -2019,1,15,13,45,47.0,233.33425171375666,208.0,15.9,2.7 -2019,1,15,14,0,5.0,103.6138694201147,101.0,14.5,0.0 -2019,1,15,14,15,5.0,103.51707295345618,101.0,14.5,0.0 -2019,1,15,14,30,5.0,103.40515825839309,101.0,14.5,0.0 -2019,1,15,14,45,5.0,103.27860457083115,101.0,14.5,0.0 -2019,1,15,15,0,4.0,53.71036305047149,52.0,14.6,0.0 -2019,1,15,15,15,4.0,53.58704661864439,52.0,14.6,0.0 -2019,1,15,15,30,4.0,53.45346242107658,52.0,14.6,0.0 -2019,1,15,15,45,4.0,53.31018248581027,52.0,14.6,0.0 -2019,1,15,16,0,4.0,14.157820359525005,13.0,14.7,0.0 -2019,1,15,16,15,4.0,13.997028480236592,13.0,14.7,0.0 -2019,1,15,16,30,4.0,13.828495383457367,13.0,14.7,0.0 -2019,1,15,16,45,4.0,13.65294275378141,13.0,14.7,0.0 -2019,1,15,17,0,0.0,0.0,0.0,14.4,0.0 -2019,1,15,17,15,0.0,0.0,0.0,14.4,0.0 -2019,1,15,17,30,0.0,0.0,0.0,14.4,0.0 -2019,1,15,17,45,0.0,0.0,0.0,14.4,0.0 -2019,1,15,18,0,0.0,0.0,0.0,14.3,0.2 -2019,1,15,18,15,0.0,0.0,0.0,14.3,0.2 -2019,1,15,18,30,0.0,0.0,0.0,14.3,0.2 -2019,1,15,18,45,0.0,0.0,0.0,14.3,0.2 -2019,1,15,19,0,0.0,0.0,0.0,13.8,1.6 -2019,1,15,19,15,0.0,0.0,0.0,13.8,1.6 -2019,1,15,19,30,0.0,0.0,0.0,13.8,1.6 -2019,1,15,19,45,0.0,0.0,0.0,13.8,1.6 -2019,1,15,20,0,0.0,0.0,0.0,12.7,2.5 -2019,1,15,20,15,0.0,0.0,0.0,12.7,2.5 -2019,1,15,20,30,0.0,0.0,0.0,12.7,2.5 -2019,1,15,20,45,0.0,0.0,0.0,12.7,2.5 -2019,1,15,21,0,0.0,0.0,0.0,11.6,2.0 -2019,1,15,21,15,0.0,0.0,0.0,11.6,2.0 -2019,1,15,21,30,0.0,0.0,0.0,11.6,2.0 -2019,1,15,21,45,0.0,0.0,0.0,11.6,2.0 -2019,1,15,22,0,0.0,0.0,0.0,11.0,1.3 -2019,1,15,22,15,0.0,0.0,0.0,11.0,1.3 -2019,1,15,22,30,0.0,0.0,0.0,11.0,1.3 -2019,1,15,22,45,0.0,0.0,0.0,11.0,1.3 -2019,1,15,23,0,0.0,0.0,0.0,10.0,0.3 -2019,1,15,23,15,0.0,0.0,0.0,10.0,0.3 -2019,1,15,23,30,0.0,0.0,0.0,10.0,0.3 -2019,1,15,23,45,0.0,0.0,0.0,10.0,0.3 -2019,1,16,0,0,0.0,0.0,0.0,10.0,2.0 -2019,1,16,0,15,0.0,0.0,0.0,10.0,2.0 -2019,1,16,0,30,0.0,0.0,0.0,10.0,2.0 -2019,1,16,0,45,0.0,0.0,0.0,10.0,2.0 -2019,1,16,1,0,0.0,0.0,0.0,9.8,1.2 -2019,1,16,1,15,0.0,0.0,0.0,9.8,1.2 -2019,1,16,1,30,0.0,0.0,0.0,9.8,1.2 -2019,1,16,1,45,0.0,0.0,0.0,9.8,1.2 -2019,1,16,2,0,0.0,0.0,0.0,9.0,0.0 -2019,1,16,2,15,0.0,0.0,0.0,9.0,0.0 -2019,1,16,2,30,0.0,0.0,0.0,9.0,0.0 -2019,1,16,2,45,0.0,0.0,0.0,9.0,0.0 -2019,1,16,3,0,0.0,0.0,0.0,8.9,0.6 -2019,1,16,3,15,0.0,0.0,0.0,8.9,0.6 -2019,1,16,3,30,0.0,0.0,0.0,8.9,0.6 -2019,1,16,3,45,0.0,0.0,0.0,8.9,0.6 -2019,1,16,4,0,0.0,0.0,0.0,8.0,0.0 -2019,1,16,4,15,0.0,0.0,0.0,8.0,0.0 -2019,1,16,4,30,0.0,0.0,0.0,8.0,0.0 -2019,1,16,4,45,0.0,0.0,0.0,8.0,0.0 -2019,1,16,5,0,0.0,0.0,0.0,7.1,0.0 -2019,1,16,5,15,0.0,0.0,0.0,7.1,0.0 -2019,1,16,5,30,0.0,0.0,0.0,7.1,0.0 -2019,1,16,5,45,0.0,0.0,0.0,7.1,0.0 -2019,1,16,6,0,0.0,0.0,0.0,6.2,0.2 -2019,1,16,6,15,0.0,0.0,0.0,6.2,0.2 -2019,1,16,6,30,0.0,0.0,0.0,6.2,0.2 -2019,1,16,6,45,0.0,0.0,0.0,6.2,0.2 -2019,1,16,7,0,1.0,13.87409208593413,14.0,6.9,0.3 -2019,1,16,7,15,1.0,13.924427217023142,14.0,6.9,0.3 -2019,1,16,7,30,1.0,13.974224381358864,14.0,6.9,0.3 -2019,1,16,7,45,1.0,14.023270339838614,14.0,6.9,0.3 -2019,1,16,8,0,2.0,38.14271014027701,38.0,8.4,1.5 -2019,1,16,8,15,2.0,38.23654533212259,38.0,8.4,1.5 -2019,1,16,8,30,2.0,38.327644438516636,38.0,8.4,1.5 -2019,1,16,8,45,2.0,38.415617359099784,38.0,8.4,1.5 -2019,1,16,9,0,1.0,58.250043690160126,58.0,10.3,1.3 -2019,1,16,9,15,1.0,58.29034639428954,58.0,10.3,1.3 -2019,1,16,9,30,1.0,58.32854420957169,58.0,10.3,1.3 -2019,1,16,9,45,1.0,58.36447356709728,58.0,10.3,1.3 -2019,1,16,10,0,15.0,179.96970917762133,174.0,12.3,0.0 -2019,1,16,10,15,15.0,180.43382792241636,174.0,12.3,0.0 -2019,1,16,10,30,15.0,180.85747231312624,174.0,12.3,0.0 -2019,1,16,10,45,15.0,181.23882823943092,174.0,12.3,0.0 -2019,1,16,11,0,388.0,423.97266123749023,228.0,13.4,0.3 -2019,1,16,11,15,388.0,431.5274868939681,228.0,13.4,0.3 -2019,1,16,11,30,388.0,437.87648317274727,228.0,13.4,0.3 -2019,1,16,11,45,388.0,442.99246269704634,228.0,13.4,0.3 -2019,1,16,12,0,25.0,230.10138647275278,216.0,14.4,2.5 -2019,1,16,12,15,25.0,230.2682419858998,216.0,14.4,2.5 -2019,1,16,12,30,25.0,230.35245917105937,216.0,14.4,2.5 -2019,1,16,12,45,25.0,230.3536773973153,216.0,14.4,2.5 -2019,1,16,13,0,27.0,208.41364276387867,193.0,14.5,1.6 -2019,1,16,13,15,27.0,208.23604766666858,193.0,14.5,1.6 -2019,1,16,13,30,27.0,207.96994678694145,193.0,14.5,1.6 -2019,1,16,13,45,27.0,207.6164796095168,193.0,14.5,1.6 -2019,1,16,14,0,26.0,157.65207974492424,144.0,15.4,2.5 -2019,1,16,14,15,26.0,157.1481695692916,144.0,15.4,2.5 -2019,1,16,14,30,26.0,156.5655558067039,144.0,15.4,2.5 -2019,1,16,14,45,26.0,155.90673329873707,144.0,15.4,2.5 -2019,1,16,15,0,13.0,77.5872616122572,72.0,14.3,1.7 -2019,1,16,15,15,13.0,77.18603050999235,72.0,14.3,1.7 -2019,1,16,15,30,13.0,76.751391475752,72.0,14.3,1.7 -2019,1,16,15,45,13.0,76.28520570060776,72.0,14.3,1.7 -2019,1,16,16,0,3.0,13.874492953142834,13.0,13.0,3.0 -2019,1,16,16,15,3.0,13.753762826952114,13.0,13.0,3.0 -2019,1,16,16,30,3.0,13.627220229580189,13.0,13.0,3.0 -2019,1,16,16,45,3.0,13.495407035856179,13.0,13.0,3.0 -2019,1,16,17,0,0.0,0.0,0.0,12.0,3.9 -2019,1,16,17,15,0.0,0.0,0.0,12.0,3.9 -2019,1,16,17,30,0.0,0.0,0.0,12.0,3.9 -2019,1,16,17,45,0.0,0.0,0.0,12.0,3.9 -2019,1,16,18,0,0.0,0.0,0.0,10.5,2.2 -2019,1,16,18,15,0.0,0.0,0.0,10.5,2.2 -2019,1,16,18,30,0.0,0.0,0.0,10.5,2.2 -2019,1,16,18,45,0.0,0.0,0.0,10.5,2.2 -2019,1,16,19,0,0.0,0.0,0.0,9.9,2.5 -2019,1,16,19,15,0.0,0.0,0.0,9.9,2.5 -2019,1,16,19,30,0.0,0.0,0.0,9.9,2.5 -2019,1,16,19,45,0.0,0.0,0.0,9.9,2.5 -2019,1,16,20,0,0.0,0.0,0.0,9.4,2.0 -2019,1,16,20,15,0.0,0.0,0.0,9.4,2.0 -2019,1,16,20,30,0.0,0.0,0.0,9.4,2.0 -2019,1,16,20,45,0.0,0.0,0.0,9.4,2.0 -2019,1,16,21,0,0.0,0.0,0.0,9.3,1.6 -2019,1,16,21,15,0.0,0.0,0.0,9.3,1.6 -2019,1,16,21,30,0.0,0.0,0.0,9.3,1.6 -2019,1,16,21,45,0.0,0.0,0.0,9.3,1.6 -2019,1,16,22,0,0.0,0.0,0.0,8.4,1.9 -2019,1,16,22,15,0.0,0.0,0.0,8.4,1.9 -2019,1,16,22,30,0.0,0.0,0.0,8.4,1.9 -2019,1,16,22,45,0.0,0.0,0.0,8.4,1.9 -2019,1,16,23,0,0.0,0.0,0.0,8.8,0.0 -2019,1,16,23,15,0.0,0.0,0.0,8.8,0.0 -2019,1,16,23,30,0.0,0.0,0.0,8.8,0.0 -2019,1,16,23,45,0.0,0.0,0.0,8.8,0.0 -2019,1,17,0,0,0.0,0.0,0.0,7.5,0.0 -2019,1,17,0,15,0.0,0.0,0.0,7.5,0.0 -2019,1,17,0,30,0.0,0.0,0.0,7.5,0.0 -2019,1,17,0,45,0.0,0.0,0.0,7.5,0.0 -2019,1,17,1,0,0.0,0.0,0.0,5.5,0.0 -2019,1,17,1,15,0.0,0.0,0.0,5.5,0.0 -2019,1,17,1,30,0.0,0.0,0.0,5.5,0.0 -2019,1,17,1,45,0.0,0.0,0.0,5.5,0.0 -2019,1,17,2,0,0.0,0.0,0.0,4.9,0.0 -2019,1,17,2,15,0.0,0.0,0.0,4.9,0.0 -2019,1,17,2,30,0.0,0.0,0.0,4.9,0.0 -2019,1,17,2,45,0.0,0.0,0.0,4.9,0.0 -2019,1,17,3,0,0.0,0.0,0.0,4.4,0.2 -2019,1,17,3,15,0.0,0.0,0.0,4.4,0.2 -2019,1,17,3,30,0.0,0.0,0.0,4.4,0.2 -2019,1,17,3,45,0.0,0.0,0.0,4.4,0.2 -2019,1,17,4,0,0.0,0.0,0.0,4.4,1.5 -2019,1,17,4,15,0.0,0.0,0.0,4.4,1.5 -2019,1,17,4,30,0.0,0.0,0.0,4.4,1.5 -2019,1,17,4,45,0.0,0.0,0.0,4.4,1.5 -2019,1,17,5,0,0.0,0.0,0.0,4.3,1.6 -2019,1,17,5,15,0.0,0.0,0.0,4.3,1.6 -2019,1,17,5,30,0.0,0.0,0.0,4.3,1.6 -2019,1,17,5,45,0.0,0.0,0.0,4.3,1.6 -2019,1,17,6,0,0.0,0.0,0.0,4.1,2.1 -2019,1,17,6,15,0.0,0.0,0.0,4.1,2.1 -2019,1,17,6,30,0.0,0.0,0.0,4.1,2.1 -2019,1,17,6,45,0.0,0.0,0.0,4.1,2.1 -2019,1,17,7,0,4.0,13.502899473682959,14.0,5.8,1.9 -2019,1,17,7,15,4.0,13.704474076650826,14.0,5.8,1.9 -2019,1,17,7,30,4.0,13.903894310843683,14.0,5.8,1.9 -2019,1,17,7,45,4.0,14.100306228203165,14.0,5.8,1.9 -2019,1,17,8,0,5.0,57.3660859534318,57.0,7.5,0.2 -2019,1,17,8,15,5.0,57.60094666516856,57.0,7.5,0.2 -2019,1,17,8,30,5.0,57.82895921084012,57.0,7.5,0.2 -2019,1,17,8,45,5.0,58.049147205720786,57.0,7.5,0.2 -2019,1,17,9,0,23.0,148.79861174665797,143.0,9.6,1.3 -2019,1,17,9,15,23.0,149.7266516284267,143.0,9.6,1.3 -2019,1,17,9,30,23.0,150.60622278237287,143.0,9.6,1.3 -2019,1,17,9,45,23.0,151.433558749781,143.0,9.6,1.3 -2019,1,17,10,0,342.0,350.87608386304873,214.0,11.2,0.2 -2019,1,17,10,15,342.0,361.470293776109,214.0,11.2,0.2 -2019,1,17,10,30,342.0,371.14061555045004,214.0,11.2,0.2 -2019,1,17,10,45,342.0,379.8456393836193,214.0,11.2,0.2 -2019,1,17,11,0,586.0,479.3660238886149,182.0,11.9,1.6 -2019,1,17,11,15,586.0,490.78941258994405,182.0,11.9,1.6 -2019,1,17,11,30,586.0,500.38950869455743,182.0,11.9,1.6 -2019,1,17,11,45,586.0,508.1252031171016,182.0,11.9,1.6 -2019,1,17,12,0,703.0,550.2427464331008,152.0,13.3,2.3 -2019,1,17,12,15,703.0,554.9401783580449,152.0,13.3,2.3 -2019,1,17,12,30,703.0,557.3111188606149,152.0,13.3,2.3 -2019,1,17,12,45,703.0,557.3454152095851,152.0,13.3,2.3 -2019,1,17,13,0,684.0,532.1498686361639,140.0,13.4,0.3 -2019,1,17,13,15,684.0,527.6455622120135,140.0,13.4,0.3 -2019,1,17,13,30,684.0,520.8965025766049,140.0,13.4,0.3 -2019,1,17,13,45,684.0,511.9315902394314,140.0,13.4,0.3 -2019,1,17,14,0,697.0,473.6463192821828,106.0,14.0,2.5 -2019,1,17,14,15,697.0,460.12194515666926,106.0,14.0,2.5 -2019,1,17,14,30,697.0,444.48525656228423,106.0,14.0,2.5 -2019,1,17,14,45,697.0,426.80321220017714,106.0,14.0,2.5 -2019,1,17,15,0,583.0,328.89575549678705,77.0,14.0,1.4 -2019,1,17,15,15,583.0,310.8811643034271,77.0,14.0,1.4 -2019,1,17,15,30,583.0,291.36661402474937,77.0,14.0,1.4 -2019,1,17,15,45,583.0,270.4356689609754,77.0,14.0,1.4 -2019,1,17,16,0,394.0,147.68458953877308,32.0,13.5,0.7 -2019,1,17,16,15,394.0,131.81026556547786,32.0,13.5,0.7 -2019,1,17,16,30,394.0,115.17168288122843,32.0,13.5,0.7 -2019,1,17,16,45,394.0,97.84009045148021,32.0,13.5,0.7 -2019,1,17,17,0,0.0,0.0,0.0,12.7,0.0 -2019,1,17,17,15,0.0,0.0,0.0,12.7,0.0 -2019,1,17,17,30,0.0,0.0,0.0,12.7,0.0 -2019,1,17,17,45,0.0,0.0,0.0,12.7,0.0 -2019,1,17,18,0,0.0,0.0,0.0,11.9,0.0 -2019,1,17,18,15,0.0,0.0,0.0,11.9,0.0 -2019,1,17,18,30,0.0,0.0,0.0,11.9,0.0 -2019,1,17,18,45,0.0,0.0,0.0,11.9,0.0 -2019,1,17,19,0,0.0,0.0,0.0,9.9,0.0 -2019,1,17,19,15,0.0,0.0,0.0,9.9,0.0 -2019,1,17,19,30,0.0,0.0,0.0,9.9,0.0 -2019,1,17,19,45,0.0,0.0,0.0,9.9,0.0 -2019,1,17,20,0,0.0,0.0,0.0,9.3,0.0 -2019,1,17,20,15,0.0,0.0,0.0,9.3,0.0 -2019,1,17,20,30,0.0,0.0,0.0,9.3,0.0 -2019,1,17,20,45,0.0,0.0,0.0,9.3,0.0 -2019,1,17,21,0,0.0,0.0,0.0,8.2,0.2 -2019,1,17,21,15,0.0,0.0,0.0,8.2,0.2 -2019,1,17,21,30,0.0,0.0,0.0,8.2,0.2 -2019,1,17,21,45,0.0,0.0,0.0,8.2,0.2 -2019,1,17,22,0,0.0,0.0,0.0,7.1,1.3 -2019,1,17,22,15,0.0,0.0,0.0,7.1,1.3 -2019,1,17,22,30,0.0,0.0,0.0,7.1,1.3 -2019,1,17,22,45,0.0,0.0,0.0,7.1,1.3 -2019,1,17,23,0,0.0,0.0,0.0,6.6,0.0 -2019,1,17,23,15,0.0,0.0,0.0,6.6,0.0 -2019,1,17,23,30,0.0,0.0,0.0,6.6,0.0 -2019,1,17,23,45,0.0,0.0,0.0,6.6,0.0 -2019,1,18,0,0,0.0,0.0,0.0,5.5,0.2 -2019,1,18,0,15,0.0,0.0,0.0,5.5,0.2 -2019,1,18,0,30,0.0,0.0,0.0,5.5,0.2 -2019,1,18,0,45,0.0,0.0,0.0,5.5,0.2 -2019,1,18,1,0,0.0,0.0,0.0,4.9,1.6 -2019,1,18,1,15,0.0,0.0,0.0,4.9,1.6 -2019,1,18,1,30,0.0,0.0,0.0,4.9,1.6 -2019,1,18,1,45,0.0,0.0,0.0,4.9,1.6 -2019,1,18,2,0,0.0,0.0,0.0,4.4,2.5 -2019,1,18,2,15,0.0,0.0,0.0,4.4,2.5 -2019,1,18,2,30,0.0,0.0,0.0,4.4,2.5 -2019,1,18,2,45,0.0,0.0,0.0,4.4,2.5 -2019,1,18,3,0,0.0,0.0,0.0,4.3,1.3 -2019,1,18,3,15,0.0,0.0,0.0,4.3,1.3 -2019,1,18,3,30,0.0,0.0,0.0,4.3,1.3 -2019,1,18,3,45,0.0,0.0,0.0,4.3,1.3 -2019,1,18,4,0,0.0,0.0,0.0,3.2,0.0 -2019,1,18,4,15,0.0,0.0,0.0,3.2,0.0 -2019,1,18,4,30,0.0,0.0,0.0,3.2,0.0 -2019,1,18,4,45,0.0,0.0,0.0,3.2,0.0 -2019,1,18,5,0,0.0,0.0,0.0,2.8,0.2 -2019,1,18,5,15,0.0,0.0,0.0,2.8,0.2 -2019,1,18,5,30,0.0,0.0,0.0,2.8,0.2 -2019,1,18,5,45,0.0,0.0,0.0,2.8,0.2 -2019,1,18,6,0,0.0,0.0,0.0,3.0,1.5 -2019,1,18,6,15,0.0,0.0,0.0,3.0,1.5 -2019,1,18,6,30,0.0,0.0,0.0,3.0,1.5 -2019,1,18,6,45,0.0,0.0,0.0,3.0,1.5 -2019,1,18,7,0,462.0,-25.632678389780132,31.0,4.7,1.6 -2019,1,18,7,15,462.0,-2.3230085973230317,31.0,4.7,1.6 -2019,1,18,7,30,462.0,20.73753444991289,31.0,4.7,1.6 -2019,1,18,7,45,462.0,43.45020196628053,31.0,4.7,1.6 -2019,1,18,8,0,712.0,116.50438786507499,63.0,7.6,1.9 -2019,1,18,8,15,712.0,149.98849215896166,63.0,7.6,1.9 -2019,1,18,8,30,712.0,182.49625304890688,63.0,7.6,1.9 -2019,1,18,8,45,712.0,213.8884673120978,63.0,7.6,1.9 -2019,1,18,9,0,839.0,294.321298556389,81.0,11.0,0.0 -2019,1,18,9,15,839.0,328.21500696830066,81.0,11.0,0.0 -2019,1,18,9,30,839.0,360.33854907573766,81.0,11.0,0.0 -2019,1,18,9,45,839.0,390.5543669397,81.0,11.0,0.0 -2019,1,18,10,0,903.0,453.49578525115334,90.0,14.1,0.0 -2019,1,18,10,15,903.0,481.50162129923785,90.0,14.1,0.0 -2019,1,18,10,30,903.0,507.06515537746594,90.0,14.1,0.0 -2019,1,18,10,45,903.0,530.0769205083295,90.0,14.1,0.0 -2019,1,18,11,0,931.0,568.7155357506522,94.0,15.7,0.0 -2019,1,18,11,15,931.0,586.8859715551553,94.0,15.7,0.0 -2019,1,18,11,30,931.0,602.1562153109016,94.0,15.7,0.0 -2019,1,18,11,45,931.0,614.4608774897991,94.0,15.7,0.0 -2019,1,18,12,0,931.0,623.7472676393518,94.0,16.9,0.0 -2019,1,18,12,15,931.0,629.9756200112663,94.0,16.9,0.0 -2019,1,18,12,30,931.0,633.1192638444924,94.0,16.9,0.0 -2019,1,18,12,45,931.0,633.1647375735147,94.0,16.9,0.0 -2019,1,18,13,0,903.0,609.9881819172706,90.0,18.4,0.0 -2019,1,18,13,15,903.0,604.0346059422665,90.0,18.4,0.0 -2019,1,18,13,30,903.0,595.1140229455588,90.0,18.4,0.0 -2019,1,18,13,45,903.0,583.2646322330518,90.0,18.4,0.0 -2019,1,18,14,0,839.0,525.620918699695,81.0,18.9,0.3 -2019,1,18,14,15,839.0,509.3217789696684,81.0,18.9,0.3 -2019,1,18,14,30,839.0,490.47694593343965,81.0,18.9,0.3 -2019,1,18,14,45,839.0,469.1671160591817,81.0,18.9,0.3 -2019,1,18,15,0,712.0,372.3114200389651,63.0,18.7,2.6 -2019,1,18,15,15,712.0,350.2844797769251,63.0,18.7,2.6 -2019,1,18,15,30,712.0,326.42349794196406,63.0,18.7,2.6 -2019,1,18,15,45,712.0,300.830650921504,63.0,18.7,2.6 -2019,1,18,16,0,463.0,167.9592569561934,31.0,18.0,2.3 -2019,1,18,16,15,463.0,149.28263480489278,31.0,18.0,2.3 -2019,1,18,16,30,463.0,129.70683917103338,31.0,18.0,2.3 -2019,1,18,16,45,463.0,109.3156966168501,31.0,18.0,2.3 -2019,1,18,17,0,0.0,0.0,0.0,16.9,2.0 -2019,1,18,17,15,0.0,0.0,0.0,16.9,2.0 -2019,1,18,17,30,0.0,0.0,0.0,16.9,2.0 -2019,1,18,17,45,0.0,0.0,0.0,16.9,2.0 -2019,1,18,18,0,0.0,0.0,0.0,14.8,1.3 -2019,1,18,18,15,0.0,0.0,0.0,14.8,1.3 -2019,1,18,18,30,0.0,0.0,0.0,14.8,1.3 -2019,1,18,18,45,0.0,0.0,0.0,14.8,1.3 -2019,1,18,19,0,0.0,0.0,0.0,13.0,0.0 -2019,1,18,19,15,0.0,0.0,0.0,13.0,0.0 -2019,1,18,19,30,0.0,0.0,0.0,13.0,0.0 -2019,1,18,19,45,0.0,0.0,0.0,13.0,0.0 -2019,1,18,20,0,0.0,0.0,0.0,10.9,0.2 -2019,1,18,20,15,0.0,0.0,0.0,10.9,0.2 -2019,1,18,20,30,0.0,0.0,0.0,10.9,0.2 -2019,1,18,20,45,0.0,0.0,0.0,10.9,0.2 -2019,1,18,21,0,0.0,0.0,0.0,9.3,1.3 -2019,1,18,21,15,0.0,0.0,0.0,9.3,1.3 -2019,1,18,21,30,0.0,0.0,0.0,9.3,1.3 -2019,1,18,21,45,0.0,0.0,0.0,9.3,1.3 -2019,1,18,22,0,0.0,0.0,0.0,8.2,0.0 -2019,1,18,22,15,0.0,0.0,0.0,8.2,0.0 -2019,1,18,22,30,0.0,0.0,0.0,8.2,0.0 -2019,1,18,22,45,0.0,0.0,0.0,8.2,0.0 -2019,1,18,23,0,0.0,0.0,0.0,7.7,0.0 -2019,1,18,23,15,0.0,0.0,0.0,7.7,0.0 -2019,1,18,23,30,0.0,0.0,0.0,7.7,0.0 -2019,1,18,23,45,0.0,0.0,0.0,7.7,0.0 -2019,1,19,0,0,0.0,0.0,0.0,6.6,0.2 -2019,1,19,0,15,0.0,0.0,0.0,6.6,0.2 -2019,1,19,0,30,0.0,0.0,0.0,6.6,0.2 -2019,1,19,0,45,0.0,0.0,0.0,6.6,0.2 -2019,1,19,1,0,0.0,0.0,0.0,5.7,1.6 -2019,1,19,1,15,0.0,0.0,0.0,5.7,1.6 -2019,1,19,1,30,0.0,0.0,0.0,5.7,1.6 -2019,1,19,1,45,0.0,0.0,0.0,5.7,1.6 -2019,1,19,2,0,0.0,0.0,0.0,6.0,2.0 -2019,1,19,2,15,0.0,0.0,0.0,6.0,2.0 -2019,1,19,2,30,0.0,0.0,0.0,6.0,2.0 -2019,1,19,2,45,0.0,0.0,0.0,6.0,2.0 -2019,1,19,3,0,0.0,0.0,0.0,5.5,1.7 -2019,1,19,3,15,0.0,0.0,0.0,5.5,1.7 -2019,1,19,3,30,0.0,0.0,0.0,5.5,1.7 -2019,1,19,3,45,0.0,0.0,0.0,5.5,1.7 -2019,1,19,4,0,0.0,0.0,0.0,4.9,2.7 -2019,1,19,4,15,0.0,0.0,0.0,4.9,2.7 -2019,1,19,4,30,0.0,0.0,0.0,4.9,2.7 -2019,1,19,4,45,0.0,0.0,0.0,4.9,2.7 -2019,1,19,5,0,0.0,0.0,0.0,4.3,0.0 -2019,1,19,5,15,0.0,0.0,0.0,4.3,0.0 -2019,1,19,5,30,0.0,0.0,0.0,4.3,0.0 -2019,1,19,5,45,0.0,0.0,0.0,4.3,0.0 -2019,1,19,6,0,0.0,0.0,0.0,3.5,0.0 -2019,1,19,6,15,0.0,0.0,0.0,3.5,0.0 -2019,1,19,6,30,0.0,0.0,0.0,3.5,0.0 -2019,1,19,6,45,0.0,0.0,0.0,3.5,0.0 -2019,1,19,7,0,200.0,13.834484527032263,38.0,5.3,0.0 -2019,1,19,7,15,200.0,23.937604835774167,38.0,5.3,0.0 -2019,1,19,7,30,200.0,33.932746031062074,38.0,5.3,0.0 -2019,1,19,7,45,200.0,43.77710738381581,38.0,5.3,0.0 -2019,1,19,8,0,539.0,124.57989866481356,83.0,8.3,0.0 -2019,1,19,8,15,539.0,149.95915199213823,83.0,8.3,0.0 -2019,1,19,8,30,539.0,174.5983865223165,83.0,8.3,0.0 -2019,1,19,8,45,539.0,198.39209327040572,83.0,8.3,0.0 -2019,1,19,9,0,844.0,296.4623303116177,80.0,12.6,0.0 -2019,1,19,9,15,844.0,330.599770947249,80.0,12.6,0.0 -2019,1,19,9,30,844.0,362.9543158784679,80.0,12.6,0.0 -2019,1,19,9,45,844.0,393.3874179767191,80.0,12.6,0.0 -2019,1,19,10,0,1068.0,487.4751582612019,55.0,15.9,0.0 -2019,1,19,10,15,1068.0,520.6388926084412,55.0,15.9,0.0 -2019,1,19,10,30,1068.0,550.9105206966497,55.0,15.9,0.0 -2019,1,19,10,45,1068.0,578.1604147669683,55.0,15.9,0.0 -2019,1,19,11,0,1094.0,616.5949849521749,56.0,17.9,0.3 -2019,1,19,11,15,1094.0,637.9728518084752,56.0,17.9,0.3 -2019,1,19,11,30,1094.0,655.938586994238,56.0,17.9,0.3 -2019,1,19,11,45,1094.0,670.4152584732478,56.0,17.9,0.3 -2019,1,19,12,0,1021.0,656.6133759496921,73.0,19.0,2.5 -2019,1,19,12,15,1021.0,663.4521872294375,73.0,19.0,2.5 -2019,1,19,12,30,1021.0,666.9039487262842,73.0,19.0,2.5 -2019,1,19,12,45,1021.0,666.9538794675782,73.0,19.0,2.5 -2019,1,19,13,0,611.0,512.4355326223276,159.0,20.0,2.2 -2019,1,19,13,15,611.0,508.4022120337124,159.0,20.0,2.2 -2019,1,19,13,30,611.0,502.3588573819647,159.0,20.0,2.2 -2019,1,19,13,45,611.0,494.33134723949604,159.0,20.0,2.2 -2019,1,19,14,0,55.0,197.28719004098664,168.0,19.8,2.7 -2019,1,19,14,15,55.0,196.21740432500042,168.0,19.8,2.7 -2019,1,19,14,30,55.0,194.98053332835732,168.0,19.8,2.7 -2019,1,19,14,45,55.0,193.58187352255294,168.0,19.8,2.7 -2019,1,19,15,0,24.0,97.4846898255717,87.0,18.6,3.5 -2019,1,19,15,15,24.0,96.74129967056217,87.0,18.6,3.5 -2019,1,19,15,30,24.0,95.93601220103832,87.0,18.6,3.5 -2019,1,19,15,45,24.0,95.07227578157465,87.0,18.6,3.5 -2019,1,19,16,0,4.0,16.19229817735375,15.0,17.1,3.0 -2019,1,19,16,15,4.0,16.030747524969108,15.0,17.1,3.0 -2019,1,19,16,30,4.0,15.861419124470402,15.0,17.1,3.0 -2019,1,19,16,45,4.0,15.685038066064338,15.0,17.1,3.0 -2019,1,19,17,0,0.0,0.0,0.0,15.8,2.5 -2019,1,19,17,15,0.0,0.0,0.0,15.8,2.5 -2019,1,19,17,30,0.0,0.0,0.0,15.8,2.5 -2019,1,19,17,45,0.0,0.0,0.0,15.8,2.5 -2019,1,19,18,0,0.0,0.0,0.0,13.8,1.5 -2019,1,19,18,15,0.0,0.0,0.0,13.8,1.5 -2019,1,19,18,30,0.0,0.0,0.0,13.8,1.5 -2019,1,19,18,45,0.0,0.0,0.0,13.8,1.5 -2019,1,19,19,0,0.0,0.0,0.0,12.6,1.3 -2019,1,19,19,15,0.0,0.0,0.0,12.6,1.3 -2019,1,19,19,30,0.0,0.0,0.0,12.6,1.3 -2019,1,19,19,45,0.0,0.0,0.0,12.6,1.3 -2019,1,19,20,0,0.0,0.0,0.0,11.0,0.0 -2019,1,19,20,15,0.0,0.0,0.0,11.0,0.0 -2019,1,19,20,30,0.0,0.0,0.0,11.0,0.0 -2019,1,19,20,45,0.0,0.0,0.0,11.0,0.0 -2019,1,19,21,0,0.0,0.0,0.0,9.9,0.0 -2019,1,19,21,15,0.0,0.0,0.0,9.9,0.0 -2019,1,19,21,30,0.0,0.0,0.0,9.9,0.0 -2019,1,19,21,45,0.0,0.0,0.0,9.9,0.0 -2019,1,19,22,0,0.0,0.0,0.0,8.8,0.0 -2019,1,19,22,15,0.0,0.0,0.0,8.8,0.0 -2019,1,19,22,30,0.0,0.0,0.0,8.8,0.0 -2019,1,19,22,45,0.0,0.0,0.0,8.8,0.0 -2019,1,19,23,0,0.0,0.0,0.0,7.7,0.0 -2019,1,19,23,15,0.0,0.0,0.0,7.7,0.0 -2019,1,19,23,30,0.0,0.0,0.0,7.7,0.0 -2019,1,19,23,45,0.0,0.0,0.0,7.7,0.0 -2019,1,20,0,0,0.0,0.0,0.0,7.1,0.0 -2019,1,20,0,15,0.0,0.0,0.0,7.1,0.0 -2019,1,20,0,30,0.0,0.0,0.0,7.1,0.0 -2019,1,20,0,45,0.0,0.0,0.0,7.1,0.0 -2019,1,20,1,0,0.0,0.0,0.0,6.6,0.0 -2019,1,20,1,15,0.0,0.0,0.0,6.6,0.0 -2019,1,20,1,30,0.0,0.0,0.0,6.6,0.0 -2019,1,20,1,45,0.0,0.0,0.0,6.6,0.0 -2019,1,20,2,0,0.0,0.0,0.0,6.0,0.2 -2019,1,20,2,15,0.0,0.0,0.0,6.0,0.2 -2019,1,20,2,30,0.0,0.0,0.0,6.0,0.2 -2019,1,20,2,45,0.0,0.0,0.0,6.0,0.2 -2019,1,20,3,0,0.0,0.0,0.0,5.6,1.5 -2019,1,20,3,15,0.0,0.0,0.0,5.6,1.5 -2019,1,20,3,30,0.0,0.0,0.0,5.6,1.5 -2019,1,20,3,45,0.0,0.0,0.0,5.6,1.5 -2019,1,20,4,0,0.0,0.0,0.0,5.6,1.6 -2019,1,20,4,15,0.0,0.0,0.0,5.6,1.6 -2019,1,20,4,30,0.0,0.0,0.0,5.6,1.6 -2019,1,20,4,45,0.0,0.0,0.0,5.6,1.6 -2019,1,20,5,0,0.0,0.0,0.0,5.7,1.9 -2019,1,20,5,15,0.0,0.0,0.0,5.7,1.9 -2019,1,20,5,30,0.0,0.0,0.0,5.7,1.9 -2019,1,20,5,45,0.0,0.0,0.0,5.7,1.9 -2019,1,20,6,0,0.0,0.0,0.0,6.2,0.0 -2019,1,20,6,15,0.0,0.0,0.0,6.2,0.0 -2019,1,20,6,30,0.0,0.0,0.0,6.2,0.0 -2019,1,20,6,45,0.0,0.0,0.0,6.2,0.0 -2019,1,20,7,0,4.0,14.523945559243694,15.0,7.0,0.0 -2019,1,20,7,15,4.0,14.726261126500457,15.0,7.0,0.0 -2019,1,20,7,30,4.0,14.926414405778583,15.0,7.0,0.0 -2019,1,20,7,45,4.0,15.123548310008111,15.0,7.0,0.0 -2019,1,20,8,0,145.0,124.48467720606372,113.0,9.7,0.0 -2019,1,20,8,15,145.0,131.32067412844802,113.0,9.7,0.0 -2019,1,20,8,30,145.0,137.9573442166439,113.0,9.7,0.0 -2019,1,20,8,45,145.0,144.36626823045364,113.0,9.7,0.0 -2019,1,20,9,0,52.0,180.4554490552647,167.0,11.9,0.0 -2019,1,20,9,15,52.0,182.56133882906065,167.0,11.9,0.0 -2019,1,20,9,30,52.0,184.55724432278882,167.0,11.9,0.0 -2019,1,20,9,45,52.0,186.43461876270808,167.0,11.9,0.0 -2019,1,20,10,0,590.0,405.3730680099171,165.0,13.4,0.2 -2019,1,20,10,15,590.0,423.71681143746963,165.0,13.4,0.2 -2019,1,20,10,30,590.0,440.4608539801519,165.0,13.4,0.2 -2019,1,20,10,45,590.0,455.53349507720384,165.0,13.4,0.2 -2019,1,20,11,0,455.0,452.3405713072571,218.0,14.1,1.5 -2019,1,20,11,15,455.0,461.24287126115075,218.0,14.1,1.5 -2019,1,20,11,30,455.0,468.7242708128906,218.0,14.1,1.5 -2019,1,20,11,45,455.0,474.75273346103097,218.0,14.1,1.5 -2019,1,20,12,0,638.0,538.3977132508082,172.0,15.7,1.3 -2019,1,20,12,15,638.0,542.6764871380517,172.0,15.7,1.3 -2019,1,20,12,30,638.0,544.8361178623913,172.0,15.7,1.3 -2019,1,20,12,45,638.0,544.8673575535132,172.0,15.7,1.3 -2019,1,20,13,0,45.0,241.1514941374951,215.0,16.8,0.2 -2019,1,20,13,15,45.0,240.85406889280088,215.0,16.8,0.2 -2019,1,20,13,30,45.0,240.40841965749246,215.0,16.8,0.2 -2019,1,20,13,45,45.0,239.8164547700128,215.0,16.8,0.2 -2019,1,20,14,0,198.0,290.95512010551664,185.0,17.7,1.5 -2019,1,20,14,15,198.0,287.0990663790833,185.0,17.7,1.5 -2019,1,20,14,30,198.0,282.64075202280503,185.0,17.7,1.5 -2019,1,20,14,45,198.0,277.59926822320824,185.0,17.7,1.5 -2019,1,20,15,0,625.0,349.6092278658635,75.0,17.4,1.4 -2019,1,20,15,15,625.0,330.2258544845956,75.0,17.4,1.4 -2019,1,20,15,30,625.0,309.22855233329494,75.0,17.4,1.4 -2019,1,20,15,45,625.0,286.7072350833382,75.0,17.4,1.4 -2019,1,20,16,0,135.0,80.55580197410856,40.0,16.6,0.7 -2019,1,20,16,15,135.0,75.09663630464397,40.0,16.6,0.7 -2019,1,20,16,30,135.0,69.37464275511027,40.0,16.6,0.7 -2019,1,20,16,45,135.0,63.41432378034297,40.0,16.6,0.7 -2019,1,20,17,0,0.0,0.0,0.0,16.0,0.0 -2019,1,20,17,15,0.0,0.0,0.0,16.0,0.0 -2019,1,20,17,30,0.0,0.0,0.0,16.0,0.0 -2019,1,20,17,45,0.0,0.0,0.0,16.0,0.0 -2019,1,20,18,0,0.0,0.0,0.0,14.8,0.2 -2019,1,20,18,15,0.0,0.0,0.0,14.8,0.2 -2019,1,20,18,30,0.0,0.0,0.0,14.8,0.2 -2019,1,20,18,45,0.0,0.0,0.0,14.8,0.2 -2019,1,20,19,0,0.0,0.0,0.0,13.2,1.5 -2019,1,20,19,15,0.0,0.0,0.0,13.2,1.5 -2019,1,20,19,30,0.0,0.0,0.0,13.2,1.5 -2019,1,20,19,45,0.0,0.0,0.0,13.2,1.5 -2019,1,20,20,0,0.0,0.0,0.0,12.1,1.3 -2019,1,20,20,15,0.0,0.0,0.0,12.1,1.3 -2019,1,20,20,30,0.0,0.0,0.0,12.1,1.3 -2019,1,20,20,45,0.0,0.0,0.0,12.1,1.3 -2019,1,20,21,0,0.0,0.0,0.0,11.6,0.0 -2019,1,20,21,15,0.0,0.0,0.0,11.6,0.0 -2019,1,20,21,30,0.0,0.0,0.0,11.6,0.0 -2019,1,20,21,45,0.0,0.0,0.0,11.6,0.0 -2019,1,20,22,0,0.0,0.0,0.0,11.0,0.0 -2019,1,20,22,15,0.0,0.0,0.0,11.0,0.0 -2019,1,20,22,30,0.0,0.0,0.0,11.0,0.0 -2019,1,20,22,45,0.0,0.0,0.0,11.0,0.0 -2019,1,20,23,0,0.0,0.0,0.0,10.0,0.0 -2019,1,20,23,15,0.0,0.0,0.0,10.0,0.0 -2019,1,20,23,30,0.0,0.0,0.0,10.0,0.0 -2019,1,20,23,45,0.0,0.0,0.0,10.0,0.0 -2019,1,21,0,0,0.0,0.0,0.0,10.1,0.0 -2019,1,21,0,15,0.0,0.0,0.0,10.1,0.0 -2019,1,21,0,30,0.0,0.0,0.0,10.1,0.0 -2019,1,21,0,45,0.0,0.0,0.0,10.1,0.0 -2019,1,21,1,0,0.0,0.0,0.0,10.6,0.0 -2019,1,21,1,15,0.0,0.0,0.0,10.6,0.0 -2019,1,21,1,30,0.0,0.0,0.0,10.6,0.0 -2019,1,21,1,45,0.0,0.0,0.0,10.6,0.0 -2019,1,21,2,0,0.0,0.0,0.0,10.7,0.0 -2019,1,21,2,15,0.0,0.0,0.0,10.7,0.0 -2019,1,21,2,30,0.0,0.0,0.0,10.7,0.0 -2019,1,21,2,45,0.0,0.0,0.0,10.7,0.0 -2019,1,21,3,0,0.0,0.0,0.0,11.1,0.0 -2019,1,21,3,15,0.0,0.0,0.0,11.1,0.0 -2019,1,21,3,30,0.0,0.0,0.0,11.1,0.0 -2019,1,21,3,45,0.0,0.0,0.0,11.1,0.0 -2019,1,21,4,0,0.0,0.0,0.0,11.0,0.0 -2019,1,21,4,15,0.0,0.0,0.0,11.0,0.0 -2019,1,21,4,30,0.0,0.0,0.0,11.0,0.0 -2019,1,21,4,45,0.0,0.0,0.0,11.0,0.0 -2019,1,21,5,0,0.0,0.0,0.0,10.2,0.0 -2019,1,21,5,15,0.0,0.0,0.0,10.2,0.0 -2019,1,21,5,30,0.0,0.0,0.0,10.2,0.0 -2019,1,21,5,45,0.0,0.0,0.0,10.2,0.0 -2019,1,21,6,0,0.0,0.0,0.0,11.0,0.0 -2019,1,21,6,15,0.0,0.0,0.0,11.0,0.0 -2019,1,21,6,30,0.0,0.0,0.0,11.0,0.0 -2019,1,21,6,45,0.0,0.0,0.0,11.0,0.0 -2019,1,21,7,0,1.0,14.882859916681094,15.0,10.7,1.7 -2019,1,21,7,15,1.0,14.933503544966234,15.0,10.7,1.7 -2019,1,21,7,30,1.0,14.983605909372772,15.0,10.7,1.7 -2019,1,21,7,45,1.0,15.03295246388446,15.0,10.7,1.7 -2019,1,21,8,0,2.0,39.16266379795812,39.0,11.0,1.5 -2019,1,21,8,15,2.0,39.257074092976296,39.0,11.0,1.5 -2019,1,21,8,30,2.0,39.348731533446056,39.0,11.0,1.5 -2019,1,21,8,45,2.0,39.4372436281358,39.0,11.0,1.5 -2019,1,21,9,0,1.0,59.26111567733372,59.0,12.4,2.7 -2019,1,21,9,15,1.0,59.30166539127421,59.0,12.4,2.7 -2019,1,21,9,30,1.0,59.34009731578897,59.0,12.4,2.7 -2019,1,21,9,45,1.0,59.37624687947705,59.0,12.4,2.7 -2019,1,21,10,0,1.0,89.40995928435696,89.0,13.9,0.7 -2019,1,21,10,15,1.0,89.44109016873537,89.0,13.9,0.7 -2019,1,21,10,30,1.0,89.46950622538608,89.0,13.9,0.7 -2019,1,21,10,45,1.0,89.495085772392,89.0,13.9,0.7 -2019,1,21,11,0,115.0,326.5377165336686,267.0,15.1,6.5 -2019,1,21,11,15,115.0,328.790628230268,267.0,15.1,6.5 -2019,1,21,11,30,115.0,330.68395160112084,267.0,15.1,6.5 -2019,1,21,11,45,115.0,332.20957914488474,267.0,15.1,6.5 -2019,1,21,12,0,38.0,259.92797530284827,238.0,16.2,8.6 -2019,1,21,12,15,38.0,260.18315008776557,238.0,16.2,8.6 -2019,1,21,12,30,38.0,260.3119447658922,238.0,16.2,8.6 -2019,1,21,12,45,38.0,260.3138078186435,238.0,16.2,8.6 -2019,1,21,13,0,438.0,456.7543235643691,201.0,16.6,6.7 -2019,1,21,13,15,438.0,453.85567925219766,201.0,16.6,6.7 -2019,1,21,13,30,438.0,449.51247488675006,201.0,16.6,6.7 -2019,1,21,13,45,438.0,443.74330873590014,201.0,16.6,6.7 -2019,1,21,14,0,33.0,175.74864203974553,158.0,16.0,6.5 -2019,1,21,14,15,33.0,175.10514385119146,158.0,16.0,6.5 -2019,1,21,14,30,33.0,174.36114041768036,158.0,16.0,6.5 -2019,1,21,14,45,33.0,173.519817676136,158.0,16.0,6.5 -2019,1,21,15,0,220.0,213.23185533133278,116.0,15.5,4.8 -2019,1,21,15,15,220.0,206.4001751368789,116.0,15.5,4.8 -2019,1,21,15,30,220.0,198.99966489428977,116.0,15.5,4.8 -2019,1,21,15,45,220.0,191.06201472457116,116.0,15.5,4.8 -2019,1,21,16,0,215.0,106.10709634471536,41.0,14.9,2.3 -2019,1,21,16,15,215.0,97.4017417028192,41.0,14.9,2.3 -2019,1,21,16,30,215.0,88.2772735838258,41.0,14.9,2.3 -2019,1,21,16,45,215.0,78.77276436103449,41.0,14.9,2.3 -2019,1,21,17,0,0.0,0.0,0.0,14.3,0.3 -2019,1,21,17,15,0.0,0.0,0.0,14.3,0.3 -2019,1,21,17,30,0.0,0.0,0.0,14.3,0.3 -2019,1,21,17,45,0.0,0.0,0.0,14.3,0.3 -2019,1,21,18,0,0.0,0.0,0.0,13.2,2.3 -2019,1,21,18,15,0.0,0.0,0.0,13.2,2.3 -2019,1,21,18,30,0.0,0.0,0.0,13.2,2.3 -2019,1,21,18,45,0.0,0.0,0.0,13.2,2.3 -2019,1,21,19,0,0.0,0.0,0.0,12.1,0.2 -2019,1,21,19,15,0.0,0.0,0.0,12.1,0.2 -2019,1,21,19,30,0.0,0.0,0.0,12.1,0.2 -2019,1,21,19,45,0.0,0.0,0.0,12.1,0.2 -2019,1,21,20,0,0.0,0.0,0.0,11.0,1.7 -2019,1,21,20,15,0.0,0.0,0.0,11.0,1.7 -2019,1,21,20,30,0.0,0.0,0.0,11.0,1.7 -2019,1,21,20,45,0.0,0.0,0.0,11.0,1.7 -2019,1,21,21,0,0.0,0.0,0.0,9.9,3.1 -2019,1,21,21,15,0.0,0.0,0.0,9.9,3.1 -2019,1,21,21,30,0.0,0.0,0.0,9.9,3.1 -2019,1,21,21,45,0.0,0.0,0.0,9.9,3.1 -2019,1,21,22,0,0.0,0.0,0.0,9.4,2.7 -2019,1,21,22,15,0.0,0.0,0.0,9.4,2.7 -2019,1,21,22,30,0.0,0.0,0.0,9.4,2.7 -2019,1,21,22,45,0.0,0.0,0.0,9.4,2.7 -2019,1,21,23,0,0.0,0.0,0.0,9.3,0.0 -2019,1,21,23,15,0.0,0.0,0.0,9.3,0.0 -2019,1,21,23,30,0.0,0.0,0.0,9.3,0.0 -2019,1,21,23,45,0.0,0.0,0.0,9.3,0.0 -2019,1,22,0,0,0.0,0.0,0.0,8.2,0.0 -2019,1,22,0,15,0.0,0.0,0.0,8.2,0.0 -2019,1,22,0,30,0.0,0.0,0.0,8.2,0.0 -2019,1,22,0,45,0.0,0.0,0.0,8.2,0.0 -2019,1,22,1,0,0.0,0.0,0.0,7.0,0.2 -2019,1,22,1,15,0.0,0.0,0.0,7.0,0.2 -2019,1,22,1,30,0.0,0.0,0.0,7.0,0.2 -2019,1,22,1,45,0.0,0.0,0.0,7.0,0.2 -2019,1,22,2,0,0.0,0.0,0.0,5.7,1.3 -2019,1,22,2,15,0.0,0.0,0.0,5.7,1.3 -2019,1,22,2,30,0.0,0.0,0.0,5.7,1.3 -2019,1,22,2,45,0.0,0.0,0.0,5.7,1.3 -2019,1,22,3,0,0.0,0.0,0.0,6.7,0.2 -2019,1,22,3,15,0.0,0.0,0.0,6.7,0.2 -2019,1,22,3,30,0.0,0.0,0.0,6.7,0.2 -2019,1,22,3,45,0.0,0.0,0.0,6.7,0.2 -2019,1,22,4,0,0.0,0.0,0.0,6.7,1.5 -2019,1,22,4,15,0.0,0.0,0.0,6.7,1.5 -2019,1,22,4,30,0.0,0.0,0.0,6.7,1.5 -2019,1,22,4,45,0.0,0.0,0.0,6.7,1.5 -2019,1,22,5,0,0.0,0.0,0.0,6.7,1.3 -2019,1,22,5,15,0.0,0.0,0.0,6.7,1.3 -2019,1,22,5,30,0.0,0.0,0.0,6.7,1.3 -2019,1,22,5,45,0.0,0.0,0.0,6.7,1.3 -2019,1,22,6,0,0.0,0.0,0.0,6.8,0.2 -2019,1,22,6,15,0.0,0.0,0.0,6.8,0.2 -2019,1,22,6,30,0.0,0.0,0.0,6.8,0.2 -2019,1,22,6,45,0.0,0.0,0.0,6.8,0.2 -2019,1,22,7,0,1.0,14.884792554563775,15.0,7.4,1.3 -2019,1,22,7,15,1.0,14.93550229050707,15.0,7.4,1.3 -2019,1,22,7,30,1.0,14.98567005603298,15.0,7.4,1.3 -2019,1,22,7,45,1.0,15.035081025067623,15.0,7.4,1.3 -2019,1,22,8,0,3.0,47.25057083676766,47.0,9.1,0.0 -2019,1,22,8,15,3.0,47.39237113700716,47.0,9.1,0.0 -2019,1,22,8,30,3.0,47.530036765266175,47.0,9.1,0.0 -2019,1,22,8,45,3.0,47.66297821618968,47.0,9.1,0.0 -2019,1,22,9,0,22.0,152.7979255698854,147.0,10.8,0.2 -2019,1,22,9,15,22.0,153.69118377106045,147.0,10.8,0.2 -2019,1,22,9,30,22.0,154.53778978682993,147.0,10.8,0.2 -2019,1,22,9,45,22.0,155.33411832026096,147.0,10.8,0.2 -2019,1,22,10,0,412.0,375.98294820778847,206.0,12.4,1.3 -2019,1,22,10,15,412.0,388.82561489155,206.0,12.4,1.3 -2019,1,22,10,30,412.0,400.54831250578945,206.0,12.4,1.3 -2019,1,22,10,45,412.0,411.10084265962143,206.0,12.4,1.3 -2019,1,22,11,0,68.0,292.39268254932864,257.0,13.8,0.4 -2019,1,22,11,15,68.0,293.72657796120586,257.0,13.8,0.4 -2019,1,22,11,30,68.0,294.84756968111776,257.0,13.8,0.4 -2019,1,22,11,45,68.0,295.75085745042173,257.0,13.8,0.4 -2019,1,22,12,0,495.0,498.04593764479665,211.0,13.5,3.0 -2019,1,22,12,15,495.0,501.3742639413679,211.0,13.5,3.0 -2019,1,22,12,30,495.0,503.0541741025786,211.0,13.5,3.0 -2019,1,22,12,45,495.0,503.0784744952139,211.0,13.5,3.0 -2019,1,22,13,0,393.0,441.5973636304564,211.0,15.0,1.9 -2019,1,22,13,15,393.0,438.99313023648045,211.0,15.0,1.9 -2019,1,22,13,30,393.0,435.09105856874714,211.0,15.0,1.9 -2019,1,22,13,45,393.0,429.9078578971946,211.0,15.0,1.9 -2019,1,22,14,0,563.0,440.3720160835568,136.0,15.0,0.2 -2019,1,22,14,15,563.0,429.37921624372774,136.0,15.0,0.2 -2019,1,22,14,30,563.0,416.6694977546821,136.0,15.0,0.2 -2019,1,22,14,45,563.0,402.2972855822214,136.0,15.0,0.2 -2019,1,22,15,0,580.0,340.8827562562903,83.0,15.1,2.0 -2019,1,22,15,15,580.0,322.848452628132,83.0,15.1,2.0 -2019,1,22,15,30,580.0,303.31254858705904,83.0,15.1,2.0 -2019,1,22,15,45,580.0,282.35869987338214,83.0,15.1,2.0 -2019,1,22,16,0,356.0,147.68841678270758,39.0,14.7,0.9 -2019,1,22,16,15,356.0,133.25515319788116,39.0,14.7,0.9 -2019,1,22,16,30,356.0,118.12700979072287,39.0,14.7,0.9 -2019,1,22,16,45,356.0,102.36876759381678,39.0,14.7,0.9 -2019,1,22,17,0,0.0,0.0,0.0,14.3,0.0 -2019,1,22,17,15,0.0,0.0,0.0,14.3,0.0 -2019,1,22,17,30,0.0,0.0,0.0,14.3,0.0 -2019,1,22,17,45,0.0,0.0,0.0,14.3,0.0 -2019,1,22,18,0,0.0,0.0,0.0,13.1,0.2 -2019,1,22,18,15,0.0,0.0,0.0,13.1,0.2 -2019,1,22,18,30,0.0,0.0,0.0,13.1,0.2 -2019,1,22,18,45,0.0,0.0,0.0,13.1,0.2 -2019,1,22,19,0,0.0,0.0,0.0,11.6,1.3 -2019,1,22,19,15,0.0,0.0,0.0,11.6,1.3 -2019,1,22,19,30,0.0,0.0,0.0,11.6,1.3 -2019,1,22,19,45,0.0,0.0,0.0,11.6,1.3 -2019,1,22,20,0,0.0,0.0,0.0,10.4,0.0 -2019,1,22,20,15,0.0,0.0,0.0,10.4,0.0 -2019,1,22,20,30,0.0,0.0,0.0,10.4,0.0 -2019,1,22,20,45,0.0,0.0,0.0,10.4,0.0 -2019,1,22,21,0,0.0,0.0,0.0,9.0,0.0 -2019,1,22,21,15,0.0,0.0,0.0,9.0,0.0 -2019,1,22,21,30,0.0,0.0,0.0,9.0,0.0 -2019,1,22,21,45,0.0,0.0,0.0,9.0,0.0 -2019,1,22,22,0,0.0,0.0,0.0,9.3,0.0 -2019,1,22,22,15,0.0,0.0,0.0,9.3,0.0 -2019,1,22,22,30,0.0,0.0,0.0,9.3,0.0 -2019,1,22,22,45,0.0,0.0,0.0,9.3,0.0 -2019,1,22,23,0,0.0,0.0,0.0,8.9,0.2 -2019,1,22,23,15,0.0,0.0,0.0,8.9,0.2 -2019,1,22,23,30,0.0,0.0,0.0,8.9,0.2 -2019,1,22,23,45,0.0,0.0,0.0,8.9,0.2 -2019,1,23,0,0,0.0,0.0,0.0,8.8,2.0 -2019,1,23,0,15,0.0,0.0,0.0,8.8,2.0 -2019,1,23,0,30,0.0,0.0,0.0,8.8,2.0 -2019,1,23,0,45,0.0,0.0,0.0,8.8,2.0 -2019,1,23,1,0,0.0,0.0,0.0,8.4,1.3 -2019,1,23,1,15,0.0,0.0,0.0,8.4,1.3 -2019,1,23,1,30,0.0,0.0,0.0,8.4,1.3 -2019,1,23,1,45,0.0,0.0,0.0,8.4,1.3 -2019,1,23,2,0,0.0,0.0,0.0,9.0,0.2 -2019,1,23,2,15,0.0,0.0,0.0,9.0,0.2 -2019,1,23,2,30,0.0,0.0,0.0,9.0,0.2 -2019,1,23,2,45,0.0,0.0,0.0,9.0,0.2 -2019,1,23,3,0,0.0,0.0,0.0,9.4,1.9 -2019,1,23,3,15,0.0,0.0,0.0,9.4,1.9 -2019,1,23,3,30,0.0,0.0,0.0,9.4,1.9 -2019,1,23,3,45,0.0,0.0,0.0,9.4,1.9 -2019,1,23,4,0,0.0,0.0,0.0,9.3,0.0 -2019,1,23,4,15,0.0,0.0,0.0,9.3,0.0 -2019,1,23,4,30,0.0,0.0,0.0,9.3,0.0 -2019,1,23,4,45,0.0,0.0,0.0,9.3,0.0 -2019,1,23,5,0,0.0,0.0,0.0,9.0,0.2 -2019,1,23,5,15,0.0,0.0,0.0,9.0,0.2 -2019,1,23,5,30,0.0,0.0,0.0,9.0,0.2 -2019,1,23,5,45,0.0,0.0,0.0,9.0,0.2 -2019,1,23,6,0,0.0,0.0,0.0,9.4,1.9 -2019,1,23,6,15,0.0,0.0,0.0,9.4,1.9 -2019,1,23,6,30,0.0,0.0,0.0,9.4,1.9 -2019,1,23,6,45,0.0,0.0,0.0,9.4,1.9 -2019,1,23,7,0,1.0,14.886783835704513,15.0,9.5,0.0 -2019,1,23,7,15,1.0,14.937560973793337,15.0,9.5,0.0 -2019,1,23,7,30,1.0,14.987795421090901,15.0,9.5,0.0 -2019,1,23,7,45,1.0,15.037272065981742,15.0,9.5,0.0 -2019,1,23,8,0,1.0,39.08577904187665,39.0,10.0,0.0 -2019,1,23,8,15,1.0,39.133108634457905,39.0,10.0,0.0 -2019,1,23,8,30,1.0,39.17905817114391,39.0,10.0,0.0 -2019,1,23,8,45,1.0,39.22343088896428,39.0,10.0,0.0 -2019,1,23,9,0,1.0,60.266036777129074,60.0,10.5,0.7 -2019,1,23,9,15,1.0,60.3066933906842,60.0,10.5,0.7 -2019,1,23,9,30,1.0,60.3452266317687,60.0,10.5,0.7 -2019,1,23,9,45,1.0,60.381471495128515,60.0,10.5,0.7 -2019,1,23,10,0,0.0,74.0,74.0,10.0,2.9 -2019,1,23,10,15,0.0,74.0,74.0,10.0,2.9 -2019,1,23,10,30,0.0,74.0,74.0,10.0,2.9 -2019,1,23,10,45,0.0,74.0,74.0,10.0,2.9 -2019,1,23,11,0,0.0,82.0,82.0,10.5,3.4 -2019,1,23,11,15,0.0,82.0,82.0,10.5,3.4 -2019,1,23,11,30,0.0,82.0,82.0,10.5,3.4 -2019,1,23,11,45,0.0,82.0,82.0,10.5,3.4 -2019,1,23,12,0,1.0,102.58280597189163,102.0,10.0,2.2 -2019,1,23,12,15,1.0,102.58953880063262,102.0,10.0,2.2 -2019,1,23,12,30,1.0,102.59293706943438,102.0,10.0,2.2 -2019,1,23,12,45,1.0,102.59298622638818,102.0,10.0,2.2 -2019,1,23,13,0,2.0,114.17937212199274,113.0,10.5,2.8 -2019,1,23,13,15,2.0,114.16610141014769,113.0,10.5,2.8 -2019,1,23,13,30,2.0,114.14621714446665,113.0,10.5,2.8 -2019,1,23,13,45,2.0,114.11980447242796,113.0,10.5,2.8 -2019,1,23,14,0,2.0,87.08697649714824,86.0,11.1,0.0 -2019,1,23,14,15,2.0,87.04787379305748,86.0,11.1,0.0 -2019,1,23,14,30,2.0,87.00266380393775,86.0,11.1,0.0 -2019,1,23,14,45,2.0,86.95154012590324,86.0,11.1,0.0 -2019,1,23,15,0,3.0,52.342082517587876,51.0,11.2,2.1 -2019,1,23,15,15,3.0,52.24867765007845,51.0,11.2,2.1 -2019,1,23,15,30,3.0,52.14749556030904,51.0,11.2,2.1 -2019,1,23,15,45,3.0,52.03896952552178,51.0,11.2,2.1 -2019,1,23,16,0,1.0,16.307854756952953,16.0,11.1,1.8 -2019,1,23,16,15,1.0,16.267257993112693,16.0,11.1,1.8 -2019,1,23,16,30,1.0,16.22470672522844,16.0,11.1,1.8 -2019,1,23,16,45,1.0,16.18038316436186,16.0,11.1,1.8 -2019,1,23,17,0,0.0,0.0,0.0,11.0,1.6 -2019,1,23,17,15,0.0,0.0,0.0,11.0,1.6 -2019,1,23,17,30,0.0,0.0,0.0,11.0,1.6 -2019,1,23,17,45,0.0,0.0,0.0,11.0,1.6 -2019,1,23,18,0,0.0,0.0,0.0,10.7,2.3 -2019,1,23,18,15,0.0,0.0,0.0,10.7,2.3 -2019,1,23,18,30,0.0,0.0,0.0,10.7,2.3 -2019,1,23,18,45,0.0,0.0,0.0,10.7,2.3 -2019,1,23,19,0,0.0,0.0,0.0,11.1,0.0 -2019,1,23,19,15,0.0,0.0,0.0,11.1,0.0 -2019,1,23,19,30,0.0,0.0,0.0,11.1,0.0 -2019,1,23,19,45,0.0,0.0,0.0,11.1,0.0 -2019,1,23,20,0,0.0,0.0,0.0,11.1,0.0 -2019,1,23,20,15,0.0,0.0,0.0,11.1,0.0 -2019,1,23,20,30,0.0,0.0,0.0,11.1,0.0 -2019,1,23,20,45,0.0,0.0,0.0,11.1,0.0 -2019,1,23,21,0,0.0,0.0,0.0,10.6,0.0 -2019,1,23,21,15,0.0,0.0,0.0,10.6,0.0 -2019,1,23,21,30,0.0,0.0,0.0,10.6,0.0 -2019,1,23,21,45,0.0,0.0,0.0,10.6,0.0 -2019,1,23,22,0,0.0,0.0,0.0,10.5,0.0 -2019,1,23,22,15,0.0,0.0,0.0,10.5,0.0 -2019,1,23,22,30,0.0,0.0,0.0,10.5,0.0 -2019,1,23,22,45,0.0,0.0,0.0,10.5,0.0 -2019,1,23,23,0,0.0,0.0,0.0,10.0,0.0 -2019,1,23,23,15,0.0,0.0,0.0,10.0,0.0 -2019,1,23,23,30,0.0,0.0,0.0,10.0,0.0 -2019,1,23,23,45,0.0,0.0,0.0,10.0,0.0 -2019,1,24,0,0,0.0,0.0,0.0,10.0,0.0 -2019,1,24,0,15,0.0,0.0,0.0,10.0,0.0 -2019,1,24,0,30,0.0,0.0,0.0,10.0,0.0 -2019,1,24,0,45,0.0,0.0,0.0,10.0,0.0 -2019,1,24,1,0,0.0,0.0,0.0,9.3,0.0 -2019,1,24,1,15,0.0,0.0,0.0,9.3,0.0 -2019,1,24,1,30,0.0,0.0,0.0,9.3,0.0 -2019,1,24,1,45,0.0,0.0,0.0,9.3,0.0 -2019,1,24,2,0,0.0,0.0,0.0,9.3,0.0 -2019,1,24,2,15,0.0,0.0,0.0,9.3,0.0 -2019,1,24,2,30,0.0,0.0,0.0,9.3,0.0 -2019,1,24,2,45,0.0,0.0,0.0,9.3,0.0 -2019,1,24,3,0,0.0,0.0,0.0,8.7,0.0 -2019,1,24,3,15,0.0,0.0,0.0,8.7,0.0 -2019,1,24,3,30,0.0,0.0,0.0,8.7,0.0 -2019,1,24,3,45,0.0,0.0,0.0,8.7,0.0 -2019,1,24,4,0,0.0,0.0,0.0,8.0,0.0 -2019,1,24,4,15,0.0,0.0,0.0,8.0,0.0 -2019,1,24,4,30,0.0,0.0,0.0,8.0,0.0 -2019,1,24,4,45,0.0,0.0,0.0,8.0,0.0 -2019,1,24,5,0,0.0,0.0,0.0,7.2,2.5 -2019,1,24,5,15,0.0,0.0,0.0,7.2,2.5 -2019,1,24,5,30,0.0,0.0,0.0,7.2,2.5 -2019,1,24,5,45,0.0,0.0,0.0,7.2,2.5 -2019,1,24,6,0,0.0,0.0,0.0,7.0,2.6 -2019,1,24,6,15,0.0,0.0,0.0,7.0,2.6 -2019,1,24,6,30,0.0,0.0,0.0,7.0,2.6 -2019,1,24,6,45,0.0,0.0,0.0,7.0,2.6 -2019,1,24,7,0,28.0,27.887331644065437,31.0,13.4,4.2 -2019,1,24,7,15,28.0,29.311012823781102,31.0,13.4,4.2 -2019,1,24,7,30,28.0,30.71947812692309,31.0,13.4,4.2 -2019,1,24,7,45,28.0,32.10669628883182,31.0,13.4,4.2 -2019,1,24,8,0,70.0,115.16681757092103,109.0,14.6,5.0 -2019,1,24,8,15,70.0,118.48436621277605,109.0,14.6,5.0 -2019,1,24,8,30,70.0,121.70518039504094,109.0,14.6,5.0 -2019,1,24,8,45,70.0,124.81546809691878,109.0,14.6,5.0 -2019,1,24,9,0,78.0,201.95070037056672,181.0,16.2,8.1 -2019,1,24,9,15,78.0,205.1262016906378,181.0,16.2,8.1 -2019,1,24,9,30,78.0,208.13585614118693,181.0,16.2,8.1 -2019,1,24,9,45,78.0,210.96677591980637,181.0,16.2,8.1 -2019,1,24,10,0,15.0,188.27054588334485,182.0,16.9,7.0 -2019,1,24,10,15,15.0,188.7393728862057,182.0,16.9,7.0 -2019,1,24,10,30,15.0,189.1673149424203,182.0,16.9,7.0 -2019,1,24,10,45,15.0,189.5525395384051,182.0,16.9,7.0 -2019,1,24,11,0,25.0,240.15566180549894,227.0,18.4,5.2 -2019,1,24,11,15,25.0,240.6473799546107,227.0,18.4,5.2 -2019,1,24,11,30,25.0,241.06061473207268,227.0,18.4,5.2 -2019,1,24,11,45,25.0,241.39359660312684,227.0,18.4,5.2 -2019,1,24,12,0,52.0,283.46139135162457,253.0,19.4,6.4 -2019,1,24,12,15,52.0,283.8119715678192,253.0,19.4,6.4 -2019,1,24,12,30,52.0,283.98892034478007,253.0,19.4,6.4 -2019,1,24,12,45,52.0,283.9914799606784,253.0,19.4,6.4 -2019,1,24,13,0,75.0,281.4514030598742,237.0,19.5,7.5 -2019,1,24,13,15,75.0,280.9530788577556,237.0,19.5,7.5 -2019,1,24,13,30,75.0,280.2064112376679,237.0,19.5,7.5 -2019,1,24,13,45,75.0,279.21459754499085,237.0,19.5,7.5 -2019,1,24,14,0,68.0,219.1569089562551,182.0,20.0,6.3 -2019,1,24,14,15,68.0,217.82562039137468,182.0,20.0,6.3 -2019,1,24,14,30,68.0,216.28640352816848,182.0,20.0,6.3 -2019,1,24,14,45,68.0,214.54584952954957,182.0,20.0,6.3 -2019,1,24,15,0,60.0,138.01006916025418,111.0,20.0,6.5 -2019,1,24,15,15,60.0,136.13944733301742,111.0,20.0,6.5 -2019,1,24,15,30,60.0,134.1130708636219,111.0,20.0,6.5 -2019,1,24,15,45,60.0,131.93961700720462,111.0,20.0,6.5 -2019,1,24,16,0,33.0,46.24561605476938,36.0,19.4,5.0 -2019,1,24,16,15,33.0,44.904112436633774,36.0,19.4,5.0 -2019,1,24,16,30,33.0,43.498023023999984,36.0,19.4,5.0 -2019,1,24,16,45,33.0,42.03336890759968,36.0,19.4,5.0 -2019,1,24,17,0,0.0,0.0,0.0,18.8,3.7 -2019,1,24,17,15,0.0,0.0,0.0,18.8,3.7 -2019,1,24,17,30,0.0,0.0,0.0,18.8,3.7 -2019,1,24,17,45,0.0,0.0,0.0,18.8,3.7 -2019,1,24,18,0,0.0,0.0,0.0,18.2,4.1 -2019,1,24,18,15,0.0,0.0,0.0,18.2,4.1 -2019,1,24,18,30,0.0,0.0,0.0,18.2,4.1 -2019,1,24,18,45,0.0,0.0,0.0,18.2,4.1 -2019,1,24,19,0,0.0,0.0,0.0,17.8,4.2 -2019,1,24,19,15,0.0,0.0,0.0,17.8,4.2 -2019,1,24,19,30,0.0,0.0,0.0,17.8,4.2 -2019,1,24,19,45,0.0,0.0,0.0,17.8,4.2 -2019,1,24,20,0,0.0,0.0,0.0,17.7,4.7 -2019,1,24,20,15,0.0,0.0,0.0,17.7,4.7 -2019,1,24,20,30,0.0,0.0,0.0,17.7,4.7 -2019,1,24,20,45,0.0,0.0,0.0,17.7,4.7 -2019,1,24,21,0,0.0,0.0,0.0,17.3,2.2 -2019,1,24,21,15,0.0,0.0,0.0,17.3,2.2 -2019,1,24,21,30,0.0,0.0,0.0,17.3,2.2 -2019,1,24,21,45,0.0,0.0,0.0,17.3,2.2 -2019,1,24,22,0,0.0,0.0,0.0,17.8,3.4 -2019,1,24,22,15,0.0,0.0,0.0,17.8,3.4 -2019,1,24,22,30,0.0,0.0,0.0,17.8,3.4 -2019,1,24,22,45,0.0,0.0,0.0,17.8,3.4 -2019,1,24,23,0,0.0,0.0,0.0,17.7,5.6 -2019,1,24,23,15,0.0,0.0,0.0,17.7,5.6 -2019,1,24,23,30,0.0,0.0,0.0,17.7,5.6 -2019,1,24,23,45,0.0,0.0,0.0,17.7,5.6 -2019,1,25,0,0,0.0,0.0,0.0,17.0,4.5 -2019,1,25,0,15,0.0,0.0,0.0,17.0,4.5 -2019,1,25,0,30,0.0,0.0,0.0,17.0,4.5 -2019,1,25,0,45,0.0,0.0,0.0,17.0,4.5 -2019,1,25,1,0,0.0,0.0,0.0,18.8,3.7 -2019,1,25,1,15,0.0,0.0,0.0,18.8,3.7 -2019,1,25,1,30,0.0,0.0,0.0,18.8,3.7 -2019,1,25,1,45,0.0,0.0,0.0,18.8,3.7 -2019,1,25,2,0,0.0,0.0,0.0,18.2,3.8 -2019,1,25,2,15,0.0,0.0,0.0,18.2,3.8 -2019,1,25,2,30,0.0,0.0,0.0,18.2,3.8 -2019,1,25,2,45,0.0,0.0,0.0,18.2,3.8 -2019,1,25,3,0,0.0,0.0,0.0,17.1,1.7 -2019,1,25,3,15,0.0,0.0,0.0,17.1,1.7 -2019,1,25,3,30,0.0,0.0,0.0,17.1,1.7 -2019,1,25,3,45,0.0,0.0,0.0,17.1,1.7 -2019,1,25,4,0,0.0,0.0,0.0,16.4,3.0 -2019,1,25,4,15,0.0,0.0,0.0,16.4,3.0 -2019,1,25,4,30,0.0,0.0,0.0,16.4,3.0 -2019,1,25,4,45,0.0,0.0,0.0,16.4,3.0 -2019,1,25,5,0,0.0,0.0,0.0,18.4,2.2 -2019,1,25,5,15,0.0,0.0,0.0,18.4,2.2 -2019,1,25,5,30,0.0,0.0,0.0,18.4,2.2 -2019,1,25,5,45,0.0,0.0,0.0,18.4,2.2 -2019,1,25,6,0,0.0,0.0,0.0,15.4,2.9 -2019,1,25,6,15,0.0,0.0,0.0,15.4,2.9 -2019,1,25,6,30,0.0,0.0,0.0,15.4,2.9 -2019,1,25,6,45,0.0,0.0,0.0,15.4,2.9 -2019,1,25,7,0,602.0,-37.65390343421778,28.0,18.7,1.6 -2019,1,25,7,15,602.0,-7.002765745649079,28.0,18.7,1.6 -2019,1,25,7,30,602.0,23.32078179523986,28.0,18.7,1.6 -2019,1,25,7,45,602.0,53.18688910252328,28.0,18.7,1.6 -2019,1,25,8,0,766.0,129.30603210697802,60.0,21.9,2.2 -2019,1,25,8,15,766.0,165.65929724806324,60.0,21.9,2.2 -2019,1,25,8,30,766.0,200.952558802948,60.0,21.9,2.2 -2019,1,25,8,45,766.0,235.03468560733396,60.0,21.9,2.2 -2019,1,25,9,0,972.0,323.6324546273234,60.0,23.5,2.6 -2019,1,25,9,15,972.0,363.2583743159775,60.0,23.5,2.6 -2019,1,25,9,30,972.0,400.81475157025994,60.0,23.5,2.6 -2019,1,25,9,45,972.0,436.14076421700804,60.0,23.5,2.6 -2019,1,25,10,0,660.0,430.7738610687603,153.0,25.1,2.7 -2019,1,25,10,15,660.0,451.4305490364506,153.0,25.1,2.7 -2019,1,25,10,30,660.0,470.2858314104075,153.0,25.1,2.7 -2019,1,25,10,45,660.0,487.2589669767901,153.0,25.1,2.7 -2019,1,25,11,0,838.0,565.4762965892107,122.0,26.1,3.7 -2019,1,25,11,15,838.0,581.981300946668,122.0,26.1,3.7 -2019,1,25,11,30,838.0,595.8519335742892,122.0,26.1,3.7 -2019,1,25,11,45,838.0,607.0287982937043,122.0,26.1,3.7 -2019,1,25,12,0,857.0,621.6523594087344,117.0,26.2,4.8 -2019,1,25,12,15,857.0,627.4381175876367,117.0,26.2,4.8 -2019,1,25,12,30,857.0,630.3583703179831,117.0,26.2,4.8 -2019,1,25,12,45,857.0,630.4006126292568,117.0,26.2,4.8 -2019,1,25,13,0,856.0,615.9689055661456,106.0,26.7,6.4 -2019,1,25,13,15,856.0,610.2735626700958,106.0,26.7,6.4 -2019,1,25,13,30,856.0,601.7399050478144,106.0,26.7,6.4 -2019,1,25,13,45,856.0,590.4044751313514,106.0,26.7,6.4 -2019,1,25,14,0,776.0,525.3610640959814,99.0,26.6,7.9 -2019,1,25,14,15,776.0,510.14787003001516,99.0,26.6,7.9 -2019,1,25,14,30,776.0,492.55859189205745,99.0,26.6,7.9 -2019,1,25,14,45,776.0,472.66854967144985,99.0,26.6,7.9 -2019,1,25,15,0,713.0,393.0210809411888,70.0,26.1,5.6 -2019,1,25,15,15,713.0,370.7613622196647,70.0,26.1,5.6 -2019,1,25,15,30,713.0,346.6482199608207,70.0,26.1,5.6 -2019,1,25,15,45,713.0,320.78491034172634,70.0,26.1,5.6 -2019,1,25,16,0,555.0,206.80310257188174,33.0,25.8,4.8 -2019,1,25,16,15,555.0,184.21049874898966,33.0,25.8,4.8 -2019,1,25,16,30,555.0,160.53018912496663,33.0,25.8,4.8 -2019,1,25,16,45,555.0,135.86357642108985,33.0,25.8,4.8 -2019,1,25,17,0,0.0,0.0,0.0,25.4,3.9 -2019,1,25,17,15,0.0,0.0,0.0,25.4,3.9 -2019,1,25,17,30,0.0,0.0,0.0,25.4,3.9 -2019,1,25,17,45,0.0,0.0,0.0,25.4,3.9 -2019,1,25,18,0,0.0,0.0,0.0,23.8,2.2 -2019,1,25,18,15,0.0,0.0,0.0,23.8,2.2 -2019,1,25,18,30,0.0,0.0,0.0,23.8,2.2 -2019,1,25,18,45,0.0,0.0,0.0,23.8,2.2 -2019,1,25,19,0,0.0,0.0,0.0,22.7,2.5 -2019,1,25,19,15,0.0,0.0,0.0,22.7,2.5 -2019,1,25,19,30,0.0,0.0,0.0,22.7,2.5 -2019,1,25,19,45,0.0,0.0,0.0,22.7,2.5 -2019,1,25,20,0,0.0,0.0,0.0,21.9,2.0 -2019,1,25,20,15,0.0,0.0,0.0,21.9,2.0 -2019,1,25,20,30,0.0,0.0,0.0,21.9,2.0 -2019,1,25,20,45,0.0,0.0,0.0,21.9,2.0 -2019,1,25,21,0,0.0,0.0,0.0,19.1,1.3 -2019,1,25,21,15,0.0,0.0,0.0,19.1,1.3 -2019,1,25,21,30,0.0,0.0,0.0,19.1,1.3 -2019,1,25,21,45,0.0,0.0,0.0,19.1,1.3 -2019,1,25,22,0,0.0,0.0,0.0,17.1,0.2 -2019,1,25,22,15,0.0,0.0,0.0,17.1,0.2 -2019,1,25,22,30,0.0,0.0,0.0,17.1,0.2 -2019,1,25,22,45,0.0,0.0,0.0,17.1,0.2 -2019,1,25,23,0,0.0,0.0,0.0,16.5,2.2 -2019,1,25,23,15,0.0,0.0,0.0,16.5,2.2 -2019,1,25,23,30,0.0,0.0,0.0,16.5,2.2 -2019,1,25,23,45,0.0,0.0,0.0,16.5,2.2 -2019,1,26,0,0,0.0,0.0,0.0,14.6,2.3 -2019,1,26,0,15,0.0,0.0,0.0,14.6,2.3 -2019,1,26,0,30,0.0,0.0,0.0,14.6,2.3 -2019,1,26,0,45,0.0,0.0,0.0,14.6,2.3 -2019,1,26,1,0,0.0,0.0,0.0,11.8,0.3 -2019,1,26,1,15,0.0,0.0,0.0,11.8,0.3 -2019,1,26,1,30,0.0,0.0,0.0,11.8,0.3 -2019,1,26,1,45,0.0,0.0,0.0,11.8,0.3 -2019,1,26,2,0,0.0,0.0,0.0,11.9,2.3 -2019,1,26,2,15,0.0,0.0,0.0,11.9,2.3 -2019,1,26,2,30,0.0,0.0,0.0,11.9,2.3 -2019,1,26,2,45,0.0,0.0,0.0,11.9,2.3 -2019,1,26,3,0,0.0,0.0,0.0,9.6,0.3 -2019,1,26,3,15,0.0,0.0,0.0,9.6,0.3 -2019,1,26,3,30,0.0,0.0,0.0,9.6,0.3 -2019,1,26,3,45,0.0,0.0,0.0,9.6,0.3 -2019,1,26,4,0,0.0,0.0,0.0,10.9,2.6 -2019,1,26,4,15,0.0,0.0,0.0,10.9,2.6 -2019,1,26,4,30,0.0,0.0,0.0,10.9,2.6 -2019,1,26,4,45,0.0,0.0,0.0,10.9,2.6 -2019,1,26,5,0,0.0,0.0,0.0,9.5,2.6 -2019,1,26,5,15,0.0,0.0,0.0,9.5,2.6 -2019,1,26,5,30,0.0,0.0,0.0,9.5,2.6 -2019,1,26,5,45,0.0,0.0,0.0,9.5,2.6 -2019,1,26,6,0,0.0,0.0,0.0,10.9,2.5 -2019,1,26,6,15,0.0,0.0,0.0,10.9,2.5 -2019,1,26,6,30,0.0,0.0,0.0,10.9,2.5 -2019,1,26,6,45,0.0,0.0,0.0,10.9,2.5 -2019,1,26,7,0,452.0,-13.316734655383108,35.0,13.6,1.5 -2019,1,26,7,15,452.0,9.729082397337766,35.0,13.6,1.5 -2019,1,26,7,30,452.0,32.528592683621085,35.0,13.6,1.5 -2019,1,26,7,45,452.0,54.98416520017668,35.0,13.6,1.5 -2019,1,26,8,0,816.0,129.82236207576506,54.0,16.6,1.5 -2019,1,26,8,15,816.0,168.60241348628995,54.0,16.6,1.5 -2019,1,26,8,30,816.0,206.2517000698133,54.0,16.6,1.5 -2019,1,26,8,45,816.0,242.609001801161,54.0,16.6,1.5 -2019,1,26,9,0,955.0,324.59349599470096,63.0,20.5,1.3 -2019,1,26,9,15,955.0,363.58051493480593,63.0,20.5,1.3 -2019,1,26,9,30,955.0,400.5313593023042,63.0,20.5,1.3 -2019,1,26,9,45,955.0,435.28779990881696,63.0,20.5,1.3 -2019,1,26,10,0,1115.0,520.5043139673655,48.0,24.5,0.2 -2019,1,26,10,15,1115.0,555.4501301775103,48.0,24.5,0.2 -2019,1,26,10,30,1115.0,587.3484303048737,48.0,24.5,0.2 -2019,1,26,10,45,1115.0,616.0626209311941,48.0,24.5,0.2 -2019,1,26,11,0,1125.0,649.7923420801957,51.0,25.7,2.2 -2019,1,26,11,15,1125.0,671.9808303669919,51.0,25.7,2.2 -2019,1,26,11,30,1125.0,690.6278033045886,51.0,25.7,2.2 -2019,1,26,11,45,1125.0,705.6534116921317,51.0,25.7,2.2 -2019,1,26,12,0,1069.0,696.841646403472,64.0,26.8,2.5 -2019,1,26,12,15,1069.0,704.0686908995904,64.0,26.8,2.5 -2019,1,26,12,30,1069.0,707.7164058177638,64.0,26.8,2.5 -2019,1,26,12,45,1069.0,707.7691710827046,64.0,26.8,2.5 -2019,1,26,13,0,837.0,613.2813832964828,112.0,27.3,2.2 -2019,1,26,13,15,837.0,607.704710839011,112.0,27.3,2.2 -2019,1,26,13,30,837.0,599.3488639142054,112.0,27.3,2.2 -2019,1,26,13,45,837.0,588.2496235414113,112.0,27.3,2.2 -2019,1,26,14,0,839.0,550.5595470896258,87.0,27.7,3.2 -2019,1,26,14,15,839.0,534.0883860889669,87.0,27.7,3.2 -2019,1,26,14,30,839.0,515.0446645115368,87.0,27.7,3.2 -2019,1,26,14,45,839.0,493.5099304967756,87.0,27.7,3.2 -2019,1,26,15,0,675.0,383.79388483935566,76.0,26.7,4.0 -2019,1,26,15,15,675.0,362.6912111950914,76.0,26.7,4.0 -2019,1,26,15,30,675.0,339.8314537115404,76.0,26.7,4.0 -2019,1,26,15,45,675.0,315.3125013797411,76.0,26.7,4.0 -2019,1,26,16,0,450.0,182.15956541186412,40.0,25.4,3.0 -2019,1,26,16,15,450.0,163.81576211386437,40.0,25.4,3.0 -2019,1,26,16,30,450.0,144.58880867440888,40.0,25.4,3.0 -2019,1,26,16,45,450.0,124.5610378599011,40.0,25.4,3.0 -2019,1,26,17,0,0.0,0.0,0.0,24.1,2.0 -2019,1,26,17,15,0.0,0.0,0.0,24.1,2.0 -2019,1,26,17,30,0.0,0.0,0.0,24.1,2.0 -2019,1,26,17,45,0.0,0.0,0.0,24.1,2.0 -2019,1,26,18,0,0.0,0.0,0.0,22.0,1.3 -2019,1,26,18,15,0.0,0.0,0.0,22.0,1.3 -2019,1,26,18,30,0.0,0.0,0.0,22.0,1.3 -2019,1,26,18,45,0.0,0.0,0.0,22.0,1.3 -2019,1,26,19,0,0.0,0.0,0.0,20.2,0.0 -2019,1,26,19,15,0.0,0.0,0.0,20.2,0.0 -2019,1,26,19,30,0.0,0.0,0.0,20.2,0.0 -2019,1,26,19,45,0.0,0.0,0.0,20.2,0.0 -2019,1,26,20,0,0.0,0.0,0.0,17.1,0.2 -2019,1,26,20,15,0.0,0.0,0.0,17.1,0.2 -2019,1,26,20,30,0.0,0.0,0.0,17.1,0.2 -2019,1,26,20,45,0.0,0.0,0.0,17.1,0.2 -2019,1,26,21,0,0.0,0.0,0.0,16.5,1.9 -2019,1,26,21,15,0.0,0.0,0.0,16.5,1.9 -2019,1,26,21,30,0.0,0.0,0.0,16.5,1.9 -2019,1,26,21,45,0.0,0.0,0.0,16.5,1.9 -2019,1,26,22,0,0.0,0.0,0.0,14.9,0.0 -2019,1,26,22,15,0.0,0.0,0.0,14.9,0.0 -2019,1,26,22,30,0.0,0.0,0.0,14.9,0.0 -2019,1,26,22,45,0.0,0.0,0.0,14.9,0.0 -2019,1,26,23,0,0.0,0.0,0.0,14.1,0.2 -2019,1,26,23,15,0.0,0.0,0.0,14.1,0.2 -2019,1,26,23,30,0.0,0.0,0.0,14.1,0.2 -2019,1,26,23,45,0.0,0.0,0.0,14.1,0.2 -2019,1,27,0,0,0.0,0.0,0.0,11.8,1.9 -2019,1,27,0,15,0.0,0.0,0.0,11.8,1.9 -2019,1,27,0,30,0.0,0.0,0.0,11.8,1.9 -2019,1,27,0,45,0.0,0.0,0.0,11.8,1.9 -2019,1,27,1,0,0.0,0.0,0.0,12.1,0.0 -2019,1,27,1,15,0.0,0.0,0.0,12.1,0.0 -2019,1,27,1,30,0.0,0.0,0.0,12.1,0.0 -2019,1,27,1,45,0.0,0.0,0.0,12.1,0.0 -2019,1,27,2,0,0.0,0.0,0.0,11.0,0.0 -2019,1,27,2,15,0.0,0.0,0.0,11.0,0.0 -2019,1,27,2,30,0.0,0.0,0.0,11.0,0.0 -2019,1,27,2,45,0.0,0.0,0.0,11.0,0.0 -2019,1,27,3,0,0.0,0.0,0.0,10.1,0.2 -2019,1,27,3,15,0.0,0.0,0.0,10.1,0.2 -2019,1,27,3,30,0.0,0.0,0.0,10.1,0.2 -2019,1,27,3,45,0.0,0.0,0.0,10.1,0.2 -2019,1,27,4,0,0.0,0.0,0.0,11.1,1.5 -2019,1,27,4,15,0.0,0.0,0.0,11.1,1.5 -2019,1,27,4,30,0.0,0.0,0.0,11.1,1.5 -2019,1,27,4,45,0.0,0.0,0.0,11.1,1.5 -2019,1,27,5,0,0.0,0.0,0.0,12.1,1.7 -2019,1,27,5,15,0.0,0.0,0.0,12.1,1.7 -2019,1,27,5,30,0.0,0.0,0.0,12.1,1.7 -2019,1,27,5,45,0.0,0.0,0.0,12.1,1.7 -2019,1,27,6,0,0.0,0.0,0.0,19.5,3.5 -2019,1,27,6,15,0.0,0.0,0.0,19.5,3.5 -2019,1,27,6,30,0.0,0.0,0.0,19.5,3.5 -2019,1,27,6,45,0.0,0.0,0.0,19.5,3.5 -2019,1,27,7,0,380.0,-0.7763650571018488,39.0,20.0,6.6 -2019,1,27,7,15,380.0,18.625714171281473,39.0,20.0,6.6 -2019,1,27,7,30,380.0,37.820429807999695,39.0,20.0,6.6 -2019,1,27,7,45,380.0,56.725587133870235,39.0,20.0,6.6 -2019,1,27,8,0,965.0,129.0819033293456,37.0,20.1,6.1 -2019,1,27,8,15,965.0,175.00768290069243,37.0,20.1,6.1 -2019,1,27,8,30,965.0,219.59433953890678,37.0,20.1,6.1 -2019,1,27,8,45,965.0,262.6509463351953,37.0,20.1,6.1 -2019,1,27,9,0,74.0,204.47408444911127,184.0,21.0,5.9 -2019,1,27,9,15,74.0,207.49932128026518,184.0,21.0,5.9 -2019,1,27,9,30,74.0,210.3665591035654,184.0,21.0,5.9 -2019,1,27,9,45,74.0,213.0635199664662,184.0,21.0,5.9 -2019,1,27,10,0,487.0,403.821689437341,196.0,20.8,7.3 -2019,1,27,10,15,487.0,419.10650787473617,196.0,20.8,7.3 -2019,1,27,10,30,487.0,433.0583847740013,196.0,20.8,7.3 -2019,1,27,10,45,487.0,445.617576056323,196.0,20.8,7.3 -2019,1,27,11,0,23.0,240.31375139782276,228.0,22.2,7.6 -2019,1,27,11,15,23.0,240.76802136967873,228.0,22.2,7.6 -2019,1,27,11,30,23.0,241.1497850915724,228.0,22.2,7.6 -2019,1,27,11,45,23.0,241.45740779263718,228.0,22.2,7.6 -2019,1,27,12,0,87.0,325.7822947876469,274.0,22.3,6.8 -2019,1,27,12,15,87.0,326.3712920524087,274.0,22.3,6.8 -2019,1,27,12,30,87.0,326.6685773549399,274.0,22.3,6.8 -2019,1,27,12,45,87.0,326.6728776739349,274.0,22.3,6.8 -2019,1,27,13,0,502.0,497.26270858130323,195.0,22.8,7.5 -2019,1,27,13,15,502.0,493.9133287695349,195.0,22.8,7.5 -2019,1,27,13,30,502.0,488.8947616556153,195.0,22.8,7.5 -2019,1,27,13,45,502.0,482.2284975143905,195.0,22.8,7.5 -2019,1,27,14,0,534.0,444.7243146509719,148.0,22.8,5.9 -2019,1,27,14,15,534.0,434.2261226705831,148.0,22.8,5.9 -2019,1,27,14,30,534.0,422.088262738734,148.0,22.8,5.9 -2019,1,27,14,45,534.0,408.3627110350909,148.0,22.8,5.9 -2019,1,27,15,0,779.0,420.5642713320657,63.0,22.9,3.8 -2019,1,27,15,15,779.0,396.1759353519587,63.0,22.9,3.8 -2019,1,27,15,30,779.0,369.7569395729978,63.0,22.9,3.8 -2019,1,27,15,45,779.0,341.42041419102657,63.0,22.9,3.8 -2019,1,27,16,0,599.0,223.91698669353235,33.0,22.2,5.1 -2019,1,27,16,15,599.0,199.464969340605,33.0,22.2,5.1 -2019,1,27,16,30,599.0,173.83572596571776,33.0,22.2,5.1 -2019,1,27,16,45,599.0,147.13900492367517,33.0,22.2,5.1 -2019,1,27,17,0,0.0,0.0,0.0,21.6,6.1 -2019,1,27,17,15,0.0,0.0,0.0,21.6,6.1 -2019,1,27,17,30,0.0,0.0,0.0,21.6,6.1 -2019,1,27,17,45,0.0,0.0,0.0,21.6,6.1 -2019,1,27,18,0,0.0,0.0,0.0,20.4,4.7 -2019,1,27,18,15,0.0,0.0,0.0,20.4,4.7 -2019,1,27,18,30,0.0,0.0,0.0,20.4,4.7 -2019,1,27,18,45,0.0,0.0,0.0,20.4,4.7 -2019,1,27,19,0,0.0,0.0,0.0,18.8,2.2 -2019,1,27,19,15,0.0,0.0,0.0,18.8,2.2 -2019,1,27,19,30,0.0,0.0,0.0,18.8,2.2 -2019,1,27,19,45,0.0,0.0,0.0,18.8,2.2 -2019,1,27,20,0,0.0,0.0,0.0,17.8,2.5 -2019,1,27,20,15,0.0,0.0,0.0,17.8,2.5 -2019,1,27,20,30,0.0,0.0,0.0,17.8,2.5 -2019,1,27,20,45,0.0,0.0,0.0,17.8,2.5 -2019,1,27,21,0,0.0,0.0,0.0,17.8,2.4 -2019,1,27,21,15,0.0,0.0,0.0,17.8,2.4 -2019,1,27,21,30,0.0,0.0,0.0,17.8,2.4 -2019,1,27,21,45,0.0,0.0,0.0,17.8,2.4 -2019,1,27,22,0,0.0,0.0,0.0,17.7,4.4 -2019,1,27,22,15,0.0,0.0,0.0,17.7,4.4 -2019,1,27,22,30,0.0,0.0,0.0,17.7,4.4 -2019,1,27,22,45,0.0,0.0,0.0,17.7,4.4 -2019,1,27,23,0,0.0,0.0,0.0,17.3,3.4 -2019,1,27,23,15,0.0,0.0,0.0,17.3,3.4 -2019,1,27,23,30,0.0,0.0,0.0,17.3,3.4 -2019,1,27,23,45,0.0,0.0,0.0,17.3,3.4 -2019,1,28,0,0,0.0,0.0,0.0,17.7,5.6 -2019,1,28,0,15,0.0,0.0,0.0,17.7,5.6 -2019,1,28,0,30,0.0,0.0,0.0,17.7,5.6 -2019,1,28,0,45,0.0,0.0,0.0,17.7,5.6 -2019,1,28,1,0,0.0,0.0,0.0,17.2,4.6 -2019,1,28,1,15,0.0,0.0,0.0,17.2,4.6 -2019,1,28,1,30,0.0,0.0,0.0,17.2,4.6 -2019,1,28,1,45,0.0,0.0,0.0,17.2,4.6 -2019,1,28,2,0,0.0,0.0,0.0,17.1,4.5 -2019,1,28,2,15,0.0,0.0,0.0,17.1,4.5 -2019,1,28,2,30,0.0,0.0,0.0,17.1,4.5 -2019,1,28,2,45,0.0,0.0,0.0,17.1,4.5 -2019,1,28,3,0,0.0,0.0,0.0,16.6,3.9 -2019,1,28,3,15,0.0,0.0,0.0,16.6,3.9 -2019,1,28,3,30,0.0,0.0,0.0,16.6,3.9 -2019,1,28,3,45,0.0,0.0,0.0,16.6,3.9 -2019,1,28,4,0,0.0,0.0,0.0,16.1,2.9 -2019,1,28,4,15,0.0,0.0,0.0,16.1,2.9 -2019,1,28,4,30,0.0,0.0,0.0,16.1,2.9 -2019,1,28,4,45,0.0,0.0,0.0,16.1,2.9 -2019,1,28,5,0,0.0,0.0,0.0,16.1,5.1 -2019,1,28,5,15,0.0,0.0,0.0,16.1,5.1 -2019,1,28,5,30,0.0,0.0,0.0,16.1,5.1 -2019,1,28,5,45,0.0,0.0,0.0,16.1,5.1 -2019,1,28,6,0,0.0,0.0,0.0,16.2,4.9 -2019,1,28,6,15,0.0,0.0,0.0,16.2,4.9 -2019,1,28,6,30,0.0,0.0,0.0,16.2,4.9 -2019,1,28,6,45,0.0,0.0,0.0,16.2,4.9 -2019,1,28,7,0,501.0,-17.30132285170769,34.0,16.9,3.6 -2019,1,28,7,15,501.0,8.3151950355379,34.0,16.9,3.6 -2019,1,28,7,30,501.0,33.65793127842861,34.0,16.9,3.6 -2019,1,28,7,45,501.0,58.61836438968479,34.0,16.9,3.6 -2019,1,28,8,0,759.0,137.36928934473272,63.0,18.6,3.7 -2019,1,28,8,15,759.0,173.54263608911378,63.0,18.6,3.7 -2019,1,28,8,30,759.0,208.66122538254479,63.0,18.6,3.7 -2019,1,28,8,45,759.0,242.5746740341673,63.0,18.6,3.7 -2019,1,28,9,0,885.0,324.3543044974648,77.0,20.8,4.6 -2019,1,28,9,15,885.0,360.585997006184,77.0,20.8,4.6 -2019,1,28,9,30,885.0,394.9254173429247,77.0,20.8,4.6 -2019,1,28,9,45,885.0,427.2255188379208,77.0,20.8,4.6 -2019,1,28,10,0,950.0,492.2831504213343,84.0,22.2,4.7 -2019,1,28,10,15,950.0,522.1419690088405,84.0,22.2,4.7 -2019,1,28,10,30,950.0,549.3968927749731,84.0,22.2,4.7 -2019,1,28,10,45,950.0,573.931211951913,84.0,22.2,4.7 -2019,1,28,11,0,980.0,614.7969152442112,87.0,22.3,5.0 -2019,1,28,11,15,980.0,634.1803153997869,87.0,22.3,5.0 -2019,1,28,11,30,980.0,650.4699216797565,87.0,22.3,5.0 -2019,1,28,11,45,980.0,663.5959794892034,87.0,22.3,5.0 -2019,1,28,12,0,981.0,674.1007527487789,87.0,23.4,4.3 -2019,1,28,12,15,981.0,680.7516574431089,87.0,23.4,4.3 -2019,1,28,12,30,981.0,684.108576621604,87.0,23.4,4.3 -2019,1,28,12,45,981.0,684.1571354409775,87.0,23.4,4.3 -2019,1,28,13,0,954.0,662.5513335071611,85.0,23.8,5.7 -2019,1,28,13,15,954.0,656.1771179245264,85.0,23.8,5.7 -2019,1,28,13,30,954.0,646.626266573585,85.0,23.8,5.7 -2019,1,28,13,45,954.0,633.9396776660942,85.0,23.8,5.7 -2019,1,28,14,0,893.0,577.0799870767605,78.0,23.2,5.6 -2019,1,28,14,15,893.0,559.4990344324985,78.0,23.2,5.6 -2019,1,28,14,30,893.0,539.1721875751389,78.0,23.2,5.6 -2019,1,28,14,45,893.0,516.186489183559,78.0,23.2,5.6 -2019,1,28,15,0,774.0,421.65245742604213,64.0,22.7,5.1 -2019,1,28,15,15,774.0,397.38616850204266,64.0,22.7,5.1 -2019,1,28,15,30,774.0,371.09938185218215,64.0,22.7,5.1 -2019,1,28,15,45,774.0,342.90466153251623,64.0,22.7,5.1 -2019,1,28,16,0,529.0,208.12936736466233,38.0,22.2,5.4 -2019,1,28,16,15,529.0,186.50411238846146,38.0,22.2,5.4 -2019,1,28,16,30,529.0,163.83772397439117,38.0,22.2,5.4 -2019,1,28,16,45,529.0,140.22726307744765,38.0,22.2,5.4 -2019,1,28,17,0,211.0,31.02132103905929,0.0,21.5,5.5 -2019,1,28,17,15,211.0,20.97321972473196,0.0,21.5,5.5 -2019,1,28,17,30,211.0,10.673681054035969,0.0,21.5,5.5 -2019,1,28,17,45,211.0,0.16680923277314225,0.0,21.5,5.5 -2019,1,28,18,0,0.0,0.0,0.0,19.9,4.0 -2019,1,28,18,15,0.0,0.0,0.0,19.9,4.0 -2019,1,28,18,30,0.0,0.0,0.0,19.9,4.0 -2019,1,28,18,45,0.0,0.0,0.0,19.9,4.0 -2019,1,28,19,0,0.0,0.0,0.0,19.3,3.2 -2019,1,28,19,15,0.0,0.0,0.0,19.3,3.2 -2019,1,28,19,30,0.0,0.0,0.0,19.3,3.2 -2019,1,28,19,45,0.0,0.0,0.0,19.3,3.2 -2019,1,28,20,0,0.0,0.0,0.0,18.8,3.5 -2019,1,28,20,15,0.0,0.0,0.0,18.8,3.5 -2019,1,28,20,30,0.0,0.0,0.0,18.8,3.5 -2019,1,28,20,45,0.0,0.0,0.0,18.8,3.5 -2019,1,28,21,0,0.0,0.0,0.0,18.1,3.0 -2019,1,28,21,15,0.0,0.0,0.0,18.1,3.0 -2019,1,28,21,30,0.0,0.0,0.0,18.1,3.0 -2019,1,28,21,45,0.0,0.0,0.0,18.1,3.0 -2019,1,28,22,0,0.0,0.0,0.0,16.9,2.7 -2019,1,28,22,15,0.0,0.0,0.0,16.9,2.7 -2019,1,28,22,30,0.0,0.0,0.0,16.9,2.7 -2019,1,28,22,45,0.0,0.0,0.0,16.9,2.7 -2019,1,28,23,0,0.0,0.0,0.0,17.9,3.1 -2019,1,28,23,15,0.0,0.0,0.0,17.9,3.1 -2019,1,28,23,30,0.0,0.0,0.0,17.9,3.1 -2019,1,28,23,45,0.0,0.0,0.0,17.9,3.1 -2019,1,29,0,0,0.0,0.0,0.0,14.8,3.0 -2019,1,29,0,15,0.0,0.0,0.0,14.8,3.0 -2019,1,29,0,30,0.0,0.0,0.0,14.8,3.0 -2019,1,29,0,45,0.0,0.0,0.0,14.8,3.0 -2019,1,29,1,0,0.0,0.0,0.0,13.1,2.7 -2019,1,29,1,15,0.0,0.0,0.0,13.1,2.7 -2019,1,29,1,30,0.0,0.0,0.0,13.1,2.7 -2019,1,29,1,45,0.0,0.0,0.0,13.1,2.7 -2019,1,29,2,0,0.0,0.0,0.0,11.4,3.0 -2019,1,29,2,15,0.0,0.0,0.0,11.4,3.0 -2019,1,29,2,30,0.0,0.0,0.0,11.4,3.0 -2019,1,29,2,45,0.0,0.0,0.0,11.4,3.0 -2019,1,29,3,0,0.0,0.0,0.0,8.9,2.2 -2019,1,29,3,15,0.0,0.0,0.0,8.9,2.2 -2019,1,29,3,30,0.0,0.0,0.0,8.9,2.2 -2019,1,29,3,45,0.0,0.0,0.0,8.9,2.2 -2019,1,29,4,0,0.0,0.0,0.0,8.8,2.6 -2019,1,29,4,15,0.0,0.0,0.0,8.8,2.6 -2019,1,29,4,30,0.0,0.0,0.0,8.8,2.6 -2019,1,29,4,45,0.0,0.0,0.0,8.8,2.6 -2019,1,29,5,0,0.0,0.0,0.0,7.9,2.7 -2019,1,29,5,15,0.0,0.0,0.0,7.9,2.7 -2019,1,29,5,30,0.0,0.0,0.0,7.9,2.7 -2019,1,29,5,45,0.0,0.0,0.0,7.9,2.7 -2019,1,29,6,0,0.0,0.0,0.0,9.0,3.5 -2019,1,29,6,15,0.0,0.0,0.0,9.0,3.5 -2019,1,29,6,30,0.0,0.0,0.0,9.0,3.5 -2019,1,29,6,45,0.0,0.0,0.0,9.0,3.5 -2019,1,29,7,0,602.0,-30.23951143828979,30.0,10.5,2.5 -2019,1,29,7,15,602.0,0.585446396094941,30.0,10.5,2.5 -2019,1,29,7,30,602.0,31.080956345321383,30.0,10.5,2.5 -2019,1,29,7,45,602.0,61.116431954031405,30.0,10.5,2.5 -2019,1,29,8,0,887.0,136.23523039356405,47.0,14.7,2.1 -2019,1,29,8,15,887.0,178.56970422459986,47.0,14.7,2.1 -2019,1,29,8,30,887.0,219.66977190513853,47.0,14.7,2.1 -2019,1,29,8,45,887.0,259.3594366355747,47.0,14.7,2.1 -2019,1,29,9,0,1023.0,340.87206564302664,52.0,20.9,2.2 -2019,1,29,9,15,1023.0,382.8136291321771,52.0,20.9,2.2 -2019,1,29,9,30,1023.0,422.56471108584026,52.0,20.9,2.2 -2019,1,29,9,45,1023.0,459.95509126839386,52.0,20.9,2.2 -2019,1,29,10,0,1092.0,525.6925971633715,53.0,23.4,3.2 -2019,1,29,10,15,1092.0,560.0638438086025,53.0,23.4,3.2 -2019,1,29,10,30,1092.0,591.437680798077,53.0,23.4,3.2 -2019,1,29,10,45,1092.0,619.6797605452067,53.0,23.4,3.2 -2019,1,29,11,0,1123.0,660.4656145627683,52.0,24.5,3.7 -2019,1,29,11,15,1123.0,682.7093270605694,52.0,24.5,3.7 -2019,1,29,11,30,1123.0,701.4027098461377,52.0,24.5,3.7 -2019,1,29,11,45,1123.0,716.4657149845251,52.0,24.5,3.7 -2019,1,29,12,0,1124.0,728.4356514530197,52.0,25.7,3.6 -2019,1,29,12,15,1124.0,736.0670064996066,52.0,25.7,3.6 -2019,1,29,12,30,1124.0,739.9187895714091,52.0,25.7,3.6 -2019,1,29,12,45,1124.0,739.9745067419768,52.0,25.7,3.6 -2019,1,29,13,0,1096.0,720.1889463401492,53.0,26.2,0.0 -2019,1,29,13,15,1096.0,712.8554250325964,53.0,26.2,0.0 -2019,1,29,13,30,1096.0,701.8671911111998,53.0,26.2,0.0 -2019,1,29,13,45,1096.0,687.2712978805549,53.0,26.2,0.0 -2019,1,29,14,0,1032.0,633.1518386008751,53.0,26.6,0.2 -2019,1,29,14,15,1032.0,612.8051249277217,53.0,26.6,0.2 -2019,1,29,14,30,1032.0,589.2805445905055,53.0,26.6,0.2 -2019,1,29,14,45,1032.0,562.6788334537897,53.0,26.6,0.2 -2019,1,29,15,0,905.0,469.03011941512653,48.0,26.1,1.4 -2019,1,29,15,15,905.0,440.61597301750635,48.0,26.1,1.4 -2019,1,29,15,30,905.0,409.8359634935351,48.0,26.1,1.4 -2019,1,29,15,45,905.0,376.82189556942745,48.0,26.1,1.4 -2019,1,29,16,0,635.0,239.0874190616611,33.0,25.3,0.7 -2019,1,29,16,15,635.0,213.09163498106167,33.0,25.3,0.7 -2019,1,29,16,30,635.0,185.84430126186928,33.0,25.3,0.7 -2019,1,29,16,45,635.0,157.46209517015606,33.0,25.3,0.7 -2019,1,29,17,0,151.0,22.606377329335498,0.0,24.6,0.0 -2019,1,29,17,15,151.0,15.40522283512744,0.0,24.6,0.0 -2019,1,29,17,30,151.0,8.02387118802594,0.0,24.6,0.0 -2019,1,29,17,45,151.0,0.4939304689896562,0.0,24.6,0.0 -2019,1,29,18,0,0.0,0.0,0.0,21.4,0.2 -2019,1,29,18,15,0.0,0.0,0.0,21.4,0.2 -2019,1,29,18,30,0.0,0.0,0.0,21.4,0.2 -2019,1,29,18,45,0.0,0.0,0.0,21.4,0.2 -2019,1,29,19,0,0.0,0.0,0.0,18.6,1.5 -2019,1,29,19,15,0.0,0.0,0.0,18.6,1.5 -2019,1,29,19,30,0.0,0.0,0.0,18.6,1.5 -2019,1,29,19,45,0.0,0.0,0.0,18.6,1.5 -2019,1,29,20,0,0.0,0.0,0.0,15.9,1.6 -2019,1,29,20,15,0.0,0.0,0.0,15.9,1.6 -2019,1,29,20,30,0.0,0.0,0.0,15.9,1.6 -2019,1,29,20,45,0.0,0.0,0.0,15.9,1.6 -2019,1,29,21,0,0.0,0.0,0.0,14.1,2.5 -2019,1,29,21,15,0.0,0.0,0.0,14.1,2.5 -2019,1,29,21,30,0.0,0.0,0.0,14.1,2.5 -2019,1,29,21,45,0.0,0.0,0.0,14.1,2.5 -2019,1,29,22,0,0.0,0.0,0.0,11.6,2.1 -2019,1,29,22,15,0.0,0.0,0.0,11.6,2.1 -2019,1,29,22,30,0.0,0.0,0.0,11.6,2.1 -2019,1,29,22,45,0.0,0.0,0.0,11.6,2.1 -2019,1,29,23,0,0.0,0.0,0.0,10.5,2.1 -2019,1,29,23,15,0.0,0.0,0.0,10.5,2.1 -2019,1,29,23,30,0.0,0.0,0.0,10.5,2.1 -2019,1,29,23,45,0.0,0.0,0.0,10.5,2.1 -2019,1,30,0,0,0.0,0.0,0.0,9.4,2.2 -2019,1,30,0,15,0.0,0.0,0.0,9.4,2.2 -2019,1,30,0,30,0.0,0.0,0.0,9.4,2.2 -2019,1,30,0,45,0.0,0.0,0.0,9.4,2.2 -2019,1,30,1,0,0.0,0.0,0.0,9.3,2.7 -2019,1,30,1,15,0.0,0.0,0.0,9.3,2.7 -2019,1,30,1,30,0.0,0.0,0.0,9.3,2.7 -2019,1,30,1,45,0.0,0.0,0.0,9.3,2.7 -2019,1,30,2,0,0.0,0.0,0.0,8.8,3.0 -2019,1,30,2,15,0.0,0.0,0.0,8.8,3.0 -2019,1,30,2,30,0.0,0.0,0.0,8.8,3.0 -2019,1,30,2,45,0.0,0.0,0.0,8.8,3.0 -2019,1,30,3,0,0.0,0.0,0.0,7.6,2.5 -2019,1,30,3,15,0.0,0.0,0.0,7.6,2.5 -2019,1,30,3,30,0.0,0.0,0.0,7.6,2.5 -2019,1,30,3,45,0.0,0.0,0.0,7.6,2.5 -2019,1,30,4,0,0.0,0.0,0.0,6.2,2.2 -2019,1,30,4,15,0.0,0.0,0.0,6.2,2.2 -2019,1,30,4,30,0.0,0.0,0.0,6.2,2.2 -2019,1,30,4,45,0.0,0.0,0.0,6.2,2.2 -2019,1,30,5,0,0.0,0.0,0.0,7.1,2.5 -2019,1,30,5,15,0.0,0.0,0.0,7.1,2.5 -2019,1,30,5,30,0.0,0.0,0.0,7.1,2.5 -2019,1,30,5,45,0.0,0.0,0.0,7.1,2.5 -2019,1,30,6,0,0.0,0.0,0.0,6.4,2.2 -2019,1,30,6,15,0.0,0.0,0.0,6.4,2.2 -2019,1,30,6,30,0.0,0.0,0.0,6.4,2.2 -2019,1,30,6,45,0.0,0.0,0.0,6.4,2.2 -2019,1,30,7,0,563.0,-21.993054121746226,33.0,8.7,2.5 -2019,1,30,7,15,563.0,6.8767082612128085,33.0,8.7,2.5 -2019,1,30,7,30,563.0,35.43791930038146,33.0,8.7,2.5 -2019,1,30,7,45,563.0,63.568275505293045,33.0,8.7,2.5 -2019,1,30,8,0,815.0,141.1741820127929,57.0,12.3,1.3 -2019,1,30,8,15,815.0,180.12862241046054,57.0,12.3,1.3 -2019,1,30,8,30,815.0,217.947213074694,57.0,12.3,1.3 -2019,1,30,8,45,815.0,254.46800899425338,57.0,12.3,1.3 -2019,1,30,9,0,1078.0,350.5734025403032,43.0,16.9,0.2 -2019,1,30,9,15,1078.0,394.83392719872995,43.0,16.9,0.2 -2019,1,30,9,30,1078.0,436.78285796437416,43.0,16.9,0.2 -2019,1,30,9,45,1078.0,476.2405630755809,43.0,16.9,0.2 -2019,1,30,10,0,1116.0,534.607138865352,48.0,18.6,1.6 -2019,1,30,10,15,1116.0,569.7846942191621,48.0,18.6,1.6 -2019,1,30,10,30,1116.0,601.8945242393013,48.0,18.6,1.6 -2019,1,30,10,45,1116.0,630.7991297040322,48.0,18.6,1.6 -2019,1,30,11,0,1120.0,663.5552912669074,53.0,20.7,2.0 -2019,1,30,11,15,1120.0,685.7717254369377,53.0,20.7,2.0 -2019,1,30,11,30,1120.0,704.4421838018266,53.0,20.7,2.0 -2019,1,30,11,45,1120.0,719.486716592515,53.0,20.7,2.0 -2019,1,30,12,0,1040.0,702.423693609206,73.0,21.8,1.6 -2019,1,30,12,15,1040.0,709.494964944502,73.0,21.8,1.6 -2019,1,30,12,30,1040.0,713.0640562866218,73.0,21.8,1.6 -2019,1,30,12,45,1040.0,713.1156842385013,73.0,21.8,1.6 -2019,1,30,13,0,132.0,338.80552967232194,258.0,22.3,2.6 -2019,1,30,13,15,132.0,337.92101559384673,258.0,22.3,2.6 -2019,1,30,13,30,132.0,336.59569761992276,258.0,22.3,2.6 -2019,1,30,13,45,132.0,334.8352509655808,258.0,22.3,2.6 -2019,1,30,14,0,86.0,246.6337910264778,198.0,22.6,2.5 -2019,1,30,14,15,86.0,244.93577477656595,198.0,22.6,2.5 -2019,1,30,14,30,86.0,242.97255259107578,198.0,22.6,2.5 -2019,1,30,14,45,86.0,240.75253128880496,198.0,22.6,2.5 -2019,1,30,15,0,18.0,105.43178967618937,97.0,21.6,2.2 -2019,1,30,15,15,18.0,104.86582756986901,97.0,21.6,2.2 -2019,1,30,15,30,18.0,104.25274144090452,97.0,21.6,2.2 -2019,1,30,15,45,18.0,103.5951566182228,97.0,21.6,2.2 -2019,1,30,16,0,5.0,25.63774693916357,24.0,20.2,2.9 -2019,1,30,16,15,5.0,25.43275913904967,24.0,20.2,2.9 -2019,1,30,16,30,5.0,25.217902338395024,24.0,20.2,2.9 -2019,1,30,16,45,5.0,24.994096587005455,24.0,20.2,2.9 -2019,1,30,17,0,3.0,1.4573801532806143,1.0,19.1,3.4 -2019,1,30,17,15,3.0,1.31410355875564,1.0,19.1,3.4 -2019,1,30,17,30,3.0,1.167241701002328,1.0,19.1,3.4 -2019,1,30,17,45,3.0,1.0174234650422203,1.0,19.1,3.4 -2019,1,30,18,0,0.0,0.0,0.0,16.6,2.0 -2019,1,30,18,15,0.0,0.0,0.0,16.6,2.0 -2019,1,30,18,30,0.0,0.0,0.0,16.6,2.0 -2019,1,30,18,45,0.0,0.0,0.0,16.6,2.0 -2019,1,30,19,0,0.0,0.0,0.0,15.5,1.3 -2019,1,30,19,15,0.0,0.0,0.0,15.5,1.3 -2019,1,30,19,30,0.0,0.0,0.0,15.5,1.3 -2019,1,30,19,45,0.0,0.0,0.0,15.5,1.3 -2019,1,30,20,0,0.0,0.0,0.0,14.9,0.0 -2019,1,30,20,15,0.0,0.0,0.0,14.9,0.0 -2019,1,30,20,30,0.0,0.0,0.0,14.9,0.0 -2019,1,30,20,45,0.0,0.0,0.0,14.9,0.0 -2019,1,30,21,0,0.0,0.0,0.0,13.6,0.0 -2019,1,30,21,15,0.0,0.0,0.0,13.6,0.0 -2019,1,30,21,30,0.0,0.0,0.0,13.6,0.0 -2019,1,30,21,45,0.0,0.0,0.0,13.6,0.0 -2019,1,30,22,0,0.0,0.0,0.0,11.6,0.0 -2019,1,30,22,15,0.0,0.0,0.0,11.6,0.0 -2019,1,30,22,30,0.0,0.0,0.0,11.6,0.0 -2019,1,30,22,45,0.0,0.0,0.0,11.6,0.0 -2019,1,30,23,0,0.0,0.0,0.0,10.6,0.0 -2019,1,30,23,15,0.0,0.0,0.0,10.6,0.0 -2019,1,30,23,30,0.0,0.0,0.0,10.6,0.0 -2019,1,30,23,45,0.0,0.0,0.0,10.6,0.0 -2019,1,31,0,0,0.0,0.0,0.0,10.4,0.0 -2019,1,31,0,15,0.0,0.0,0.0,10.4,0.0 -2019,1,31,0,30,0.0,0.0,0.0,10.4,0.0 -2019,1,31,0,45,0.0,0.0,0.0,10.4,0.0 -2019,1,31,1,0,0.0,0.0,0.0,8.8,0.0 -2019,1,31,1,15,0.0,0.0,0.0,8.8,0.0 -2019,1,31,1,30,0.0,0.0,0.0,8.8,0.0 -2019,1,31,1,45,0.0,0.0,0.0,8.8,0.0 -2019,1,31,2,0,0.0,0.0,0.0,7.7,0.2 -2019,1,31,2,15,0.0,0.0,0.0,7.7,0.2 -2019,1,31,2,30,0.0,0.0,0.0,7.7,0.2 -2019,1,31,2,45,0.0,0.0,0.0,7.7,0.2 -2019,1,31,3,0,0.0,0.0,0.0,7.1,1.6 -2019,1,31,3,15,0.0,0.0,0.0,7.1,1.6 -2019,1,31,3,30,0.0,0.0,0.0,7.1,1.6 -2019,1,31,3,45,0.0,0.0,0.0,7.1,1.6 -2019,1,31,4,0,0.0,0.0,0.0,6.0,1.9 -2019,1,31,4,15,0.0,0.0,0.0,6.0,1.9 -2019,1,31,4,30,0.0,0.0,0.0,6.0,1.9 -2019,1,31,4,45,0.0,0.0,0.0,6.0,1.9 -2019,1,31,5,0,0.0,0.0,0.0,5.7,0.0 -2019,1,31,5,15,0.0,0.0,0.0,5.7,0.0 -2019,1,31,5,30,0.0,0.0,0.0,5.7,0.0 -2019,1,31,5,45,0.0,0.0,0.0,5.7,0.0 -2019,1,31,6,0,0.0,0.0,0.0,6.2,0.0 -2019,1,31,6,15,0.0,0.0,0.0,6.2,0.0 -2019,1,31,6,30,0.0,0.0,0.0,6.2,0.0 -2019,1,31,6,45,0.0,0.0,0.0,6.2,0.0 -2019,1,31,7,0,378.0,6.000266248304847,42.0,7.5,0.2 -2019,1,31,7,15,378.0,25.411800060011434,42.0,7.5,0.2 -2019,1,31,7,30,378.0,44.615869232307915,42.0,7.5,0.2 -2019,1,31,7,45,378.0,63.53023899273626,42.0,7.5,0.2 -2019,1,31,8,0,621.0,148.83571767446392,83.0,9.8,1.6 -2019,1,31,8,15,621.0,178.56087758627731,83.0,9.8,1.6 -2019,1,31,8,30,621.0,207.4192989538467,83.0,9.8,1.6 -2019,1,31,8,45,621.0,235.2874055864505,83.0,9.8,1.6 -2019,1,31,9,0,753.0,322.1039195905686,105.0,13.0,2.1 -2019,1,31,9,15,753.0,353.0657060781301,105.0,13.0,2.1 -2019,1,31,9,30,753.0,382.4104517125474,105.0,13.0,2.1 -2019,1,31,9,45,753.0,410.01249778792663,105.0,13.0,2.1 -2019,1,31,10,0,843.0,482.2859566439272,112.0,14.7,2.0 -2019,1,31,10,15,843.0,508.8970227299593,112.0,14.7,2.0 -2019,1,31,10,30,843.0,533.1874204020829,112.0,14.7,2.0 -2019,1,31,10,45,843.0,555.0531344483359,112.0,14.7,2.0 -2019,1,31,11,0,969.0,622.5137793784511,91.0,17.4,1.6 -2019,1,31,11,15,969.0,641.7630087212029,91.0,17.4,1.6 -2019,1,31,11,30,969.0,657.9398592566891,91.0,17.4,1.6 -2019,1,31,11,45,969.0,670.9750592274015,91.0,17.4,1.6 -2019,1,31,12,0,656.0,578.2953459011842,179.0,19.0,2.0 -2019,1,31,12,15,656.0,582.7621945821085,179.0,19.0,2.0 -2019,1,31,12,30,656.0,585.0167525247613,179.0,19.0,2.0 -2019,1,31,12,45,656.0,585.0493653659064,179.0,19.0,2.0 -2019,1,31,13,0,648.0,562.934772800493,164.0,19.5,1.6 -2019,1,31,13,15,648.0,558.5862769214145,164.0,19.5,1.6 -2019,1,31,13,30,648.0,552.0706771267658,164.0,19.5,1.6 -2019,1,31,13,45,648.0,543.4158742151603,164.0,19.5,1.6 -2019,1,31,14,0,86.0,248.92695667715788,200.0,19.9,3.0 -2019,1,31,14,15,86.0,247.22646276891638,200.0,19.9,3.0 -2019,1,31,14,30,86.0,245.2603759501808,200.0,19.9,3.0 -2019,1,31,14,45,86.0,243.0371153065481,200.0,19.9,3.0 -2019,1,31,15,0,28.0,120.2076003846469,107.0,18.8,5.6 -2019,1,31,15,15,28.0,119.32593027250508,107.0,18.8,5.6 -2019,1,31,15,30,28.0,118.37084916364589,107.0,18.8,5.6 -2019,1,31,15,45,28.0,117.34644686200419,107.0,18.8,5.6 -2019,1,31,16,0,5.0,25.65305535991156,24.0,17.3,4.8 -2019,1,31,16,15,5.0,25.447768452100398,24.0,17.3,4.8 -2019,1,31,16,30,5.0,25.232598143408453,24.0,17.3,4.8 -2019,1,31,16,45,5.0,25.008465826131086,24.0,17.3,4.8 -2019,1,31,17,0,2.0,2.3105325077041186,2.0,15.8,3.9 -2019,1,31,17,15,2.0,2.214875403442621,2.0,15.8,3.9 -2019,1,31,17,30,2.0,2.1168246360739356,2.0,15.8,3.9 -2019,1,31,17,45,2.0,2.016800074036962,2.0,15.8,3.9 -2019,1,31,18,0,0.0,0.0,0.0,13.8,2.3 -2019,1,31,18,15,0.0,0.0,0.0,13.8,2.3 -2019,1,31,18,30,0.0,0.0,0.0,13.8,2.3 -2019,1,31,18,45,0.0,0.0,0.0,13.8,2.3 -2019,1,31,19,0,0.0,0.0,0.0,12.7,0.0 -2019,1,31,19,15,0.0,0.0,0.0,12.7,0.0 -2019,1,31,19,30,0.0,0.0,0.0,12.7,0.0 -2019,1,31,19,45,0.0,0.0,0.0,12.7,0.0 -2019,1,31,20,0,0.0,0.0,0.0,12.1,0.2 -2019,1,31,20,15,0.0,0.0,0.0,12.1,0.2 -2019,1,31,20,30,0.0,0.0,0.0,12.1,0.2 -2019,1,31,20,45,0.0,0.0,0.0,12.1,0.2 -2019,1,31,21,0,0.0,0.0,0.0,11.5,1.3 -2019,1,31,21,15,0.0,0.0,0.0,11.5,1.3 -2019,1,31,21,30,0.0,0.0,0.0,11.5,1.3 -2019,1,31,21,45,0.0,0.0,0.0,11.5,1.3 -2019,1,31,22,0,0.0,0.0,0.0,9.9,0.0 -2019,1,31,22,15,0.0,0.0,0.0,9.9,0.0 -2019,1,31,22,30,0.0,0.0,0.0,9.9,0.0 -2019,1,31,22,45,0.0,0.0,0.0,9.9,0.0 -2019,1,31,23,0,0.0,0.0,0.0,9.3,0.0 -2019,1,31,23,15,0.0,0.0,0.0,9.3,0.0 -2019,1,31,23,30,0.0,0.0,0.0,9.3,0.0 -2019,1,31,23,45,0.0,0.0,0.0,9.3,0.0 -2019,2,1,0,0,0.0,0.0,0.0,8.8,0.0 -2019,2,1,0,15,0.0,0.0,0.0,8.8,0.0 -2019,2,1,0,30,0.0,0.0,0.0,8.8,0.0 -2019,2,1,0,45,0.0,0.0,0.0,8.8,0.0 -2019,2,1,1,0,0.0,0.0,0.0,7.9,0.2 -2019,2,1,1,15,0.0,0.0,0.0,7.9,0.2 -2019,2,1,1,30,0.0,0.0,0.0,7.9,0.2 -2019,2,1,1,45,0.0,0.0,0.0,7.9,0.2 -2019,2,1,2,0,0.0,0.0,0.0,8.2,2.2 -2019,2,1,2,15,0.0,0.0,0.0,8.2,2.2 -2019,2,1,2,30,0.0,0.0,0.0,8.2,2.2 -2019,2,1,2,45,0.0,0.0,0.0,8.2,2.2 -2019,2,1,3,0,0.0,0.0,0.0,7.7,2.5 -2019,2,1,3,15,0.0,0.0,0.0,7.7,2.5 -2019,2,1,3,30,0.0,0.0,0.0,7.7,2.5 -2019,2,1,3,45,0.0,0.0,0.0,7.7,2.5 -2019,2,1,4,0,0.0,0.0,0.0,6.7,1.3 -2019,2,1,4,15,0.0,0.0,0.0,6.7,1.3 -2019,2,1,4,30,0.0,0.0,0.0,6.7,1.3 -2019,2,1,4,45,0.0,0.0,0.0,6.7,1.3 -2019,2,1,5,0,0.0,0.0,0.0,6.8,0.0 -2019,2,1,5,15,0.0,0.0,0.0,6.8,0.0 -2019,2,1,5,30,0.0,0.0,0.0,6.8,0.0 -2019,2,1,5,45,0.0,0.0,0.0,6.8,0.0 -2019,2,1,6,0,0.0,0.0,0.0,7.1,0.0 -2019,2,1,6,15,0.0,0.0,0.0,7.1,0.0 -2019,2,1,6,30,0.0,0.0,0.0,7.1,0.0 -2019,2,1,6,45,0.0,0.0,0.0,7.1,0.0 -2019,2,1,7,0,99.0,37.81847820676268,47.0,7.1,0.2 -2019,2,1,7,15,99.0,42.90991254009712,47.0,7.1,0.2 -2019,2,1,7,30,99.0,47.94693115346366,47.0,7.1,0.2 -2019,2,1,7,45,99.0,52.9079647598627,47.0,7.1,0.2 -2019,2,1,8,0,155.0,143.86489156588672,127.0,10.4,1.3 -2019,2,1,8,15,155.0,151.29510342391671,127.0,10.4,1.3 -2019,2,1,8,30,155.0,158.50866208215365,127.0,10.4,1.3 -2019,2,1,8,45,155.0,165.47467797497728,127.0,10.4,1.3 -2019,2,1,9,0,204.0,259.44075868896795,200.0,13.5,0.0 -2019,2,1,9,15,204.0,267.8411226291402,200.0,13.5,0.0 -2019,2,1,9,30,204.0,275.8027608621252,200.0,13.5,0.0 -2019,2,1,9,45,204.0,283.2915804307162,200.0,13.5,0.0 -2019,2,1,10,0,264.0,364.8271345479974,248.0,15.2,0.0 -2019,2,1,10,15,264.0,373.17307967704204,248.0,15.2,0.0 -2019,2,1,10,30,264.0,380.79120085560794,248.0,15.2,0.0 -2019,2,1,10,45,264.0,387.64887611925315,248.0,15.2,0.0 -2019,2,1,11,0,317.0,441.9704792892102,267.0,17.0,0.0 -2019,2,1,11,15,317.0,448.2769405369276,267.0,17.0,0.0 -2019,2,1,11,30,317.0,453.5768244541284,267.0,17.0,0.0 -2019,2,1,11,45,317.0,457.8474361242262,267.0,17.0,0.0 -2019,2,1,12,0,638.0,576.5898152317973,186.0,19.5,0.2 -2019,2,1,12,15,638.0,580.9404735721264,186.0,19.5,0.2 -2019,2,1,12,30,638.0,583.1363866235013,186.0,19.5,0.2 -2019,2,1,12,45,638.0,583.1681511491131,186.0,19.5,0.2 -2019,2,1,13,0,1039.0,710.3260513203664,67.0,20.6,1.9 -2019,2,1,13,15,1039.0,703.3434619352342,67.0,20.6,1.9 -2019,2,1,13,30,1039.0,692.8810493610904,67.0,20.6,1.9 -2019,2,1,13,45,1039.0,678.9836152547958,67.0,20.6,1.9 -2019,2,1,14,0,1010.0,636.1114314421508,58.0,20.6,0.5 -2019,2,1,14,15,1010.0,616.1112054791389,58.0,20.6,0.5 -2019,2,1,14,30,1010.0,592.9872292937292,58.0,20.6,0.5 -2019,2,1,14,45,1010.0,566.8385233020049,58.0,20.6,0.5 -2019,2,1,15,0,798.0,444.07138029841656,65.0,20.2,4.1 -2019,2,1,15,15,798.0,418.9069050706147,65.0,20.2,4.1 -2019,2,1,15,30,798.0,391.64714592323617,65.0,20.2,4.1 -2019,2,1,15,45,798.0,362.40883332994446,65.0,20.2,4.1 -2019,2,1,16,0,487.0,206.52689461649555,44.0,19.0,3.8 -2019,2,1,16,15,487.0,186.50260539876552,44.0,19.0,3.8 -2019,2,1,16,30,487.0,165.51426016888252,44.0,19.0,3.8 -2019,2,1,16,45,487.0,143.65173424331027,44.0,19.0,3.8 -2019,2,1,17,0,234.0,37.00210110386685,0.0,17.4,3.5 -2019,2,1,17,15,234.0,25.793794803469638,0.0,17.4,3.5 -2019,2,1,17,30,234.0,14.305018908132718,0.0,17.4,3.5 -2019,2,1,17,45,234.0,2.5849701200289132,0.0,17.4,3.5 -2019,2,1,18,0,0.0,0.0,0.0,14.3,3.0 -2019,2,1,18,15,0.0,0.0,0.0,14.3,3.0 -2019,2,1,18,30,0.0,0.0,0.0,14.3,3.0 -2019,2,1,18,45,0.0,0.0,0.0,14.3,3.0 -2019,2,1,19,0,0.0,0.0,0.0,13.1,2.3 -2019,2,1,19,15,0.0,0.0,0.0,13.1,2.3 -2019,2,1,19,30,0.0,0.0,0.0,13.1,2.3 -2019,2,1,19,45,0.0,0.0,0.0,13.1,2.3 -2019,2,1,20,0,0.0,0.0,0.0,11.7,0.0 -2019,2,1,20,15,0.0,0.0,0.0,11.7,0.0 -2019,2,1,20,30,0.0,0.0,0.0,11.7,0.0 -2019,2,1,20,45,0.0,0.0,0.0,11.7,0.0 -2019,2,1,21,0,0.0,0.0,0.0,11.5,0.0 -2019,2,1,21,15,0.0,0.0,0.0,11.5,0.0 -2019,2,1,21,30,0.0,0.0,0.0,11.5,0.0 -2019,2,1,21,45,0.0,0.0,0.0,11.5,0.0 -2019,2,1,22,0,0.0,0.0,0.0,9.9,0.0 -2019,2,1,22,15,0.0,0.0,0.0,9.9,0.0 -2019,2,1,22,30,0.0,0.0,0.0,9.9,0.0 -2019,2,1,22,45,0.0,0.0,0.0,9.9,0.0 -2019,2,1,23,0,0.0,0.0,0.0,9.3,0.2 -2019,2,1,23,15,0.0,0.0,0.0,9.3,0.2 -2019,2,1,23,30,0.0,0.0,0.0,9.3,0.2 -2019,2,1,23,45,0.0,0.0,0.0,9.3,0.2 -2019,2,2,0,0,0.0,0.0,0.0,8.2,1.3 -2019,2,2,0,15,0.0,0.0,0.0,8.2,1.3 -2019,2,2,0,30,0.0,0.0,0.0,8.2,1.3 -2019,2,2,0,45,0.0,0.0,0.0,8.2,1.3 -2019,2,2,1,0,0.0,0.0,0.0,7.1,0.0 -2019,2,2,1,15,0.0,0.0,0.0,7.1,0.0 -2019,2,2,1,30,0.0,0.0,0.0,7.1,0.0 -2019,2,2,1,45,0.0,0.0,0.0,7.1,0.0 -2019,2,2,2,0,0.0,0.0,0.0,6.1,0.0 -2019,2,2,2,15,0.0,0.0,0.0,6.1,0.0 -2019,2,2,2,30,0.0,0.0,0.0,6.1,0.0 -2019,2,2,2,45,0.0,0.0,0.0,6.1,0.0 -2019,2,2,3,0,0.0,0.0,0.0,6.1,0.0 -2019,2,2,3,15,0.0,0.0,0.0,6.1,0.0 -2019,2,2,3,30,0.0,0.0,0.0,6.1,0.0 -2019,2,2,3,45,0.0,0.0,0.0,6.1,0.0 -2019,2,2,4,0,0.0,0.0,0.0,6.1,0.2 -2019,2,2,4,15,0.0,0.0,0.0,6.1,0.2 -2019,2,2,4,30,0.0,0.0,0.0,6.1,0.2 -2019,2,2,4,45,0.0,0.0,0.0,6.1,0.2 -2019,2,2,5,0,0.0,0.0,0.0,5.9,3.1 -2019,2,2,5,15,0.0,0.0,0.0,5.9,3.1 -2019,2,2,5,30,0.0,0.0,0.0,5.9,3.1 -2019,2,2,5,45,0.0,0.0,0.0,5.9,3.1 -2019,2,2,6,0,0.0,0.0,0.0,6.8,2.3 -2019,2,2,6,15,0.0,0.0,0.0,6.8,2.3 -2019,2,2,6,30,0.0,0.0,0.0,6.8,2.3 -2019,2,2,6,45,0.0,0.0,0.0,6.8,2.3 -2019,2,2,7,0,520.0,-9.90141893356084,37.0,8.1,0.2 -2019,2,2,7,15,520.0,16.88089468013494,37.0,8.1,0.2 -2019,2,2,7,30,520.0,43.376966975121384,37.0,8.1,0.2 -2019,2,2,7,45,520.0,69.47333770208053,37.0,8.1,0.2 -2019,2,2,8,0,774.0,150.41748431358252,64.0,10.6,1.3 -2019,2,2,8,15,774.0,187.57530673126655,64.0,10.6,1.3 -2019,2,2,8,30,774.0,223.64966594790707,64.0,10.6,1.3 -2019,2,2,8,45,774.0,258.4860860191019,64.0,10.6,1.3 -2019,2,2,9,0,898.0,342.45217320056554,78.0,15.6,0.2 -2019,2,2,9,15,898.0,379.4847614603702,78.0,15.6,0.2 -2019,2,2,9,30,898.0,414.5832491753683,78.0,15.6,0.2 -2019,2,2,9,45,898.0,447.5973392327465,78.0,15.6,0.2 -2019,2,2,10,0,962.0,512.9209411377574,84.0,20.2,2.5 -2019,2,2,10,15,962.0,543.377895012193,84.0,20.2,2.5 -2019,2,2,10,30,962.0,571.1787925448134,84.0,20.2,2.5 -2019,2,2,10,45,962.0,596.2045860243121,84.0,20.2,2.5 -2019,2,2,11,0,992.0,637.0117736711978,86.0,21.7,5.0 -2019,2,2,11,15,992.0,656.7759143584217,86.0,21.7,5.0 -2019,2,2,11,30,992.0,673.3854909895987,86.0,21.7,5.0 -2019,2,2,11,45,992.0,686.7693788076458,86.0,21.7,5.0 -2019,2,2,12,0,993.0,697.486062589257,86.0,21.7,4.5 -2019,2,2,12,15,993.0,704.2675247739,86.0,21.7,4.5 -2019,2,2,12,30,993.0,707.6903403925439,86.0,21.7,4.5 -2019,2,2,12,45,993.0,707.7398524232296,86.0,21.7,4.5 -2019,2,2,13,0,967.0,687.2236916776052,85.0,21.7,7.0 -2019,2,2,13,15,967.0,680.7153967396952,85.0,21.7,7.0 -2019,2,2,13,30,967.0,670.9636466311157,85.0,21.7,7.0 -2019,2,2,13,45,967.0,658.0101998429477,85.0,21.7,7.0 -2019,2,2,14,0,908.0,601.9314960919056,79.0,21.6,5.6 -2019,2,2,14,15,908.0,583.9245869834924,79.0,21.6,5.6 -2019,2,2,14,30,908.0,563.1052553336473,79.0,21.6,5.6 -2019,2,2,14,45,908.0,539.5626527167369,79.0,21.6,5.6 -2019,2,2,15,0,793.0,445.38027598237204,66.0,21.2,4.6 -2019,2,2,15,15,793.0,420.3366061539141,66.0,21.2,4.6 -2019,2,2,15,30,793.0,393.2077110941033,66.0,21.2,4.6 -2019,2,2,15,45,793.0,364.10976089649023,66.0,21.2,4.6 -2019,2,2,16,0,557.0,228.65727377076618,41.0,20.5,4.9 -2019,2,2,16,15,557.0,205.7209854854243,41.0,20.5,4.9 -2019,2,2,16,30,557.0,181.68044494036275,41.0,20.5,4.9 -2019,2,2,16,45,557.0,156.63859742096636,41.0,20.5,4.9 -2019,2,2,17,0,358.0,57.65450268345614,0.0,19.8,4.9 -2019,2,2,17,15,358.0,40.48147162382488,0.0,19.8,4.9 -2019,2,2,17,30,358.0,22.878713455021675,0.0,19.8,4.9 -2019,2,2,17,45,358.0,4.921605889950245,0.0,19.8,4.9 -2019,2,2,18,0,0.0,0.0,0.0,18.2,3.7 -2019,2,2,18,15,0.0,0.0,0.0,18.2,3.7 -2019,2,2,18,30,0.0,0.0,0.0,18.2,3.7 -2019,2,2,18,45,0.0,0.0,0.0,18.2,3.7 -2019,2,2,19,0,0.0,0.0,0.0,17.7,4.0 -2019,2,2,19,15,0.0,0.0,0.0,17.7,4.0 -2019,2,2,19,30,0.0,0.0,0.0,17.7,4.0 -2019,2,2,19,45,0.0,0.0,0.0,17.7,4.0 -2019,2,2,20,0,0.0,0.0,0.0,16.6,3.1 -2019,2,2,20,15,0.0,0.0,0.0,16.6,3.1 -2019,2,2,20,30,0.0,0.0,0.0,16.6,3.1 -2019,2,2,20,45,0.0,0.0,0.0,16.6,3.1 -2019,2,2,21,0,0.0,0.0,0.0,16.0,3.0 -2019,2,2,21,15,0.0,0.0,0.0,16.0,3.0 -2019,2,2,21,30,0.0,0.0,0.0,16.0,3.0 -2019,2,2,21,45,0.0,0.0,0.0,16.0,3.0 -2019,2,2,22,0,0.0,0.0,0.0,15.5,2.5 -2019,2,2,22,15,0.0,0.0,0.0,15.5,2.5 -2019,2,2,22,30,0.0,0.0,0.0,15.5,2.5 -2019,2,2,22,45,0.0,0.0,0.0,15.5,2.5 -2019,2,2,23,0,0.0,0.0,0.0,14.5,2.2 -2019,2,2,23,15,0.0,0.0,0.0,14.5,2.2 -2019,2,2,23,30,0.0,0.0,0.0,14.5,2.2 -2019,2,2,23,45,0.0,0.0,0.0,14.5,2.2 -2019,2,3,0,0,0.0,0.0,0.0,15.5,3.2 -2019,2,3,0,15,0.0,0.0,0.0,15.5,3.2 -2019,2,3,0,30,0.0,0.0,0.0,15.5,3.2 -2019,2,3,0,45,0.0,0.0,0.0,15.5,3.2 -2019,2,3,1,0,0.0,0.0,0.0,14.4,3.6 -2019,2,3,1,15,0.0,0.0,0.0,14.4,3.6 -2019,2,3,1,30,0.0,0.0,0.0,14.4,3.6 -2019,2,3,1,45,0.0,0.0,0.0,14.4,3.6 -2019,2,3,2,0,0.0,0.0,0.0,14.3,3.7 -2019,2,3,2,15,0.0,0.0,0.0,14.3,3.7 -2019,2,3,2,30,0.0,0.0,0.0,14.3,3.7 -2019,2,3,2,45,0.0,0.0,0.0,14.3,3.7 -2019,2,3,3,0,0.0,0.0,0.0,13.9,3.9 -2019,2,3,3,15,0.0,0.0,0.0,13.9,3.9 -2019,2,3,3,30,0.0,0.0,0.0,13.9,3.9 -2019,2,3,3,45,0.0,0.0,0.0,13.9,3.9 -2019,2,3,4,0,0.0,0.0,0.0,13.8,2.7 -2019,2,3,4,15,0.0,0.0,0.0,13.8,2.7 -2019,2,3,4,30,0.0,0.0,0.0,13.8,2.7 -2019,2,3,4,45,0.0,0.0,0.0,13.8,2.7 -2019,2,3,5,0,0.0,0.0,0.0,12.9,3.8 -2019,2,3,5,15,0.0,0.0,0.0,12.9,3.8 -2019,2,3,5,30,0.0,0.0,0.0,12.9,3.8 -2019,2,3,5,45,0.0,0.0,0.0,12.9,3.8 -2019,2,3,6,0,0.0,0.0,0.0,14.0,5.6 -2019,2,3,6,15,0.0,0.0,0.0,14.0,5.6 -2019,2,3,6,30,0.0,0.0,0.0,14.0,5.6 -2019,2,3,6,45,0.0,0.0,0.0,14.0,5.6 -2019,2,3,7,0,390.0,45.83784852139468,80.0,15.1,4.7 -2019,2,3,7,15,390.0,65.9542956327645,80.0,15.1,4.7 -2019,2,3,7,30,390.0,85.85574420323307,80.0,15.1,4.7 -2019,2,3,7,45,390.0,105.45697317469573,80.0,15.1,4.7 -2019,2,3,8,0,779.0,153.2335453122675,64.0,15.8,5.8 -2019,2,3,8,15,779.0,190.6867235167196,64.0,15.8,5.8 -2019,2,3,8,30,779.0,227.047826413569,64.0,15.8,5.8 -2019,2,3,8,45,779.0,262.16115017795255,64.0,15.8,5.8 -2019,2,3,9,0,427.0,300.1003782916953,173.0,17.3,6.2 -2019,2,3,9,15,427.0,317.7354621870828,173.0,17.3,6.2 -2019,2,3,9,30,427.0,334.4495187664618,173.0,17.3,6.2 -2019,2,3,9,45,427.0,350.1709758735708,173.0,17.3,6.2 -2019,2,3,10,0,616.0,449.7419842583901,173.0,18.4,6.0 -2019,2,3,10,15,616.0,469.2734137820727,173.0,18.4,6.0 -2019,2,3,10,30,616.0,487.10156800563914,173.0,18.4,6.0 -2019,2,3,10,45,616.0,503.15010403567635,173.0,18.4,6.0 -2019,2,3,11,0,622.0,538.7043609366045,191.0,19.0,4.0 -2019,2,3,11,15,622.0,551.1151265684766,191.0,19.0,4.0 -2019,2,3,11,30,622.0,561.5450038941026,191.0,19.0,4.0 -2019,2,3,11,45,622.0,569.9493305775502,191.0,19.0,4.0 -2019,2,3,12,0,866.0,658.4356498223102,122.0,20.1,3.7 -2019,2,3,12,15,866.0,664.3585431777012,122.0,20.1,3.7 -2019,2,3,12,30,866.0,667.3480123117038,122.0,20.1,3.7 -2019,2,3,12,45,866.0,667.3912558585342,122.0,20.1,3.7 -2019,2,3,13,0,1032.0,716.4754127935942,70.0,21.0,4.4 -2019,2,3,13,15,1032.0,709.5193679341584,70.0,21.0,4.4 -2019,2,3,13,30,1032.0,699.0967285392899,70.0,21.0,4.4 -2019,2,3,13,45,1032.0,685.25212595099,70.0,21.0,4.4 -2019,2,3,14,0,1053.0,661.2143620753909,51.0,20.5,3.4 -2019,2,3,14,15,1053.0,640.3010113769067,51.0,20.5,3.4 -2019,2,3,14,30,1053.0,616.1212933875582,51.0,20.5,3.4 -2019,2,3,14,45,1053.0,588.7787493719137,51.0,20.5,3.4 -2019,2,3,15,0,951.0,503.2415304372223,45.0,20.1,5.6 -2019,2,3,15,15,951.0,473.1636503028064,45.0,20.1,5.6 -2019,2,3,15,30,951.0,440.5813786398529,45.0,20.1,5.6 -2019,2,3,15,45,951.0,405.6342377377438,45.0,20.1,5.6 -2019,2,3,16,0,723.0,277.9202595116095,32.0,19.4,4.8 -2019,2,3,16,15,723.0,248.10434284804762,32.0,19.4,4.8 -2019,2,3,16,30,723.0,216.85295881758876,32.0,19.4,4.8 -2019,2,3,16,45,723.0,184.299930644451,32.0,19.4,4.8 -2019,2,3,17,0,301.0,49.36926870437615,0.0,18.6,4.0 -2019,2,3,17,15,301.0,34.909133639472465,0.0,18.6,4.0 -2019,2,3,17,30,301.0,20.08715726547794,0.0,18.6,4.0 -2019,2,3,17,45,301.0,4.966809560737262,0.0,18.6,4.0 -2019,2,3,18,0,0.0,0.0,0.0,16.6,3.5 -2019,2,3,18,15,0.0,0.0,0.0,16.6,3.5 -2019,2,3,18,30,0.0,0.0,0.0,16.6,3.5 -2019,2,3,18,45,0.0,0.0,0.0,16.6,3.5 -2019,2,3,19,0,0.0,0.0,0.0,15.5,3.0 -2019,2,3,19,15,0.0,0.0,0.0,15.5,3.0 -2019,2,3,19,30,0.0,0.0,0.0,15.5,3.0 -2019,2,3,19,45,0.0,0.0,0.0,15.5,3.0 -2019,2,3,20,0,0.0,0.0,0.0,14.8,2.5 -2019,2,3,20,15,0.0,0.0,0.0,14.8,2.5 -2019,2,3,20,30,0.0,0.0,0.0,14.8,2.5 -2019,2,3,20,45,0.0,0.0,0.0,14.8,2.5 -2019,2,3,21,0,0.0,0.0,0.0,13.1,2.1 -2019,2,3,21,15,0.0,0.0,0.0,13.1,2.1 -2019,2,3,21,30,0.0,0.0,0.0,13.1,2.1 -2019,2,3,21,45,0.0,0.0,0.0,13.1,2.1 -2019,2,3,22,0,0.0,0.0,0.0,11.7,2.1 -2019,2,3,22,15,0.0,0.0,0.0,11.7,2.1 -2019,2,3,22,30,0.0,0.0,0.0,11.7,2.1 -2019,2,3,22,45,0.0,0.0,0.0,11.7,2.1 -2019,2,3,23,0,0.0,0.0,0.0,11.7,2.1 -2019,2,3,23,15,0.0,0.0,0.0,11.7,2.1 -2019,2,3,23,30,0.0,0.0,0.0,11.7,2.1 -2019,2,3,23,45,0.0,0.0,0.0,11.7,2.1 -2019,2,4,0,0,0.0,0.0,0.0,11.3,2.1 -2019,2,4,0,15,0.0,0.0,0.0,11.3,2.1 -2019,2,4,0,30,0.0,0.0,0.0,11.3,2.1 -2019,2,4,0,45,0.0,0.0,0.0,11.3,2.1 -2019,2,4,1,0,0.0,0.0,0.0,8.2,2.1 -2019,2,4,1,15,0.0,0.0,0.0,8.2,2.1 -2019,2,4,1,30,0.0,0.0,0.0,8.2,2.1 -2019,2,4,1,45,0.0,0.0,0.0,8.2,2.1 -2019,2,4,2,0,0.0,0.0,0.0,7.2,2.2 -2019,2,4,2,15,0.0,0.0,0.0,7.2,2.2 -2019,2,4,2,30,0.0,0.0,0.0,7.2,2.2 -2019,2,4,2,45,0.0,0.0,0.0,7.2,2.2 -2019,2,4,3,0,0.0,0.0,0.0,7.1,2.5 -2019,2,4,3,15,0.0,0.0,0.0,7.1,2.5 -2019,2,4,3,30,0.0,0.0,0.0,7.1,2.5 -2019,2,4,3,45,0.0,0.0,0.0,7.1,2.5 -2019,2,4,4,0,0.0,0.0,0.0,6.7,2.0 -2019,2,4,4,15,0.0,0.0,0.0,6.7,2.0 -2019,2,4,4,30,0.0,0.0,0.0,6.7,2.0 -2019,2,4,4,45,0.0,0.0,0.0,6.7,2.0 -2019,2,4,5,0,0.0,0.0,0.0,6.7,1.6 -2019,2,4,5,15,0.0,0.0,0.0,6.7,1.6 -2019,2,4,5,30,0.0,0.0,0.0,6.7,1.6 -2019,2,4,5,45,0.0,0.0,0.0,6.7,1.6 -2019,2,4,6,0,230.0,-67.31036306873395,0.0,7.0,2.6 -2019,2,4,6,15,230.0,-55.43223434821632,0.0,7.0,2.6 -2019,2,4,6,30,230.0,-43.47650240004612,0.0,7.0,2.6 -2019,2,4,6,45,230.0,-31.49436350390273,0.0,7.0,2.6 -2019,2,4,7,0,499.0,-2.3870712261623623,40.0,10.1,2.8 -2019,2,4,7,15,499.0,23.389818100953608,40.0,10.1,2.8 -2019,2,4,7,30,499.0,48.891211781963726,40.0,10.1,2.8 -2019,2,4,7,45,499.0,74.00790893408052,40.0,10.1,2.8 -2019,2,4,8,0,884.0,154.86974490508277,51.0,15.9,4.1 -2019,2,4,8,15,884.0,197.43417009838944,51.0,15.9,4.1 -2019,2,4,8,30,884.0,238.75748412398212,51.0,15.9,4.1 -2019,2,4,8,45,884.0,278.66273420713253,51.0,15.9,4.1 -2019,2,4,9,0,1033.0,363.8103487088913,53.0,18.0,4.1 -2019,2,4,9,15,1033.0,406.53644993954066,53.0,18.0,4.1 -2019,2,4,9,30,1033.0,447.03109559144673,53.0,18.0,4.1 -2019,2,4,9,45,1033.0,485.12088137507646,53.0,18.0,4.1 -2019,2,4,10,0,978.0,523.7440092531394,81.0,19.6,4.0 -2019,2,4,10,15,978.0,554.7992901664584,81.0,19.6,4.0 -2019,2,4,10,30,978.0,583.1463364954277,81.0,19.6,4.0 -2019,2,4,10,45,978.0,608.6637618357493,81.0,19.6,4.0 -2019,2,4,11,0,751.0,577.5275713574762,155.0,21.1,3.2 -2019,2,4,11,15,751.0,592.5344861000972,155.0,21.1,3.2 -2019,2,4,11,30,751.0,605.1461399210112,155.0,21.1,3.2 -2019,2,4,11,45,751.0,615.3085277823806,155.0,21.1,3.2 -2019,2,4,12,0,878.0,666.1169115581349,119.0,21.2,4.0 -2019,2,4,12,15,878.0,672.1307786448182,119.0,21.2,4.0 -2019,2,4,12,30,878.0,675.1661650603561,119.0,21.2,4.0 -2019,2,4,12,45,878.0,675.2100728141161,119.0,21.2,4.0 -2019,2,4,13,0,989.0,703.2077772592324,80.0,21.7,3.1 -2019,2,4,13,15,989.0,696.5316861184345,80.0,21.7,3.1 -2019,2,4,13,30,989.0,686.5285173732782,80.0,21.7,3.1 -2019,2,4,13,45,989.0,673.2411061280446,80.0,21.7,3.1 -2019,2,4,14,0,617.0,501.7979359348464,142.0,21.7,3.2 -2019,2,4,14,15,617.0,489.5256998412304,142.0,21.7,3.2 -2019,2,4,14,30,617.0,475.3367153919882,142.0,21.7,3.2 -2019,2,4,14,45,617.0,459.2917419968643,142.0,21.7,3.2 -2019,2,4,15,0,693.0,418.3459064502062,82.0,21.3,3.6 -2019,2,4,15,15,693.0,396.3954664339004,82.0,21.3,3.6 -2019,2,4,15,30,693.0,372.6173545278589,82.0,21.3,3.6 -2019,2,4,15,45,693.0,347.11339225774583,82.0,21.3,3.6 -2019,2,4,16,0,669.0,265.75061690785026,36.0,20.8,3.6 -2019,2,4,16,15,669.0,238.12071933714387,36.0,20.8,3.6 -2019,2,4,16,30,669.0,209.16059882675773,36.0,20.8,3.6 -2019,2,4,16,45,669.0,178.99426705875567,36.0,20.8,3.6 -2019,2,4,17,0,388.0,64.81218168614524,0.0,19.8,3.7 -2019,2,4,17,15,388.0,46.14490915095322,0.0,19.8,3.7 -2019,2,4,17,30,388.0,27.01051854936896,0.0,19.8,3.7 -2019,2,4,17,45,388.0,7.490946279513414,0.0,19.8,3.7 -2019,2,4,18,0,0.0,0.0,0.0,18.2,4.1 -2019,2,4,18,15,0.0,0.0,0.0,18.2,4.1 -2019,2,4,18,30,0.0,0.0,0.0,18.2,4.1 -2019,2,4,18,45,0.0,0.0,0.0,18.2,4.1 -2019,2,4,19,0,0.0,0.0,0.0,17.0,3.8 -2019,2,4,19,15,0.0,0.0,0.0,17.0,3.8 -2019,2,4,19,30,0.0,0.0,0.0,17.0,3.8 -2019,2,4,19,45,0.0,0.0,0.0,17.0,3.8 -2019,2,4,20,0,0.0,0.0,0.0,15.5,1.3 -2019,2,4,20,15,0.0,0.0,0.0,15.5,1.3 -2019,2,4,20,30,0.0,0.0,0.0,15.5,1.3 -2019,2,4,20,45,0.0,0.0,0.0,15.5,1.3 -2019,2,4,21,0,0.0,0.0,0.0,14.0,0.2 -2019,2,4,21,15,0.0,0.0,0.0,14.0,0.2 -2019,2,4,21,30,0.0,0.0,0.0,14.0,0.2 -2019,2,4,21,45,0.0,0.0,0.0,14.0,0.2 -2019,2,4,22,0,0.0,0.0,0.0,11.0,1.5 -2019,2,4,22,15,0.0,0.0,0.0,11.0,1.5 -2019,2,4,22,30,0.0,0.0,0.0,11.0,1.5 -2019,2,4,22,45,0.0,0.0,0.0,11.0,1.5 -2019,2,4,23,0,0.0,0.0,0.0,10.0,1.5 -2019,2,4,23,15,0.0,0.0,0.0,10.0,1.5 -2019,2,4,23,30,0.0,0.0,0.0,10.0,1.5 -2019,2,4,23,45,0.0,0.0,0.0,10.0,1.5 -2019,2,5,0,0,0.0,0.0,0.0,9.8,1.3 -2019,2,5,0,15,0.0,0.0,0.0,9.8,1.3 -2019,2,5,0,30,0.0,0.0,0.0,9.8,1.3 -2019,2,5,0,45,0.0,0.0,0.0,9.8,1.3 -2019,2,5,1,0,0.0,0.0,0.0,8.3,0.2 -2019,2,5,1,15,0.0,0.0,0.0,8.3,0.2 -2019,2,5,1,30,0.0,0.0,0.0,8.3,0.2 -2019,2,5,1,45,0.0,0.0,0.0,8.3,0.2 -2019,2,5,2,0,0.0,0.0,0.0,8.2,2.2 -2019,2,5,2,15,0.0,0.0,0.0,8.2,2.2 -2019,2,5,2,30,0.0,0.0,0.0,8.2,2.2 -2019,2,5,2,45,0.0,0.0,0.0,8.2,2.2 -2019,2,5,3,0,0.0,0.0,0.0,7.7,2.5 -2019,2,5,3,15,0.0,0.0,0.0,7.7,2.5 -2019,2,5,3,30,0.0,0.0,0.0,7.7,2.5 -2019,2,5,3,45,0.0,0.0,0.0,7.7,2.5 -2019,2,5,4,0,0.0,0.0,0.0,6.8,2.0 -2019,2,5,4,15,0.0,0.0,0.0,6.8,2.0 -2019,2,5,4,30,0.0,0.0,0.0,6.8,2.0 -2019,2,5,4,45,0.0,0.0,0.0,6.8,2.0 -2019,2,5,5,0,0.0,0.0,0.0,6.9,1.5 -2019,2,5,5,15,0.0,0.0,0.0,6.9,1.5 -2019,2,5,5,30,0.0,0.0,0.0,6.9,1.5 -2019,2,5,5,45,0.0,0.0,0.0,6.9,1.5 -2019,2,5,6,0,177.0,-51.37601736456676,0.0,5.0,1.5 -2019,2,5,6,15,177.0,-42.22146013820509,0.0,5.0,1.5 -2019,2,5,6,30,177.0,-33.00709355927525,0.0,5.0,1.5 -2019,2,5,6,45,177.0,-23.77237496008341,0.0,5.0,1.5 -2019,2,5,7,0,776.0,-38.8198569885144,25.0,9.9,1.6 -2019,2,5,7,15,776.0,1.325522605378957,25.0,9.9,1.6 -2019,2,5,7,30,776.0,41.04184044752101,25.0,9.9,1.6 -2019,2,5,7,45,776.0,80.15902516755206,25.0,9.9,1.6 -2019,2,5,8,0,919.0,157.74136047182526,47.0,13.9,2.2 -2019,2,5,8,15,919.0,202.05668208095415,47.0,13.9,2.2 -2019,2,5,8,30,919.0,245.07983915831412,47.0,13.9,2.2 -2019,2,5,8,45,919.0,286.6265999402643,47.0,13.9,2.2 -2019,2,5,9,0,1034.0,367.4969561290534,53.0,18.5,2.7 -2019,2,5,9,15,1034.0,410.32787272650216,53.0,18.5,2.7 -2019,2,5,9,30,1034.0,450.9218595542971,53.0,18.5,2.7 -2019,2,5,9,45,1034.0,489.1050869287393,53.0,18.5,2.7 -2019,2,5,10,0,979.0,528.6228756205451,82.0,20.1,3.5 -2019,2,5,10,15,979.0,559.7560343064547,82.0,20.1,3.5 -2019,2,5,10,30,979.0,588.1741669293722,82.0,20.1,3.5 -2019,2,5,10,45,979.0,613.755582682574,82.0,20.1,3.5 -2019,2,5,11,0,974.0,643.5593246456048,92.0,21.2,2.3 -2019,2,5,11,15,974.0,663.0512312279672,92.0,21.2,2.3 -2019,2,5,11,30,974.0,679.4320251714541,92.0,21.2,2.3 -2019,2,5,11,45,974.0,692.6315614015739,92.0,21.2,2.3 -2019,2,5,12,0,883.0,672.5460978776815,119.0,21.7,0.0 -2019,2,5,12,15,883.0,678.6031861009175,119.0,21.7,0.0 -2019,2,5,12,30,883.0,681.6603875730347,119.0,21.7,0.0 -2019,2,5,12,45,883.0,681.704610887979,119.0,21.7,0.0 -2019,2,5,13,0,968.0,699.6173559922263,86.0,21.8,0.0 -2019,2,5,13,15,968.0,693.0733270884916,86.0,21.8,0.0 -2019,2,5,13,30,968.0,683.2680347375225,86.0,21.8,0.0 -2019,2,5,13,45,968.0,670.2434667065014,86.0,21.8,0.0 -2019,2,5,14,0,906.0,612.671682802631,81.0,22.8,0.2 -2019,2,5,14,15,906.0,594.6244499632583,81.0,22.8,0.2 -2019,2,5,14,30,906.0,573.7584965904317,81.0,22.8,0.2 -2019,2,5,14,45,906.0,550.1631738998933,81.0,22.8,0.2 -2019,2,5,15,0,921.0,500.27295645876745,50.0,22.6,1.5 -2019,2,5,15,15,921.0,471.0574437475647,50.0,22.6,1.5 -2019,2,5,15,30,921.0,439.4093432938469,50.0,22.6,1.5 -2019,2,5,15,45,921.0,405.4641771224619,50.0,22.6,1.5 -2019,2,5,16,0,788.0,302.2480296126969,29.0,21.9,1.8 -2019,2,5,16,15,788.0,269.65511035051065,29.0,21.9,1.8 -2019,2,5,16,30,788.0,235.49302678857427,29.0,21.9,1.8 -2019,2,5,16,45,788.0,199.90806621335884,29.0,21.9,1.8 -2019,2,5,17,0,326.0,55.458312814546666,0.0,20.9,2.2 -2019,2,5,17,15,326.0,39.75068404417505,0.0,20.9,2.2 -2019,2,5,17,30,326.0,23.649997468224583,0.0,20.9,2.2 -2019,2,5,17,45,326.0,7.225198698435948,0.0,20.9,2.2 -2019,2,5,18,0,0.0,0.0,0.0,19.3,3.0 -2019,2,5,18,15,0.0,0.0,0.0,19.3,3.0 -2019,2,5,18,30,0.0,0.0,0.0,19.3,3.0 -2019,2,5,18,45,0.0,0.0,0.0,19.3,3.0 -2019,2,5,19,0,0.0,0.0,0.0,18.2,2.2 -2019,2,5,19,15,0.0,0.0,0.0,18.2,2.2 -2019,2,5,19,30,0.0,0.0,0.0,18.2,2.2 -2019,2,5,19,45,0.0,0.0,0.0,18.2,2.2 -2019,2,5,20,0,0.0,0.0,0.0,17.7,3.0 -2019,2,5,20,15,0.0,0.0,0.0,17.7,3.0 -2019,2,5,20,30,0.0,0.0,0.0,17.7,3.0 -2019,2,5,20,45,0.0,0.0,0.0,17.7,3.0 -2019,2,5,21,0,0.0,0.0,0.0,16.6,2.1 -2019,2,5,21,15,0.0,0.0,0.0,16.6,2.1 -2019,2,5,21,30,0.0,0.0,0.0,16.6,2.1 -2019,2,5,21,45,0.0,0.0,0.0,16.6,2.1 -2019,2,5,22,0,0.0,0.0,0.0,15.5,2.0 -2019,2,5,22,15,0.0,0.0,0.0,15.5,2.0 -2019,2,5,22,30,0.0,0.0,0.0,15.5,2.0 -2019,2,5,22,45,0.0,0.0,0.0,15.5,2.0 -2019,2,5,23,0,0.0,0.0,0.0,14.9,1.6 -2019,2,5,23,15,0.0,0.0,0.0,14.9,1.6 -2019,2,5,23,30,0.0,0.0,0.0,14.9,1.6 -2019,2,5,23,45,0.0,0.0,0.0,14.9,1.6 -2019,2,6,0,0,0.0,0.0,0.0,14.0,2.2 -2019,2,6,0,15,0.0,0.0,0.0,14.0,2.2 -2019,2,6,0,30,0.0,0.0,0.0,14.0,2.2 -2019,2,6,0,45,0.0,0.0,0.0,14.0,2.2 -2019,2,6,1,0,0.0,0.0,0.0,10.5,2.7 -2019,2,6,1,15,0.0,0.0,0.0,10.5,2.7 -2019,2,6,1,30,0.0,0.0,0.0,10.5,2.7 -2019,2,6,1,45,0.0,0.0,0.0,10.5,2.7 -2019,2,6,2,0,0.0,0.0,0.0,9.9,3.0 -2019,2,6,2,15,0.0,0.0,0.0,9.9,3.0 -2019,2,6,2,30,0.0,0.0,0.0,9.9,3.0 -2019,2,6,2,45,0.0,0.0,0.0,9.9,3.0 -2019,2,6,3,0,0.0,0.0,0.0,9.3,2.5 -2019,2,6,3,15,0.0,0.0,0.0,9.3,2.5 -2019,2,6,3,30,0.0,0.0,0.0,9.3,2.5 -2019,2,6,3,45,0.0,0.0,0.0,9.3,2.5 -2019,2,6,4,0,0.0,0.0,0.0,8.1,2.1 -2019,2,6,4,15,0.0,0.0,0.0,8.1,2.1 -2019,2,6,4,30,0.0,0.0,0.0,8.1,2.1 -2019,2,6,4,45,0.0,0.0,0.0,8.1,2.1 -2019,2,6,5,0,0.0,0.0,0.0,6.9,2.0 -2019,2,6,5,15,0.0,0.0,0.0,6.9,2.0 -2019,2,6,5,30,0.0,0.0,0.0,6.9,2.0 -2019,2,6,5,45,0.0,0.0,0.0,6.9,2.0 -2019,2,6,6,0,130.0,-37.41616269875816,0.0,8.6,1.5 -2019,2,6,6,15,130.0,-30.682503233453303,0.0,8.6,1.5 -2019,2,6,6,30,130.0,-23.904850836204673,0.0,8.6,1.5 -2019,2,6,6,45,130.0,-17.112228455101413,0.0,8.6,1.5 -2019,2,6,7,0,205.0,37.7045135068434,54.0,10.9,1.3 -2019,2,6,7,15,205.0,48.32566071577816,54.0,10.9,1.3 -2019,2,6,7,30,205.0,58.833292295438234,54.0,10.9,1.3 -2019,2,6,7,45,205.0,69.18241295423852,54.0,10.9,1.3 -2019,2,6,8,0,894.0,161.45786982834554,51.0,14.0,0.0 -2019,2,6,8,15,894.0,204.63160592433914,51.0,14.0,0.0 -2019,2,6,8,30,894.0,246.5464643125444,51.0,14.0,0.0 -2019,2,6,8,45,894.0,287.022959134457,51.0,14.0,0.0 -2019,2,6,9,0,186.0,267.1914139502063,210.0,19.5,0.4 -2019,2,6,9,15,186.0,274.90743659769595,210.0,19.5,0.4 -2019,2,6,9,30,186.0,282.2204746225188,210.0,19.5,0.4 -2019,2,6,9,45,186.0,289.09921247313474,210.0,19.5,0.4 -2019,2,6,10,0,118.0,320.25094049401537,266.0,20.7,3.2 -2019,2,6,10,15,118.0,324.0090222206426,266.0,20.7,3.2 -2019,2,6,10,30,118.0,327.4393733132668,266.0,20.7,3.2 -2019,2,6,10,45,118.0,330.5273044818723,266.0,20.7,3.2 -2019,2,6,11,0,86.0,341.0197031769233,292.0,21.2,0.0 -2019,2,6,11,15,86.0,342.74330734374644,292.0,21.2,0.0 -2019,2,6,11,30,86.0,344.19180621570456,292.0,21.2,0.0 -2019,2,6,11,45,86.0,345.35899709825037,292.0,21.2,0.0 -2019,2,6,12,0,52.0,312.79620766096957,280.0,22.1,0.2 -2019,2,6,12,15,52.0,313.1534395820208,280.0,22.1,0.2 -2019,2,6,12,30,52.0,313.333745682027,280.0,22.1,0.2 -2019,2,6,12,45,52.0,313.33635386258675,280.0,22.1,0.2 -2019,2,6,13,0,88.0,323.1190434624272,267.0,21.9,1.6 -2019,2,6,13,15,88.0,322.523249300448,267.0,21.9,1.6 -2019,2,6,13,30,88.0,321.6305368712787,267.0,21.9,1.6 -2019,2,6,13,45,88.0,320.4447289065928,267.0,21.9,1.6 -2019,2,6,14,0,169.0,318.80775731666205,219.0,23.2,2.2 -2019,2,6,14,15,169.0,315.43633739990133,219.0,23.2,2.2 -2019,2,6,14,30,169.0,311.5383497466433,219.0,23.2,2.2 -2019,2,6,14,45,169.0,307.1304861384491,219.0,23.2,2.2 -2019,2,6,15,0,126.0,206.05434519067205,144.0,22.5,3.0 -2019,2,6,15,15,126.0,202.05150596622653,144.0,22.5,3.0 -2019,2,6,15,30,126.0,197.71537607771162,144.0,22.5,3.0 -2019,2,6,15,45,126.0,193.06452349900474,144.0,22.5,3.0 -2019,2,6,16,0,72.0,84.21077936849127,59.0,21.6,2.5 -2019,2,6,16,15,72.0,81.22832876512746,59.0,21.6,2.5 -2019,2,6,16,30,72.0,78.10229007212615,59.0,21.6,2.5 -2019,2,6,16,45,72.0,74.84604946708902,59.0,21.6,2.5 -2019,2,6,17,0,36.0,11.236775336096954,5.0,20.9,1.9 -2019,2,6,17,15,36.0,9.499617622518024,5.0,20.9,1.9 -2019,2,6,17,30,36.0,7.7189903688305535,5.0,20.9,1.9 -2019,2,6,17,45,36.0,5.902518494301716,5.0,20.9,1.9 -2019,2,6,18,0,0.0,0.0,0.0,19.4,0.2 -2019,2,6,18,15,0.0,0.0,0.0,19.4,0.2 -2019,2,6,18,30,0.0,0.0,0.0,19.4,0.2 -2019,2,6,18,45,0.0,0.0,0.0,19.4,0.2 -2019,2,6,19,0,0.0,0.0,0.0,19.3,1.3 -2019,2,6,19,15,0.0,0.0,0.0,19.3,1.3 -2019,2,6,19,30,0.0,0.0,0.0,19.3,1.3 -2019,2,6,19,45,0.0,0.0,0.0,19.3,1.3 -2019,2,6,20,0,0.0,0.0,0.0,18.8,0.0 -2019,2,6,20,15,0.0,0.0,0.0,18.8,0.0 -2019,2,6,20,30,0.0,0.0,0.0,18.8,0.0 -2019,2,6,20,45,0.0,0.0,0.0,18.8,0.0 -2019,2,6,21,0,0.0,0.0,0.0,17.8,0.0 -2019,2,6,21,15,0.0,0.0,0.0,17.8,0.0 -2019,2,6,21,30,0.0,0.0,0.0,17.8,0.0 -2019,2,6,21,45,0.0,0.0,0.0,17.8,0.0 -2019,2,6,22,0,0.0,0.0,0.0,17.6,0.0 -2019,2,6,22,15,0.0,0.0,0.0,17.6,0.0 -2019,2,6,22,30,0.0,0.0,0.0,17.6,0.0 -2019,2,6,22,45,0.0,0.0,0.0,17.6,0.0 -2019,2,6,23,0,0.0,0.0,0.0,16.0,0.0 -2019,2,6,23,15,0.0,0.0,0.0,16.0,0.0 -2019,2,6,23,30,0.0,0.0,0.0,16.0,0.0 -2019,2,6,23,45,0.0,0.0,0.0,16.0,0.0 -2019,2,7,0,0,0.0,0.0,0.0,15.4,0.0 -2019,2,7,0,15,0.0,0.0,0.0,15.4,0.0 -2019,2,7,0,30,0.0,0.0,0.0,15.4,0.0 -2019,2,7,0,45,0.0,0.0,0.0,15.4,0.0 -2019,2,7,1,0,0.0,0.0,0.0,13.8,0.2 -2019,2,7,1,15,0.0,0.0,0.0,13.8,0.2 -2019,2,7,1,30,0.0,0.0,0.0,13.8,0.2 -2019,2,7,1,45,0.0,0.0,0.0,13.8,0.2 -2019,2,7,2,0,0.0,0.0,0.0,13.3,1.9 -2019,2,7,2,15,0.0,0.0,0.0,13.3,1.9 -2019,2,7,2,30,0.0,0.0,0.0,13.3,1.9 -2019,2,7,2,45,0.0,0.0,0.0,13.3,1.9 -2019,2,7,3,0,0.0,0.0,0.0,13.3,0.3 -2019,2,7,3,15,0.0,0.0,0.0,13.3,0.3 -2019,2,7,3,30,0.0,0.0,0.0,13.3,0.3 -2019,2,7,3,45,0.0,0.0,0.0,13.3,0.3 -2019,2,7,4,0,0.0,0.0,0.0,13.2,2.3 -2019,2,7,4,15,0.0,0.0,0.0,13.2,2.3 -2019,2,7,4,30,0.0,0.0,0.0,13.2,2.3 -2019,2,7,4,45,0.0,0.0,0.0,13.2,2.3 -2019,2,7,5,0,0.0,0.0,0.0,12.4,0.0 -2019,2,7,5,15,0.0,0.0,0.0,12.4,0.0 -2019,2,7,5,30,0.0,0.0,0.0,12.4,0.0 -2019,2,7,5,45,0.0,0.0,0.0,12.4,0.0 -2019,2,7,6,0,13.0,-2.70921355799706,1.0,14.0,0.0 -2019,2,7,6,15,13.0,-2.034850236733229,1.0,14.0,0.0 -2019,2,7,6,30,13.0,-1.3560811061393303,1.0,14.0,0.0 -2019,2,7,6,45,13.0,-0.675812759839099,1.0,14.0,0.0 -2019,2,7,7,0,25.0,39.08277267052291,41.0,14.4,0.0 -2019,2,7,7,15,25.0,40.379953038456414,41.0,14.4,0.0 -2019,2,7,7,30,25.0,41.663269532473834,41.0,14.4,0.0 -2019,2,7,7,45,25.0,42.92722679432947,41.0,14.4,0.0 -2019,2,7,8,0,9.0,84.13990845139345,83.0,14.5,0.2 -2019,2,7,8,15,9.0,84.57518715016667,83.0,14.5,0.2 -2019,2,7,8,30,9.0,84.9977738120649,83.0,14.5,0.2 -2019,2,7,8,45,9.0,85.40585885612525,83.0,14.5,0.2 -2019,2,7,9,0,1.0,81.31085497772652,81.0,15.1,1.3 -2019,2,7,9,15,1.0,81.35240041562663,81.0,15.1,1.3 -2019,2,7,9,30,1.0,81.39177606043766,81.0,15.1,1.3 -2019,2,7,9,45,1.0,81.42881329960349,81.0,15.1,1.3 -2019,2,7,10,0,2.0,137.92670706795982,137.0,15.8,0.2 -2019,2,7,10,15,2.0,137.99049771396128,137.0,15.8,0.2 -2019,2,7,10,30,2.0,138.04872537587184,137.0,15.8,0.2 -2019,2,7,10,45,2.0,138.10114071390393,137.0,15.8,0.2 -2019,2,7,11,0,8.0,210.59007711013263,206.0,17.2,2.4 -2019,2,7,11,15,8.0,210.7506498665195,206.0,17.2,2.4 -2019,2,7,11,30,8.0,210.8855935275819,206.0,17.2,2.4 -2019,2,7,11,45,8.0,210.99433024384632,206.0,17.2,2.4 -2019,2,7,12,0,5.0,191.17274649250004,188.0,17.1,4.4 -2019,2,7,12,15,5.0,191.20714659298702,188.0,17.1,4.4 -2019,2,7,12,30,5.0,191.22450939735336,188.0,17.1,4.4 -2019,2,7,12,45,5.0,191.2247605554052,188.0,17.1,4.4 -2019,2,7,13,0,9.0,194.77421818496134,189.0,16.7,3.0 -2019,2,7,13,15,9.0,194.7131944377804,189.0,16.7,3.0 -2019,2,7,13,30,9.0,194.6217590712405,189.0,16.7,3.0 -2019,2,7,13,45,9.0,194.50030362561853,189.0,16.7,3.0 -2019,2,7,14,0,11.0,159.5380922343964,153.0,16.7,2.3 -2019,2,7,14,15,11.0,159.31832566941196,153.0,16.7,2.3 -2019,2,7,14,30,11.0,159.0642346994175,153.0,16.7,2.3 -2019,2,7,14,45,11.0,158.77690738095535,153.0,16.7,2.3 -2019,2,7,15,0,14.0,107.94600339200016,101.0,16.6,0.2 -2019,2,7,15,15,14.0,107.50058470963441,101.0,16.6,0.2 -2019,2,7,15,30,14.0,107.0180788798439,101.0,16.6,0.2 -2019,2,7,15,45,14.0,106.50055206666745,101.0,16.6,0.2 -2019,2,7,16,0,9.0,40.182284542452926,37.0,16.4,1.5 -2019,2,7,16,15,9.0,39.80892602455625,37.0,16.4,1.5 -2019,2,7,16,30,9.0,39.41759241051742,37.0,16.4,1.5 -2019,2,7,16,45,9.0,39.0099594509504,37.0,16.4,1.5 -2019,2,7,17,0,5.0,6.88209594042721,6.0,16.1,2.3 -2019,2,7,17,15,5.0,6.640466669159445,6.0,16.1,2.3 -2019,2,7,17,30,5.0,6.392791019248757,6.0,16.1,2.3 -2019,2,7,17,45,5.0,6.1401295758519225,6.0,16.1,2.3 -2019,2,7,18,0,0.0,0.0,0.0,15.9,0.2 -2019,2,7,18,15,0.0,0.0,0.0,15.9,0.2 -2019,2,7,18,30,0.0,0.0,0.0,15.9,0.2 -2019,2,7,18,45,0.0,0.0,0.0,15.9,0.2 -2019,2,7,19,0,0.0,0.0,0.0,14.3,1.9 -2019,2,7,19,15,0.0,0.0,0.0,14.3,1.9 -2019,2,7,19,30,0.0,0.0,0.0,14.3,1.9 -2019,2,7,19,45,0.0,0.0,0.0,14.3,1.9 -2019,2,7,20,0,0.0,0.0,0.0,13.9,0.0 -2019,2,7,20,15,0.0,0.0,0.0,13.9,0.0 -2019,2,7,20,30,0.0,0.0,0.0,13.9,0.0 -2019,2,7,20,45,0.0,0.0,0.0,13.9,0.0 -2019,2,7,21,0,0.0,0.0,0.0,13.8,0.2 -2019,2,7,21,15,0.0,0.0,0.0,13.8,0.2 -2019,2,7,21,30,0.0,0.0,0.0,13.8,0.2 -2019,2,7,21,45,0.0,0.0,0.0,13.8,0.2 -2019,2,7,22,0,0.0,0.0,0.0,12.8,1.3 -2019,2,7,22,15,0.0,0.0,0.0,12.8,1.3 -2019,2,7,22,30,0.0,0.0,0.0,12.8,1.3 -2019,2,7,22,45,0.0,0.0,0.0,12.8,1.3 -2019,2,7,23,0,0.0,0.0,0.0,12.7,0.0 -2019,2,7,23,15,0.0,0.0,0.0,12.7,0.0 -2019,2,7,23,30,0.0,0.0,0.0,12.7,0.0 -2019,2,7,23,45,0.0,0.0,0.0,12.7,0.0 -2019,2,8,0,0,0.0,0.0,0.0,12.2,0.2 -2019,2,8,0,15,0.0,0.0,0.0,12.2,0.2 -2019,2,8,0,30,0.0,0.0,0.0,12.2,0.2 -2019,2,8,0,45,0.0,0.0,0.0,12.2,0.2 -2019,2,8,1,0,0.0,0.0,0.0,12.0,1.3 -2019,2,8,1,15,0.0,0.0,0.0,12.0,1.3 -2019,2,8,1,30,0.0,0.0,0.0,12.0,1.3 -2019,2,8,1,45,0.0,0.0,0.0,12.0,1.3 -2019,2,8,2,0,0.0,0.0,0.0,10.5,0.0 -2019,2,8,2,15,0.0,0.0,0.0,10.5,0.0 -2019,2,8,2,30,0.0,0.0,0.0,10.5,0.0 -2019,2,8,2,45,0.0,0.0,0.0,10.5,0.0 -2019,2,8,3,0,0.0,0.0,0.0,9.9,0.0 -2019,2,8,3,15,0.0,0.0,0.0,9.9,0.0 -2019,2,8,3,30,0.0,0.0,0.0,9.9,0.0 -2019,2,8,3,45,0.0,0.0,0.0,9.9,0.0 -2019,2,8,4,0,0.0,0.0,0.0,9.3,0.0 -2019,2,8,4,15,0.0,0.0,0.0,9.3,0.0 -2019,2,8,4,30,0.0,0.0,0.0,9.3,0.0 -2019,2,8,4,45,0.0,0.0,0.0,9.3,0.0 -2019,2,8,5,0,0.0,0.0,0.0,8.8,0.0 -2019,2,8,5,15,0.0,0.0,0.0,8.8,0.0 -2019,2,8,5,30,0.0,0.0,0.0,8.8,0.0 -2019,2,8,5,45,0.0,0.0,0.0,8.8,0.0 -2019,2,8,6,0,292.0,-82.57259854221617,0.0,8.0,0.0 -2019,2,8,6,15,292.0,-67.40298402103771,0.0,8.0,0.0 -2019,2,8,6,30,292.0,-52.134262049789626,0.0,8.0,0.0 -2019,2,8,6,45,292.0,-36.83181564004966,0.0,8.0,0.0 -2019,2,8,7,0,533.0,2.643476741583193,42.0,9.9,0.0 -2019,2,8,7,15,533.0,30.34021791389877,42.0,9.9,0.0 -2019,2,8,7,30,533.0,57.74094464058181,42.0,9.9,0.0 -2019,2,8,7,45,533.0,84.72832280315262,42.0,9.9,0.0 -2019,2,8,8,0,776.0,169.7297330671479,69.0,14.2,0.2 -2019,2,8,8,15,776.0,207.31587343674687,69.0,14.2,0.2 -2019,2,8,8,30,776.0,243.80606153277176,69.0,14.2,0.2 -2019,2,8,8,45,776.0,279.0440407677199,69.0,14.2,0.2 -2019,2,8,9,0,894.0,363.9635973376017,83.0,16.7,2.5 -2019,2,8,9,15,894.0,401.1600877192533,83.0,16.7,2.5 -2019,2,8,9,30,894.0,436.41391744193817,83.0,16.7,2.5 -2019,2,8,9,45,894.0,469.5741241945174,83.0,16.7,2.5 -2019,2,8,10,0,957.0,535.9197609764574,89.0,21.2,5.9 -2019,2,8,10,15,957.0,566.4886775896096,89.0,21.2,5.9 -2019,2,8,10,30,957.0,594.3917739382819,89.0,21.2,5.9 -2019,2,8,10,45,957.0,619.5095646801484,89.0,21.2,5.9 -2019,2,8,11,0,986.0,660.4840216269506,91.0,21.8,7.1 -2019,2,8,11,15,986.0,680.3038502705474,91.0,21.8,7.1 -2019,2,8,11,30,986.0,696.9602264764418,91.0,21.8,7.1 -2019,2,8,11,45,986.0,710.3818250845866,91.0,21.8,7.1 -2019,2,8,12,0,987.0,721.149622214483,91.0,22.9,6.0 -2019,2,8,12,15,987.0,727.9502336976935,91.0,22.9,6.0 -2019,2,8,12,30,987.0,731.3827145649874,91.0,22.9,6.0 -2019,2,8,12,45,987.0,731.4323664063263,91.0,22.9,6.0 -2019,2,8,13,0,962.0,710.9617178256507,90.0,23.4,4.0 -2019,2,8,13,15,962.0,704.4293212930002,90.0,23.4,4.0 -2019,2,8,13,30,962.0,694.6414583881557,90.0,23.4,4.0 -2019,2,8,13,45,962.0,681.6400422427354,90.0,23.4,4.0 -2019,2,8,14,0,905.0,625.3826153426226,84.0,23.9,3.6 -2019,2,8,14,15,905.0,607.2751101237476,84.0,23.9,3.6 -2019,2,8,14,30,905.0,586.3394706848323,84.0,23.9,3.6 -2019,2,8,14,45,905.0,562.6653466480525,84.0,23.9,3.6 -2019,2,8,15,0,796.0,468.8716850172949,71.0,23.8,3.6 -2019,2,8,15,15,796.0,443.5090386804415,71.0,23.8,3.6 -2019,2,8,15,30,796.0,416.0346079909859,71.0,23.8,3.6 -2019,2,8,15,45,796.0,386.5660426790914,71.0,23.8,3.6 -2019,2,8,16,0,574.0,250.9594864020209,46.0,23.6,3.3 -2019,2,8,16,15,574.0,227.11233265144065,46.0,23.6,3.3 -2019,2,8,16,30,574.0,202.11707363250332,46.0,23.6,3.3 -2019,2,8,16,45,574.0,176.08074288166986,46.0,23.6,3.3 -2019,2,8,17,0,472.0,84.79129039580113,0.0,23.1,3.0 -2019,2,8,17,15,472.0,61.94779052283915,0.0,23.1,3.0 -2019,2,8,17,30,472.0,38.53266930186412,0.0,23.1,3.0 -2019,2,8,17,45,472.0,14.646193876699217,0.0,23.1,3.0 -2019,2,8,18,0,0.0,0.0,0.0,21.6,2.1 -2019,2,8,18,15,0.0,0.0,0.0,21.6,2.1 -2019,2,8,18,30,0.0,0.0,0.0,21.6,2.1 -2019,2,8,18,45,0.0,0.0,0.0,21.6,2.1 -2019,2,8,19,0,0.0,0.0,0.0,20.5,2.3 -2019,2,8,19,15,0.0,0.0,0.0,20.5,2.3 -2019,2,8,19,30,0.0,0.0,0.0,20.5,2.3 -2019,2,8,19,45,0.0,0.0,0.0,20.5,2.3 -2019,2,8,20,0,0.0,0.0,0.0,19.9,3.4 -2019,2,8,20,15,0.0,0.0,0.0,19.9,3.4 -2019,2,8,20,30,0.0,0.0,0.0,19.9,3.4 -2019,2,8,20,45,0.0,0.0,0.0,19.9,3.4 -2019,2,8,21,0,0.0,0.0,0.0,18.6,1.3 -2019,2,8,21,15,0.0,0.0,0.0,18.6,1.3 -2019,2,8,21,30,0.0,0.0,0.0,18.6,1.3 -2019,2,8,21,45,0.0,0.0,0.0,18.6,1.3 -2019,2,8,22,0,0.0,0.0,0.0,16.7,0.2 -2019,2,8,22,15,0.0,0.0,0.0,16.7,0.2 -2019,2,8,22,30,0.0,0.0,0.0,16.7,0.2 -2019,2,8,22,45,0.0,0.0,0.0,16.7,0.2 -2019,2,8,23,0,0.0,0.0,0.0,16.2,1.6 -2019,2,8,23,15,0.0,0.0,0.0,16.2,1.6 -2019,2,8,23,30,0.0,0.0,0.0,16.2,1.6 -2019,2,8,23,45,0.0,0.0,0.0,16.2,1.6 -2019,2,9,0,0,0.0,0.0,0.0,12.2,2.0 -2019,2,9,0,15,0.0,0.0,0.0,12.2,2.0 -2019,2,9,0,30,0.0,0.0,0.0,12.2,2.0 -2019,2,9,0,45,0.0,0.0,0.0,12.2,2.0 -2019,2,9,1,0,0.0,0.0,0.0,12.1,1.5 -2019,2,9,1,15,0.0,0.0,0.0,12.1,1.5 -2019,2,9,1,30,0.0,0.0,0.0,12.1,1.5 -2019,2,9,1,45,0.0,0.0,0.0,12.1,1.5 -2019,2,9,2,0,0.0,0.0,0.0,11.6,1.6 -2019,2,9,2,15,0.0,0.0,0.0,11.6,1.6 -2019,2,9,2,30,0.0,0.0,0.0,11.6,1.6 -2019,2,9,2,45,0.0,0.0,0.0,11.6,1.6 -2019,2,9,3,0,0.0,0.0,0.0,11.0,2.3 -2019,2,9,3,15,0.0,0.0,0.0,11.0,2.3 -2019,2,9,3,30,0.0,0.0,0.0,11.0,2.3 -2019,2,9,3,45,0.0,0.0,0.0,11.0,2.3 -2019,2,9,4,0,0.0,0.0,0.0,10.0,0.3 -2019,2,9,4,15,0.0,0.0,0.0,10.0,0.3 -2019,2,9,4,30,0.0,0.0,0.0,10.0,0.3 -2019,2,9,4,45,0.0,0.0,0.0,10.0,0.3 -2019,2,9,5,0,0.0,0.0,0.0,9.9,2.6 -2019,2,9,5,15,0.0,0.0,0.0,9.9,2.6 -2019,2,9,5,30,0.0,0.0,0.0,9.9,2.6 -2019,2,9,5,45,0.0,0.0,0.0,9.9,2.6 -2019,2,9,6,0,235.0,-65.84543699973092,0.0,9.7,2.7 -2019,2,9,6,15,235.0,-53.61904769776958,0.0,9.7,2.7 -2019,2,9,6,30,235.0,-41.31277988171789,0.0,9.7,2.7 -2019,2,9,6,45,235.0,-28.979330879656676,0.0,9.7,2.7 -2019,2,9,7,0,595.0,-3.210855643143212,39.0,12.7,3.0 -2019,2,9,7,15,595.0,27.753146834743582,39.0,12.7,3.0 -2019,2,9,7,30,595.0,58.38621536011112,39.0,12.7,3.0 -2019,2,9,7,45,595.0,88.55717443065969,39.0,12.7,3.0 -2019,2,9,8,0,851.0,172.1856135965196,59.0,16.6,1.9 -2019,2,9,8,15,851.0,213.4650951804695,59.0,16.6,1.9 -2019,2,9,8,30,851.0,253.54093251552828,59.0,16.6,1.9 -2019,2,9,8,45,851.0,292.2415147136725,59.0,16.6,1.9 -2019,2,9,9,0,974.0,376.48377299889006,67.0,20.5,0.0 -2019,2,9,9,15,974.0,417.06844748531927,67.0,20.5,0.0 -2019,2,9,9,30,974.0,455.5335066620026,67.0,20.5,0.0 -2019,2,9,9,45,974.0,491.7142372402823,67.0,20.5,0.0 -2019,2,9,10,0,1039.0,558.0508012120823,69.0,24.1,0.2 -2019,2,9,10,15,1039.0,591.2878398034101,69.0,24.1,0.2 -2019,2,9,10,30,1039.0,621.6263795002781,69.0,24.1,0.2 -2019,2,9,10,45,1039.0,648.9365060180468,69.0,24.1,0.2 -2019,2,9,11,0,1068.0,689.96261769008,69.0,25.7,1.6 -2019,2,9,11,15,1068.0,711.4623423185851,69.0,25.7,1.6 -2019,2,9,11,30,1068.0,729.5304854985819,69.0,25.7,1.6 -2019,2,9,11,45,1068.0,744.0896766671021,69.0,25.7,1.6 -2019,2,9,12,0,1070.0,756.3623605914436,69.0,26.8,2.8 -2019,2,9,12,15,1070.0,763.7457071502885,69.0,26.8,2.8 -2019,2,9,12,30,1070.0,767.4723125978137,69.0,26.8,2.8 -2019,2,9,12,45,1070.0,767.5262190373737,69.0,26.8,2.8 -2019,2,9,13,0,1044.0,747.0216002254064,69.0,27.2,4.0 -2019,2,9,13,15,1044.0,739.9219552727516,69.0,27.2,4.0 -2019,2,9,13,30,1044.0,729.2841516546879,69.0,27.2,4.0 -2019,2,9,13,45,1044.0,715.1537420794529,69.0,27.2,4.0 -2019,2,9,14,0,985.0,661.0674009609531,68.0,27.1,3.9 -2019,2,9,14,15,985.0,641.3302285589334,68.0,27.1,3.9 -2019,2,9,14,30,985.0,618.5103911513112,68.0,27.1,3.9 -2019,2,9,14,45,985.0,592.7056067852313,68.0,27.1,3.9 -2019,2,9,15,0,873.0,499.6254069231801,60.0,26.4,6.0 -2019,2,9,15,15,873.0,471.7684029514355,60.0,26.4,6.0 -2019,2,9,15,30,873.0,441.59192551794786,60.0,26.4,6.0 -2019,2,9,15,45,873.0,409.22519493186434,60.0,26.4,6.0 -2019,2,9,16,0,639.0,273.42560356374787,43.0,25.4,4.7 -2019,2,9,16,15,639.0,246.83891906776566,43.0,25.4,4.7 -2019,2,9,16,30,639.0,218.97223642788575,43.0,25.4,4.7 -2019,2,9,16,45,639.0,189.94488505734282,43.0,25.4,4.7 -2019,2,9,17,0,498.0,91.09048503360046,0.0,24.1,3.5 -2019,2,9,17,15,498.0,66.95318706302898,0.0,24.1,3.5 -2019,2,9,17,30,498.0,42.211892556022164,0.0,24.1,3.5 -2019,2,9,17,45,498.0,16.972547534011834,0.0,24.1,3.5 -2019,2,9,18,0,0.0,0.0,0.0,21.9,2.5 -2019,2,9,18,15,0.0,0.0,0.0,21.9,2.5 -2019,2,9,18,30,0.0,0.0,0.0,21.9,2.5 -2019,2,9,18,45,0.0,0.0,0.0,21.9,2.5 -2019,2,9,19,0,0.0,0.0,0.0,19.9,1.9 -2019,2,9,19,15,0.0,0.0,0.0,19.9,1.9 -2019,2,9,19,30,0.0,0.0,0.0,19.9,1.9 -2019,2,9,19,45,0.0,0.0,0.0,19.9,1.9 -2019,2,9,20,0,0.0,0.0,0.0,19.1,0.2 -2019,2,9,20,15,0.0,0.0,0.0,19.1,0.2 -2019,2,9,20,30,0.0,0.0,0.0,19.1,0.2 -2019,2,9,20,45,0.0,0.0,0.0,19.1,0.2 -2019,2,9,21,0,0.0,0.0,0.0,16.9,1.3 -2019,2,9,21,15,0.0,0.0,0.0,16.9,1.3 -2019,2,9,21,30,0.0,0.0,0.0,16.9,1.3 -2019,2,9,21,45,0.0,0.0,0.0,16.9,1.3 -2019,2,9,22,0,0.0,0.0,0.0,14.9,0.2 -2019,2,9,22,15,0.0,0.0,0.0,14.9,0.2 -2019,2,9,22,30,0.0,0.0,0.0,14.9,0.2 -2019,2,9,22,45,0.0,0.0,0.0,14.9,0.2 -2019,2,9,23,0,0.0,0.0,0.0,14.1,1.3 -2019,2,9,23,15,0.0,0.0,0.0,14.1,1.3 -2019,2,9,23,30,0.0,0.0,0.0,14.1,1.3 -2019,2,9,23,45,0.0,0.0,0.0,14.1,1.3 -2019,2,10,0,0,0.0,0.0,0.0,12.1,0.2 -2019,2,10,0,15,0.0,0.0,0.0,12.1,0.2 -2019,2,10,0,30,0.0,0.0,0.0,12.1,0.2 -2019,2,10,0,45,0.0,0.0,0.0,12.1,0.2 -2019,2,10,1,0,0.0,0.0,0.0,11.6,2.0 -2019,2,10,1,15,0.0,0.0,0.0,11.6,2.0 -2019,2,10,1,30,0.0,0.0,0.0,11.6,2.0 -2019,2,10,1,45,0.0,0.0,0.0,11.6,2.0 -2019,2,10,2,0,0.0,0.0,0.0,10.5,1.5 -2019,2,10,2,15,0.0,0.0,0.0,10.5,1.5 -2019,2,10,2,30,0.0,0.0,0.0,10.5,1.5 -2019,2,10,2,45,0.0,0.0,0.0,10.5,1.5 -2019,2,10,3,0,0.0,0.0,0.0,10.0,1.5 -2019,2,10,3,15,0.0,0.0,0.0,10.0,1.5 -2019,2,10,3,30,0.0,0.0,0.0,10.0,1.5 -2019,2,10,3,45,0.0,0.0,0.0,10.0,1.5 -2019,2,10,4,0,0.0,0.0,0.0,9.9,1.3 -2019,2,10,4,15,0.0,0.0,0.0,9.9,1.3 -2019,2,10,4,30,0.0,0.0,0.0,9.9,1.3 -2019,2,10,4,45,0.0,0.0,0.0,9.9,1.3 -2019,2,10,5,0,0.0,0.0,0.0,9.4,0.2 -2019,2,10,5,15,0.0,0.0,0.0,9.4,0.2 -2019,2,10,5,30,0.0,0.0,0.0,9.4,0.2 -2019,2,10,5,45,0.0,0.0,0.0,9.4,0.2 -2019,2,10,6,0,183.0,-50.792753623984716,0.0,9.7,2.0 -2019,2,10,6,15,183.0,-41.25783650605969,0.0,9.7,2.0 -2019,2,10,6,30,183.0,-31.660625035113142,0.0,9.7,2.0 -2019,2,10,6,45,183.0,-22.042215944054377,0.0,9.7,2.0 -2019,2,10,7,0,625.0,-4.499305796640343,38.0,12.2,1.3 -2019,2,10,7,15,625.0,28.073533745428477,38.0,12.2,1.3 -2019,2,10,7,30,625.0,60.29824456795822,38.0,12.2,1.3 -2019,2,10,7,45,625.0,92.03683551197946,38.0,12.2,1.3 -2019,2,10,8,0,821.0,175.85750237600956,64.0,15.9,0.0 -2019,2,10,8,15,821.0,215.740088001,64.0,15.9,0.0 -2019,2,10,8,30,821.0,254.45976064897525,64.0,15.9,0.0 -2019,2,10,8,45,821.0,291.8507167373043,64.0,15.9,0.0 -2019,2,10,9,0,882.0,370.3495822684023,87.0,18.2,0.2 -2019,2,10,9,15,882.0,407.15461175557147,87.0,18.2,0.2 -2019,2,10,9,30,882.0,442.03742540723505,87.0,18.2,0.2 -2019,2,10,9,45,882.0,474.84864966002976,87.0,18.2,0.2 -2019,2,10,10,0,914.0,535.6295607464774,102.0,21.3,1.5 -2019,2,10,10,15,914.0,564.9107319769321,102.0,21.3,1.5 -2019,2,10,10,30,914.0,591.6383832177298,102.0,21.3,1.5 -2019,2,10,10,45,914.0,615.6980625629536,102.0,21.3,1.5 -2019,2,10,11,0,871.0,634.8177822257749,125.0,22.9,1.7 -2019,2,10,11,15,871.0,652.3774087439538,125.0,22.9,1.7 -2019,2,10,11,30,871.0,667.1343347790473,125.0,22.9,1.7 -2019,2,10,11,45,871.0,679.0253689082485,125.0,22.9,1.7 -2019,2,10,12,0,974.0,725.5770407675395,96.0,24.0,3.5 -2019,2,10,12,15,974.0,732.3077977082623,96.0,24.0,3.5 -2019,2,10,12,30,974.0,735.7050208077547,96.0,24.0,3.5 -2019,2,10,12,45,974.0,735.7541626351533,96.0,24.0,3.5 -2019,2,10,13,0,1023.0,743.4737967669753,75.0,25.0,2.7 -2019,2,10,13,15,1023.0,736.5067738297165,75.0,25.0,2.7 -2019,2,10,13,30,1023.0,726.0676853536949,75.0,25.0,2.7 -2019,2,10,13,45,1023.0,712.2012331184025,75.0,25.0,2.7 -2019,2,10,14,0,995.0,668.9980072572062,66.0,24.9,3.3 -2019,2,10,14,15,995.0,649.0312628020567,66.0,24.9,3.3 -2019,2,10,14,30,995.0,625.9459974588091,66.0,24.9,3.3 -2019,2,10,14,45,995.0,599.8410658777775,66.0,24.9,3.3 -2019,2,10,15,0,643.0,423.23574565398513,97.0,23.9,4.5 -2019,2,10,15,15,643.0,402.68788508533106,97.0,23.9,4.5 -2019,2,10,15,30,643.0,380.4291363919908,97.0,23.9,4.5 -2019,2,10,15,45,643.0,356.5548149530946,97.0,23.9,4.5 -2019,2,10,16,0,332.0,184.9074575744858,64.0,22.3,4.0 -2019,2,10,16,15,332.0,171.07380443508396,64.0,22.3,4.0 -2019,2,10,16,30,332.0,156.57413931722587,64.0,22.3,4.0 -2019,2,10,16,45,332.0,141.47055201297545,64.0,22.3,4.0 -2019,2,10,17,0,166.0,36.913859200957035,6.0,20.8,3.4 -2019,2,10,17,15,166.0,28.85631174954806,6.0,20.8,3.4 -2019,2,10,17,30,166.0,20.597137307464834,6.0,20.8,3.4 -2019,2,10,17,45,166.0,12.171702927639906,6.0,20.8,3.4 -2019,2,10,18,0,0.0,0.0,0.0,18.1,1.9 -2019,2,10,18,15,0.0,0.0,0.0,18.1,1.9 -2019,2,10,18,30,0.0,0.0,0.0,18.1,1.9 -2019,2,10,18,45,0.0,0.0,0.0,18.1,1.9 -2019,2,10,19,0,0.0,0.0,0.0,16.6,0.0 -2019,2,10,19,15,0.0,0.0,0.0,16.6,0.0 -2019,2,10,19,30,0.0,0.0,0.0,16.6,0.0 -2019,2,10,19,45,0.0,0.0,0.0,16.6,0.0 -2019,2,10,20,0,0.0,0.0,0.0,16.0,0.0 -2019,2,10,20,15,0.0,0.0,0.0,16.0,0.0 -2019,2,10,20,30,0.0,0.0,0.0,16.0,0.0 -2019,2,10,20,45,0.0,0.0,0.0,16.0,0.0 -2019,2,10,21,0,0.0,0.0,0.0,14.9,0.2 -2019,2,10,21,15,0.0,0.0,0.0,14.9,0.2 -2019,2,10,21,30,0.0,0.0,0.0,14.9,0.2 -2019,2,10,21,45,0.0,0.0,0.0,14.9,0.2 -2019,2,10,22,0,0.0,0.0,0.0,13.8,1.5 -2019,2,10,22,15,0.0,0.0,0.0,13.8,1.5 -2019,2,10,22,30,0.0,0.0,0.0,13.8,1.5 -2019,2,10,22,45,0.0,0.0,0.0,13.8,1.5 -2019,2,10,23,0,0.0,0.0,0.0,12.8,1.3 -2019,2,10,23,15,0.0,0.0,0.0,12.8,1.3 -2019,2,10,23,30,0.0,0.0,0.0,12.8,1.3 -2019,2,10,23,45,0.0,0.0,0.0,12.8,1.3 -2019,2,11,0,0,0.0,0.0,0.0,12.7,0.0 -2019,2,11,0,15,0.0,0.0,0.0,12.7,0.0 -2019,2,11,0,30,0.0,0.0,0.0,12.7,0.0 -2019,2,11,0,45,0.0,0.0,0.0,12.7,0.0 -2019,2,11,1,0,0.0,0.0,0.0,11.6,0.2 -2019,2,11,1,15,0.0,0.0,0.0,11.6,0.2 -2019,2,11,1,30,0.0,0.0,0.0,11.6,0.2 -2019,2,11,1,45,0.0,0.0,0.0,11.6,0.2 -2019,2,11,2,0,0.0,0.0,0.0,10.8,1.5 -2019,2,11,2,15,0.0,0.0,0.0,10.8,1.5 -2019,2,11,2,30,0.0,0.0,0.0,10.8,1.5 -2019,2,11,2,45,0.0,0.0,0.0,10.8,1.5 -2019,2,11,3,0,0.0,0.0,0.0,10.1,0.0 -2019,2,11,3,15,0.0,0.0,0.0,10.1,0.0 -2019,2,11,3,30,0.0,0.0,0.0,10.1,0.0 -2019,2,11,3,45,0.0,0.0,0.0,10.1,0.0 -2019,2,11,4,0,0.0,0.0,0.0,11.1,0.0 -2019,2,11,4,15,0.0,0.0,0.0,11.1,0.0 -2019,2,11,4,30,0.0,0.0,0.0,11.1,0.0 -2019,2,11,4,45,0.0,0.0,0.0,11.1,0.0 -2019,2,11,5,0,0.0,0.0,0.0,10.1,0.0 -2019,2,11,5,15,0.0,0.0,0.0,10.1,0.0 -2019,2,11,5,30,0.0,0.0,0.0,10.1,0.0 -2019,2,11,5,45,0.0,0.0,0.0,10.1,0.0 -2019,2,11,6,0,2.0,2.4502571623859817,3.0,10.7,0.0 -2019,2,11,6,15,2.0,2.554615552395579,3.0,10.7,0.0 -2019,2,11,6,30,2.0,2.6596557457504613,3.0,10.7,0.0 -2019,2,11,6,45,2.0,2.7649279442166197,3.0,10.7,0.0 -2019,2,11,7,0,4.0,24.739962712157077,25.0,11.2,1.5 -2019,2,11,7,15,4.0,24.94873225299707,25.0,11.2,1.5 -2019,2,11,7,30,4.0,25.15527052772845,25.0,11.2,1.5 -2019,2,11,7,45,4.0,25.35869310775049,25.0,11.2,1.5 -2019,2,11,8,0,3.0,64.41859667975915,64.0,12.5,2.1 -2019,2,11,8,15,3.0,64.56454293160454,64.0,12.5,2.1 -2019,2,11,8,30,3.0,64.70623362209255,64.0,12.5,2.1 -2019,2,11,8,45,3.0,64.84306200993379,64.0,12.5,2.1 -2019,2,11,9,0,2.0,106.64962811664348,106.0,14.5,1.9 -2019,2,11,9,15,2.0,106.73320768476688,106.0,14.5,1.9 -2019,2,11,9,30,2.0,106.812422143784,106.0,14.5,1.9 -2019,2,11,9,45,2.0,106.8869322852201,106.0,14.5,1.9 -2019,2,11,10,0,2.0,135.95641904521054,135.0,15.2,0.2 -2019,2,11,10,15,2.0,136.02058487078125,135.0,15.2,0.2 -2019,2,11,10,30,2.0,136.07915499401622,135.0,15.2,0.2 -2019,2,11,10,45,2.0,136.13187860865588,135.0,15.2,0.2 -2019,2,11,11,0,5.0,202.9463248602203,200.0,16.7,2.4 -2019,2,11,11,15,5.0,203.0472730803313,200.0,16.7,2.4 -2019,2,11,11,30,5.0,203.1321089061964,200.0,16.7,2.4 -2019,2,11,11,45,5.0,203.20046905778503,200.0,16.7,2.4 -2019,2,11,12,0,10.0,232.50412161286644,226.0,16.9,4.5 -2019,2,11,12,15,10.0,232.5733264567055,226.0,16.9,4.5 -2019,2,11,12,30,10.0,232.60825630132138,226.0,16.9,4.5 -2019,2,11,12,45,10.0,232.60876157175693,226.0,16.9,4.5 -2019,2,11,13,0,119.0,361.2405972419624,283.0,18.2,4.2 -2019,2,11,13,15,119.0,360.428982157369,283.0,18.2,4.2 -2019,2,11,13,30,119.0,359.21289291052074,283.0,18.2,4.2 -2019,2,11,13,45,119.0,357.5975369822703,283.0,18.2,4.2 -2019,2,11,14,0,408.0,444.87942254181553,196.0,17.7,4.5 -2019,2,11,14,15,408.0,436.68013939628224,196.0,17.7,4.5 -2019,2,11,14,30,408.0,427.2002450918184,196.0,17.7,4.5 -2019,2,11,14,45,408.0,416.4803339912156,196.0,17.7,4.5 -2019,2,11,15,0,39.0,151.9364855528989,132.0,16.9,3.7 -2019,2,11,15,15,39.0,150.68837864657493,132.0,16.9,3.7 -2019,2,11,15,30,39.0,149.33634990969182,132.0,16.9,3.7 -2019,2,11,15,45,39.0,147.88618893686817,132.0,16.9,3.7 -2019,2,11,16,0,8.0,41.94238062359432,39.0,15.8,4.4 -2019,2,11,16,15,8.0,41.60855449374451,39.0,15.8,4.4 -2019,2,11,16,30,8.0,41.25865652813584,39.0,15.8,4.4 -2019,2,11,16,45,8.0,40.894185043574346,39.0,15.8,4.4 -2019,2,11,17,0,4.0,10.7583503814558,10.0,14.8,5.0 -2019,2,11,17,15,4.0,10.563910065894923,10.0,14.8,5.0 -2019,2,11,17,30,4.0,10.364604198386791,10.0,14.8,5.0 -2019,2,11,17,45,4.0,10.161286237254071,10.0,14.8,5.0 -2019,2,11,18,0,0.0,0.0,0.0,13.2,4.4 -2019,2,11,18,15,0.0,0.0,0.0,13.2,4.4 -2019,2,11,18,30,0.0,0.0,0.0,13.2,4.4 -2019,2,11,18,45,0.0,0.0,0.0,13.2,4.4 -2019,2,11,19,0,0.0,0.0,0.0,12.2,2.8 -2019,2,11,19,15,0.0,0.0,0.0,12.2,2.8 -2019,2,11,19,30,0.0,0.0,0.0,12.2,2.8 -2019,2,11,19,45,0.0,0.0,0.0,12.2,2.8 -2019,2,11,20,0,0.0,0.0,0.0,12.1,4.0 -2019,2,11,20,15,0.0,0.0,0.0,12.1,4.0 -2019,2,11,20,30,0.0,0.0,0.0,12.1,4.0 -2019,2,11,20,45,0.0,0.0,0.0,12.1,4.0 -2019,2,11,21,0,0.0,0.0,0.0,11.6,2.9 -2019,2,11,21,15,0.0,0.0,0.0,11.6,2.9 -2019,2,11,21,30,0.0,0.0,0.0,11.6,2.9 -2019,2,11,21,45,0.0,0.0,0.0,11.6,2.9 -2019,2,11,22,0,0.0,0.0,0.0,11.1,1.3 -2019,2,11,22,15,0.0,0.0,0.0,11.1,1.3 -2019,2,11,22,30,0.0,0.0,0.0,11.1,1.3 -2019,2,11,22,45,0.0,0.0,0.0,11.1,1.3 -2019,2,11,23,0,0.0,0.0,0.0,11.1,0.0 -2019,2,11,23,15,0.0,0.0,0.0,11.1,0.0 -2019,2,11,23,30,0.0,0.0,0.0,11.1,0.0 -2019,2,11,23,45,0.0,0.0,0.0,11.1,0.0 -2019,2,12,0,0,0.0,0.0,0.0,10.6,0.0 -2019,2,12,0,15,0.0,0.0,0.0,10.6,0.0 -2019,2,12,0,30,0.0,0.0,0.0,10.6,0.0 -2019,2,12,0,45,0.0,0.0,0.0,10.6,0.0 -2019,2,12,1,0,0.0,0.0,0.0,10.7,0.0 -2019,2,12,1,15,0.0,0.0,0.0,10.7,0.0 -2019,2,12,1,30,0.0,0.0,0.0,10.7,0.0 -2019,2,12,1,45,0.0,0.0,0.0,10.7,0.0 -2019,2,12,2,0,0.0,0.0,0.0,10.0,0.0 -2019,2,12,2,15,0.0,0.0,0.0,10.0,0.0 -2019,2,12,2,30,0.0,0.0,0.0,10.0,0.0 -2019,2,12,2,45,0.0,0.0,0.0,10.0,0.0 -2019,2,12,3,0,0.0,0.0,0.0,10.0,0.0 -2019,2,12,3,15,0.0,0.0,0.0,10.0,0.0 -2019,2,12,3,30,0.0,0.0,0.0,10.0,0.0 -2019,2,12,3,45,0.0,0.0,0.0,10.0,0.0 -2019,2,12,4,0,0.0,0.0,0.0,9.3,0.0 -2019,2,12,4,15,0.0,0.0,0.0,9.3,0.0 -2019,2,12,4,30,0.0,0.0,0.0,9.3,0.0 -2019,2,12,4,45,0.0,0.0,0.0,9.3,0.0 -2019,2,12,5,0,0.0,0.0,0.0,9.0,0.0 -2019,2,12,5,15,0.0,0.0,0.0,9.0,0.0 -2019,2,12,5,30,0.0,0.0,0.0,9.0,0.0 -2019,2,12,5,45,0.0,0.0,0.0,9.0,0.0 -2019,2,12,6,0,2.0,3.455719924667601,4.0,9.5,0.0 -2019,2,12,6,15,2.0,3.5602290573887343,4.0,9.5,0.0 -2019,2,12,6,30,2.0,3.6654209783005967,4.0,9.5,0.0 -2019,2,12,6,45,2.0,3.770845239448486,4.0,9.5,0.0 -2019,2,12,7,0,4.0,25.75210079592228,26.0,10.1,0.0 -2019,2,12,7,15,4.0,25.96117189839684,26.0,10.1,0.0 -2019,2,12,7,30,4.0,26.168008511762675,26.0,10.1,0.0 -2019,2,12,7,45,4.0,26.37172492988721,26.0,10.1,0.0 -2019,2,12,8,0,2.0,60.28572440389647,60.0,10.9,0.0 -2019,2,12,8,15,2.0,60.38316244858624,60.0,10.9,0.0 -2019,2,12,8,30,2.0,60.4777593543466,60.0,10.9,0.0 -2019,2,12,8,45,2.0,60.5691100427043,60.0,10.9,0.0 -2019,2,12,9,0,2.0,101.65682333598738,101.0,13.0,0.0 -2019,2,12,9,15,2.0,101.74052363240803,101.0,13.0,0.0 -2019,2,12,9,30,2.0,101.81985251444705,101.0,13.0,0.0 -2019,2,12,9,45,2.0,101.89447028365275,101.0,13.0,0.0 -2019,2,12,10,0,2.0,144.9640574152819,144.0,14.4,0.2 -2019,2,12,10,15,2.0,145.0283159265536,144.0,14.4,0.2 -2019,2,12,10,30,2.0,145.0869706526575,144.0,14.4,0.2 -2019,2,12,10,45,2.0,145.13977042505155,144.0,14.4,0.2 -2019,2,12,11,0,3.0,178.77973372050658,177.0,14.5,2.0 -2019,2,12,11,15,3.0,178.84039014266435,177.0,14.5,2.0 -2019,2,12,11,30,3.0,178.8913651639388,177.0,14.5,2.0 -2019,2,12,11,45,3.0,178.932440501463,177.0,14.5,2.0 -2019,2,12,12,0,7.0,217.58136061678326,213.0,15.1,1.7 -2019,2,12,12,15,7.0,217.6298739825638,213.0,15.1,1.7 -2019,2,12,12,30,7.0,217.65436019240843,213.0,15.1,1.7 -2019,2,12,12,45,7.0,217.65471439260742,213.0,15.1,1.7 -2019,2,12,13,0,22.0,248.55436735160927,234.0,15.7,3.5 -2019,2,12,13,15,22.0,248.40410412752126,234.0,15.7,3.5 -2019,2,12,13,30,22.0,248.17895615469658,234.0,15.7,3.5 -2019,2,12,13,45,22.0,247.87988755132017,234.0,15.7,3.5 -2019,2,12,14,0,48.0,239.47239049105212,210.0,16.1,2.9 -2019,2,12,14,15,48.0,238.50637557626624,210.0,16.1,2.9 -2019,2,12,14,30,48.0,237.38948290087484,210.0,16.1,2.9 -2019,2,12,14,45,48.0,236.12649517078253,210.0,16.1,2.9 -2019,2,12,15,0,45.0,160.17764440001275,137.0,16.1,1.6 -2019,2,12,15,15,45.0,158.73544082954044,137.0,16.1,1.6 -2019,2,12,15,30,45.0,157.17315424829155,137.0,16.1,1.6 -2019,2,12,15,45,45.0,155.4974746072536,137.0,16.1,1.6 -2019,2,12,16,0,20.0,59.42914552173535,52.0,15.8,2.1 -2019,2,12,16,15,20.0,58.59337469135346,52.0,15.8,2.1 -2019,2,12,16,30,20.0,57.71736623330595,52.0,15.8,2.1 -2019,2,12,16,45,20.0,56.80487135029745,52.0,15.8,2.1 -2019,2,12,17,0,10.0,12.929898742752865,11.0,15.4,2.9 -2019,2,12,17,15,10.0,12.443095795155124,11.0,15.4,2.9 -2019,2,12,17,30,10.0,11.944111397312454,11.0,15.4,2.9 -2019,2,12,17,45,10.0,11.435082277021898,11.0,15.4,2.9 -2019,2,12,18,0,0.0,0.0,0.0,13.8,4.8 -2019,2,12,18,15,0.0,0.0,0.0,13.8,4.8 -2019,2,12,18,30,0.0,0.0,0.0,13.8,4.8 -2019,2,12,18,45,0.0,0.0,0.0,13.8,4.8 -2019,2,12,19,0,0.0,0.0,0.0,13.2,2.1 -2019,2,12,19,15,0.0,0.0,0.0,13.2,2.1 -2019,2,12,19,30,0.0,0.0,0.0,13.2,2.1 -2019,2,12,19,45,0.0,0.0,0.0,13.2,2.1 -2019,2,12,20,0,0.0,0.0,0.0,12.1,2.2 -2019,2,12,20,15,0.0,0.0,0.0,12.1,2.2 -2019,2,12,20,30,0.0,0.0,0.0,12.1,2.2 -2019,2,12,20,45,0.0,0.0,0.0,12.1,2.2 -2019,2,12,21,0,0.0,0.0,0.0,11.7,3.0 -2019,2,12,21,15,0.0,0.0,0.0,11.7,3.0 -2019,2,12,21,30,0.0,0.0,0.0,11.7,3.0 -2019,2,12,21,45,0.0,0.0,0.0,11.7,3.0 -2019,2,12,22,0,0.0,0.0,0.0,11.8,2.1 -2019,2,12,22,15,0.0,0.0,0.0,11.8,2.1 -2019,2,12,22,30,0.0,0.0,0.0,11.8,2.1 -2019,2,12,22,45,0.0,0.0,0.0,11.8,2.1 -2019,2,12,23,0,0.0,0.0,0.0,11.7,0.2 -2019,2,12,23,15,0.0,0.0,0.0,11.7,0.2 -2019,2,12,23,30,0.0,0.0,0.0,11.7,0.2 -2019,2,12,23,45,0.0,0.0,0.0,11.7,0.2 -2019,2,13,0,0,0.0,0.0,0.0,11.5,1.5 -2019,2,13,0,15,0.0,0.0,0.0,11.5,1.5 -2019,2,13,0,30,0.0,0.0,0.0,11.5,1.5 -2019,2,13,0,45,0.0,0.0,0.0,11.5,1.5 -2019,2,13,1,0,0.0,0.0,0.0,11.0,0.0 -2019,2,13,1,15,0.0,0.0,0.0,11.0,0.0 -2019,2,13,1,30,0.0,0.0,0.0,11.0,0.0 -2019,2,13,1,45,0.0,0.0,0.0,11.0,0.0 -2019,2,13,2,0,0.0,0.0,0.0,10.7,0.0 -2019,2,13,2,15,0.0,0.0,0.0,10.7,0.0 -2019,2,13,2,30,0.0,0.0,0.0,10.7,0.0 -2019,2,13,2,45,0.0,0.0,0.0,10.7,0.0 -2019,2,13,3,0,0.0,0.0,0.0,11.0,0.0 -2019,2,13,3,15,0.0,0.0,0.0,11.0,0.0 -2019,2,13,3,30,0.0,0.0,0.0,11.0,0.0 -2019,2,13,3,45,0.0,0.0,0.0,11.0,0.0 -2019,2,13,4,0,0.0,0.0,0.0,10.6,0.0 -2019,2,13,4,15,0.0,0.0,0.0,10.6,0.0 -2019,2,13,4,30,0.0,0.0,0.0,10.6,0.0 -2019,2,13,4,45,0.0,0.0,0.0,10.6,0.0 -2019,2,13,5,0,0.0,0.0,0.0,10.7,0.0 -2019,2,13,5,15,0.0,0.0,0.0,10.7,0.0 -2019,2,13,5,30,0.0,0.0,0.0,10.7,0.0 -2019,2,13,5,45,0.0,0.0,0.0,10.7,0.0 -2019,2,13,6,0,2.0,3.461275130088656,4.0,11.1,0.5 -2019,2,13,6,15,2.0,3.565933922533869,4.0,11.1,0.5 -2019,2,13,6,30,2.0,3.671276480939788,4.0,11.1,0.5 -2019,2,13,6,45,2.0,3.7768517122988348,4.0,11.1,0.5 -2019,2,13,7,0,4.0,25.764415054524253,26.0,10.7,1.5 -2019,2,13,7,15,4.0,25.97378555211094,26.0,10.7,1.5 -2019,2,13,7,30,4.0,26.180918360743924,26.0,10.7,1.5 -2019,2,13,7,45,4.0,26.384926505937027,26.0,10.7,1.5 -2019,2,13,8,0,1.0,48.14623409837316,48.0,11.9,0.0 -2019,2,13,8,15,1.0,48.19502288759154,48.0,11.9,0.0 -2019,2,13,8,30,1.0,48.24238907305377,48.0,11.9,0.0 -2019,2,13,8,45,1.0,48.288129825481924,48.0,11.9,0.0 -2019,2,13,9,0,1.0,90.33204927595185,90.0,13.5,0.2 -2019,2,13,9,15,1.0,90.373959354634,90.0,13.5,0.2 -2019,2,13,9,30,1.0,90.41368059613728,90.0,13.5,0.2 -2019,2,13,9,45,1.0,90.45104290800751,90.0,13.5,0.2 -2019,2,13,10,0,2.0,149.9717725981785,149.0,15.1,1.7 -2019,2,13,10,15,2.0,150.0361231292653,149.0,15.1,1.7 -2019,2,13,10,30,2.0,150.094861850422,149.0,15.1,1.7 -2019,2,13,10,45,2.0,150.14773723342694,149.0,15.1,1.7 -2019,2,13,11,0,4.0,195.3890457155449,193.0,15.8,3.6 -2019,2,13,11,15,4.0,195.47003676046495,193.0,15.8,3.6 -2019,2,13,11,30,4.0,195.53810078552567,193.0,15.8,3.6 -2019,2,13,11,45,4.0,195.59294633012234,193.0,15.8,3.6 -2019,2,13,12,0,14.0,252.22018488024548,243.0,17.0,7.1 -2019,2,13,12,15,14.0,252.31735055654275,243.0,17.0,7.1 -2019,2,13,12,30,14.0,252.36639310597693,243.0,17.0,7.1 -2019,2,13,12,45,14.0,252.3671025208222,243.0,17.0,7.1 -2019,2,13,13,0,29.0,266.3046283667431,247.0,15.6,6.3 -2019,2,13,13,15,29.0,266.10627046946803,247.0,15.6,6.3 -2019,2,13,13,30,29.0,265.8090595002751,247.0,15.6,6.3 -2019,2,13,13,45,29.0,265.4142681621631,247.0,15.6,6.3 -2019,2,13,14,0,257.0,384.84006421201957,226.0,15.5,6.8 -2019,2,13,14,15,257.0,379.660452627463,226.0,15.5,6.8 -2019,2,13,14,30,257.0,373.67185954094145,226.0,15.5,6.8 -2019,2,13,14,45,257.0,366.8999290274371,226.0,15.5,6.8 -2019,2,13,15,0,12.0,113.22756386924767,107.0,14.4,7.1 -2019,2,13,15,15,12.0,112.84242551124773,107.0,14.4,7.1 -2019,2,13,15,30,12.0,112.4252191605309,107.0,14.4,7.1 -2019,2,13,15,45,12.0,111.97773135874164,107.0,14.4,7.1 -2019,2,13,16,0,8.0,44.00125221156451,41.0,13.4,6.6 -2019,2,13,16,15,8.0,43.6664651414159,41.0,13.4,6.6 -2019,2,13,16,30,8.0,43.31555997168041,41.0,13.4,6.6 -2019,2,13,16,45,8.0,42.95003933216678,41.0,13.4,6.6 -2019,2,13,17,0,4.0,12.785734219184585,12.0,12.0,6.4 -2019,2,13,17,15,4.0,12.59073419448704,12.0,12.0,6.4 -2019,2,13,17,30,4.0,12.390854612033456,12.0,12.0,6.4 -2019,2,13,17,45,4.0,12.18695138688197,12.0,12.0,6.4 -2019,2,13,18,0,0.0,0.0,0.0,10.6,7.3 -2019,2,13,18,15,0.0,0.0,0.0,10.6,7.3 -2019,2,13,18,30,0.0,0.0,0.0,10.6,7.3 -2019,2,13,18,45,0.0,0.0,0.0,10.6,7.3 -2019,2,13,19,0,0.0,0.0,0.0,10.5,3.9 -2019,2,13,19,15,0.0,0.0,0.0,10.5,3.9 -2019,2,13,19,30,0.0,0.0,0.0,10.5,3.9 -2019,2,13,19,45,0.0,0.0,0.0,10.5,3.9 -2019,2,13,20,0,0.0,0.0,0.0,9.9,2.5 -2019,2,13,20,15,0.0,0.0,0.0,9.9,2.5 -2019,2,13,20,30,0.0,0.0,0.0,9.9,2.5 -2019,2,13,20,45,0.0,0.0,0.0,9.9,2.5 -2019,2,13,21,0,0.0,0.0,0.0,8.9,1.9 -2019,2,13,21,15,0.0,0.0,0.0,8.9,1.9 -2019,2,13,21,30,0.0,0.0,0.0,8.9,1.9 -2019,2,13,21,45,0.0,0.0,0.0,8.9,1.9 -2019,2,13,22,0,0.0,0.0,0.0,8.8,0.0 -2019,2,13,22,15,0.0,0.0,0.0,8.8,0.0 -2019,2,13,22,30,0.0,0.0,0.0,8.8,0.0 -2019,2,13,22,45,0.0,0.0,0.0,8.8,0.0 -2019,2,13,23,0,0.0,0.0,0.0,8.2,0.2 -2019,2,13,23,15,0.0,0.0,0.0,8.2,0.2 -2019,2,13,23,30,0.0,0.0,0.0,8.2,0.2 -2019,2,13,23,45,0.0,0.0,0.0,8.2,0.2 -2019,2,14,0,0,0.0,0.0,0.0,7.7,1.5 -2019,2,14,0,15,0.0,0.0,0.0,7.7,1.5 -2019,2,14,0,30,0.0,0.0,0.0,7.7,1.5 -2019,2,14,0,45,0.0,0.0,0.0,7.7,1.5 -2019,2,14,1,0,0.0,0.0,0.0,6.7,1.3 -2019,2,14,1,15,0.0,0.0,0.0,6.7,1.3 -2019,2,14,1,30,0.0,0.0,0.0,6.7,1.3 -2019,2,14,1,45,0.0,0.0,0.0,6.7,1.3 -2019,2,14,2,0,0.0,0.0,0.0,6.6,0.0 -2019,2,14,2,15,0.0,0.0,0.0,6.6,0.0 -2019,2,14,2,30,0.0,0.0,0.0,6.6,0.0 -2019,2,14,2,45,0.0,0.0,0.0,6.6,0.0 -2019,2,14,3,0,0.0,0.0,0.0,5.5,0.2 -2019,2,14,3,15,0.0,0.0,0.0,5.5,0.2 -2019,2,14,3,30,0.0,0.0,0.0,5.5,0.2 -2019,2,14,3,45,0.0,0.0,0.0,5.5,0.2 -2019,2,14,4,0,0.0,0.0,0.0,5.0,1.9 -2019,2,14,4,15,0.0,0.0,0.0,5.0,1.9 -2019,2,14,4,30,0.0,0.0,0.0,5.0,1.9 -2019,2,14,4,45,0.0,0.0,0.0,5.0,1.9 -2019,2,14,5,0,0.0,0.0,0.0,5.0,0.0 -2019,2,14,5,15,0.0,0.0,0.0,5.0,0.0 -2019,2,14,5,30,0.0,0.0,0.0,5.0,0.0 -2019,2,14,5,45,0.0,0.0,0.0,5.0,0.0 -2019,2,14,6,0,178.0,-44.443974353315674,3.0,5.2,0.0 -2019,2,14,6,15,178.0,-35.11613443636019,3.0,5.2,0.0 -2019,2,14,6,30,178.0,-25.727353061232776,3.0,5.2,0.0 -2019,2,14,6,45,178.0,-16.317834431173615,3.0,5.2,0.0 -2019,2,14,7,0,357.0,39.0884823416686,59.0,7.0,0.0 -2019,2,14,7,15,357.0,57.80129492482049,59.0,7.0,0.0 -2019,2,14,7,30,357.0,76.31411059105847,59.0,7.0,0.0 -2019,2,14,7,45,357.0,94.5476546215605,59.0,7.0,0.0 -2019,2,14,8,0,444.0,189.44310530139057,123.0,9.6,0.0 -2019,2,14,8,15,444.0,211.1360429792153,123.0,9.6,0.0 -2019,2,14,8,30,444.0,232.19644898087623,123.0,9.6,0.0 -2019,2,14,8,45,444.0,252.53413941462176,123.0,9.6,0.0 -2019,2,14,9,0,419.0,332.6688931199841,192.0,11.2,0.0 -2019,2,14,9,15,419.0,350.25411519375564,192.0,11.2,0.0 -2019,2,14,9,30,419.0,366.92091408428075,192.0,11.2,0.0 -2019,2,14,9,45,419.0,382.59791999997674,192.0,11.2,0.0 -2019,2,14,10,0,485.0,460.543510199156,223.0,12.5,0.2 -2019,2,14,10,15,485.0,476.17064061051417,223.0,12.5,0.2 -2019,2,14,10,30,485.0,490.43497751978464,223.0,12.5,0.2 -2019,2,14,10,45,485.0,503.275438846421,223.0,12.5,0.2 -2019,2,14,11,0,600.0,573.7880904293436,213.0,14.5,1.9 -2019,2,14,11,15,600.0,585.9539729719013,213.0,14.5,1.9 -2019,2,14,11,30,600.0,596.1780531165614,213.0,14.5,1.9 -2019,2,14,11,45,600.0,604.416549782515,213.0,14.5,1.9 -2019,2,14,12,0,345.0,516.6396560657889,288.0,15.1,0.3 -2019,2,14,12,15,345.0,519.0374910664589,288.0,15.1,0.3 -2019,2,14,12,30,345.0,520.247753229361,288.0,15.1,0.3 -2019,2,14,12,45,345.0,520.2652600261108,288.0,15.1,0.3 -2019,2,14,13,0,619.0,605.6222338761117,191.0,16.1,2.6 -2019,2,14,13,15,619.0,601.382315412045,191.0,16.1,2.6 -2019,2,14,13,30,619.0,595.0294033610728,191.0,16.1,2.6 -2019,2,14,13,45,619.0,586.5907018679143,191.0,16.1,2.6 -2019,2,14,14,0,845.0,627.705142167968,102.0,16.1,2.7 -2019,2,14,14,15,845.0,610.650754251903,102.0,16.1,2.7 -2019,2,14,14,30,845.0,590.9327140278992,102.0,16.1,2.7 -2019,2,14,14,45,845.0,568.635457171365,102.0,16.1,2.7 -2019,2,14,15,0,514.0,390.77301121311064,122.0,16.0,3.2 -2019,2,14,15,15,514.0,374.2528604855206,122.0,16.0,3.2 -2019,2,14,15,30,514.0,356.35718311351803,122.0,16.0,3.2 -2019,2,14,15,45,514.0,337.1626111350041,122.0,16.0,3.2 -2019,2,14,16,0,430.0,226.92427163661074,64.0,15.2,4.2 -2019,2,14,16,15,430.0,208.90395145004993,64.0,15.2,4.2 -2019,2,14,16,30,430.0,190.01605500008822,64.0,15.2,4.2 -2019,2,14,16,45,430.0,170.341463159047,64.0,15.2,4.2 -2019,2,14,17,0,215.0,50.98221277484392,8.0,14.1,4.9 -2019,2,14,17,15,215.0,40.48609988769691,8.0,14.1,4.9 -2019,2,14,17,30,215.0,29.727338884857776,8.0,14.1,4.9 -2019,2,14,17,45,215.0,18.752000432655688,8.0,14.1,4.9 -2019,2,14,18,0,0.0,0.0,0.0,12.1,3.5 -2019,2,14,18,15,0.0,0.0,0.0,12.1,3.5 -2019,2,14,18,30,0.0,0.0,0.0,12.1,3.5 -2019,2,14,18,45,0.0,0.0,0.0,12.1,3.5 -2019,2,14,19,0,0.0,0.0,0.0,11.0,2.5 -2019,2,14,19,15,0.0,0.0,0.0,11.0,2.5 -2019,2,14,19,30,0.0,0.0,0.0,11.0,2.5 -2019,2,14,19,45,0.0,0.0,0.0,11.0,2.5 -2019,2,14,20,0,0.0,0.0,0.0,9.9,1.9 -2019,2,14,20,15,0.0,0.0,0.0,9.9,1.9 -2019,2,14,20,30,0.0,0.0,0.0,9.9,1.9 -2019,2,14,20,45,0.0,0.0,0.0,9.9,1.9 -2019,2,14,21,0,0.0,0.0,0.0,9.4,0.0 -2019,2,14,21,15,0.0,0.0,0.0,9.4,0.0 -2019,2,14,21,30,0.0,0.0,0.0,9.4,0.0 -2019,2,14,21,45,0.0,0.0,0.0,9.4,0.0 -2019,2,14,22,0,0.0,0.0,0.0,9.3,0.0 -2019,2,14,22,15,0.0,0.0,0.0,9.3,0.0 -2019,2,14,22,30,0.0,0.0,0.0,9.3,0.0 -2019,2,14,22,45,0.0,0.0,0.0,9.3,0.0 -2019,2,14,23,0,0.0,0.0,0.0,8.3,0.0 -2019,2,14,23,15,0.0,0.0,0.0,8.3,0.0 -2019,2,14,23,30,0.0,0.0,0.0,8.3,0.0 -2019,2,14,23,45,0.0,0.0,0.0,8.3,0.0 -2019,2,15,0,0,0.0,0.0,0.0,8.4,0.0 -2019,2,15,0,15,0.0,0.0,0.0,8.4,0.0 -2019,2,15,0,30,0.0,0.0,0.0,8.4,0.0 -2019,2,15,0,45,0.0,0.0,0.0,8.4,0.0 -2019,2,15,1,0,0.0,0.0,0.0,8.9,0.0 -2019,2,15,1,15,0.0,0.0,0.0,8.9,0.0 -2019,2,15,1,30,0.0,0.0,0.0,8.9,0.0 -2019,2,15,1,45,0.0,0.0,0.0,8.9,0.0 -2019,2,15,2,0,0.0,0.0,0.0,9.0,0.0 -2019,2,15,2,15,0.0,0.0,0.0,9.0,0.0 -2019,2,15,2,30,0.0,0.0,0.0,9.0,0.0 -2019,2,15,2,45,0.0,0.0,0.0,9.0,0.0 -2019,2,15,3,0,0.0,0.0,0.0,9.3,0.0 -2019,2,15,3,15,0.0,0.0,0.0,9.3,0.0 -2019,2,15,3,30,0.0,0.0,0.0,9.3,0.0 -2019,2,15,3,45,0.0,0.0,0.0,9.3,0.0 -2019,2,15,4,0,0.0,0.0,0.0,8.8,0.0 -2019,2,15,4,15,0.0,0.0,0.0,8.8,0.0 -2019,2,15,4,30,0.0,0.0,0.0,8.8,0.0 -2019,2,15,4,45,0.0,0.0,0.0,8.8,0.0 -2019,2,15,5,0,0.0,0.0,0.0,8.4,0.0 -2019,2,15,5,15,0.0,0.0,0.0,8.4,0.0 -2019,2,15,5,30,0.0,0.0,0.0,8.4,0.0 -2019,2,15,5,45,0.0,0.0,0.0,8.4,0.0 -2019,2,15,6,0,4.0,4.9453165085085065,6.0,8.9,0.2 -2019,2,15,6,15,4.0,5.155224804069562,6.0,8.9,0.2 -2019,2,15,6,30,4.0,5.366504490834557,6.0,8.9,0.2 -2019,2,15,6,45,4.0,5.578250836748519,6.0,8.9,0.2 -2019,2,15,7,0,8.0,34.57911422290071,35.0,9.1,2.2 -2019,2,15,7,15,8.0,34.99903693806291,35.0,9.1,2.2 -2019,2,15,7,30,8.0,35.41447164544962,35.0,9.1,2.2 -2019,2,15,7,45,8.0,35.82363938986511,35.0,9.1,2.2 -2019,2,15,8,0,1.0,55.153098506526405,55.0,10.7,2.3 -2019,2,15,8,15,1.0,55.20202498154129,55.0,10.7,2.3 -2019,2,15,8,30,1.0,55.249524838100456,55.0,10.7,2.3 -2019,2,15,8,45,1.0,55.29539467452581,55.0,10.7,2.3 -2019,2,15,9,0,0.0,70.0,70.0,11.0,0.0 -2019,2,15,9,15,0.0,70.0,70.0,11.0,0.0 -2019,2,15,9,30,0.0,70.0,70.0,11.0,0.0 -2019,2,15,9,45,0.0,70.0,70.0,11.0,0.0 -2019,2,15,10,0,0.0,85.0,85.0,10.7,0.0 -2019,2,15,10,15,0.0,85.0,85.0,10.7,0.0 -2019,2,15,10,30,0.0,85.0,85.0,10.7,0.0 -2019,2,15,10,45,0.0,85.0,85.0,10.7,0.0 -2019,2,15,11,0,0.0,93.0,93.0,11.6,0.4 -2019,2,15,11,15,0.0,93.0,93.0,11.6,0.4 -2019,2,15,11,30,0.0,93.0,93.0,11.6,0.4 -2019,2,15,11,45,0.0,93.0,93.0,11.6,0.4 -2019,2,15,12,0,0.0,95.0,95.0,10.4,3.5 -2019,2,15,12,15,0.0,95.0,95.0,10.4,3.5 -2019,2,15,12,30,0.0,95.0,95.0,10.4,3.5 -2019,2,15,12,45,0.0,95.0,95.0,10.4,3.5 -2019,2,15,13,0,2.0,145.34801431323174,144.0,8.9,2.5 -2019,2,15,13,15,2.0,145.33429585262166,144.0,8.9,2.5 -2019,2,15,13,30,2.0,145.31374069938718,144.0,8.9,2.5 -2019,2,15,13,45,2.0,145.28643687385016,144.0,8.9,2.5 -2019,2,15,14,0,5.0,144.13125323795822,141.0,9.0,1.5 -2019,2,15,14,15,5.0,144.03019820186074,141.0,9.0,1.5 -2019,2,15,14,30,5.0,143.91335980951183,141.0,9.0,1.5 -2019,2,15,14,45,5.0,143.78123838084483,141.0,9.0,1.5 -2019,2,15,15,0,7.0,98.68815955214136,95.0,8.4,3.6 -2019,2,15,15,15,7.0,98.4628614903959,95.0,8.4,3.6 -2019,2,15,15,30,7.0,98.21880430883515,95.0,8.4,3.6 -2019,2,15,15,45,7.0,97.95703309777889,95.0,8.4,3.6 -2019,2,15,16,0,4.0,36.53066788670899,35.0,8.3,3.3 -2019,2,15,16,15,4.0,36.362801953926606,35.0,8.3,3.3 -2019,2,15,16,30,4.0,36.18685422807906,35.0,8.3,3.3 -2019,2,15,16,45,4.0,36.00357814434043,35.0,8.3,3.3 -2019,2,15,17,0,2.0,15.406879259519167,15.0,8.4,3.0 -2019,2,15,17,15,2.0,15.309104094474977,15.0,8.4,3.0 -2019,2,15,17,30,2.0,15.208882265305078,15.0,8.4,3.0 -2019,2,15,17,45,2.0,15.106642937268317,15.0,8.4,3.0 -2019,2,15,18,0,0.0,0.0,0.0,9.3,2.3 -2019,2,15,18,15,0.0,0.0,0.0,9.3,2.3 -2019,2,15,18,30,0.0,0.0,0.0,9.3,2.3 -2019,2,15,18,45,0.0,0.0,0.0,9.3,2.3 -2019,2,15,19,0,0.0,0.0,0.0,8.8,3.6 -2019,2,15,19,15,0.0,0.0,0.0,8.8,3.6 -2019,2,15,19,30,0.0,0.0,0.0,8.8,3.6 -2019,2,15,19,45,0.0,0.0,0.0,8.8,3.6 -2019,2,15,20,0,0.0,0.0,0.0,8.2,3.4 -2019,2,15,20,15,0.0,0.0,0.0,8.2,3.4 -2019,2,15,20,30,0.0,0.0,0.0,8.2,3.4 -2019,2,15,20,45,0.0,0.0,0.0,8.2,3.4 -2019,2,15,21,0,0.0,0.0,0.0,7.7,1.3 -2019,2,15,21,15,0.0,0.0,0.0,7.7,1.3 -2019,2,15,21,30,0.0,0.0,0.0,7.7,1.3 -2019,2,15,21,45,0.0,0.0,0.0,7.7,1.3 -2019,2,15,22,0,0.0,0.0,0.0,7.1,0.0 -2019,2,15,22,15,0.0,0.0,0.0,7.1,0.0 -2019,2,15,22,30,0.0,0.0,0.0,7.1,0.0 -2019,2,15,22,45,0.0,0.0,0.0,7.1,0.0 -2019,2,15,23,0,0.0,0.0,0.0,6.6,0.0 -2019,2,15,23,15,0.0,0.0,0.0,6.6,0.0 -2019,2,15,23,30,0.0,0.0,0.0,6.6,0.0 -2019,2,15,23,45,0.0,0.0,0.0,6.6,0.0 -2019,2,16,0,0,0.0,0.0,0.0,6.2,0.5 -2019,2,16,0,15,0.0,0.0,0.0,6.2,0.5 -2019,2,16,0,30,0.0,0.0,0.0,6.2,0.5 -2019,2,16,0,45,0.0,0.0,0.0,6.2,0.5 -2019,2,16,1,0,0.0,0.0,0.0,11.1,4.5 -2019,2,16,1,15,0.0,0.0,0.0,11.1,4.5 -2019,2,16,1,30,0.0,0.0,0.0,11.1,4.5 -2019,2,16,1,45,0.0,0.0,0.0,11.1,4.5 -2019,2,16,2,0,0.0,0.0,0.0,11.0,4.0 -2019,2,16,2,15,0.0,0.0,0.0,11.0,4.0 -2019,2,16,2,30,0.0,0.0,0.0,11.0,4.0 -2019,2,16,2,45,0.0,0.0,0.0,11.0,4.0 -2019,2,16,3,0,0.0,0.0,0.0,10.6,3.6 -2019,2,16,3,15,0.0,0.0,0.0,10.6,3.6 -2019,2,16,3,30,0.0,0.0,0.0,10.6,3.6 -2019,2,16,3,45,0.0,0.0,0.0,10.6,3.6 -2019,2,16,4,0,0.0,0.0,0.0,10.7,3.9 -2019,2,16,4,15,0.0,0.0,0.0,10.7,3.9 -2019,2,16,4,30,0.0,0.0,0.0,10.7,3.9 -2019,2,16,4,45,0.0,0.0,0.0,10.7,3.9 -2019,2,16,5,0,0.0,0.0,0.0,11.2,6.1 -2019,2,16,5,15,0.0,0.0,0.0,11.2,6.1 -2019,2,16,5,30,0.0,0.0,0.0,11.2,6.1 -2019,2,16,5,45,0.0,0.0,0.0,11.2,6.1 -2019,2,16,6,0,469.0,-122.29556157871977,0.0,11.9,4.9 -2019,2,16,6,15,469.0,-97.64973136198608,0.0,11.9,4.9 -2019,2,16,6,30,469.0,-72.84288285541926,0.0,11.9,4.9 -2019,2,16,6,45,469.0,-47.98124279274088,0.0,11.9,4.9 -2019,2,16,7,0,523.0,25.160819754722688,51.0,13.4,3.8 -2019,2,16,7,15,523.0,52.65128364650855,51.0,13.4,3.8 -2019,2,16,7,30,523.0,79.84793772224137,51.0,13.4,3.8 -2019,2,16,7,45,523.0,106.63432173386258,51.0,13.4,3.8 -2019,2,16,8,0,639.0,197.0599864670444,97.0,14.0,5.3 -2019,2,16,8,15,639.0,228.3672986849416,97.0,14.0,5.3 -2019,2,16,8,30,639.0,258.761739305295,97.0,14.0,5.3 -2019,2,16,8,45,639.0,288.1131546671289,97.0,14.0,5.3 -2019,2,16,9,0,227.0,304.90322324468224,227.0,15.1,7.4 -2019,2,16,9,15,227.0,314.45687087663515,227.0,15.1,7.4 -2019,2,16,9,30,227.0,323.51156026780245,227.0,15.1,7.4 -2019,2,16,9,45,227.0,332.02851784811,227.0,15.1,7.4 -2019,2,16,10,0,146.0,362.6599375059787,290.0,15.7,8.3 -2019,2,16,10,15,146.0,367.3773068600535,290.0,15.7,8.3 -2019,2,16,10,30,146.0,371.6832890858807,290.0,15.7,8.3 -2019,2,16,10,45,146.0,375.55944530650277,290.0,15.7,8.3 -2019,2,16,11,0,310.0,486.94962287692096,298.0,16.8,4.7 -2019,2,16,11,15,310.0,493.2528592033858,298.0,16.8,4.7 -2019,2,16,11,30,310.0,498.5500329305753,298.0,16.8,4.7 -2019,2,16,11,45,310.0,502.8184607473526,298.0,16.8,4.7 -2019,2,16,12,0,739.0,668.9401933302692,173.0,17.9,5.1 -2019,2,16,12,15,739.0,674.0907499567975,173.0,17.9,5.1 -2019,2,16,12,30,739.0,676.6903966385876,173.0,17.9,5.1 -2019,2,16,12,45,739.0,676.7280012894429,173.0,17.9,5.1 -2019,2,16,13,0,570.0,593.5844920728971,207.0,19.0,5.0 -2019,2,16,13,15,570.0,589.6693165276097,207.0,19.0,5.0 -2019,2,16,13,30,570.0,583.8029853436202,207.0,19.0,5.0 -2019,2,16,13,45,570.0,576.010619051674,207.0,19.0,5.0 -2019,2,16,14,0,628.0,550.8885401010848,155.0,19.4,4.0 -2019,2,16,14,15,628.0,538.1784508654991,155.0,19.4,4.0 -2019,2,16,14,30,628.0,523.4832268544469,155.0,19.4,4.0 -2019,2,16,14,45,628.0,506.8657952731958,155.0,19.4,4.0 -2019,2,16,15,0,693.0,462.90499834211306,95.0,19.6,3.2 -2019,2,16,15,15,693.0,440.56960275249514,95.0,19.6,3.2 -2019,2,16,15,30,693.0,416.37448249972994,95.0,19.6,3.2 -2019,2,16,15,45,693.0,390.42324480324163,95.0,19.6,3.2 -2019,2,16,16,0,657.0,301.9139250626961,48.0,19.1,3.9 -2019,2,16,16,15,657.0,274.3037636862408,48.0,19.1,3.9 -2019,2,16,16,30,657.0,245.36432955597814,48.0,19.1,3.9 -2019,2,16,16,45,657.0,215.21954577171678,48.0,19.1,3.9 -2019,2,16,17,0,602.0,124.61353903983294,0.0,18.8,4.2 -2019,2,16,17,15,602.0,95.14245899196212,0.0,18.8,4.2 -2019,2,16,17,30,602.0,64.93391320556398,0.0,18.8,4.2 -2019,2,16,17,45,602.0,34.1172593113963,0.0,18.8,4.2 -2019,2,16,18,0,0.0,0.0,0.0,17.7,1.3 -2019,2,16,18,15,0.0,0.0,0.0,17.7,1.3 -2019,2,16,18,30,0.0,0.0,0.0,17.7,1.3 -2019,2,16,18,45,0.0,0.0,0.0,17.7,1.3 -2019,2,16,19,0,0.0,0.0,0.0,16.6,0.3 -2019,2,16,19,15,0.0,0.0,0.0,16.6,0.3 -2019,2,16,19,30,0.0,0.0,0.0,16.6,0.3 -2019,2,16,19,45,0.0,0.0,0.0,16.6,0.3 -2019,2,16,20,0,0.0,0.0,0.0,16.1,2.7 -2019,2,16,20,15,0.0,0.0,0.0,16.1,2.7 -2019,2,16,20,30,0.0,0.0,0.0,16.1,2.7 -2019,2,16,20,45,0.0,0.0,0.0,16.1,2.7 -2019,2,16,21,0,0.0,0.0,0.0,16.0,3.5 -2019,2,16,21,15,0.0,0.0,0.0,16.0,3.5 -2019,2,16,21,30,0.0,0.0,0.0,16.0,3.5 -2019,2,16,21,45,0.0,0.0,0.0,16.0,3.5 -2019,2,16,22,0,0.0,0.0,0.0,15.5,3.0 -2019,2,16,22,15,0.0,0.0,0.0,15.5,3.0 -2019,2,16,22,30,0.0,0.0,0.0,15.5,3.0 -2019,2,16,22,45,0.0,0.0,0.0,15.5,3.0 -2019,2,16,23,0,0.0,0.0,0.0,15.0,1.9 -2019,2,16,23,15,0.0,0.0,0.0,15.0,1.9 -2019,2,16,23,30,0.0,0.0,0.0,15.0,1.9 -2019,2,16,23,45,0.0,0.0,0.0,15.0,1.9 -2019,2,17,0,0,0.0,0.0,0.0,15.0,0.2 -2019,2,17,0,15,0.0,0.0,0.0,15.0,0.2 -2019,2,17,0,30,0.0,0.0,0.0,15.0,0.2 -2019,2,17,0,45,0.0,0.0,0.0,15.0,0.2 -2019,2,17,1,0,0.0,0.0,0.0,15.1,1.7 -2019,2,17,1,15,0.0,0.0,0.0,15.1,1.7 -2019,2,17,1,30,0.0,0.0,0.0,15.1,1.7 -2019,2,17,1,45,0.0,0.0,0.0,15.1,1.7 -2019,2,17,2,0,0.0,0.0,0.0,15.6,3.5 -2019,2,17,2,15,0.0,0.0,0.0,15.6,3.5 -2019,2,17,2,30,0.0,0.0,0.0,15.6,3.5 -2019,2,17,2,45,0.0,0.0,0.0,15.6,3.5 -2019,2,17,3,0,0.0,0.0,0.0,15.5,3.0 -2019,2,17,3,15,0.0,0.0,0.0,15.5,3.0 -2019,2,17,3,30,0.0,0.0,0.0,15.5,3.0 -2019,2,17,3,45,0.0,0.0,0.0,15.5,3.0 -2019,2,17,4,0,0.0,0.0,0.0,14.4,2.8 -2019,2,17,4,15,0.0,0.0,0.0,14.4,2.8 -2019,2,17,4,30,0.0,0.0,0.0,14.4,2.8 -2019,2,17,4,45,0.0,0.0,0.0,14.4,2.8 -2019,2,17,5,0,0.0,0.0,0.0,14.3,3.6 -2019,2,17,5,15,0.0,0.0,0.0,14.3,3.6 -2019,2,17,5,30,0.0,0.0,0.0,14.3,3.6 -2019,2,17,5,45,0.0,0.0,0.0,14.3,3.6 -2019,2,17,6,0,491.0,-126.58057928331924,0.0,13.9,0.2 -2019,2,17,6,15,491.0,-100.7434130427692,0.0,13.9,0.2 -2019,2,17,6,30,491.0,-74.73744517185811,0.0,13.9,0.2 -2019,2,17,6,45,491.0,-48.67403721751782,0.0,13.9,0.2 -2019,2,17,7,0,666.0,10.257118944681501,41.0,14.2,1.9 -2019,2,17,7,15,666.0,45.31191030158345,41.0,14.2,1.9 -2019,2,17,7,30,666.0,79.9920465838787,41.0,14.2,1.9 -2019,2,17,7,45,666.0,114.14902212381513,41.0,14.2,1.9 -2019,2,17,8,0,733.0,201.36427464797595,84.0,16.8,0.3 -2019,2,17,8,15,733.0,237.32609594859392,84.0,16.8,0.3 -2019,2,17,8,30,733.0,272.2393275449027,84.0,16.8,0.3 -2019,2,17,8,45,733.0,305.95446561923035,84.0,16.8,0.3 -2019,2,17,9,0,719.0,379.4695925521446,130.0,18.1,2.7 -2019,2,17,9,15,719.0,409.77115551511866,130.0,18.1,2.7 -2019,2,17,9,30,719.0,438.49015911108296,130.0,18.1,2.7 -2019,2,17,9,45,719.0,465.5036241576177,130.0,18.1,2.7 -2019,2,17,10,0,808.0,541.3439038650494,136.0,20.1,3.1 -2019,2,17,10,15,808.0,567.486647504702,136.0,20.1,3.1 -2019,2,17,10,30,808.0,591.3495636762885,136.0,20.1,3.1 -2019,2,17,10,45,808.0,612.8304677092608,136.0,20.1,3.1 -2019,2,17,11,0,816.0,648.7466560160756,148.0,21.2,3.0 -2019,2,17,11,15,816.0,665.3610625573721,148.0,21.2,3.0 -2019,2,17,11,30,816.0,679.3236356333462,148.0,21.2,3.0 -2019,2,17,11,45,816.0,690.5745853625133,148.0,21.2,3.0 -2019,2,17,12,0,584.0,617.3901817834558,223.0,22.3,2.2 -2019,2,17,12,15,584.0,621.4660051314047,223.0,22.3,2.2 -2019,2,17,12,30,584.0,623.523200384338,223.0,22.3,2.2 -2019,2,17,12,45,584.0,623.552958316356,223.0,22.3,2.2 -2019,2,17,13,0,807.0,689.7431631165007,139.0,23.2,3.1 -2019,2,17,13,15,807.0,684.1925277794172,139.0,23.2,3.1 -2019,2,17,13,30,807.0,675.8756937595274,139.0,23.2,3.1 -2019,2,17,13,45,807.0,664.8282750169277,139.0,23.2,3.1 -2019,2,17,14,0,990.0,699.2237949340245,71.0,22.2,3.0 -2019,2,17,14,15,990.0,679.159822228942,71.0,22.2,3.0 -2019,2,17,14,30,990.0,655.9621429689635,71.0,22.2,3.0 -2019,2,17,14,45,990.0,629.7300931780529,71.0,22.2,3.0 -2019,2,17,15,0,790.0,502.5909515063633,80.0,21.9,2.7 -2019,2,17,15,15,790.0,477.0944681798834,80.0,21.9,2.7 -2019,2,17,15,30,790.0,449.475056755912,80.0,21.9,2.7 -2019,2,17,15,45,790.0,419.8509877943759,80.0,21.9,2.7 -2019,2,17,16,0,590.0,284.28604873779415,54.0,21.0,3.7 -2019,2,17,16,15,590.0,259.45766981075974,54.0,21.0,3.7 -2019,2,17,16,30,590.0,233.43394518549078,54.0,21.0,3.7 -2019,2,17,16,45,590.0,206.32631244606728,54.0,21.0,3.7 -2019,2,17,17,0,295.0,72.12542531875954,10.0,19.6,4.3 -2019,2,17,17,15,295.0,57.66389159876684,10.0,19.6,4.3 -2019,2,17,17,30,295.0,42.84048157061959,10.0,19.6,4.3 -2019,2,17,17,45,295.0,27.718671351789606,10.0,19.6,4.3 -2019,2,17,18,0,0.0,0.0,0.0,16.4,2.2 -2019,2,17,18,15,0.0,0.0,0.0,16.4,2.2 -2019,2,17,18,30,0.0,0.0,0.0,16.4,2.2 -2019,2,17,18,45,0.0,0.0,0.0,16.4,2.2 -2019,2,17,19,0,0.0,0.0,0.0,13.8,2.3 -2019,2,17,19,15,0.0,0.0,0.0,13.8,2.3 -2019,2,17,19,30,0.0,0.0,0.0,13.8,2.3 -2019,2,17,19,45,0.0,0.0,0.0,13.8,2.3 -2019,2,17,20,0,0.0,0.0,0.0,13.2,0.2 -2019,2,17,20,15,0.0,0.0,0.0,13.2,0.2 -2019,2,17,20,30,0.0,0.0,0.0,13.2,0.2 -2019,2,17,20,45,0.0,0.0,0.0,13.2,0.2 -2019,2,17,21,0,0.0,0.0,0.0,12.1,1.3 -2019,2,17,21,15,0.0,0.0,0.0,12.1,1.3 -2019,2,17,21,30,0.0,0.0,0.0,12.1,1.3 -2019,2,17,21,45,0.0,0.0,0.0,12.1,1.3 -2019,2,17,22,0,0.0,0.0,0.0,11.0,0.0 -2019,2,17,22,15,0.0,0.0,0.0,11.0,0.0 -2019,2,17,22,30,0.0,0.0,0.0,11.0,0.0 -2019,2,17,22,45,0.0,0.0,0.0,11.0,0.0 -2019,2,17,23,0,0.0,0.0,0.0,9.9,0.2 -2019,2,17,23,15,0.0,0.0,0.0,9.9,0.2 -2019,2,17,23,30,0.0,0.0,0.0,9.9,0.2 -2019,2,17,23,45,0.0,0.0,0.0,9.9,0.2 -2019,2,18,0,0,0.0,0.0,0.0,9.3,2.0 -2019,2,18,0,15,0.0,0.0,0.0,9.3,2.0 -2019,2,18,0,30,0.0,0.0,0.0,9.3,2.0 -2019,2,18,0,45,0.0,0.0,0.0,9.3,2.0 -2019,2,18,1,0,0.0,0.0,0.0,8.2,1.7 -2019,2,18,1,15,0.0,0.0,0.0,8.2,1.7 -2019,2,18,1,30,0.0,0.0,0.0,8.2,1.7 -2019,2,18,1,45,0.0,0.0,0.0,8.2,1.7 -2019,2,18,2,0,0.0,0.0,0.0,7.7,3.2 -2019,2,18,2,15,0.0,0.0,0.0,7.7,3.2 -2019,2,18,2,30,0.0,0.0,0.0,7.7,3.2 -2019,2,18,2,45,0.0,0.0,0.0,7.7,3.2 -2019,2,18,3,0,0.0,0.0,0.0,6.7,0.2 -2019,2,18,3,15,0.0,0.0,0.0,6.7,0.2 -2019,2,18,3,30,0.0,0.0,0.0,6.7,0.2 -2019,2,18,3,45,0.0,0.0,0.0,6.7,0.2 -2019,2,18,4,0,0.0,0.0,0.0,6.4,1.6 -2019,2,18,4,15,0.0,0.0,0.0,6.4,1.6 -2019,2,18,4,30,0.0,0.0,0.0,6.4,1.6 -2019,2,18,4,45,0.0,0.0,0.0,6.4,1.6 -2019,2,18,5,0,0.0,0.0,0.0,4.6,1.9 -2019,2,18,5,15,0.0,0.0,0.0,4.6,1.9 -2019,2,18,5,30,0.0,0.0,0.0,4.6,1.9 -2019,2,18,5,45,0.0,0.0,0.0,4.6,1.9 -2019,2,18,6,0,234.0,-54.62364937289417,5.0,6.2,0.2 -2019,2,18,6,15,234.0,-42.29364807376412,5.0,6.2,0.2 -2019,2,18,6,30,234.0,-29.883091333597207,5.0,6.2,0.2 -2019,2,18,6,45,234.0,-17.445123061658236,5.0,6.2,0.2 -2019,2,18,7,0,467.0,36.97686699261169,57.0,7.6,1.3 -2019,2,18,7,15,467.0,61.590397677770426,57.0,7.6,1.3 -2019,2,18,7,30,467.0,85.940866344351,57.0,7.6,1.3 -2019,2,18,7,45,467.0,109.9240005471713,57.0,7.6,1.3 -2019,2,18,8,0,745.0,204.9392721918515,83.0,10.9,0.2 -2019,2,18,8,15,745.0,241.5389998908738,83.0,10.9,0.2 -2019,2,18,8,30,745.0,277.0715375461858,83.0,10.9,0.2 -2019,2,18,8,45,745.0,311.38472937649294,83.0,10.9,0.2 -2019,2,18,9,0,709.0,382.7035348829578,134.0,13.1,1.5 -2019,2,18,9,15,709.0,412.6238561511413,134.0,13.1,1.5 -2019,2,18,9,30,709.0,440.981529157756,134.0,13.1,1.5 -2019,2,18,9,45,709.0,467.65512199343846,134.0,13.1,1.5 -2019,2,18,10,0,750.0,533.2634847376532,154.0,15.3,1.5 -2019,2,18,10,15,750.0,557.562291332624,154.0,15.3,1.5 -2019,2,18,10,30,750.0,579.7420744815472,154.0,15.3,1.5 -2019,2,18,10,45,750.0,599.7078569478767,154.0,15.3,1.5 -2019,2,18,11,0,804.0,649.7370804232733,153.0,17.3,1.6 -2019,2,18,11,15,804.0,666.1291806424192,153.0,17.3,1.6 -2019,2,18,11,30,804.0,679.9049298158627,153.0,17.3,1.6 -2019,2,18,11,45,804.0,691.0053380707512,153.0,17.3,1.6 -2019,2,18,12,0,904.0,736.3409403809871,122.0,18.4,2.8 -2019,2,18,12,15,904.0,742.658579492814,122.0,18.4,2.8 -2019,2,18,12,30,904.0,745.8472891303738,122.0,18.4,2.8 -2019,2,18,12,45,904.0,745.8934147494585,122.0,18.4,2.8 -2019,2,18,13,0,853.0,711.7739328369718,126.0,19.3,4.4 -2019,2,18,13,15,853.0,705.8990113074283,126.0,19.3,4.4 -2019,2,18,13,30,853.0,697.0962807596916,126.0,19.3,4.4 -2019,2,18,13,45,853.0,685.4034358373868,126.0,19.3,4.4 -2019,2,18,14,0,794.0,625.1831352819299,118.0,18.8,3.1 -2019,2,18,14,15,794.0,609.069775147954,118.0,18.8,3.1 -2019,2,18,14,30,794.0,590.4397378326717,118.0,18.8,3.1 -2019,2,18,14,45,794.0,569.3728000160022,118.0,18.8,3.1 -2019,2,18,15,0,35.0,160.86469908639498,142.0,18.2,3.3 -2019,2,18,15,15,35.0,159.73358837816306,142.0,18.2,3.3 -2019,2,18,15,30,35.0,158.5082973599201,142.0,18.2,3.3 -2019,2,18,15,45,35.0,157.19407291591634,142.0,18.2,3.3 -2019,2,18,16,0,8.0,48.153495487310714,45.0,16.8,4.6 -2019,2,18,16,15,8.0,47.816386587844,45.0,16.8,4.6 -2019,2,18,16,30,8.0,47.46304780587072,45.0,16.8,4.6 -2019,2,18,16,45,8.0,47.09499219230085,45.0,16.8,4.6 -2019,2,18,17,0,4.0,15.856897908888309,15.0,15.3,5.5 -2019,2,18,17,15,4.0,15.660545511848031,15.0,15.3,5.5 -2019,2,18,17,30,4.0,15.45927971613829,15.0,15.3,5.5 -2019,2,18,17,45,4.0,15.253962372795199,15.0,15.3,5.5 -2019,2,18,18,0,0.0,0.0,0.0,12.7,3.9 -2019,2,18,18,15,0.0,0.0,0.0,12.7,3.9 -2019,2,18,18,30,0.0,0.0,0.0,12.7,3.9 -2019,2,18,18,45,0.0,0.0,0.0,12.7,3.9 -2019,2,18,19,0,0.0,0.0,0.0,11.6,1.9 -2019,2,18,19,15,0.0,0.0,0.0,11.6,1.9 -2019,2,18,19,30,0.0,0.0,0.0,11.6,1.9 -2019,2,18,19,45,0.0,0.0,0.0,11.6,1.9 -2019,2,18,20,0,0.0,0.0,0.0,11.0,0.0 -2019,2,18,20,15,0.0,0.0,0.0,11.0,0.0 -2019,2,18,20,30,0.0,0.0,0.0,11.0,0.0 -2019,2,18,20,45,0.0,0.0,0.0,11.0,0.0 -2019,2,18,21,0,0.0,0.0,0.0,10.6,0.0 -2019,2,18,21,15,0.0,0.0,0.0,10.6,0.0 -2019,2,18,21,30,0.0,0.0,0.0,10.6,0.0 -2019,2,18,21,45,0.0,0.0,0.0,10.6,0.0 -2019,2,18,22,0,0.0,0.0,0.0,11.1,0.0 -2019,2,18,22,15,0.0,0.0,0.0,11.1,0.0 -2019,2,18,22,30,0.0,0.0,0.0,11.1,0.0 -2019,2,18,22,45,0.0,0.0,0.0,11.1,0.0 -2019,2,18,23,0,0.0,0.0,0.0,11.0,0.2 -2019,2,18,23,15,0.0,0.0,0.0,11.0,0.2 -2019,2,18,23,30,0.0,0.0,0.0,11.0,0.2 -2019,2,18,23,45,0.0,0.0,0.0,11.0,0.2 -2019,2,19,0,0,0.0,0.0,0.0,10.7,1.3 -2019,2,19,0,15,0.0,0.0,0.0,10.7,1.3 -2019,2,19,0,30,0.0,0.0,0.0,10.7,1.3 -2019,2,19,0,45,0.0,0.0,0.0,10.7,1.3 -2019,2,19,1,0,0.0,0.0,0.0,11.1,0.0 -2019,2,19,1,15,0.0,0.0,0.0,11.1,0.0 -2019,2,19,1,30,0.0,0.0,0.0,11.1,0.0 -2019,2,19,1,45,0.0,0.0,0.0,11.1,0.0 -2019,2,19,2,0,0.0,0.0,0.0,11.1,0.0 -2019,2,19,2,15,0.0,0.0,0.0,11.1,0.0 -2019,2,19,2,30,0.0,0.0,0.0,11.1,0.0 -2019,2,19,2,45,0.0,0.0,0.0,11.1,0.0 -2019,2,19,3,0,0.0,0.0,0.0,10.9,0.0 -2019,2,19,3,15,0.0,0.0,0.0,10.9,0.0 -2019,2,19,3,30,0.0,0.0,0.0,10.9,0.0 -2019,2,19,3,45,0.0,0.0,0.0,10.9,0.0 -2019,2,19,4,0,0.0,0.0,0.0,9.9,0.0 -2019,2,19,4,15,0.0,0.0,0.0,9.9,0.0 -2019,2,19,4,30,0.0,0.0,0.0,9.9,0.0 -2019,2,19,4,45,0.0,0.0,0.0,9.9,0.0 -2019,2,19,5,0,0.0,0.0,0.0,9.1,0.0 -2019,2,19,5,15,0.0,0.0,0.0,9.1,0.0 -2019,2,19,5,30,0.0,0.0,0.0,9.1,0.0 -2019,2,19,5,45,0.0,0.0,0.0,9.1,0.0 -2019,2,19,6,0,32.0,0.9436858078453358,9.0,9.5,0.0 -2019,2,19,6,15,32.0,2.6320710725136296,9.0,9.5,0.0 -2019,2,19,6,30,32.0,4.331487043208279,9.0,9.5,0.0 -2019,2,19,6,45,32.0,6.034656559843704,9.0,9.5,0.0 -2019,2,19,7,0,65.0,64.42901922780722,67.0,10.3,0.0 -2019,2,19,7,15,65.0,67.85941873679889,67.0,10.3,0.0 -2019,2,19,7,30,65.0,71.2531551668155,67.0,10.3,0.0 -2019,2,19,7,45,65.0,74.59569601744784,67.0,10.3,0.0 -2019,2,19,8,0,3.0,75.50181821610542,75.0,11.2,0.0 -2019,2,19,8,15,3.0,75.64939469571732,75.0,11.2,0.0 -2019,2,19,8,30,3.0,75.79266807911434,75.0,11.2,0.0 -2019,2,19,8,45,3.0,75.93102484767303,75.0,11.2,0.0 -2019,2,19,9,0,1.0,94.35462417882317,94.0,11.9,0.0 -2019,2,19,9,15,1.0,94.39688075710174,94.0,11.9,0.0 -2019,2,19,9,30,1.0,94.43693040157117,94.0,11.9,0.0 -2019,2,19,9,45,1.0,94.47460161350531,94.0,11.9,0.0 -2019,2,19,10,0,5.0,190.54866539495646,188.0,13.4,0.2 -2019,2,19,10,15,5.0,190.71087179850198,188.0,13.4,0.2 -2019,2,19,10,30,5.0,190.85893268544083,188.0,13.4,0.2 -2019,2,19,10,45,5.0,190.99221403632438,188.0,13.4,0.2 -2019,2,19,11,0,145.0,419.19420847844685,329.0,14.4,2.1 -2019,2,19,11,15,145.0,422.15440718175284,329.0,14.4,2.1 -2019,2,19,11,30,145.0,424.64212713801965,329.0,14.4,2.1 -2019,2,19,11,45,145.0,426.64671554847286,329.0,14.4,2.1 -2019,2,19,12,0,28.0,304.1480584608144,285.0,14.4,2.2 -2019,2,19,12,15,28.0,304.3439964850584,285.0,14.4,2.2 -2019,2,19,12,30,28.0,304.44289252125355,285.0,14.4,2.2 -2019,2,19,12,45,28.0,304.4443230813901,285.0,14.4,2.2 -2019,2,19,13,0,414.0,541.0781701567942,255.0,14.4,2.6 -2019,2,19,13,15,414.0,538.2230283054333,255.0,14.4,2.6 -2019,2,19,13,30,414.0,533.9450061622085,255.0,14.4,2.6 -2019,2,19,13,45,414.0,528.262422874711,255.0,14.4,2.6 -2019,2,19,14,0,58.0,267.2936654684663,230.0,14.5,2.5 -2019,2,19,14,15,58.0,266.11506145738326,230.0,14.5,2.5 -2019,2,19,14,30,58.0,264.75237629898976,230.0,14.5,2.5 -2019,2,19,14,45,58.0,263.2114452203373,230.0,14.5,2.5 -2019,2,19,15,0,297.0,321.2959209877099,160.0,14.8,1.6 -2019,2,19,15,15,297.0,311.6849375513805,160.0,14.8,1.6 -2019,2,19,15,30,297.0,301.2737093706978,160.0,14.8,1.6 -2019,2,19,15,45,297.0,290.10681892309225,160.0,14.8,1.6 -2019,2,19,16,0,212.0,167.39461927320042,83.0,14.7,2.1 -2019,2,19,16,15,212.0,158.44941213561597,83.0,14.7,2.1 -2019,2,19,16,30,212.0,149.07354398294254,83.0,14.7,2.1 -2019,2,19,16,45,212.0,139.30716372201937,83.0,14.7,2.1 -2019,2,19,17,0,106.0,41.09604624624282,18.0,14.1,2.7 -2019,2,19,17,15,106.0,35.885822291120164,18.0,14.1,2.7 -2019,2,19,17,30,106.0,30.54522097450564,18.0,14.1,2.7 -2019,2,19,17,45,106.0,25.097111571141017,18.0,14.1,2.7 -2019,2,19,18,0,0.0,0.0,0.0,12.1,3.0 -2019,2,19,18,15,0.0,0.0,0.0,12.1,3.0 -2019,2,19,18,30,0.0,0.0,0.0,12.1,3.0 -2019,2,19,18,45,0.0,0.0,0.0,12.1,3.0 -2019,2,19,19,0,0.0,0.0,0.0,11.6,2.5 -2019,2,19,19,15,0.0,0.0,0.0,11.6,2.5 -2019,2,19,19,30,0.0,0.0,0.0,11.6,2.5 -2019,2,19,19,45,0.0,0.0,0.0,11.6,2.5 -2019,2,19,20,0,0.0,0.0,0.0,10.6,1.3 -2019,2,19,20,15,0.0,0.0,0.0,10.6,1.3 -2019,2,19,20,30,0.0,0.0,0.0,10.6,1.3 -2019,2,19,20,45,0.0,0.0,0.0,10.6,1.3 -2019,2,19,21,0,0.0,0.0,0.0,10.5,0.0 -2019,2,19,21,15,0.0,0.0,0.0,10.5,0.0 -2019,2,19,21,30,0.0,0.0,0.0,10.5,0.0 -2019,2,19,21,45,0.0,0.0,0.0,10.5,0.0 -2019,2,19,22,0,0.0,0.0,0.0,9.9,0.0 -2019,2,19,22,15,0.0,0.0,0.0,9.9,0.0 -2019,2,19,22,30,0.0,0.0,0.0,9.9,0.0 -2019,2,19,22,45,0.0,0.0,0.0,9.9,0.0 -2019,2,19,23,0,0.0,0.0,0.0,9.8,0.0 -2019,2,19,23,15,0.0,0.0,0.0,9.8,0.0 -2019,2,19,23,30,0.0,0.0,0.0,9.8,0.0 -2019,2,19,23,45,0.0,0.0,0.0,9.8,0.0 -2019,2,20,0,0,0.0,0.0,0.0,9.4,0.2 -2019,2,20,0,15,0.0,0.0,0.0,9.4,0.2 -2019,2,20,0,30,0.0,0.0,0.0,9.4,0.2 -2019,2,20,0,45,0.0,0.0,0.0,9.4,0.2 -2019,2,20,1,0,0.0,0.0,0.0,9.4,1.3 -2019,2,20,1,15,0.0,0.0,0.0,9.4,1.3 -2019,2,20,1,30,0.0,0.0,0.0,9.4,1.3 -2019,2,20,1,45,0.0,0.0,0.0,9.4,1.3 -2019,2,20,2,0,0.0,0.0,0.0,9.3,0.0 -2019,2,20,2,15,0.0,0.0,0.0,9.3,0.0 -2019,2,20,2,30,0.0,0.0,0.0,9.3,0.0 -2019,2,20,2,45,0.0,0.0,0.0,9.3,0.0 -2019,2,20,3,0,0.0,0.0,0.0,8.8,0.0 -2019,2,20,3,15,0.0,0.0,0.0,8.8,0.0 -2019,2,20,3,30,0.0,0.0,0.0,8.8,0.0 -2019,2,20,3,45,0.0,0.0,0.0,8.8,0.0 -2019,2,20,4,0,0.0,0.0,0.0,8.2,0.0 -2019,2,20,4,15,0.0,0.0,0.0,8.2,0.0 -2019,2,20,4,30,0.0,0.0,0.0,8.2,0.0 -2019,2,20,4,45,0.0,0.0,0.0,8.2,0.0 -2019,2,20,5,0,0.0,0.0,0.0,8.2,0.0 -2019,2,20,5,15,0.0,0.0,0.0,8.2,0.0 -2019,2,20,5,30,0.0,0.0,0.0,8.2,0.0 -2019,2,20,5,45,0.0,0.0,0.0,8.2,0.0 -2019,2,20,6,0,3.0,10.253972006853996,11.0,9.0,0.0 -2019,2,20,6,15,3.0,10.412463850503602,11.0,9.0,0.0 -2019,2,20,6,30,3.0,10.571991166904281,11.0,9.0,0.0 -2019,2,20,6,45,3.0,10.731870835596125,11.0,9.0,0.0 -2019,2,20,7,0,6.0,36.782836454585244,37.0,9.5,0.2 -2019,2,20,7,15,6.0,37.09990027113674,37.0,9.5,0.2 -2019,2,20,7,30,6.0,37.41357540490773,37.0,9.5,0.2 -2019,2,20,7,45,6.0,37.72251865081913,37.0,9.5,0.2 -2019,2,20,8,0,94.0,172.06471070790656,156.0,10.8,1.9 -2019,2,20,8,15,94.0,176.69478364853666,156.0,10.8,1.9 -2019,2,20,8,30,94.0,181.18985100156988,156.0,10.8,1.9 -2019,2,20,8,45,94.0,185.53066419850518,156.0,10.8,1.9 -2019,2,20,9,0,76.0,257.2457050640669,230.0,12.3,0.0 -2019,2,20,9,15,76.0,260.4613790122739,230.0,12.3,0.0 -2019,2,20,9,30,76.0,263.509107995589,230.0,12.3,0.0 -2019,2,20,9,45,76.0,266.3758411706099,230.0,12.3,0.0 -2019,2,20,10,0,1.0,117.51380661507595,117.0,12.9,0.0 -2019,2,20,10,15,1.0,117.5462900598444,117.0,12.9,0.0 -2019,2,20,10,30,1.0,117.57594072429485,117.0,12.9,0.0 -2019,2,20,10,45,1.0,117.60263163973009,117.0,12.9,0.0 -2019,2,20,11,0,2.0,181.25249702310512,180.0,14.1,0.0 -2019,2,20,11,15,2.0,181.2933804173828,180.0,14.1,0.0 -2019,2,20,11,30,2.0,181.32773839332233,180.0,14.1,0.0 -2019,2,20,11,45,2.0,181.35542382479608,180.0,14.1,0.0 -2019,2,20,12,0,13.0,263.9460680304844,255.0,15.6,0.2 -2019,2,20,12,15,13.0,264.0371574916837,255.0,15.6,0.2 -2019,2,20,12,30,13.0,264.08313318571504,255.0,15.6,0.2 -2019,2,20,12,45,13.0,264.08379823759844,255.0,15.6,0.2 -2019,2,20,13,0,34.0,291.6408533217158,268.0,15.6,1.9 -2019,2,20,13,15,34.0,291.4060683181577,268.0,15.6,1.9 -2019,2,20,13,30,34.0,291.05427653462857,268.0,15.6,1.9 -2019,2,20,13,45,34.0,290.58698439755364,268.0,15.6,1.9 -2019,2,20,14,0,103.0,311.6658197391527,245.0,15.7,0.2 -2019,2,20,14,15,103.0,309.57006125166566,245.0,15.7,0.2 -2019,2,20,14,30,103.0,307.14697516030617,245.0,15.7,0.2 -2019,2,20,14,45,103.0,304.4069374917164,245.0,15.7,0.2 -2019,2,20,15,0,436.0,381.5795450235265,143.0,16.0,2.1 -2019,2,20,15,15,436.0,367.4521543066486,143.0,16.0,2.1 -2019,2,20,15,30,436.0,352.1484666741112,143.0,16.0,2.1 -2019,2,20,15,45,436.0,335.7340148658219,143.0,16.0,2.1 -2019,2,20,16,0,500.0,266.00812853717434,65.0,16.1,2.4 -2019,2,20,16,15,500.0,244.88352179598706,65.0,16.1,2.4 -2019,2,20,16,30,500.0,222.74188499137176,65.0,16.1,2.4 -2019,2,20,16,45,500.0,199.6780320113717,65.0,16.1,2.4 -2019,2,20,17,0,250.0,70.39536290763706,15.0,15.5,2.3 -2019,2,20,17,15,250.0,58.09112775772852,15.0,15.5,2.3 -2019,2,20,17,30,250.0,45.47899917985262,15.0,15.5,2.3 -2019,2,20,17,45,250.0,32.612984244828965,15.0,15.5,2.3 -2019,2,20,18,0,0.0,0.0,0.0,14.3,0.0 -2019,2,20,18,15,0.0,0.0,0.0,14.3,0.0 -2019,2,20,18,30,0.0,0.0,0.0,14.3,0.0 -2019,2,20,18,45,0.0,0.0,0.0,14.3,0.0 -2019,2,20,19,0,0.0,0.0,0.0,13.6,0.2 -2019,2,20,19,15,0.0,0.0,0.0,13.6,0.2 -2019,2,20,19,30,0.0,0.0,0.0,13.6,0.2 -2019,2,20,19,45,0.0,0.0,0.0,13.6,0.2 -2019,2,20,20,0,0.0,0.0,0.0,11.6,1.9 -2019,2,20,20,15,0.0,0.0,0.0,11.6,1.9 -2019,2,20,20,30,0.0,0.0,0.0,11.6,1.9 -2019,2,20,20,45,0.0,0.0,0.0,11.6,1.9 -2019,2,20,21,0,0.0,0.0,0.0,10.5,0.2 -2019,2,20,21,15,0.0,0.0,0.0,10.5,0.2 -2019,2,20,21,30,0.0,0.0,0.0,10.5,0.2 -2019,2,20,21,45,0.0,0.0,0.0,10.5,0.2 -2019,2,20,22,0,0.0,0.0,0.0,9.9,1.3 -2019,2,20,22,15,0.0,0.0,0.0,9.9,1.3 -2019,2,20,22,30,0.0,0.0,0.0,9.9,1.3 -2019,2,20,22,45,0.0,0.0,0.0,9.9,1.3 -2019,2,20,23,0,0.0,0.0,0.0,8.8,0.2 -2019,2,20,23,15,0.0,0.0,0.0,8.8,0.2 -2019,2,20,23,30,0.0,0.0,0.0,8.8,0.2 -2019,2,20,23,45,0.0,0.0,0.0,8.8,0.2 -2019,2,21,0,0,0.0,0.0,0.0,7.5,1.5 -2019,2,21,0,15,0.0,0.0,0.0,7.5,1.5 -2019,2,21,0,30,0.0,0.0,0.0,7.5,1.5 -2019,2,21,0,45,0.0,0.0,0.0,7.5,1.5 -2019,2,21,1,0,0.0,0.0,0.0,5.7,1.3 -2019,2,21,1,15,0.0,0.0,0.0,5.7,1.3 -2019,2,21,1,30,0.0,0.0,0.0,5.7,1.3 -2019,2,21,1,45,0.0,0.0,0.0,5.7,1.3 -2019,2,21,2,0,0.0,0.0,0.0,6.5,0.0 -2019,2,21,2,15,0.0,0.0,0.0,6.5,0.0 -2019,2,21,2,30,0.0,0.0,0.0,6.5,0.0 -2019,2,21,2,45,0.0,0.0,0.0,6.5,0.0 -2019,2,21,3,0,0.0,0.0,0.0,5.0,0.2 -2019,2,21,3,15,0.0,0.0,0.0,5.0,0.2 -2019,2,21,3,30,0.0,0.0,0.0,5.0,0.2 -2019,2,21,3,45,0.0,0.0,0.0,5.0,0.2 -2019,2,21,4,0,0.0,0.0,0.0,5.2,2.2 -2019,2,21,4,15,0.0,0.0,0.0,5.2,2.2 -2019,2,21,4,30,0.0,0.0,0.0,5.2,2.2 -2019,2,21,4,45,0.0,0.0,0.0,5.2,2.2 -2019,2,21,5,0,0.0,0.0,0.0,6.8,2.5 -2019,2,21,5,15,0.0,0.0,0.0,6.8,2.5 -2019,2,21,5,30,0.0,0.0,0.0,6.8,2.5 -2019,2,21,5,45,0.0,0.0,0.0,6.8,2.5 -2019,2,21,6,0,191.0,-37.900278994886165,9.0,7.5,2.0 -2019,2,21,6,15,191.0,-27.796769495093855,9.0,7.5,2.0 -2019,2,21,6,30,191.0,-17.6272508648862,9.0,7.5,2.0 -2019,2,21,6,45,191.0,-7.4352705442907165,9.0,7.5,2.0 -2019,2,21,7,0,381.0,55.503853968065656,68.0,10.1,1.6 -2019,2,21,7,15,381.0,75.66306970539621,68.0,10.1,1.6 -2019,2,21,7,30,381.0,95.60682980360502,68.0,10.1,1.6 -2019,2,21,7,45,381.0,115.24973202012981,68.0,10.1,1.6 -2019,2,21,8,0,204.0,197.61040193211926,162.0,15.5,2.2 -2019,2,21,8,15,204.0,207.6714534054043,162.0,15.5,2.2 -2019,2,21,8,30,204.0,217.43914056598612,162.0,15.5,2.2 -2019,2,21,8,45,204.0,226.8716366778806,162.0,15.5,2.2 -2019,2,21,9,0,910.0,418.7793177138061,89.0,19.1,2.7 -2019,2,21,9,15,910.0,457.3318608286647,89.0,19.1,2.7 -2019,2,21,9,30,910.0,493.870920734653,89.0,19.1,2.7 -2019,2,21,9,45,910.0,528.240031567675,89.0,19.1,2.7 -2019,2,21,10,0,936.0,587.7575057906649,103.0,20.8,3.1 -2019,2,21,10,15,936.0,618.2007654276058,103.0,20.8,3.1 -2019,2,21,10,30,936.0,645.9891629546461,103.0,20.8,3.1 -2019,2,21,10,45,936.0,671.0037041874225,103.0,20.8,3.1 -2019,2,21,11,0,784.0,656.3030150082672,162.0,22.3,3.0 -2019,2,21,11,15,784.0,672.3497335987992,162.0,22.3,3.0 -2019,2,21,11,30,784.0,685.835227672451,162.0,22.3,3.0 -2019,2,21,11,45,784.0,696.7017502732683,162.0,22.3,3.0 -2019,2,21,12,0,548.0,620.4779560806151,241.0,23.4,2.9 -2019,2,21,12,15,548.0,624.3226216078538,241.0,23.4,2.9 -2019,2,21,12,30,548.0,626.2631442940817,241.0,23.4,2.9 -2019,2,21,12,45,548.0,626.2912145232414,241.0,23.4,2.9 -2019,2,21,13,0,682.0,658.1594482633474,181.0,24.3,4.9 -2019,2,21,13,15,682.0,653.4439342955079,181.0,24.3,4.9 -2019,2,21,13,30,682.0,646.3784103316152,181.0,24.3,4.9 -2019,2,21,13,45,682.0,636.9931320300013,181.0,24.3,4.9 -2019,2,21,14,0,129.0,333.044500335079,249.0,24.0,3.5 -2019,2,21,14,15,129.0,330.4163697311482,249.0,24.0,3.5 -2019,2,21,14,30,129.0,327.37776258691713,249.0,24.0,3.5 -2019,2,21,14,45,129.0,323.94169068467295,249.0,24.0,3.5 -2019,2,21,15,0,121.0,237.71214732736263,171.0,24.4,3.2 -2019,2,21,15,15,121.0,233.78647486243412,171.0,24.4,3.2 -2019,2,21,15,30,121.0,229.5339369129354,171.0,24.4,3.2 -2019,2,21,15,45,121.0,224.97274349922776,171.0,24.4,3.2 -2019,2,21,16,0,66.0,105.79405073732137,79.0,24.1,4.2 -2019,2,21,16,15,66.0,103.0020483308251,79.0,24.1,4.2 -2019,2,21,16,30,66.0,100.07562683575787,79.0,24.1,4.2 -2019,2,21,16,45,66.0,97.027317638234,79.0,24.1,4.2 -2019,2,21,17,0,33.0,26.435087033111074,19.0,22.8,5.0 -2019,2,21,17,15,33.0,24.808857746595613,19.0,22.8,5.0 -2019,2,21,17,30,33.0,23.141934723038727,19.0,22.8,5.0 -2019,2,21,17,45,33.0,21.441455982737974,19.0,22.8,5.0 -2019,2,21,18,0,0.0,0.0,0.0,19.3,4.5 -2019,2,21,18,15,0.0,0.0,0.0,19.3,4.5 -2019,2,21,18,30,0.0,0.0,0.0,19.3,4.5 -2019,2,21,18,45,0.0,0.0,0.0,19.3,4.5 -2019,2,21,19,0,0.0,0.0,0.0,18.7,3.5 -2019,2,21,19,15,0.0,0.0,0.0,18.7,3.5 -2019,2,21,19,30,0.0,0.0,0.0,18.7,3.5 -2019,2,21,19,45,0.0,0.0,0.0,18.7,3.5 -2019,2,21,20,0,0.0,0.0,0.0,17.1,2.5 -2019,2,21,20,15,0.0,0.0,0.0,17.1,2.5 -2019,2,21,20,30,0.0,0.0,0.0,17.1,2.5 -2019,2,21,20,45,0.0,0.0,0.0,17.1,2.5 -2019,2,21,21,0,0.0,0.0,0.0,16.4,1.3 -2019,2,21,21,15,0.0,0.0,0.0,16.4,1.3 -2019,2,21,21,30,0.0,0.0,0.0,16.4,1.3 -2019,2,21,21,45,0.0,0.0,0.0,16.4,1.3 -2019,2,21,22,0,0.0,0.0,0.0,14.3,0.0 -2019,2,21,22,15,0.0,0.0,0.0,14.3,0.0 -2019,2,21,22,30,0.0,0.0,0.0,14.3,0.0 -2019,2,21,22,45,0.0,0.0,0.0,14.3,0.0 -2019,2,21,23,0,0.0,0.0,0.0,13.3,0.2 -2019,2,21,23,15,0.0,0.0,0.0,13.3,0.2 -2019,2,21,23,30,0.0,0.0,0.0,13.3,0.2 -2019,2,21,23,45,0.0,0.0,0.0,13.3,0.2 -2019,2,22,0,0,0.0,0.0,0.0,13.8,2.2 -2019,2,22,0,15,0.0,0.0,0.0,13.8,2.2 -2019,2,22,0,30,0.0,0.0,0.0,13.8,2.2 -2019,2,22,0,45,0.0,0.0,0.0,13.8,2.2 -2019,2,22,1,0,0.0,0.0,0.0,17.3,2.9 -2019,2,22,1,15,0.0,0.0,0.0,17.3,2.9 -2019,2,22,1,30,0.0,0.0,0.0,17.3,2.9 -2019,2,22,1,45,0.0,0.0,0.0,17.3,2.9 -2019,2,22,2,0,0.0,0.0,0.0,18.2,1.5 -2019,2,22,2,15,0.0,0.0,0.0,18.2,1.5 -2019,2,22,2,30,0.0,0.0,0.0,18.2,1.5 -2019,2,22,2,45,0.0,0.0,0.0,18.2,1.5 -2019,2,22,3,0,0.0,0.0,0.0,17.4,1.5 -2019,2,22,3,15,0.0,0.0,0.0,17.4,1.5 -2019,2,22,3,30,0.0,0.0,0.0,17.4,1.5 -2019,2,22,3,45,0.0,0.0,0.0,17.4,1.5 -2019,2,22,4,0,0.0,0.0,0.0,14.3,1.3 -2019,2,22,4,15,0.0,0.0,0.0,14.3,1.3 -2019,2,22,4,30,0.0,0.0,0.0,14.3,1.3 -2019,2,22,4,45,0.0,0.0,0.0,14.3,1.3 -2019,2,22,5,0,0.0,0.0,0.0,13.4,0.3 -2019,2,22,5,15,0.0,0.0,0.0,13.4,0.3 -2019,2,22,5,30,0.0,0.0,0.0,13.4,0.3 -2019,2,22,5,45,0.0,0.0,0.0,13.4,0.3 -2019,2,22,6,0,41.0,4.062166303908908,14.0,14.3,2.6 -2019,2,22,6,15,41.0,6.233689521409286,14.0,14.3,2.6 -2019,2,22,6,30,41.0,8.419399923992906,14.0,14.3,2.6 -2019,2,22,6,45,41.0,10.60993796415955,14.0,14.3,2.6 -2019,2,22,7,0,82.0,71.5918468434474,74.0,17.5,2.5 -2019,2,22,7,15,82.0,75.93599114271495,74.0,17.5,2.5 -2019,2,22,7,30,82.0,80.23370653330713,74.0,17.5,2.5 -2019,2,22,7,45,82.0,84.46658953812413,74.0,17.5,2.5 -2019,2,22,8,0,290.0,208.6925505812884,157.0,19.9,2.1 -2019,2,22,8,15,290.0,223.01287757503695,157.0,19.9,2.1 -2019,2,22,8,30,290.0,236.9156465334886,157.0,19.9,2.1 -2019,2,22,8,45,290.0,250.34132366557128,157.0,19.9,2.1 -2019,2,22,9,0,1038.0,441.23879327849386,61.0,23.6,2.2 -2019,2,22,9,15,1038.0,485.26900017662086,61.0,23.6,2.2 -2019,2,22,9,30,1038.0,526.9996419848821,61.0,23.6,2.2 -2019,2,22,9,45,1038.0,566.2520216884507,61.0,23.6,2.2 -2019,2,22,10,0,582.0,512.8163658578967,209.0,26.1,2.8 -2019,2,22,10,15,582.0,531.7694556886377,209.0,26.1,2.8 -2019,2,22,10,30,582.0,549.069705427442,209.0,26.1,2.8 -2019,2,22,10,45,582.0,564.6430327489452,209.0,26.1,2.8 -2019,2,22,11,0,507.0,575.8167257547609,254.0,26.3,4.1 -2019,2,22,11,15,507.0,586.2068290847858,254.0,26.3,4.1 -2019,2,22,11,30,507.0,594.9385629960636,254.0,26.3,4.1 -2019,2,22,11,45,507.0,601.9745368634663,254.0,26.3,4.1 -2019,2,22,12,0,528.0,616.9177124008347,249.0,27.8,4.0 -2019,2,22,12,15,528.0,620.6266853099803,249.0,27.8,4.0 -2019,2,22,12,30,528.0,622.4987196967975,249.0,27.8,4.0 -2019,2,22,12,45,528.0,622.5257992226416,249.0,27.8,4.0 -2019,2,22,13,0,646.0,646.7788710644348,192.0,27.7,3.3 -2019,2,22,13,15,646.0,642.3066947985421,192.0,27.7,3.3 -2019,2,22,13,30,646.0,635.6057776147692,192.0,27.7,3.3 -2019,2,22,13,45,646.0,626.7048138692402,192.0,27.7,3.3 -2019,2,22,14,0,935.0,700.1659351851788,87.0,27.1,4.8 -2019,2,22,14,15,935.0,681.0933054556625,87.0,27.1,4.8 -2019,2,22,14,30,935.0,659.0418028139363,87.0,27.1,4.8 -2019,2,22,14,45,935.0,634.1058551797206,87.0,27.1,4.8 -2019,2,22,15,0,399.0,372.6443899481277,151.0,26.3,6.5 -2019,2,22,15,15,399.0,359.68324639735147,151.0,26.3,6.5 -2019,2,22,15,30,399.0,345.64291182767147,151.0,26.3,6.5 -2019,2,22,15,45,399.0,330.58350910722663,151.0,26.3,6.5 -2019,2,22,16,0,274.0,196.3259394121732,84.0,25.4,5.2 -2019,2,22,16,15,274.0,184.72043157858593,84.0,25.4,5.2 -2019,2,22,16,30,274.0,172.55618433210844,84.0,25.4,5.2 -2019,2,22,16,45,274.0,159.88528684693932,84.0,25.4,5.2 -2019,2,22,17,0,137.0,53.38099892569082,22.0,24.1,3.9 -2019,2,22,17,15,137.0,46.62125664181917,22.0,24.1,3.9 -2019,2,22,17,30,137.0,39.69236282608878,22.0,24.1,3.9 -2019,2,22,17,45,137.0,32.62398806556172,22.0,24.1,3.9 -2019,2,22,18,0,0.0,0.0,0.0,21.6,2.0 -2019,2,22,18,15,0.0,0.0,0.0,21.6,2.0 -2019,2,22,18,30,0.0,0.0,0.0,21.6,2.0 -2019,2,22,18,45,0.0,0.0,0.0,21.6,2.0 -2019,2,22,19,0,0.0,0.0,0.0,20.3,1.3 -2019,2,22,19,15,0.0,0.0,0.0,20.3,1.3 -2019,2,22,19,30,0.0,0.0,0.0,20.3,1.3 -2019,2,22,19,45,0.0,0.0,0.0,20.3,1.3 -2019,2,22,20,0,0.0,0.0,0.0,18.2,0.0 -2019,2,22,20,15,0.0,0.0,0.0,18.2,0.0 -2019,2,22,20,30,0.0,0.0,0.0,18.2,0.0 -2019,2,22,20,45,0.0,0.0,0.0,18.2,0.0 -2019,2,22,21,0,0.0,0.0,0.0,17.0,0.2 -2019,2,22,21,15,0.0,0.0,0.0,17.0,0.2 -2019,2,22,21,30,0.0,0.0,0.0,17.0,0.2 -2019,2,22,21,45,0.0,0.0,0.0,17.0,0.2 -2019,2,22,22,0,0.0,0.0,0.0,15.2,1.6 -2019,2,22,22,15,0.0,0.0,0.0,15.2,1.6 -2019,2,22,22,30,0.0,0.0,0.0,15.2,1.6 -2019,2,22,22,45,0.0,0.0,0.0,15.2,1.6 -2019,2,22,23,0,0.0,0.0,0.0,12.2,2.3 -2019,2,22,23,15,0.0,0.0,0.0,12.2,2.3 -2019,2,22,23,30,0.0,0.0,0.0,12.2,2.3 -2019,2,22,23,45,0.0,0.0,0.0,12.2,2.3 -2019,2,23,0,0,0.0,0.0,0.0,12.0,0.0 -2019,2,23,0,15,0.0,0.0,0.0,12.0,0.0 -2019,2,23,0,30,0.0,0.0,0.0,12.0,0.0 -2019,2,23,0,45,0.0,0.0,0.0,12.0,0.0 -2019,2,23,1,0,0.0,0.0,0.0,10.6,0.0 -2019,2,23,1,15,0.0,0.0,0.0,10.6,0.0 -2019,2,23,1,30,0.0,0.0,0.0,10.6,0.0 -2019,2,23,1,45,0.0,0.0,0.0,10.6,0.0 -2019,2,23,2,0,0.0,0.0,0.0,10.6,0.2 -2019,2,23,2,15,0.0,0.0,0.0,10.6,0.2 -2019,2,23,2,30,0.0,0.0,0.0,10.6,0.2 -2019,2,23,2,45,0.0,0.0,0.0,10.6,0.2 -2019,2,23,3,0,0.0,0.0,0.0,10.4,1.9 -2019,2,23,3,15,0.0,0.0,0.0,10.4,1.9 -2019,2,23,3,30,0.0,0.0,0.0,10.4,1.9 -2019,2,23,3,45,0.0,0.0,0.0,10.4,1.9 -2019,2,23,4,0,0.0,0.0,0.0,9.0,0.2 -2019,2,23,4,15,0.0,0.0,0.0,9.0,0.2 -2019,2,23,4,30,0.0,0.0,0.0,9.0,0.2 -2019,2,23,4,45,0.0,0.0,0.0,9.0,0.2 -2019,2,23,5,0,0.0,0.0,0.0,9.5,2.0 -2019,2,23,5,15,0.0,0.0,0.0,9.5,2.0 -2019,2,23,5,30,0.0,0.0,0.0,9.5,2.0 -2019,2,23,5,45,0.0,0.0,0.0,9.5,2.0 -2019,2,23,6,0,593.0,-141.83478030599053,0.0,10.2,1.3 -2019,2,23,6,15,593.0,-110.38881407019107,0.0,10.2,1.3 -2019,2,23,6,30,593.0,-78.73740230218932,0.0,10.2,1.3 -2019,2,23,6,45,593.0,-47.01608120638928,0.0,10.2,1.3 -2019,2,23,7,0,644.0,33.31824281756059,50.0,12.2,0.0 -2019,2,23,7,15,644.0,67.47730097933777,50.0,12.2,0.0 -2019,2,23,7,30,644.0,101.27127739369277,50.0,12.2,0.0 -2019,2,23,7,45,644.0,134.55546106547385,50.0,12.2,0.0 -2019,2,23,8,0,818.0,224.84973764043448,76.0,16.1,0.0 -2019,2,23,8,15,818.0,265.2922261390558,76.0,16.1,0.0 -2019,2,23,8,30,818.0,304.555475780396,76.0,16.1,0.0 -2019,2,23,8,45,818.0,342.47135530168714,76.0,16.1,0.0 -2019,2,23,9,0,1020.0,442.67121411685173,65.0,20.4,0.0 -2019,2,23,9,15,1020.0,485.99068810187026,65.0,20.4,0.0 -2019,2,23,9,30,1020.0,527.0477164363892,65.0,20.4,0.0 -2019,2,23,9,45,1020.0,565.6664866218899,65.0,20.4,0.0 -2019,2,23,10,0,995.0,611.5276657056849,88.0,23.6,0.0 -2019,2,23,10,15,995.0,643.9698246060357,88.0,23.6,0.0 -2019,2,23,10,30,995.0,673.5828036007168,88.0,23.6,0.0 -2019,2,23,10,45,995.0,700.2397953674057,88.0,23.6,0.0 -2019,2,23,11,0,1070.0,757.7532825277838,74.0,26.3,0.0 -2019,2,23,11,15,1070.0,779.7078717148266,74.0,26.3,0.0 -2019,2,23,11,30,1070.0,798.158278301131,74.0,26.3,0.0 -2019,2,23,11,45,1070.0,813.0254948131364,74.0,26.3,0.0 -2019,2,23,12,0,1136.0,852.5227048352451,56.0,27.8,0.3 -2019,2,23,12,15,1136.0,860.5123538292462,56.0,27.8,0.3 -2019,2,23,12,30,1136.0,864.5449790389068,56.0,27.8,0.3 -2019,2,23,12,45,1136.0,864.603312143979,56.0,27.8,0.3 -2019,2,23,13,0,1058.0,821.4357001299597,72.0,27.9,2.7 -2019,2,23,13,15,1058.0,814.1023623038454,72.0,27.9,2.7 -2019,2,23,13,30,1058.0,803.1144033031698,72.0,27.9,2.7 -2019,2,23,13,45,1058.0,788.5188752552759,72.0,27.9,2.7 -2019,2,23,14,0,734.0,621.5081818372178,137.0,28.2,3.3 -2019,2,23,14,15,734.0,606.5173871323157,137.0,28.2,3.3 -2019,2,23,14,30,734.0,589.185243965653,137.0,28.2,3.3 -2019,2,23,14,45,734.0,569.5859712351487,137.0,28.2,3.3 -2019,2,23,15,0,780.0,523.5486742612318,87.0,27.1,5.0 -2019,2,23,15,15,780.0,498.18018192161406,87.0,27.1,5.0 -2019,2,23,15,30,780.0,470.69941847036273,87.0,27.1,5.0 -2019,2,23,15,45,780.0,441.2240607554996,87.0,27.1,5.0 -2019,2,23,16,0,549.0,291.25807615943654,64.0,25.6,4.3 -2019,2,23,16,15,549.0,267.97632941639245,64.0,25.6,4.3 -2019,2,23,16,30,549.0,243.57369854722512,64.0,25.6,4.3 -2019,2,23,16,45,549.0,218.15467936367625,64.0,25.6,4.3 -2019,2,23,17,0,274.0,81.79764095131341,18.0,24.2,3.5 -2019,2,23,17,15,274.0,68.26165906900906,18.0,24.2,3.5 -2019,2,23,17,30,274.0,54.38696130458197,18.0,24.2,3.5 -2019,2,23,17,45,274.0,40.2329612439418,18.0,24.2,3.5 -2019,2,23,18,0,0.0,0.0,0.0,22.5,2.3 -2019,2,23,18,15,0.0,0.0,0.0,22.5,2.3 -2019,2,23,18,30,0.0,0.0,0.0,22.5,2.3 -2019,2,23,18,45,0.0,0.0,0.0,22.5,2.3 -2019,2,23,19,0,0.0,0.0,0.0,20.4,0.0 -2019,2,23,19,15,0.0,0.0,0.0,20.4,0.0 -2019,2,23,19,30,0.0,0.0,0.0,20.4,0.0 -2019,2,23,19,45,0.0,0.0,0.0,20.4,0.0 -2019,2,23,20,0,0.0,0.0,0.0,18.7,0.0 -2019,2,23,20,15,0.0,0.0,0.0,18.7,0.0 -2019,2,23,20,30,0.0,0.0,0.0,18.7,0.0 -2019,2,23,20,45,0.0,0.0,0.0,18.7,0.0 -2019,2,23,21,0,0.0,0.0,0.0,17.1,0.0 -2019,2,23,21,15,0.0,0.0,0.0,17.1,0.0 -2019,2,23,21,30,0.0,0.0,0.0,17.1,0.0 -2019,2,23,21,45,0.0,0.0,0.0,17.1,0.0 -2019,2,23,22,0,0.0,0.0,0.0,15.8,0.0 -2019,2,23,22,15,0.0,0.0,0.0,15.8,0.0 -2019,2,23,22,30,0.0,0.0,0.0,15.8,0.0 -2019,2,23,22,45,0.0,0.0,0.0,15.8,0.0 -2019,2,23,23,0,0.0,0.0,0.0,13.8,0.0 -2019,2,23,23,15,0.0,0.0,0.0,13.8,0.0 -2019,2,23,23,30,0.0,0.0,0.0,13.8,0.0 -2019,2,23,23,45,0.0,0.0,0.0,13.8,0.0 -2019,2,24,0,0,0.0,0.0,0.0,13.0,0.2 -2019,2,24,0,15,0.0,0.0,0.0,13.0,0.2 -2019,2,24,0,30,0.0,0.0,0.0,13.0,0.2 -2019,2,24,0,45,0.0,0.0,0.0,13.0,0.2 -2019,2,24,1,0,0.0,0.0,0.0,10.6,1.5 -2019,2,24,1,15,0.0,0.0,0.0,10.6,1.5 -2019,2,24,1,30,0.0,0.0,0.0,10.6,1.5 -2019,2,24,1,45,0.0,0.0,0.0,10.6,1.5 -2019,2,24,2,0,0.0,0.0,0.0,10.7,1.3 -2019,2,24,2,15,0.0,0.0,0.0,10.7,1.3 -2019,2,24,2,30,0.0,0.0,0.0,10.7,1.3 -2019,2,24,2,45,0.0,0.0,0.0,10.7,1.3 -2019,2,24,3,0,0.0,0.0,0.0,11.3,0.3 -2019,2,24,3,15,0.0,0.0,0.0,11.3,0.3 -2019,2,24,3,30,0.0,0.0,0.0,11.3,0.3 -2019,2,24,3,45,0.0,0.0,0.0,11.3,0.3 -2019,2,24,4,0,0.0,0.0,0.0,12.5,2.5 -2019,2,24,4,15,0.0,0.0,0.0,12.5,2.5 -2019,2,24,4,30,0.0,0.0,0.0,12.5,2.5 -2019,2,24,4,45,0.0,0.0,0.0,12.5,2.5 -2019,2,24,5,0,0.0,0.0,0.0,10.6,1.6 -2019,2,24,5,15,0.0,0.0,0.0,10.6,1.6 -2019,2,24,5,30,0.0,0.0,0.0,10.6,1.6 -2019,2,24,5,45,0.0,0.0,0.0,10.6,1.6 -2019,2,24,6,0,303.0,-62.489430222553935,9.0,11.0,2.0 -2019,2,24,6,15,303.0,-46.40262483500131,9.0,11.0,2.0 -2019,2,24,6,30,303.0,-30.210719725929643,9.0,11.0,2.0 -2019,2,24,6,45,303.0,-13.983051118842532,9.0,11.0,2.0 -2019,2,24,7,0,605.0,40.444189534225586,54.0,15.1,1.5 -2019,2,24,7,15,605.0,72.57282818156821,54.0,15.1,1.5 -2019,2,24,7,30,605.0,104.3580855950338,54.0,15.1,1.5 -2019,2,24,7,45,605.0,135.6638524226166,54.0,15.1,1.5 -2019,2,24,8,0,811.0,228.612850991571,78.0,21.1,1.7 -2019,2,24,8,15,811.0,268.75700870641333,78.0,21.1,1.7 -2019,2,24,8,30,811.0,307.73062641673107,78.0,21.1,1.7 -2019,2,24,8,45,811.0,345.36681310815,78.0,21.1,1.7 -2019,2,24,9,0,914.0,432.05058697168664,90.0,25.1,2.9 -2019,2,24,9,15,914.0,470.9144643726611,90.0,25.1,2.9 -2019,2,24,9,30,914.0,507.74859851272225,90.0,25.1,2.9 -2019,2,24,9,45,914.0,542.3952599746032,90.0,25.1,2.9 -2019,2,24,10,0,972.0,609.4642407162971,94.0,26.3,1.7 -2019,2,24,10,15,972.0,641.1942252416852,94.0,26.3,1.7 -2019,2,24,10,30,972.0,670.1571363764838,94.0,26.3,1.7 -2019,2,24,10,45,972.0,696.2289504887466,94.0,26.3,1.7 -2019,2,24,11,0,999.0,737.6674136252669,95.0,27.9,3.7 -2019,2,24,11,15,999.0,758.1896154601156,95.0,27.9,3.7 -2019,2,24,11,30,999.0,775.4362587324312,95.0,27.9,3.7 -2019,2,24,11,45,999.0,789.3334906679685,95.0,27.9,3.7 -2019,2,24,12,0,1000.0,800.5273285145521,95.0,28.4,4.4 -2019,2,24,12,15,1000.0,807.5688465773829,95.0,28.4,4.4 -2019,2,24,12,30,1000.0,811.1229205142696,95.0,28.4,4.4 -2019,2,24,12,45,1000.0,811.1743312349828,95.0,28.4,4.4 -2019,2,24,13,0,976.0,790.6175099847416,95.0,29.1,3.0 -2019,2,24,13,15,976.0,783.8444835422063,95.0,29.1,3.0 -2019,2,24,13,30,976.0,773.6960710967777,95.0,29.1,3.0 -2019,2,24,13,45,976.0,760.2157297085602,95.0,29.1,3.0 -2019,2,24,14,0,922.0,703.5832089097767,91.0,27.0,6.1 -2019,2,24,14,15,922.0,684.7303834520126,91.0,27.0,6.1 -2019,2,24,14,30,922.0,662.9330153763082,91.0,27.0,6.1 -2019,2,24,14,45,922.0,638.2844443591569,91.0,27.0,6.1 -2019,2,24,15,0,824.0,544.630738348585,80.0,25.7,5.7 -2019,2,24,15,15,824.0,517.7992850962319,80.0,25.7,5.7 -2019,2,24,15,30,824.0,488.7337493911512,80.0,25.7,5.7 -2019,2,24,15,45,824.0,457.55859431945436,80.0,25.7,5.7 -2019,2,24,16,0,634.0,321.9930082231986,57.0,24.0,5.4 -2019,2,24,16,15,634.0,295.07459825677165,57.0,24.0,5.4 -2019,2,24,16,30,634.0,266.86021944553033,57.0,24.0,5.4 -2019,2,24,16,45,634.0,237.47069009109435,57.0,24.0,5.4 -2019,2,24,17,0,317.0,93.015930335061,18.0,22.4,4.9 -2019,2,24,17,15,317.0,77.33703746162413,18.0,22.4,4.9 -2019,2,24,17,30,317.0,61.26580585158794,18.0,22.4,4.9 -2019,2,24,17,45,317.0,44.87105498600697,18.0,22.4,4.9 -2019,2,24,18,0,0.0,0.0,0.0,19.1,3.5 -2019,2,24,18,15,0.0,0.0,0.0,19.1,3.5 -2019,2,24,18,30,0.0,0.0,0.0,19.1,3.5 -2019,2,24,18,45,0.0,0.0,0.0,19.1,3.5 -2019,2,24,19,0,0.0,0.0,0.0,16.6,2.3 -2019,2,24,19,15,0.0,0.0,0.0,16.6,2.3 -2019,2,24,19,30,0.0,0.0,0.0,16.6,2.3 -2019,2,24,19,45,0.0,0.0,0.0,16.6,2.3 -2019,2,24,20,0,0.0,0.0,0.0,15.4,0.2 -2019,2,24,20,15,0.0,0.0,0.0,15.4,0.2 -2019,2,24,20,30,0.0,0.0,0.0,15.4,0.2 -2019,2,24,20,45,0.0,0.0,0.0,15.4,0.2 -2019,2,24,21,0,0.0,0.0,0.0,13.6,2.0 -2019,2,24,21,15,0.0,0.0,0.0,13.6,2.0 -2019,2,24,21,30,0.0,0.0,0.0,13.6,2.0 -2019,2,24,21,45,0.0,0.0,0.0,13.6,2.0 -2019,2,24,22,0,0.0,0.0,0.0,12.2,2.5 -2019,2,24,22,15,0.0,0.0,0.0,12.2,2.5 -2019,2,24,22,30,0.0,0.0,0.0,12.2,2.5 -2019,2,24,22,45,0.0,0.0,0.0,12.2,2.5 -2019,2,24,23,0,0.0,0.0,0.0,12.1,2.4 -2019,2,24,23,15,0.0,0.0,0.0,12.1,2.4 -2019,2,24,23,30,0.0,0.0,0.0,12.1,2.4 -2019,2,24,23,45,0.0,0.0,0.0,12.1,2.4 -2019,2,25,0,0,0.0,0.0,0.0,11.7,2.5 -2019,2,25,0,15,0.0,0.0,0.0,11.7,2.5 -2019,2,25,0,30,0.0,0.0,0.0,11.7,2.5 -2019,2,25,0,45,0.0,0.0,0.0,11.7,2.5 -2019,2,25,1,0,0.0,0.0,0.0,11.7,1.3 -2019,2,25,1,15,0.0,0.0,0.0,11.7,1.3 -2019,2,25,1,30,0.0,0.0,0.0,11.7,1.3 -2019,2,25,1,45,0.0,0.0,0.0,11.7,1.3 -2019,2,25,2,0,0.0,0.0,0.0,11.7,0.2 -2019,2,25,2,15,0.0,0.0,0.0,11.7,0.2 -2019,2,25,2,30,0.0,0.0,0.0,11.7,0.2 -2019,2,25,2,45,0.0,0.0,0.0,11.7,0.2 -2019,2,25,3,0,0.0,0.0,0.0,11.7,1.5 -2019,2,25,3,15,0.0,0.0,0.0,11.7,1.5 -2019,2,25,3,30,0.0,0.0,0.0,11.7,1.5 -2019,2,25,3,45,0.0,0.0,0.0,11.7,1.5 -2019,2,25,4,0,0.0,0.0,0.0,11.8,1.5 -2019,2,25,4,15,0.0,0.0,0.0,11.8,1.5 -2019,2,25,4,30,0.0,0.0,0.0,11.8,1.5 -2019,2,25,4,45,0.0,0.0,0.0,11.8,1.5 -2019,2,25,5,0,0.0,0.0,0.0,11.7,0.2 -2019,2,25,5,15,0.0,0.0,0.0,11.7,0.2 -2019,2,25,5,30,0.0,0.0,0.0,11.7,0.2 -2019,2,25,5,45,0.0,0.0,0.0,11.7,0.2 -2019,2,25,6,0,3.0,16.302026284910543,17.0,11.8,1.3 -2019,2,25,6,15,3.0,16.461486402604415,17.0,11.8,1.3 -2019,2,25,6,30,3.0,16.621988319061884,17.0,11.8,1.3 -2019,2,25,6,45,3.0,16.78284474043598,17.0,11.8,1.3 -2019,2,25,7,0,5.0,40.905611424725414,41.0,12.4,0.2 -2019,2,25,7,15,5.0,41.17144546987006,41.0,12.4,0.2 -2019,2,25,7,30,5.0,41.43443836063433,41.0,12.4,0.2 -2019,2,25,7,45,5.0,41.69346392108457,41.0,12.4,0.2 -2019,2,25,8,0,28.0,145.30551259842588,140.0,13.9,0.8 -2019,2,25,8,15,28.0,146.69310902739198,140.0,13.9,0.8 -2019,2,25,8,30,28.0,148.04024534403544,140.0,13.9,0.8 -2019,2,25,8,45,28.0,149.34115290383227,140.0,13.9,0.8 -2019,2,25,9,0,332.0,355.57023781915314,230.0,15.2,2.0 -2019,2,25,9,15,332.0,369.70347546669245,230.0,15.2,2.0 -2019,2,25,9,30,332.0,383.09857668039103,230.0,15.2,2.0 -2019,2,25,9,45,332.0,395.69818158039845,230.0,15.2,2.0 -2019,2,25,10,0,395.0,478.1207620664503,267.0,16.9,1.5 -2019,2,25,10,15,395.0,491.0301109238285,267.0,16.9,1.5 -2019,2,25,10,30,395.0,502.81367556645205,267.0,16.9,1.5 -2019,2,25,10,45,395.0,513.4209969614756,267.0,16.9,1.5 -2019,2,25,11,0,507.0,587.3391722420799,259.0,18.4,1.6 -2019,2,25,11,15,507.0,597.7664291013366,259.0,18.4,1.6 -2019,2,25,11,30,507.0,606.5293864490723,259.0,18.4,1.6 -2019,2,25,11,45,507.0,613.5905199566105,259.0,18.4,1.6 -2019,2,25,12,0,704.0,693.770006523518,194.0,19.7,2.5 -2019,2,25,12,15,704.0,698.7329874139871,194.0,19.7,2.5 -2019,2,25,12,30,704.0,701.2379587674216,194.0,19.7,2.5 -2019,2,25,12,45,704.0,701.2741939119156,194.0,19.7,2.5 -2019,2,25,13,0,929.0,775.1900404936415,109.0,21.7,2.3 -2019,2,25,13,15,929.0,768.7356934444723,109.0,21.7,2.3 -2019,2,25,13,30,929.0,759.0647765395056,109.0,21.7,2.3 -2019,2,25,13,45,929.0,746.2187021296345,109.0,21.7,2.3 -2019,2,25,14,0,914.0,705.22149179437,94.0,21.6,4.0 -2019,2,25,14,15,914.0,686.5105620694019,94.0,21.6,4.0 -2019,2,25,14,30,914.0,664.8772518174471,94.0,21.6,4.0 -2019,2,25,14,45,914.0,640.4141981942106,94.0,21.6,4.0 -2019,2,25,15,0,707.0,503.6333611771521,102.0,20.6,3.6 -2019,2,25,15,15,707.0,480.58500036824495,102.0,20.6,3.6 -2019,2,25,15,30,707.0,455.6175508702898,102.0,20.6,3.6 -2019,2,25,15,45,707.0,428.83792713510934,102.0,20.6,3.6 -2019,2,25,16,0,347.0,230.43733926042233,84.0,19.0,3.9 -2019,2,25,16,15,347.0,215.68729694571684,84.0,19.0,3.9 -2019,2,25,16,30,347.0,200.22712370859077,84.0,19.0,3.9 -2019,2,25,16,45,347.0,184.1230223843344,84.0,19.0,3.9 -2019,2,25,17,0,173.0,66.60174035976804,25.0,17.5,3.9 -2019,2,25,17,15,173.0,58.035191822943695,25.0,17.5,3.9 -2019,2,25,17,30,173.0,49.254279372985664,25.0,17.5,3.9 -2019,2,25,17,45,173.0,40.29660422507483,25.0,17.5,3.9 -2019,2,25,18,0,0.0,0.0,0.0,15.4,2.5 -2019,2,25,18,15,0.0,0.0,0.0,15.4,2.5 -2019,2,25,18,30,0.0,0.0,0.0,15.4,2.5 -2019,2,25,18,45,0.0,0.0,0.0,15.4,2.5 -2019,2,25,19,0,0.0,0.0,0.0,13.8,1.5 -2019,2,25,19,15,0.0,0.0,0.0,13.8,1.5 -2019,2,25,19,30,0.0,0.0,0.0,13.8,1.5 -2019,2,25,19,45,0.0,0.0,0.0,13.8,1.5 -2019,2,25,20,0,0.0,0.0,0.0,13.2,1.5 -2019,2,25,20,15,0.0,0.0,0.0,13.2,1.5 -2019,2,25,20,30,0.0,0.0,0.0,13.2,1.5 -2019,2,25,20,45,0.0,0.0,0.0,13.2,1.5 -2019,2,25,21,0,0.0,0.0,0.0,12.1,1.6 -2019,2,25,21,15,0.0,0.0,0.0,12.1,1.6 -2019,2,25,21,30,0.0,0.0,0.0,12.1,1.6 -2019,2,25,21,45,0.0,0.0,0.0,12.1,1.6 -2019,2,25,22,0,0.0,0.0,0.0,11.6,1.8 -2019,2,25,22,15,0.0,0.0,0.0,11.6,1.8 -2019,2,25,22,30,0.0,0.0,0.0,11.6,1.8 -2019,2,25,22,45,0.0,0.0,0.0,11.6,1.8 -2019,2,25,23,0,0.0,0.0,0.0,11.0,0.0 -2019,2,25,23,15,0.0,0.0,0.0,11.0,0.0 -2019,2,25,23,30,0.0,0.0,0.0,11.0,0.0 -2019,2,25,23,45,0.0,0.0,0.0,11.0,0.0 -2019,2,26,0,0,0.0,0.0,0.0,9.9,0.0 -2019,2,26,0,15,0.0,0.0,0.0,9.9,0.0 -2019,2,26,0,30,0.0,0.0,0.0,9.9,0.0 -2019,2,26,0,45,0.0,0.0,0.0,9.9,0.0 -2019,2,26,1,0,0.0,0.0,0.0,9.3,0.0 -2019,2,26,1,15,0.0,0.0,0.0,9.3,0.0 -2019,2,26,1,30,0.0,0.0,0.0,9.3,0.0 -2019,2,26,1,45,0.0,0.0,0.0,9.3,0.0 -2019,2,26,2,0,0.0,0.0,0.0,8.7,0.4 -2019,2,26,2,15,0.0,0.0,0.0,8.7,0.4 -2019,2,26,2,30,0.0,0.0,0.0,8.7,0.4 -2019,2,26,2,45,0.0,0.0,0.0,8.7,0.4 -2019,2,26,3,0,0.0,0.0,0.0,8.1,0.0 -2019,2,26,3,15,0.0,0.0,0.0,8.1,0.0 -2019,2,26,3,30,0.0,0.0,0.0,8.1,0.0 -2019,2,26,3,45,0.0,0.0,0.0,8.1,0.0 -2019,2,26,4,0,0.0,0.0,0.0,7.5,0.0 -2019,2,26,4,15,0.0,0.0,0.0,7.5,0.0 -2019,2,26,4,30,0.0,0.0,0.0,7.5,0.0 -2019,2,26,4,45,0.0,0.0,0.0,7.5,0.0 -2019,2,26,5,0,0.0,0.0,0.0,8.2,0.0 -2019,2,26,5,15,0.0,0.0,0.0,8.2,0.0 -2019,2,26,5,30,0.0,0.0,0.0,8.2,0.0 -2019,2,26,5,45,0.0,0.0,0.0,8.2,0.0 -2019,2,26,6,0,1.0,16.77065980754178,17.0,7.9,0.2 -2019,2,26,6,15,1.0,16.823873160360712,17.0,7.9,0.2 -2019,2,26,6,30,1.0,16.877434171302415,17.0,7.9,0.2 -2019,2,26,6,45,1.0,16.931113483895196,17.0,7.9,0.2 -2019,2,26,7,0,3.0,32.95404370524461,33.0,8.2,1.0 -2019,2,26,7,15,3.0,33.113724118580954,33.0,8.2,1.0 -2019,2,26,7,30,3.0,33.27169791565014,33.0,8.2,1.0 -2019,2,26,7,45,3.0,33.42728862840052,33.0,8.2,1.0 -2019,2,26,8,0,1.0,56.19327666450447,56.0,9.2,1.9 -2019,2,26,8,15,1.0,56.24288960181492,56.0,9.2,1.9 -2019,2,26,8,30,1.0,56.29105590451727,56.0,9.2,1.9 -2019,2,26,8,45,1.0,56.3375693171087,56.0,9.2,1.9 -2019,2,26,9,0,144.0,309.0412153302524,254.0,12.1,0.3 -2019,2,26,9,15,144.0,315.1782117203827,254.0,12.1,0.3 -2019,2,26,9,30,144.0,320.99469127333293,254.0,12.1,0.3 -2019,2,26,9,45,144.0,326.4657469306951,254.0,12.1,0.3 -2019,2,26,10,0,532.0,516.5704848712303,230.0,15.1,2.5 -2019,2,26,10,15,532.0,533.9768733390812,230.0,15.1,2.5 -2019,2,26,10,30,532.0,549.8653047364799,230.0,15.1,2.5 -2019,2,26,10,45,532.0,564.1677423609461,230.0,15.1,2.5 -2019,2,26,11,0,681.0,645.9594413657478,202.0,16.4,2.4 -2019,2,26,11,15,681.0,659.9810881355008,202.0,16.4,2.4 -2019,2,26,11,30,681.0,671.7647330813224,202.0,16.4,2.4 -2019,2,26,11,45,681.0,681.2599168264965,202.0,16.4,2.4 -2019,2,26,12,0,826.0,742.9968562366345,153.0,18.4,4.6 -2019,2,26,12,15,826.0,748.8264700959149,153.0,18.4,4.6 -2019,2,26,12,30,826.0,751.7688581569139,153.0,18.4,4.6 -2019,2,26,12,45,826.0,751.8114206622304,153.0,18.4,4.6 -2019,2,26,13,0,886.0,762.2436103661943,123.0,19.4,4.4 -2019,2,26,13,15,886.0,756.0810651422792,123.0,19.4,4.4 -2019,2,26,13,30,886.0,746.8473715820212,123.0,19.4,4.4 -2019,2,26,13,45,886.0,734.582069778828,123.0,19.4,4.4 -2019,2,26,14,0,909.0,706.8182309356251,95.0,19.5,3.1 -2019,2,26,14,15,909.0,688.1886599850119,95.0,19.5,3.1 -2019,2,26,14,30,909.0,666.6494155883192,95.0,19.5,3.1 -2019,2,26,14,45,909.0,642.2927320968193,95.0,19.5,3.1 -2019,2,26,15,0,792.0,540.2635242973317,87.0,19.9,3.1 -2019,2,26,15,15,792.0,514.4150086003905,87.0,19.9,3.1 -2019,2,26,15,30,792.0,486.4142533357871,87.0,19.9,3.1 -2019,2,26,15,45,792.0,456.381162036319,87.0,19.9,3.1 -2019,2,26,16,0,553.0,302.614546184799,67.0,19.1,3.4 -2019,2,26,16,15,553.0,279.0814689273965,67.0,19.1,3.4 -2019,2,26,16,30,553.0,254.41540740434655,67.0,19.1,3.4 -2019,2,26,16,45,553.0,228.72198547789364,67.0,19.1,3.4 -2019,2,26,17,0,276.0,91.43345111350757,24.0,17.8,3.8 -2019,2,26,17,15,276.0,77.75116535168641,24.0,17.8,3.8 -2019,2,26,17,30,276.0,63.726502691641855,24.0,17.8,3.8 -2019,2,26,17,45,276.0,49.41951889198964,24.0,17.8,3.8 -2019,2,26,18,0,0.0,0.0,0.0,14.1,5.0 -2019,2,26,18,15,0.0,0.0,0.0,14.1,5.0 -2019,2,26,18,30,0.0,0.0,0.0,14.1,5.0 -2019,2,26,18,45,0.0,0.0,0.0,14.1,5.0 -2019,2,26,19,0,0.0,0.0,0.0,12.2,4.0 -2019,2,26,19,15,0.0,0.0,0.0,12.2,4.0 -2019,2,26,19,30,0.0,0.0,0.0,12.2,4.0 -2019,2,26,19,45,0.0,0.0,0.0,12.2,4.0 -2019,2,26,20,0,0.0,0.0,0.0,11.7,0.2 -2019,2,26,20,15,0.0,0.0,0.0,11.7,0.2 -2019,2,26,20,30,0.0,0.0,0.0,11.7,0.2 -2019,2,26,20,45,0.0,0.0,0.0,11.7,0.2 -2019,2,26,21,0,0.0,0.0,0.0,11.8,1.2 -2019,2,26,21,15,0.0,0.0,0.0,11.8,1.2 -2019,2,26,21,30,0.0,0.0,0.0,11.8,1.2 -2019,2,26,21,45,0.0,0.0,0.0,11.8,1.2 -2019,2,26,22,0,0.0,0.0,0.0,11.8,1.9 -2019,2,26,22,15,0.0,0.0,0.0,11.8,1.9 -2019,2,26,22,30,0.0,0.0,0.0,11.8,1.9 -2019,2,26,22,45,0.0,0.0,0.0,11.8,1.9 -2019,2,26,23,0,0.0,0.0,0.0,11.8,1.9 -2019,2,26,23,15,0.0,0.0,0.0,11.8,1.9 -2019,2,26,23,30,0.0,0.0,0.0,11.8,1.9 -2019,2,26,23,45,0.0,0.0,0.0,11.8,1.9 -2019,2,27,0,0,0.0,0.0,0.0,12.1,0.2 -2019,2,27,0,15,0.0,0.0,0.0,12.1,0.2 -2019,2,27,0,30,0.0,0.0,0.0,12.1,0.2 -2019,2,27,0,45,0.0,0.0,0.0,12.1,0.2 -2019,2,27,1,0,0.0,0.0,0.0,11.7,1.3 -2019,2,27,1,15,0.0,0.0,0.0,11.7,1.3 -2019,2,27,1,30,0.0,0.0,0.0,11.7,1.3 -2019,2,27,1,45,0.0,0.0,0.0,11.7,1.3 -2019,2,27,2,0,0.0,0.0,0.0,11.6,0.2 -2019,2,27,2,15,0.0,0.0,0.0,11.6,0.2 -2019,2,27,2,30,0.0,0.0,0.0,11.6,0.2 -2019,2,27,2,45,0.0,0.0,0.0,11.6,0.2 -2019,2,27,3,0,0.0,0.0,0.0,11.1,1.5 -2019,2,27,3,15,0.0,0.0,0.0,11.1,1.5 -2019,2,27,3,30,0.0,0.0,0.0,11.1,1.5 -2019,2,27,3,45,0.0,0.0,0.0,11.1,1.5 -2019,2,27,4,0,0.0,0.0,0.0,11.1,1.3 -2019,2,27,4,15,0.0,0.0,0.0,11.1,1.3 -2019,2,27,4,30,0.0,0.0,0.0,11.1,1.3 -2019,2,27,4,45,0.0,0.0,0.0,11.1,1.3 -2019,2,27,5,0,0.0,0.0,0.0,11.0,0.3 -2019,2,27,5,15,0.0,0.0,0.0,11.0,0.3 -2019,2,27,5,30,0.0,0.0,0.0,11.0,0.3 -2019,2,27,5,45,0.0,0.0,0.0,11.0,0.3 -2019,2,27,6,0,14.0,22.83618950319917,26.0,10.8,2.7 -2019,2,27,6,15,14.0,23.581992389727446,26.0,10.8,2.7 -2019,2,27,6,30,14.0,24.332667820791066,26.0,10.8,2.7 -2019,2,27,6,45,14.0,25.085001288948423,26.0,10.8,2.7 -2019,2,27,7,0,27.0,67.68327300309217,68.0,12.2,3.4 -2019,2,27,7,15,27.0,69.12197073310078,68.0,12.2,3.4 -2019,2,27,7,30,27.0,70.54529209415928,68.0,12.2,3.4 -2019,2,27,7,45,27.0,71.94714220568736,68.0,12.2,3.4 -2019,2,27,8,0,236.0,218.5140103240293,172.0,12.5,2.1 -2019,2,27,8,15,236.0,230.23548743357117,172.0,12.5,2.1 -2019,2,27,8,30,236.0,241.6151848508773,172.0,12.5,2.1 -2019,2,27,8,45,236.0,252.60437296456405,172.0,12.5,2.1 -2019,2,27,9,0,9.0,177.47628792142515,174.0,14.5,6.8 -2019,2,27,9,15,9.0,177.86027029244994,174.0,14.5,6.8 -2019,2,27,9,30,9.0,178.2241984207687,174.0,14.5,6.8 -2019,2,27,9,45,9.0,178.56651391026466,174.0,14.5,6.8 -2019,2,27,10,0,5.0,201.71430606303258,199.0,15.6,7.2 -2019,2,27,10,15,5.0,201.8780791158293,199.0,15.6,7.2 -2019,2,27,10,30,5.0,202.02757002940447,199.0,15.6,7.2 -2019,2,27,10,45,5.0,202.1621386607159,199.0,15.6,7.2 -2019,2,27,11,0,5.0,229.28120876622492,226.0,15.1,7.0 -2019,2,27,11,15,5.0,229.38427046945984,226.0,15.1,7.0 -2019,2,27,11,30,5.0,229.470882444385,226.0,15.1,7.0 -2019,2,27,11,45,5.0,229.54067380522696,226.0,15.1,7.0 -2019,2,27,12,0,0.0,102.0,102.0,11.2,4.8 -2019,2,27,12,15,0.0,102.0,102.0,11.2,4.8 -2019,2,27,12,30,0.0,102.0,102.0,11.2,4.8 -2019,2,27,12,45,0.0,102.0,102.0,11.2,4.8 -2019,2,27,13,0,1.0,151.72588904650144,151.0,11.9,3.4 -2019,2,27,13,15,1.0,151.71892595987327,151.0,11.9,3.4 -2019,2,27,13,30,1.0,151.70849276939407,151.0,11.9,3.4 -2019,2,27,13,45,1.0,151.69463415158714,151.0,11.9,3.4 -2019,2,27,14,0,3.0,150.03222835354475,148.0,10.8,3.8 -2019,2,27,14,15,3.0,149.97067728096673,148.0,10.8,3.8 -2019,2,27,14,30,3.0,149.89951280816962,148.0,10.8,3.8 -2019,2,27,14,45,3.0,149.81903967235132,148.0,10.8,3.8 -2019,2,27,15,0,5.0,103.88267078638977,101.0,9.1,5.5 -2019,2,27,15,15,5.0,103.71930698406753,101.0,9.1,5.5 -2019,2,27,15,30,5.0,103.54234092916707,101.0,9.1,5.5 -2019,2,27,15,45,5.0,103.3525304175038,101.0,9.1,5.5 -2019,2,27,16,0,3.0,41.29041294809735,40.0,8.1,4.2 -2019,2,27,16,15,3.0,41.162607241782766,40.0,8.1,4.2 -2019,2,27,16,30,3.0,41.028648415214064,40.0,8.1,4.2 -2019,2,27,16,45,3.0,40.88911010065233,40.0,8.1,4.2 -2019,2,27,17,0,2.0,18.496393215055228,18.0,7.7,2.1 -2019,2,27,17,15,2.0,18.39713762601563,18.0,7.7,2.1 -2019,2,27,17,30,2.0,18.295398327653025,18.0,7.7,2.1 -2019,2,27,17,45,2.0,18.1916109832623,18.0,7.7,2.1 -2019,2,27,18,0,0.0,0.0,0.0,7.3,2.2 -2019,2,27,18,15,0.0,0.0,0.0,7.3,2.2 -2019,2,27,18,30,0.0,0.0,0.0,7.3,2.2 -2019,2,27,18,45,0.0,0.0,0.0,7.3,2.2 -2019,2,27,19,0,0.0,0.0,0.0,7.8,2.3 -2019,2,27,19,15,0.0,0.0,0.0,7.8,2.3 -2019,2,27,19,30,0.0,0.0,0.0,7.8,2.3 -2019,2,27,19,45,0.0,0.0,0.0,7.8,2.3 -2019,2,27,20,0,0.0,0.0,0.0,8.2,1.7 -2019,2,27,20,15,0.0,0.0,0.0,8.2,1.7 -2019,2,27,20,30,0.0,0.0,0.0,8.2,1.7 -2019,2,27,20,45,0.0,0.0,0.0,8.2,1.7 -2019,2,27,21,0,0.0,0.0,0.0,7.8,2.2 -2019,2,27,21,15,0.0,0.0,0.0,7.8,2.2 -2019,2,27,21,30,0.0,0.0,0.0,7.8,2.2 -2019,2,27,21,45,0.0,0.0,0.0,7.8,2.2 -2019,2,27,22,0,0.0,0.0,0.0,7.9,3.0 -2019,2,27,22,15,0.0,0.0,0.0,7.9,3.0 -2019,2,27,22,30,0.0,0.0,0.0,7.9,3.0 -2019,2,27,22,45,0.0,0.0,0.0,7.9,3.0 -2019,2,27,23,0,0.0,0.0,0.0,7.7,3.1 -2019,2,27,23,15,0.0,0.0,0.0,7.7,3.1 -2019,2,27,23,30,0.0,0.0,0.0,7.7,3.1 -2019,2,27,23,45,0.0,0.0,0.0,7.7,3.1 -2019,2,28,0,0,0.0,0.0,0.0,6.7,3.2 -2019,2,28,0,15,0.0,0.0,0.0,6.7,3.2 -2019,2,28,0,30,0.0,0.0,0.0,6.7,3.2 -2019,2,28,0,45,0.0,0.0,0.0,6.7,3.2 -2019,2,28,1,0,0.0,0.0,0.0,6.7,3.5 -2019,2,28,1,15,0.0,0.0,0.0,6.7,3.5 -2019,2,28,1,30,0.0,0.0,0.0,6.7,3.5 -2019,2,28,1,45,0.0,0.0,0.0,6.7,3.5 -2019,2,28,2,0,0.0,0.0,0.0,6.6,2.7 -2019,2,28,2,15,0.0,0.0,0.0,6.6,2.7 -2019,2,28,2,30,0.0,0.0,0.0,6.6,2.7 -2019,2,28,2,45,0.0,0.0,0.0,6.6,2.7 -2019,2,28,3,0,0.0,0.0,0.0,6.2,0.0 -2019,2,28,3,15,0.0,0.0,0.0,6.2,0.0 -2019,2,28,3,30,0.0,0.0,0.0,6.2,0.0 -2019,2,28,3,45,0.0,0.0,0.0,6.2,0.0 -2019,2,28,4,0,0.0,0.0,0.0,6.6,0.0 -2019,2,28,4,15,0.0,0.0,0.0,6.6,0.0 -2019,2,28,4,30,0.0,0.0,0.0,6.6,0.0 -2019,2,28,4,45,0.0,0.0,0.0,6.6,0.0 -2019,2,28,5,0,0.0,0.0,0.0,5.7,0.0 -2019,2,28,5,15,0.0,0.0,0.0,5.7,0.0 -2019,2,28,5,30,0.0,0.0,0.0,5.7,0.0 -2019,2,28,5,45,0.0,0.0,0.0,5.7,0.0 -2019,2,28,6,0,107.0,-8.817946634030264,15.0,6.8,0.4 -2019,2,28,6,15,107.0,-3.111834863594094,15.0,6.8,0.4 -2019,2,28,6,30,107.0,2.6315565744691263,15.0,6.8,0.4 -2019,2,28,6,45,107.0,8.387633596280141,15.0,6.8,0.4 -2019,2,28,7,0,215.0,87.25538108610884,89.0,7.9,3.4 -2019,2,28,7,15,215.0,98.72383111305444,89.0,7.9,3.4 -2019,2,28,7,30,215.0,110.06970979285602,89.0,7.9,3.4 -2019,2,28,7,45,215.0,121.24443233115568,89.0,7.9,3.4 -2019,2,28,8,0,335.0,231.31185672049963,164.0,9.1,2.1 -2019,2,28,8,15,335.0,247.9680449546842,164.0,9.1,2.1 -2019,2,28,8,30,335.0,264.1385651424871,164.0,9.1,2.1 -2019,2,28,8,45,335.0,279.7541726339207,164.0,9.1,2.1 -2019,2,28,9,0,165.0,322.39826816435396,258.0,10.7,2.2 -2019,2,28,9,15,165.0,329.44541293116464,258.0,10.7,2.2 -2019,2,28,9,30,165.0,336.1245065523952,258.0,10.7,2.2 -2019,2,28,9,45,165.0,342.40694812376637,258.0,10.7,2.2 -2019,2,28,10,0,3.0,179.64119700483585,178.0,11.2,2.6 -2019,2,28,10,15,3.0,179.73956507863264,178.0,11.2,2.6 -2019,2,28,10,30,3.0,179.82935477826513,178.0,11.2,2.6 -2019,2,28,10,45,3.0,179.91018161045469,178.0,11.2,2.6 -2019,2,28,11,0,4.0,225.64226594972956,223.0,12.2,2.6 -2019,2,28,11,15,4.0,225.72480277782844,223.0,12.2,2.6 -2019,2,28,11,30,4.0,225.79416586286703,223.0,12.2,2.6 -2019,2,28,11,45,4.0,225.8500581814664,223.0,12.2,2.6 -2019,2,28,12,0,8.0,256.78448078827506,251.0,12.3,2.6 -2019,2,28,12,15,8.0,256.84106374033973,251.0,12.3,2.6 -2019,2,28,12,30,8.0,256.8696229222392,251.0,12.3,2.6 -2019,2,28,12,45,8.0,256.8700360391722,251.0,12.3,2.6 -2019,2,28,13,0,30.0,301.9086299579071,280.0,12.9,2.5 -2019,2,28,13,15,30.0,301.6995157576174,280.0,12.9,2.5 -2019,2,28,13,30,30.0,301.3861880051361,280.0,12.9,2.5 -2019,2,28,13,45,30.0,300.9699884180023,280.0,12.9,2.5 -2019,2,28,14,0,45.0,269.67904884011637,239.0,13.2,1.3 -2019,2,28,14,15,45.0,268.7548033146419,239.0,13.2,1.3 -2019,2,28,14,30,45.0,267.68620381181273,239.0,13.2,1.3 -2019,2,28,14,45,45.0,266.4778262387546,239.0,13.2,1.3 -2019,2,28,15,0,50.0,197.03871672638732,168.0,13.4,0.0 -2019,2,28,15,15,50.0,195.4033456760081,168.0,13.4,0.0 -2019,2,28,15,30,50.0,193.6318078018274,168.0,13.4,0.0 -2019,2,28,15,45,50.0,191.73168910099386,168.0,13.4,0.0 -2019,2,28,16,0,25.0,84.85556308674802,74.0,13.1,0.0 -2019,2,28,16,15,25.0,83.78938568999597,74.0,13.1,0.0 -2019,2,28,16,30,25.0,82.6718778955362,74.0,13.1,0.0 -2019,2,28,16,45,25.0,81.50782504330749,74.0,13.1,0.0 -2019,2,28,17,0,12.0,25.025061657439245,22.0,13.1,0.4 -2019,2,28,17,15,12.0,24.428896357918944,22.0,13.1,0.4 -2019,2,28,17,30,12.0,23.817812993564207,22.0,13.1,0.4 -2019,2,28,17,45,12.0,23.194428317156422,22.0,13.1,0.4 -2019,2,28,18,0,0.0,0.0,0.0,11.5,3.5 -2019,2,28,18,15,0.0,0.0,0.0,11.5,3.5 -2019,2,28,18,30,0.0,0.0,0.0,11.5,3.5 -2019,2,28,18,45,0.0,0.0,0.0,11.5,3.5 -2019,2,28,19,0,0.0,0.0,0.0,9.7,2.5 -2019,2,28,19,15,0.0,0.0,0.0,9.7,2.5 -2019,2,28,19,30,0.0,0.0,0.0,9.7,2.5 -2019,2,28,19,45,0.0,0.0,0.0,9.7,2.5 -2019,2,28,20,0,0.0,0.0,0.0,7.9,1.9 -2019,2,28,20,15,0.0,0.0,0.0,7.9,1.9 -2019,2,28,20,30,0.0,0.0,0.0,7.9,1.9 -2019,2,28,20,45,0.0,0.0,0.0,7.9,1.9 -2019,2,28,21,0,0.0,0.0,0.0,8.8,0.0 -2019,2,28,21,15,0.0,0.0,0.0,8.8,0.0 -2019,2,28,21,30,0.0,0.0,0.0,8.8,0.0 -2019,2,28,21,45,0.0,0.0,0.0,8.8,0.0 -2019,2,28,22,0,0.0,0.0,0.0,8.2,0.0 -2019,2,28,22,15,0.0,0.0,0.0,8.2,0.0 -2019,2,28,22,30,0.0,0.0,0.0,8.2,0.0 -2019,2,28,22,45,0.0,0.0,0.0,8.2,0.0 -2019,2,28,23,0,0.0,0.0,0.0,7.2,0.0 -2019,2,28,23,15,0.0,0.0,0.0,7.2,0.0 -2019,2,28,23,30,0.0,0.0,0.0,7.2,0.0 -2019,2,28,23,45,0.0,0.0,0.0,7.2,0.0 -2019,3,1,0,0,0.0,0.0,0.0,11.1,1.8 -2019,3,1,0,15,0.0,0.0,0.0,11.1,1.8 -2019,3,1,0,30,0.0,0.0,0.0,11.1,1.8 -2019,3,1,0,45,0.0,0.0,0.0,11.1,1.8 -2019,3,1,1,0,0.0,0.0,0.0,10.4,0.0 -2019,3,1,1,15,0.0,0.0,0.0,10.4,0.0 -2019,3,1,1,30,0.0,0.0,0.0,10.4,0.0 -2019,3,1,1,45,0.0,0.0,0.0,10.4,0.0 -2019,3,1,2,0,0.0,0.0,0.0,10.1,0.0 -2019,3,1,2,15,0.0,0.0,0.0,10.1,0.0 -2019,3,1,2,30,0.0,0.0,0.0,10.1,0.0 -2019,3,1,2,45,0.0,0.0,0.0,10.1,0.0 -2019,3,1,3,0,0.0,0.0,0.0,10.5,0.0 -2019,3,1,3,15,0.0,0.0,0.0,10.5,0.0 -2019,3,1,3,30,0.0,0.0,0.0,10.5,0.0 -2019,3,1,3,45,0.0,0.0,0.0,10.5,0.0 -2019,3,1,4,0,0.0,0.0,0.0,10.0,0.0 -2019,3,1,4,15,0.0,0.0,0.0,10.0,0.0 -2019,3,1,4,30,0.0,0.0,0.0,10.0,0.0 -2019,3,1,4,45,0.0,0.0,0.0,10.0,0.0 -2019,3,1,5,0,0.0,0.0,0.0,10.5,0.0 -2019,3,1,5,15,0.0,0.0,0.0,10.5,0.0 -2019,3,1,5,30,0.0,0.0,0.0,10.5,0.0 -2019,3,1,5,45,0.0,0.0,0.0,10.5,0.0 -2019,3,1,6,0,2.0,2.561650734583524,3.0,10.1,0.0 -2019,3,1,6,15,2.0,2.6684163782456882,3.0,10.1,0.0 -2019,3,1,6,30,2.0,2.775879552532881,3.0,10.1,0.0 -2019,3,1,6,45,2.0,2.8835800836347576,3.0,10.1,0.0 -2019,3,1,7,0,37.0,77.8345504548391,78.0,10.8,0.0 -2019,3,1,7,15,37.0,79.81021415783196,78.0,10.8,0.0 -2019,3,1,7,30,37.0,81.76476256093595,78.0,10.8,0.0 -2019,3,1,7,45,37.0,83.68982598782127,78.0,10.8,0.0 -2019,3,1,8,0,47.0,173.62504237847526,164.0,12.3,0.0 -2019,3,1,8,15,47.0,175.96427656078123,164.0,12.3,0.0 -2019,3,1,8,30,47.0,178.23530238236407,164.0,12.3,0.0 -2019,3,1,8,45,47.0,180.42839496200153,164.0,12.3,0.0 -2019,3,1,9,0,2.0,124.78868779321608,124.0,13.5,0.2 -2019,3,1,9,15,2.0,124.87419530619017,124.0,13.5,0.2 -2019,3,1,9,30,2.0,124.95523701930529,124.0,13.5,0.2 -2019,3,1,9,45,2.0,125.03146589950411,124.0,13.5,0.2 -2019,3,1,10,0,78.0,356.9996653977322,314.0,15.3,1.1 -2019,3,1,10,15,78.0,359.5598574535323,314.0,15.3,1.1 -2019,3,1,10,30,78.0,361.89678311263015,314.0,15.3,1.1 -2019,3,1,10,45,78.0,364.000435300582,314.0,15.3,1.1 -2019,3,1,11,0,261.0,512.5375811327376,339.0,15.8,2.4 -2019,3,1,11,15,261.0,517.9286306546413,339.0,15.8,2.4 -2019,3,1,11,30,261.0,522.4592121544185,339.0,15.8,2.4 -2019,3,1,11,45,261.0,526.1099249865398,339.0,15.8,2.4 -2019,3,1,12,0,362.0,577.3378517939649,314.0,17.1,4.4 -2019,3,1,12,15,362.0,579.900855391542,314.0,17.1,4.4 -2019,3,1,12,30,362.0,581.1944833003275,314.0,17.1,4.4 -2019,3,1,12,45,362.0,581.2131960070146,314.0,17.1,4.4 -2019,3,1,13,0,16.0,269.7550016963943,258.0,16.6,3.4 -2019,3,1,13,15,16.0,269.64335977976214,258.0,16.6,3.4 -2019,3,1,13,30,16.0,269.4760803182402,258.0,16.6,3.4 -2019,3,1,13,45,16.0,269.25387962816393,258.0,16.6,3.4 -2019,3,1,14,0,91.0,325.4357211148185,263.0,16.1,5.6 -2019,3,1,14,15,91.0,323.56477505995684,263.0,16.1,5.6 -2019,3,1,14,30,91.0,321.401613898837,263.0,16.1,5.6 -2019,3,1,14,45,91.0,318.95550061964553,263.0,16.1,5.6 -2019,3,1,15,0,509.0,441.77568259542613,144.0,15.9,5.0 -2019,3,1,15,15,509.0,425.1105369360201,144.0,15.9,5.0 -2019,3,1,15,30,509.0,407.0577918372672,144.0,15.9,5.0 -2019,3,1,15,45,509.0,387.69475192518803,144.0,15.9,5.0 -2019,3,1,16,0,417.0,267.77899163025666,85.0,15.5,4.0 -2019,3,1,16,15,417.0,249.97691985131553,85.0,15.5,4.0 -2019,3,1,16,30,417.0,231.31777923259395,85.0,15.5,4.0 -2019,3,1,16,45,417.0,211.8814710788247,85.0,15.5,4.0 -2019,3,1,17,0,193.0,62.407641142852796,13.0,14.8,3.0 -2019,3,1,17,15,193.0,52.80948552147751,13.0,14.8,3.0 -2019,3,1,17,30,193.0,42.97115170126054,13.0,14.8,3.0 -2019,3,1,17,45,193.0,32.934768938028554,13.0,14.8,3.0 -2019,3,1,18,0,0.0,0.0,0.0,13.2,2.5 -2019,3,1,18,15,0.0,0.0,0.0,13.2,2.5 -2019,3,1,18,30,0.0,0.0,0.0,13.2,2.5 -2019,3,1,18,45,0.0,0.0,0.0,13.2,2.5 -2019,3,1,19,0,0.0,0.0,0.0,12.1,1.0 -2019,3,1,19,15,0.0,0.0,0.0,12.1,1.0 -2019,3,1,19,30,0.0,0.0,0.0,12.1,1.0 -2019,3,1,19,45,0.0,0.0,0.0,12.1,1.0 -2019,3,1,20,0,0.0,0.0,0.0,11.6,0.0 -2019,3,1,20,15,0.0,0.0,0.0,11.6,0.0 -2019,3,1,20,30,0.0,0.0,0.0,11.6,0.0 -2019,3,1,20,45,0.0,0.0,0.0,11.6,0.0 -2019,3,1,21,0,0.0,0.0,0.0,11.0,0.2 -2019,3,1,21,15,0.0,0.0,0.0,11.0,0.2 -2019,3,1,21,30,0.0,0.0,0.0,11.0,0.2 -2019,3,1,21,45,0.0,0.0,0.0,11.0,0.2 -2019,3,1,22,0,0.0,0.0,0.0,9.9,1.3 -2019,3,1,22,15,0.0,0.0,0.0,9.9,1.3 -2019,3,1,22,30,0.0,0.0,0.0,9.9,1.3 -2019,3,1,22,45,0.0,0.0,0.0,9.9,1.3 -2019,3,1,23,0,0.0,0.0,0.0,9.3,0.2 -2019,3,1,23,15,0.0,0.0,0.0,9.3,0.2 -2019,3,1,23,30,0.0,0.0,0.0,9.3,0.2 -2019,3,1,23,45,0.0,0.0,0.0,9.3,0.2 -2019,3,2,0,0,0.0,0.0,0.0,8.2,1.3 -2019,3,2,0,15,0.0,0.0,0.0,8.2,1.3 -2019,3,2,0,30,0.0,0.0,0.0,8.2,1.3 -2019,3,2,0,45,0.0,0.0,0.0,8.2,1.3 -2019,3,2,1,0,0.0,0.0,0.0,7.2,0.0 -2019,3,2,1,15,0.0,0.0,0.0,7.2,0.0 -2019,3,2,1,30,0.0,0.0,0.0,7.2,0.0 -2019,3,2,1,45,0.0,0.0,0.0,7.2,0.0 -2019,3,2,2,0,0.0,0.0,0.0,7.1,0.2 -2019,3,2,2,15,0.0,0.0,0.0,7.1,0.2 -2019,3,2,2,30,0.0,0.0,0.0,7.1,0.2 -2019,3,2,2,45,0.0,0.0,0.0,7.1,0.2 -2019,3,2,3,0,0.0,0.0,0.0,6.7,1.5 -2019,3,2,3,15,0.0,0.0,0.0,6.7,1.5 -2019,3,2,3,30,0.0,0.0,0.0,6.7,1.5 -2019,3,2,3,45,0.0,0.0,0.0,6.7,1.5 -2019,3,2,4,0,0.0,0.0,0.0,6.6,1.5 -2019,3,2,4,15,0.0,0.0,0.0,6.6,1.5 -2019,3,2,4,30,0.0,0.0,0.0,6.6,1.5 -2019,3,2,4,45,0.0,0.0,0.0,6.6,1.5 -2019,3,2,5,0,0.0,0.0,0.0,6.3,1.6 -2019,3,2,5,15,0.0,0.0,0.0,6.3,1.6 -2019,3,2,5,30,0.0,0.0,0.0,6.3,1.6 -2019,3,2,5,45,0.0,0.0,0.0,6.3,1.6 -2019,3,2,6,0,342.0,-54.77570157211166,19.0,8.4,3.0 -2019,3,2,6,15,342.0,-36.50072932569546,19.0,8.4,3.0 -2019,3,2,6,30,342.0,-18.106361434986113,19.0,8.4,3.0 -2019,3,2,6,45,342.0,0.3286345927536658,19.0,8.4,3.0 -2019,3,2,7,0,685.0,54.449831382817656,55.0,13.5,5.8 -2019,3,2,7,15,685.0,91.06246431375178,55.0,13.5,5.8 -2019,3,2,7,30,685.0,127.28379242753162,55.0,13.5,5.8 -2019,3,2,7,45,685.0,162.95871043637493,55.0,13.5,5.8 -2019,3,2,8,0,877.0,255.99783235346987,73.0,15.2,6.8 -2019,3,2,8,15,877.0,299.6900944276007,73.0,15.2,6.8 -2019,3,2,8,30,877.0,342.10835939836113,73.0,15.2,6.8 -2019,3,2,8,45,877.0,383.0709857429762,73.0,15.2,6.8 -2019,3,2,9,0,977.0,469.2432225849331,80.0,16.8,7.6 -2019,3,2,9,15,977.0,511.05493321294455,80.0,16.8,7.6 -2019,3,2,9,30,977.0,550.6829441292971,80.0,16.8,7.6 -2019,3,2,9,45,977.0,587.9575621074434,80.0,16.8,7.6 -2019,3,2,10,0,1033.0,654.8269234089572,81.0,17.9,7.3 -2019,3,2,10,15,1033.0,688.7665732630467,81.0,17.9,7.3 -2019,3,2,10,30,1033.0,719.7464516769063,81.0,17.9,7.3 -2019,3,2,10,45,1033.0,747.6338980550505,81.0,17.9,7.3 -2019,3,2,11,0,1059.0,788.7093458091991,80.0,19.1,7.9 -2019,3,2,11,15,1059.0,810.6049970576153,80.0,19.1,7.9 -2019,3,2,11,30,1059.0,829.0058728181884,80.0,19.1,7.9 -2019,3,2,11,45,1059.0,843.8331777159583,80.0,19.1,7.9 -2019,3,2,12,0,1060.0,855.7552635432716,80.0,20.5,9.0 -2019,3,2,12,15,1060.0,863.2676099119044,80.0,20.5,9.0 -2019,3,2,12,30,1060.0,867.0593255896015,80.0,20.5,9.0 -2019,3,2,12,45,1060.0,867.114173867716,80.0,20.5,9.0 -2019,3,2,13,0,1035.0,845.9547519558614,81.0,20.1,6.7 -2019,3,2,13,15,1035.0,838.7257766053834,81.0,20.1,6.7 -2019,3,2,13,30,1035.0,827.8941898639289,81.0,20.1,6.7 -2019,3,2,13,45,1035.0,813.5063742488202,81.0,20.1,6.7 -2019,3,2,14,0,982.0,758.0296711735867,80.0,20.5,6.6 -2019,3,2,14,15,982.0,737.8199438393556,80.0,20.5,6.6 -2019,3,2,14,30,982.0,714.4537451546677,80.0,20.5,6.6 -2019,3,2,14,45,982.0,688.0311327695351,80.0,20.5,6.6 -2019,3,2,15,0,885.0,595.5058537113011,74.0,20.3,6.2 -2019,3,2,15,15,885.0,566.5014664374039,74.0,20.3,6.2 -2019,3,2,15,30,885.0,535.08207047757,74.0,20.3,6.2 -2019,3,2,15,45,885.0,501.3822085088936,74.0,20.3,6.2 -2019,3,2,16,0,701.0,367.1399753088458,57.0,19.7,5.9 -2019,3,2,16,15,701.0,337.1841283032577,57.0,19.7,5.9 -2019,3,2,16,30,701.0,305.7860770780412,57.0,19.7,5.9 -2019,3,2,16,45,701.0,273.080272908859,57.0,19.7,5.9 -2019,3,2,17,0,661.0,175.80980461260356,4.0,19.2,5.8 -2019,3,2,17,15,661.0,142.9048701094588,4.0,19.2,5.8 -2019,3,2,17,30,661.0,109.1765432574374,4.0,19.2,5.8 -2019,3,2,17,45,661.0,74.76925393018651,4.0,19.2,5.8 -2019,3,2,18,0,0.0,0.0,0.0,17.7,6.8 -2019,3,2,18,15,0.0,0.0,0.0,17.7,6.8 -2019,3,2,18,30,0.0,0.0,0.0,17.7,6.8 -2019,3,2,18,45,0.0,0.0,0.0,17.7,6.8 -2019,3,2,19,0,0.0,0.0,0.0,17.1,6.7 -2019,3,2,19,15,0.0,0.0,0.0,17.1,6.7 -2019,3,2,19,30,0.0,0.0,0.0,17.1,6.7 -2019,3,2,19,45,0.0,0.0,0.0,17.1,6.7 -2019,3,2,20,0,0.0,0.0,0.0,16.6,2.3 -2019,3,2,20,15,0.0,0.0,0.0,16.6,2.3 -2019,3,2,20,30,0.0,0.0,0.0,16.6,2.3 -2019,3,2,20,45,0.0,0.0,0.0,16.6,2.3 -2019,3,2,21,0,0.0,0.0,0.0,15.7,0.4 -2019,3,2,21,15,0.0,0.0,0.0,15.7,0.4 -2019,3,2,21,30,0.0,0.0,0.0,15.7,0.4 -2019,3,2,21,45,0.0,0.0,0.0,15.7,0.4 -2019,3,2,22,0,0.0,0.0,0.0,12.8,3.6 -2019,3,2,22,15,0.0,0.0,0.0,12.8,3.6 -2019,3,2,22,30,0.0,0.0,0.0,12.8,3.6 -2019,3,2,22,45,0.0,0.0,0.0,12.8,3.6 -2019,3,2,23,0,0.0,0.0,0.0,12.8,3.4 -2019,3,2,23,15,0.0,0.0,0.0,12.8,3.4 -2019,3,2,23,30,0.0,0.0,0.0,12.8,3.4 -2019,3,2,23,45,0.0,0.0,0.0,12.8,3.4 -2019,3,3,0,0,0.0,0.0,0.0,12.4,2.2 -2019,3,3,0,15,0.0,0.0,0.0,12.4,2.2 -2019,3,3,0,30,0.0,0.0,0.0,12.4,2.2 -2019,3,3,0,45,0.0,0.0,0.0,12.4,2.2 -2019,3,3,1,0,0.0,0.0,0.0,9.3,2.7 -2019,3,3,1,15,0.0,0.0,0.0,9.3,2.7 -2019,3,3,1,30,0.0,0.0,0.0,9.3,2.7 -2019,3,3,1,45,0.0,0.0,0.0,9.3,2.7 -2019,3,3,2,0,0.0,0.0,0.0,8.8,3.4 -2019,3,3,2,15,0.0,0.0,0.0,8.8,3.4 -2019,3,3,2,30,0.0,0.0,0.0,8.8,3.4 -2019,3,3,2,45,0.0,0.0,0.0,8.8,3.4 -2019,3,3,3,0,0.0,0.0,0.0,8.2,2.2 -2019,3,3,3,15,0.0,0.0,0.0,8.2,2.2 -2019,3,3,3,30,0.0,0.0,0.0,8.2,2.2 -2019,3,3,3,45,0.0,0.0,0.0,8.2,2.2 -2019,3,3,4,0,0.0,0.0,0.0,7.7,2.7 -2019,3,3,4,15,0.0,0.0,0.0,7.7,2.7 -2019,3,3,4,30,0.0,0.0,0.0,7.7,2.7 -2019,3,3,4,45,0.0,0.0,0.0,7.7,2.7 -2019,3,3,5,0,0.0,0.0,0.0,7.9,3.5 -2019,3,3,5,15,0.0,0.0,0.0,7.9,3.5 -2019,3,3,5,30,0.0,0.0,0.0,7.9,3.5 -2019,3,3,5,45,0.0,0.0,0.0,7.9,3.5 -2019,3,3,6,0,749.0,-157.9602654849436,1.0,13.1,3.0 -2019,3,3,6,15,749.0,-117.89895823067998,1.0,13.1,3.0 -2019,3,3,6,30,749.0,-77.57591894605518,1.0,13.1,3.0 -2019,3,3,6,45,749.0,-37.163817075791364,1.0,13.1,3.0 -2019,3,3,7,0,754.0,51.178744463305684,49.0,16.0,2.7 -2019,3,3,7,15,754.0,91.51767824309212,49.0,16.0,2.7 -2019,3,3,7,30,754.0,131.4254816221595,49.0,16.0,2.7 -2019,3,3,7,45,754.0,170.73126325968155,49.0,16.0,2.7 -2019,3,3,8,0,953.0,262.56521804433464,60.0,19.2,3.1 -2019,3,3,8,15,953.0,310.0889476599166,60.0,19.2,3.1 -2019,3,3,8,30,953.0,356.22696065206316,60.0,19.2,3.1 -2019,3,3,8,45,953.0,400.7816869659061,60.0,19.2,3.1 -2019,3,3,9,0,1055.0,486.6151783069041,62.0,22.0,3.2 -2019,3,3,9,15,1055.0,531.8079014475425,62.0,22.0,3.2 -2019,3,3,9,30,1055.0,574.6403447764006,62.0,22.0,3.2 -2019,3,3,9,45,1055.0,614.9290931953877,62.0,22.0,3.2 -2019,3,3,10,0,1111.0,681.84578613599,60.0,24.1,3.5 -2019,3,3,10,15,1111.0,718.3828609116943,60.0,24.1,3.5 -2019,3,3,10,30,1111.0,751.7336508878918,60.0,24.1,3.5 -2019,3,3,10,45,1111.0,781.7553428617979,60.0,24.1,3.5 -2019,3,3,11,0,1137.0,822.8318040583792,57.0,25.7,2.5 -2019,3,3,11,15,1137.0,846.3625151003154,57.0,25.7,2.5 -2019,3,3,11,30,1137.0,866.1374779698002,57.0,25.7,2.5 -2019,3,3,11,45,1137.0,882.072013239919,57.0,25.7,2.5 -2019,3,3,12,0,1137.0,894.097886784331,57.0,26.7,1.8 -2019,3,3,12,15,1137.0,902.1636019662726,57.0,26.7,1.8 -2019,3,3,12,30,1137.0,906.2346201550645,57.0,26.7,1.8 -2019,3,3,12,45,1137.0,906.2935086258274,57.0,26.7,1.8 -2019,3,3,13,0,1113.0,887.496426497552,60.0,26.8,3.9 -2019,3,3,13,15,1113.0,879.7152684340292,60.0,26.8,3.9 -2019,3,3,13,30,1113.0,868.0563147887607,60.0,26.8,3.9 -2019,3,3,13,45,1113.0,852.5694909911703,60.0,26.8,3.9 -2019,3,3,14,0,1058.0,797.1066833874606,62.0,27.7,2.8 -2019,3,3,14,15,1058.0,775.3121631607577,62.0,27.7,2.8 -2019,3,3,14,30,1058.0,750.1136495226237,62.0,27.7,2.8 -2019,3,3,14,45,1058.0,721.6190463770039,62.0,27.7,2.8 -2019,3,3,15,0,960.0,629.7848365874979,60.0,27.4,4.0 -2019,3,3,15,15,960.0,598.2925397213937,60.0,27.4,4.0 -2019,3,3,15,30,960.0,564.1780819472337,60.0,27.4,4.0 -2019,3,3,15,45,960.0,527.5875466105538,60.0,27.4,4.0 -2019,3,3,16,0,769.0,393.3886351884182,50.0,26.6,3.5 -2019,3,3,16,15,769.0,360.4957018607323,50.0,26.6,3.5 -2019,3,3,16,30,769.0,326.01916025676223,50.0,26.6,3.5 -2019,3,3,16,45,769.0,290.1066442205914,50.0,26.6,3.5 -2019,3,3,17,0,692.0,186.59435652564238,4.0,25.8,3.1 -2019,3,3,17,15,692.0,152.11347623720928,4.0,25.8,3.1 -2019,3,3,17,30,692.0,116.76976812551091,4.0,25.8,3.1 -2019,3,3,17,45,692.0,80.71457937474644,4.0,25.8,3.1 -2019,3,3,18,0,0.0,0.0,0.0,23.8,3.0 -2019,3,3,18,15,0.0,0.0,0.0,23.8,3.0 -2019,3,3,18,30,0.0,0.0,0.0,23.8,3.0 -2019,3,3,18,45,0.0,0.0,0.0,23.8,3.0 -2019,3,3,19,0,0.0,0.0,0.0,22.5,2.5 -2019,3,3,19,15,0.0,0.0,0.0,22.5,2.5 -2019,3,3,19,30,0.0,0.0,0.0,22.5,2.5 -2019,3,3,19,45,0.0,0.0,0.0,22.5,2.5 -2019,3,3,20,0,0.0,0.0,0.0,20.6,1.7 -2019,3,3,20,15,0.0,0.0,0.0,20.6,1.7 -2019,3,3,20,30,0.0,0.0,0.0,20.6,1.7 -2019,3,3,20,45,0.0,0.0,0.0,20.6,1.7 -2019,3,3,21,0,0.0,0.0,0.0,20.2,3.0 -2019,3,3,21,15,0.0,0.0,0.0,20.2,3.0 -2019,3,3,21,30,0.0,0.0,0.0,20.2,3.0 -2019,3,3,21,45,0.0,0.0,0.0,20.2,3.0 -2019,3,3,22,0,0.0,0.0,0.0,17.1,2.1 -2019,3,3,22,15,0.0,0.0,0.0,17.1,2.1 -2019,3,3,22,30,0.0,0.0,0.0,17.1,2.1 -2019,3,3,22,45,0.0,0.0,0.0,17.1,2.1 -2019,3,3,23,0,0.0,0.0,0.0,15.9,2.1 -2019,3,3,23,15,0.0,0.0,0.0,15.9,2.1 -2019,3,3,23,30,0.0,0.0,0.0,15.9,2.1 -2019,3,3,23,45,0.0,0.0,0.0,15.9,2.1 -2019,3,4,0,0,0.0,0.0,0.0,14.2,2.2 -2019,3,4,0,15,0.0,0.0,0.0,14.2,2.2 -2019,3,4,0,30,0.0,0.0,0.0,14.2,2.2 -2019,3,4,0,45,0.0,0.0,0.0,14.2,2.2 -2019,3,4,1,0,0.0,0.0,0.0,12.7,2.5 -2019,3,4,1,15,0.0,0.0,0.0,12.7,2.5 -2019,3,4,1,30,0.0,0.0,0.0,12.7,2.5 -2019,3,4,1,45,0.0,0.0,0.0,12.7,2.5 -2019,3,4,2,0,0.0,0.0,0.0,12.1,2.1 -2019,3,4,2,15,0.0,0.0,0.0,12.1,2.1 -2019,3,4,2,30,0.0,0.0,0.0,12.1,2.1 -2019,3,4,2,45,0.0,0.0,0.0,12.1,2.1 -2019,3,4,3,0,0.0,0.0,0.0,11.6,2.1 -2019,3,4,3,15,0.0,0.0,0.0,11.6,2.1 -2019,3,4,3,30,0.0,0.0,0.0,11.6,2.1 -2019,3,4,3,45,0.0,0.0,0.0,11.6,2.1 -2019,3,4,4,0,0.0,0.0,0.0,10.7,2.1 -2019,3,4,4,15,0.0,0.0,0.0,10.7,2.1 -2019,3,4,4,30,0.0,0.0,0.0,10.7,2.1 -2019,3,4,4,45,0.0,0.0,0.0,10.7,2.1 -2019,3,4,5,0,0.0,0.0,0.0,11.2,2.2 -2019,3,4,5,15,0.0,0.0,0.0,11.2,2.2 -2019,3,4,5,30,0.0,0.0,0.0,11.2,2.2 -2019,3,4,5,45,0.0,0.0,0.0,11.2,2.2 -2019,3,4,6,0,714.0,-147.01918539891054,2.0,12.6,2.6 -2019,3,4,6,15,714.0,-108.79508100696958,2.0,12.6,2.6 -2019,3,4,6,30,714.0,-70.3212475588165,2.0,12.6,2.6 -2019,3,4,6,45,714.0,-31.76243591588611,2.0,12.6,2.6 -2019,3,4,7,0,743.0,56.907795103413825,52.0,16.4,2.6 -2019,3,4,7,15,743.0,96.6944741420512,52.0,16.4,2.6 -2019,3,4,7,30,743.0,136.05592511266775,52.0,16.4,2.6 -2019,3,4,7,45,743.0,174.82359623932723,52.0,16.4,2.6 -2019,3,4,8,0,937.0,266.82516186162053,64.0,22.7,2.7 -2019,3,4,8,15,937.0,313.59361589074456,64.0,22.7,2.7 -2019,3,4,8,30,937.0,358.99837593531083,64.0,22.7,2.7 -2019,3,4,8,45,937.0,402.8450118421432,64.0,22.7,2.7 -2019,3,4,9,0,1037.0,488.6016637262212,67.0,26.3,3.1 -2019,3,4,9,15,1037.0,533.0638296878344,67.0,26.3,3.1 -2019,3,4,9,30,1037.0,575.2038706387318,67.0,26.3,3.1 -2019,3,4,9,45,1037.0,614.841336454105,67.0,26.3,3.1 -2019,3,4,10,0,1092.0,680.8232312581725,65.0,27.9,3.0 -2019,3,4,10,15,1092.0,716.7682042015473,65.0,27.9,3.0 -2019,3,4,10,30,1092.0,749.5785277070225,65.0,27.9,3.0 -2019,3,4,10,45,1092.0,779.113702932215,65.0,27.9,3.0 -2019,3,4,11,0,1118.0,820.8721903825474,63.0,29.2,2.7 -2019,3,4,11,15,1118.0,844.0307848163334,63.0,29.2,2.7 -2019,3,4,11,30,1118.0,863.4930247895073,63.0,29.2,2.7 -2019,3,4,11,45,1118.0,879.1755700026066,63.0,29.2,2.7 -2019,3,4,12,0,1118.0,891.0112653894007,63.0,31.1,3.0 -2019,3,4,12,15,1118.0,898.9494286851941,63.0,31.1,3.0 -2019,3,4,12,30,1118.0,902.9560674560656,63.0,31.1,3.0 -2019,3,4,12,45,1118.0,903.0140246596876,63.0,31.1,3.0 -2019,3,4,13,0,1094.0,883.174077829313,65.0,31.1,2.7 -2019,3,4,13,15,1094.0,875.5187780401402,65.0,31.1,2.7 -2019,3,4,13,30,1094.0,864.048405037308,65.0,31.1,2.7 -2019,3,4,13,45,1094.0,848.8120767189783,65.0,31.1,2.7 -2019,3,4,14,0,1040.0,794.1206936722297,67.0,31.1,3.0 -2019,3,4,14,15,1040.0,772.6774346160342,67.0,31.1,3.0 -2019,3,4,14,30,1040.0,747.8850441365437,67.0,31.1,3.0 -2019,3,4,14,45,1040.0,719.8496870559882,67.0,31.1,3.0 -2019,3,4,15,0,942.0,627.108954810539,64.0,31.4,2.5 -2019,3,4,15,15,942.0,596.1789623540017,64.0,31.4,2.5 -2019,3,4,15,30,942.0,562.6736284591809,64.0,31.4,2.5 -2019,3,4,15,45,942.0,526.736428109647,64.0,31.4,2.5 -2019,3,4,16,0,755.0,392.24792323293997,52.0,30.8,2.0 -2019,3,4,16,15,755.0,359.92437530346933,52.0,30.8,2.0 -2019,3,4,16,30,755.0,326.0446317769072,52.0,30.8,2.0 -2019,3,4,16,45,755.0,290.7537709163469,52.0,30.8,2.0 -2019,3,4,17,0,664.0,182.83143660178456,5.0,30.1,1.3 -2019,3,4,17,15,664.0,149.71556902709187,5.0,30.1,1.3 -2019,3,4,17,30,664.0,115.7710308472407,5.0,30.1,1.3 -2019,3,4,17,45,664.0,81.1431777859776,5.0,30.1,1.3 -2019,3,4,18,0,0.0,0.0,0.0,26.3,0.2 -2019,3,4,18,15,0.0,0.0,0.0,26.3,0.2 -2019,3,4,18,30,0.0,0.0,0.0,26.3,0.2 -2019,3,4,18,45,0.0,0.0,0.0,26.3,0.2 -2019,3,4,19,0,0.0,0.0,0.0,23.1,1.5 -2019,3,4,19,15,0.0,0.0,0.0,23.1,1.5 -2019,3,4,19,30,0.0,0.0,0.0,23.1,1.5 -2019,3,4,19,45,0.0,0.0,0.0,23.1,1.5 -2019,3,4,20,0,0.0,0.0,0.0,21.6,1.7 -2019,3,4,20,15,0.0,0.0,0.0,21.6,1.7 -2019,3,4,20,30,0.0,0.0,0.0,21.6,1.7 -2019,3,4,20,45,0.0,0.0,0.0,21.6,1.7 -2019,3,4,21,0,0.0,0.0,0.0,20.4,2.7 -2019,3,4,21,15,0.0,0.0,0.0,20.4,2.7 -2019,3,4,21,30,0.0,0.0,0.0,20.4,2.7 -2019,3,4,21,45,0.0,0.0,0.0,20.4,2.7 -2019,3,4,22,0,0.0,0.0,0.0,18.6,0.2 -2019,3,4,22,15,0.0,0.0,0.0,18.6,0.2 -2019,3,4,22,30,0.0,0.0,0.0,18.6,0.2 -2019,3,4,22,45,0.0,0.0,0.0,18.6,0.2 -2019,3,4,23,0,0.0,0.0,0.0,16.6,2.1 -2019,3,4,23,15,0.0,0.0,0.0,16.6,2.1 -2019,3,4,23,30,0.0,0.0,0.0,16.6,2.1 -2019,3,4,23,45,0.0,0.0,0.0,16.6,2.1 -2019,3,5,0,0,0.0,0.0,0.0,15.6,2.0 -2019,3,5,0,15,0.0,0.0,0.0,15.6,2.0 -2019,3,5,0,30,0.0,0.0,0.0,15.6,2.0 -2019,3,5,0,45,0.0,0.0,0.0,15.6,2.0 -2019,3,5,1,0,0.0,0.0,0.0,15.4,1.3 -2019,3,5,1,15,0.0,0.0,0.0,15.4,1.3 -2019,3,5,1,30,0.0,0.0,0.0,15.4,1.3 -2019,3,5,1,45,0.0,0.0,0.0,15.4,1.3 -2019,3,5,2,0,0.0,0.0,0.0,13.9,0.4 -2019,3,5,2,15,0.0,0.0,0.0,13.9,0.4 -2019,3,5,2,30,0.0,0.0,0.0,13.9,0.4 -2019,3,5,2,45,0.0,0.0,0.0,13.9,0.4 -2019,3,5,3,0,0.0,0.0,0.0,13.7,2.9 -2019,3,5,3,15,0.0,0.0,0.0,13.7,2.9 -2019,3,5,3,30,0.0,0.0,0.0,13.7,2.9 -2019,3,5,3,45,0.0,0.0,0.0,13.7,2.9 -2019,3,5,4,0,0.0,0.0,0.0,12.3,1.6 -2019,3,5,4,15,0.0,0.0,0.0,12.3,1.6 -2019,3,5,4,30,0.0,0.0,0.0,12.3,1.6 -2019,3,5,4,45,0.0,0.0,0.0,12.3,1.6 -2019,3,5,5,0,0.0,0.0,0.0,12.9,2.2 -2019,3,5,5,15,0.0,0.0,0.0,12.9,2.2 -2019,3,5,5,30,0.0,0.0,0.0,12.9,2.2 -2019,3,5,5,45,0.0,0.0,0.0,12.9,2.2 -2019,3,5,6,0,545.0,-104.81247436997572,7.0,13.6,2.7 -2019,3,5,6,15,545.0,-75.61037280210276,7.0,13.6,2.7 -2019,3,5,6,30,545.0,-46.2174855145911,7.0,13.6,2.7 -2019,3,5,6,45,545.0,-16.759677363283803,7.0,13.6,2.7 -2019,3,5,7,0,579.0,75.98856916005464,70.0,16.2,0.2 -2019,3,5,7,15,579.0,107.0202956355495,70.0,16.2,0.2 -2019,3,5,7,30,579.0,137.7203643447927,70.0,16.2,0.2 -2019,3,5,7,45,579.0,167.95731288041094,70.0,16.2,0.2 -2019,3,5,8,0,20.0,153.4076567180212,149.0,17.6,1.9 -2019,3,5,8,15,20.0,154.40678652883403,149.0,17.6,1.9 -2019,3,5,8,30,20.0,155.37678329813238,149.0,17.6,1.9 -2019,3,5,8,45,20.0,156.31349335083354,149.0,17.6,1.9 -2019,3,5,9,0,50.0,272.53226387671367,252.0,20.8,0.0 -2019,3,5,9,15,50.0,274.67792119142035,252.0,20.8,0.0 -2019,3,5,9,30,50.0,276.711517287175,252.0,20.8,0.0 -2019,3,5,9,45,50.0,278.62434399329226,252.0,20.8,0.0 -2019,3,5,10,0,26.0,298.7722693519201,284.0,22.7,0.0 -2019,3,5,10,15,26.0,299.6288482450903,284.0,22.7,0.0 -2019,3,5,10,30,26.0,300.4107275536977,284.0,22.7,0.0 -2019,3,5,10,45,26.0,301.11455915050647,284.0,22.7,0.0 -2019,3,5,11,0,221.0,506.76729752480173,356.0,26.3,0.2 -2019,3,5,11,15,221.0,511.34915067164087,356.0,26.3,0.2 -2019,3,5,11,30,221.0,515.1996920212285,356.0,26.3,0.2 -2019,3,5,11,45,221.0,518.3024329643602,356.0,26.3,0.2 -2019,3,5,12,0,223.0,522.1340788263283,356.0,27.9,1.7 -2019,3,5,12,15,223.0,523.718831839481,356.0,27.9,1.7 -2019,3,5,12,30,223.0,524.5187061464403,356.0,27.9,1.7 -2019,3,5,12,45,223.0,524.530276562625,356.0,27.9,1.7 -2019,3,5,13,0,213.0,488.2309153560084,328.0,28.8,3.1 -2019,3,5,13,15,213.0,486.73914153196347,328.0,28.8,3.1 -2019,3,5,13,30,213.0,484.50393158997554,328.0,28.8,3.1 -2019,3,5,13,45,213.0,481.53485704217195,328.0,28.8,3.1 -2019,3,5,14,0,87.0,331.20414543276087,270.0,27.9,3.1 -2019,3,5,14,15,87.0,329.40877030736476,270.0,27.9,3.1 -2019,3,5,14,30,87.0,327.33298317774353,270.0,27.9,3.1 -2019,3,5,14,45,87.0,324.98567288306685,270.0,27.9,3.1 -2019,3,5,15,0,78.0,234.9585919008943,188.0,28.1,3.2 -2019,3,5,15,15,78.0,232.3952767048781,188.0,28.1,3.2 -2019,3,5,15,30,78.0,229.618530747346,188.0,28.1,3.2 -2019,3,5,15,45,78.0,226.64024448078186,188.0,28.1,3.2 -2019,3,5,16,0,41.0,108.64615418913812,90.0,27.4,3.7 -2019,3,5,16,15,41.0,106.8893052228878,90.0,27.4,3.7 -2019,3,5,16,30,41.0,105.04787393813706,90.0,27.4,3.7 -2019,3,5,16,45,41.0,103.1297456263489,90.0,27.4,3.7 -2019,3,5,17,0,14.0,14.804972587903196,11.0,26.4,3.9 -2019,3,5,17,15,14.0,14.10613767811101,11.0,26.4,3.9 -2019,3,5,17,30,14.0,13.389815563845103,11.0,26.4,3.9 -2019,3,5,17,45,14.0,12.659073646370533,11.0,26.4,3.9 -2019,3,5,18,0,0.0,0.0,0.0,23.6,2.1 -2019,3,5,18,15,0.0,0.0,0.0,23.6,2.1 -2019,3,5,18,30,0.0,0.0,0.0,23.6,2.1 -2019,3,5,18,45,0.0,0.0,0.0,23.6,2.1 -2019,3,5,19,0,0.0,0.0,0.0,21.0,1.9 -2019,3,5,19,15,0.0,0.0,0.0,21.0,1.9 -2019,3,5,19,30,0.0,0.0,0.0,21.0,1.9 -2019,3,5,19,45,0.0,0.0,0.0,21.0,1.9 -2019,3,5,20,0,0.0,0.0,0.0,19.9,0.0 -2019,3,5,20,15,0.0,0.0,0.0,19.9,0.0 -2019,3,5,20,30,0.0,0.0,0.0,19.9,0.0 -2019,3,5,20,45,0.0,0.0,0.0,19.9,0.0 -2019,3,5,21,0,0.0,0.0,0.0,18.7,0.0 -2019,3,5,21,15,0.0,0.0,0.0,18.7,0.0 -2019,3,5,21,30,0.0,0.0,0.0,18.7,0.0 -2019,3,5,21,45,0.0,0.0,0.0,18.7,0.0 -2019,3,5,22,0,0.0,0.0,0.0,17.1,0.0 -2019,3,5,22,15,0.0,0.0,0.0,17.1,0.0 -2019,3,5,22,30,0.0,0.0,0.0,17.1,0.0 -2019,3,5,22,45,0.0,0.0,0.0,17.1,0.0 -2019,3,5,23,0,0.0,0.0,0.0,15.8,0.0 -2019,3,5,23,15,0.0,0.0,0.0,15.8,0.0 -2019,3,5,23,30,0.0,0.0,0.0,15.8,0.0 -2019,3,5,23,45,0.0,0.0,0.0,15.8,0.0 -2019,3,6,0,0,0.0,0.0,0.0,13.7,0.0 -2019,3,6,0,15,0.0,0.0,0.0,13.7,0.0 -2019,3,6,0,30,0.0,0.0,0.0,13.7,0.0 -2019,3,6,0,45,0.0,0.0,0.0,13.7,0.0 -2019,3,6,1,0,0.0,0.0,0.0,11.9,0.0 -2019,3,6,1,15,0.0,0.0,0.0,11.9,0.0 -2019,3,6,1,30,0.0,0.0,0.0,11.9,0.0 -2019,3,6,1,45,0.0,0.0,0.0,11.9,0.0 -2019,3,6,2,0,0.0,0.0,0.0,9.5,0.0 -2019,3,6,2,15,0.0,0.0,0.0,9.5,0.0 -2019,3,6,2,30,0.0,0.0,0.0,9.5,0.0 -2019,3,6,2,45,0.0,0.0,0.0,9.5,0.0 -2019,3,6,3,0,0.0,0.0,0.0,9.9,0.0 -2019,3,6,3,15,0.0,0.0,0.0,9.9,0.0 -2019,3,6,3,30,0.0,0.0,0.0,9.9,0.0 -2019,3,6,3,45,0.0,0.0,0.0,9.9,0.0 -2019,3,6,4,0,0.0,0.0,0.0,8.8,0.2 -2019,3,6,4,15,0.0,0.0,0.0,8.8,0.2 -2019,3,6,4,30,0.0,0.0,0.0,8.8,0.2 -2019,3,6,4,45,0.0,0.0,0.0,8.8,0.2 -2019,3,6,5,0,0.0,0.0,0.0,8.2,2.1 -2019,3,6,5,15,0.0,0.0,0.0,8.2,2.1 -2019,3,6,5,30,0.0,0.0,0.0,8.2,2.1 -2019,3,6,5,45,0.0,0.0,0.0,8.2,2.1 -2019,3,6,6,0,1.0,5.798418476037188,6.0,7.3,0.0 -2019,3,6,6,15,1.0,5.852044842974292,6.0,7.3,0.0 -2019,3,6,6,30,1.0,5.906021566374061,6.0,7.3,0.0 -2019,3,6,6,45,1.0,5.960117509620241,6.0,7.3,0.0 -2019,3,6,7,0,2.0,36.02820205115778,36.0,9.7,0.2 -2019,3,6,7,15,2.0,36.135481897093946,36.0,9.7,0.2 -2019,3,6,7,30,2.0,36.241615168278784,36.0,9.7,0.2 -2019,3,6,7,45,2.0,36.3461473857512,36.0,9.7,0.2 -2019,3,6,8,0,1.0,68.22431546325394,68.0,11.9,1.5 -2019,3,6,8,15,1.0,68.27431347014691,68.0,11.9,1.5 -2019,3,6,8,30,1.0,68.3228536144131,68.0,11.9,1.5 -2019,3,6,8,45,1.0,68.3697280397028,68.0,11.9,1.5 -2019,3,6,9,0,21.0,232.7094564731425,224.0,13.9,3.4 -2019,3,6,9,15,21.0,233.61138146788977,224.0,13.9,3.4 -2019,3,6,9,30,21.0,234.46620163670704,224.0,13.9,3.4 -2019,3,6,9,45,21.0,235.27025650839707,224.0,13.9,3.4 -2019,3,6,10,0,19.0,285.87533128260054,275.0,16.0,5.1 -2019,3,6,10,15,19.0,286.5018129868953,275.0,16.0,5.1 -2019,3,6,10,30,19.0,287.07366116773966,275.0,16.0,5.1 -2019,3,6,10,45,19.0,287.5884270834317,275.0,16.0,5.1 -2019,3,6,11,0,66.0,399.3104118000671,354.0,15.7,4.8 -2019,3,6,11,15,66.0,400.679885190089,354.0,15.7,4.8 -2019,3,6,11,30,66.0,401.83077626984294,354.0,15.7,4.8 -2019,3,6,11,45,66.0,402.75815674703733,354.0,15.7,4.8 -2019,3,6,12,0,11.0,285.24300923934913,277.0,16.2,2.8 -2019,3,6,12,15,11.0,285.3212458772297,277.0,16.2,2.8 -2019,3,6,12,30,11.0,285.3607343501868,277.0,16.2,2.8 -2019,3,6,12,45,11.0,285.36130556251686,277.0,16.2,2.8 -2019,3,6,13,0,9.0,250.80969214670984,244.0,16.7,4.5 -2019,3,6,13,15,9.0,250.74660706658287,244.0,16.7,4.5 -2019,3,6,13,30,9.0,250.65208308713093,244.0,16.7,4.5 -2019,3,6,13,45,9.0,250.52652497454568,244.0,16.7,4.5 -2019,3,6,14,0,18.0,231.7409407758824,219.0,16.4,7.6 -2019,3,6,14,15,18.0,231.36917515403053,219.0,16.4,7.6 -2019,3,6,14,30,18.0,230.9393450410031,219.0,16.4,7.6 -2019,3,6,14,45,18.0,230.4532910353327,219.0,16.4,7.6 -2019,3,6,15,0,11.0,141.66911330243406,135.0,15.0,7.2 -2019,3,6,15,15,11.0,141.30731971478878,135.0,15.0,7.2 -2019,3,6,15,30,11.0,140.91540190323119,135.0,15.0,7.2 -2019,3,6,15,45,11.0,140.4950381199986,135.0,15.0,7.2 -2019,3,6,16,0,4.0,51.83564670085322,50.0,13.8,7.5 -2019,3,6,16,15,4.0,51.66410435978344,50.0,13.8,7.5 -2019,3,6,16,30,4.0,51.484303227430296,50.0,13.8,7.5 -2019,3,6,16,45,4.0,51.29701323984608,50.0,13.8,7.5 -2019,3,6,17,0,3.0,6.827277301133191,6.0,13.2,7.5 -2019,3,6,17,15,3.0,6.677402513269824,6.0,13.2,7.5 -2019,3,6,17,30,3.0,6.523777353145286,6.0,13.2,7.5 -2019,3,6,17,45,3.0,6.367059667280195,6.0,13.2,7.5 -2019,3,6,18,0,0.0,0.0,0.0,12.7,5.7 -2019,3,6,18,15,0.0,0.0,0.0,12.7,5.7 -2019,3,6,18,30,0.0,0.0,0.0,12.7,5.7 -2019,3,6,18,45,0.0,0.0,0.0,12.7,5.7 -2019,3,6,19,0,0.0,0.0,0.0,11.6,5.4 -2019,3,6,19,15,0.0,0.0,0.0,11.6,5.4 -2019,3,6,19,30,0.0,0.0,0.0,11.6,5.4 -2019,3,6,19,45,0.0,0.0,0.0,11.6,5.4 -2019,3,6,20,0,0.0,0.0,0.0,10.6,3.0 -2019,3,6,20,15,0.0,0.0,0.0,10.6,3.0 -2019,3,6,20,30,0.0,0.0,0.0,10.6,3.0 -2019,3,6,20,45,0.0,0.0,0.0,10.6,3.0 -2019,3,6,21,0,0.0,0.0,0.0,10.6,2.5 -2019,3,6,21,15,0.0,0.0,0.0,10.6,2.5 -2019,3,6,21,30,0.0,0.0,0.0,10.6,2.5 -2019,3,6,21,45,0.0,0.0,0.0,10.6,2.5 -2019,3,6,22,0,0.0,0.0,0.0,10.5,2.1 -2019,3,6,22,15,0.0,0.0,0.0,10.5,2.1 -2019,3,6,22,30,0.0,0.0,0.0,10.5,2.1 -2019,3,6,22,45,0.0,0.0,0.0,10.5,2.1 -2019,3,6,23,0,0.0,0.0,0.0,10.0,0.0 -2019,3,6,23,15,0.0,0.0,0.0,10.0,0.0 -2019,3,6,23,30,0.0,0.0,0.0,10.0,0.0 -2019,3,6,23,45,0.0,0.0,0.0,10.0,0.0 -2019,3,7,0,0,0.0,0.0,0.0,9.7,2.2 -2019,3,7,0,15,0.0,0.0,0.0,9.7,2.2 -2019,3,7,0,30,0.0,0.0,0.0,9.7,2.2 -2019,3,7,0,45,0.0,0.0,0.0,9.7,2.2 -2019,3,7,1,0,0.0,0.0,0.0,7.7,3.0 -2019,3,7,1,15,0.0,0.0,0.0,7.7,3.0 -2019,3,7,1,30,0.0,0.0,0.0,7.7,3.0 -2019,3,7,1,45,0.0,0.0,0.0,7.7,3.0 -2019,3,7,2,0,0.0,0.0,0.0,7.3,2.2 -2019,3,7,2,15,0.0,0.0,0.0,7.3,2.2 -2019,3,7,2,30,0.0,0.0,0.0,7.3,2.2 -2019,3,7,2,45,0.0,0.0,0.0,7.3,2.2 -2019,3,7,3,0,0.0,0.0,0.0,8.3,3.3 -2019,3,7,3,15,0.0,0.0,0.0,8.3,3.3 -2019,3,7,3,30,0.0,0.0,0.0,8.3,3.3 -2019,3,7,3,45,0.0,0.0,0.0,8.3,3.3 -2019,3,7,4,0,0.0,0.0,0.0,8.2,4.5 -2019,3,7,4,15,0.0,0.0,0.0,8.2,4.5 -2019,3,7,4,30,0.0,0.0,0.0,8.2,4.5 -2019,3,7,4,45,0.0,0.0,0.0,8.2,4.5 -2019,3,7,5,0,0.0,0.0,0.0,7.8,4.1 -2019,3,7,5,15,0.0,0.0,0.0,7.8,4.1 -2019,3,7,5,30,0.0,0.0,0.0,7.8,4.1 -2019,3,7,5,45,0.0,0.0,0.0,7.8,4.1 -2019,3,7,6,0,582.0,-107.22114608129823,8.0,7.9,4.6 -2019,3,7,6,15,582.0,-75.9859666254334,8.0,7.9,4.6 -2019,3,7,6,30,582.0,-44.54671876796134,8.0,7.9,4.6 -2019,3,7,6,45,582.0,-13.03803019484857,8.0,7.9,4.6 -2019,3,7,7,0,676.0,74.08573480969382,62.0,9.0,8.3 -2019,3,7,7,15,676.0,110.37494253835168,62.0,9.0,8.3 -2019,3,7,7,30,676.0,146.27630212121488,62.0,9.0,8.3 -2019,3,7,7,45,676.0,181.63607842487247,62.0,9.0,8.3 -2019,3,7,8,0,850.0,277.0198626329312,83.0,10.3,8.5 -2019,3,7,8,15,850.0,319.5517116079926,83.0,10.3,8.5 -2019,3,7,8,30,850.0,360.84339928622614,83.0,10.3,8.5 -2019,3,7,8,45,850.0,400.7181083217781,83.0,10.3,8.5 -2019,3,7,9,0,943.0,486.9562341303711,92.0,12.3,6.4 -2019,3,7,9,15,943.0,527.4889277400749,92.0,12.3,6.4 -2019,3,7,9,30,943.0,565.9047208446608,92.0,12.3,6.4 -2019,3,7,9,45,943.0,602.0391111203551,92.0,12.3,6.4 -2019,3,7,10,0,996.0,668.297365957903,94.0,12.9,7.5 -2019,3,7,10,15,996.0,701.1641170031834,94.0,12.9,7.5 -2019,3,7,10,30,996.0,731.1646607807053,94.0,12.9,7.5 -2019,3,7,10,45,996.0,758.1705303562462,94.0,12.9,7.5 -2019,3,7,11,0,1020.0,797.6459880514788,93.0,14.1,6.3 -2019,3,7,11,15,1020.0,818.8272816194717,93.0,14.1,6.3 -2019,3,7,11,30,1020.0,836.6278186745669,93.0,14.1,6.3 -2019,3,7,11,45,1020.0,850.971374584306,93.0,14.1,6.3 -2019,3,7,12,0,1021.0,862.5502501265348,93.0,15.8,6.6 -2019,3,7,12,15,1021.0,869.8177641949457,93.0,15.8,6.6 -2019,3,7,12,30,1021.0,873.4859053693378,93.0,15.8,6.6 -2019,3,7,12,45,1021.0,873.5389661060591,93.0,15.8,6.6 -2019,3,7,13,0,996.0,851.9518240099171,94.0,17.3,5.6 -2019,3,7,13,15,996.0,844.9648981754713,94.0,17.3,5.6 -2019,3,7,13,30,996.0,834.4959880515897,94.0,17.3,5.6 -2019,3,7,13,45,996.0,820.5899231186394,94.0,17.3,5.6 -2019,3,7,14,0,944.0,764.2741980018009,92.0,17.8,5.0 -2019,3,7,14,15,944.0,744.7617678509129,92.0,17.8,5.0 -2019,3,7,14,30,944.0,722.2017742306878,92.0,17.8,5.0 -2019,3,7,14,45,944.0,696.6908224972807,92.0,17.8,5.0 -2019,3,7,15,0,853.0,603.7801332166687,83.0,18.0,4.0 -2019,3,7,15,15,853.0,575.7025413718036,83.0,18.0,4.0 -2019,3,7,15,30,853.0,545.287109132477,83.0,18.0,4.0 -2019,3,7,15,45,853.0,512.664080049,83.0,18.0,4.0 -2019,3,7,16,0,681.0,378.3302647014474,63.0,17.8,3.5 -2019,3,7,16,15,681.0,349.1021301093984,63.0,17.8,3.5 -2019,3,7,16,30,681.0,318.46682652517694,63.0,17.8,3.5 -2019,3,7,16,45,681.0,286.55553902194816,63.0,17.8,3.5 -2019,3,7,17,0,562.0,167.21551122927124,10.0,17.7,3.1 -2019,3,7,17,15,562.0,139.11680734672427,10.0,17.7,3.1 -2019,3,7,17,30,562.0,110.31497920212998,10.0,17.7,3.1 -2019,3,7,17,45,562.0,80.93336064534037,10.0,17.7,3.1 -2019,3,7,18,0,0.0,0.0,0.0,16.5,2.9 -2019,3,7,18,15,0.0,0.0,0.0,16.5,2.9 -2019,3,7,18,30,0.0,0.0,0.0,16.5,2.9 -2019,3,7,18,45,0.0,0.0,0.0,16.5,2.9 -2019,3,7,19,0,0.0,0.0,0.0,15.0,1.6 -2019,3,7,19,15,0.0,0.0,0.0,15.0,1.6 -2019,3,7,19,30,0.0,0.0,0.0,15.0,1.6 -2019,3,7,19,45,0.0,0.0,0.0,15.0,1.6 -2019,3,7,20,0,0.0,0.0,0.0,14.9,2.6 -2019,3,7,20,15,0.0,0.0,0.0,14.9,2.6 -2019,3,7,20,30,0.0,0.0,0.0,14.9,2.6 -2019,3,7,20,45,0.0,0.0,0.0,14.9,2.6 -2019,3,7,21,0,0.0,0.0,0.0,14.0,2.5 -2019,3,7,21,15,0.0,0.0,0.0,14.0,2.5 -2019,3,7,21,30,0.0,0.0,0.0,14.0,2.5 -2019,3,7,21,45,0.0,0.0,0.0,14.0,2.5 -2019,3,7,22,0,0.0,0.0,0.0,10.4,2.0 -2019,3,7,22,15,0.0,0.0,0.0,10.4,2.0 -2019,3,7,22,30,0.0,0.0,0.0,10.4,2.0 -2019,3,7,22,45,0.0,0.0,0.0,10.4,2.0 -2019,3,7,23,0,0.0,0.0,0.0,8.8,1.3 -2019,3,7,23,15,0.0,0.0,0.0,8.8,1.3 -2019,3,7,23,30,0.0,0.0,0.0,8.8,1.3 -2019,3,7,23,45,0.0,0.0,0.0,8.8,1.3 -2019,3,8,0,0,0.0,0.0,0.0,8.2,0.0 -2019,3,8,0,15,0.0,0.0,0.0,8.2,0.0 -2019,3,8,0,30,0.0,0.0,0.0,8.2,0.0 -2019,3,8,0,45,0.0,0.0,0.0,8.2,0.0 -2019,3,8,1,0,0.0,0.0,0.0,7.1,0.3 -2019,3,8,1,15,0.0,0.0,0.0,7.1,0.3 -2019,3,8,1,30,0.0,0.0,0.0,7.1,0.3 -2019,3,8,1,45,0.0,0.0,0.0,7.1,0.3 -2019,3,8,2,0,0.0,0.0,0.0,6.9,2.5 -2019,3,8,2,15,0.0,0.0,0.0,6.9,2.5 -2019,3,8,2,30,0.0,0.0,0.0,6.9,2.5 -2019,3,8,2,45,0.0,0.0,0.0,6.9,2.5 -2019,3,8,3,0,0.0,0.0,0.0,12.6,1.9 -2019,3,8,3,15,0.0,0.0,0.0,12.6,1.9 -2019,3,8,3,30,0.0,0.0,0.0,12.6,1.9 -2019,3,8,3,45,0.0,0.0,0.0,12.6,1.9 -2019,3,8,4,0,0.0,0.0,0.0,11.3,0.2 -2019,3,8,4,15,0.0,0.0,0.0,11.3,0.2 -2019,3,8,4,30,0.0,0.0,0.0,11.3,0.2 -2019,3,8,4,45,0.0,0.0,0.0,11.3,0.2 -2019,3,8,5,0,0.0,0.0,0.0,12.6,2.0 -2019,3,8,5,15,0.0,0.0,0.0,12.6,2.0 -2019,3,8,5,30,0.0,0.0,0.0,12.6,2.0 -2019,3,8,5,45,0.0,0.0,0.0,12.6,2.0 -2019,3,8,6,0,589.0,-105.46653017756299,9.0,11.8,1.9 -2019,3,8,6,15,589.0,-73.83206778467863,9.0,11.8,1.9 -2019,3,8,6,30,589.0,-41.99092836004079,9.0,11.8,1.9 -2019,3,8,6,45,589.0,-10.07946055100637,9.0,11.8,1.9 -2019,3,8,7,0,718.0,74.56156609809246,59.0,17.4,5.0 -2019,3,8,7,15,718.0,113.1342073194017,59.0,17.4,5.0 -2019,3,8,7,30,718.0,151.29459574401295,59.0,17.4,5.0 -2019,3,8,7,45,718.0,188.87932273020286,59.0,17.4,5.0 -2019,3,8,8,0,894.0,282.5965676434155,75.0,19.2,4.9 -2019,3,8,8,15,894.0,327.36346530467205,75.0,19.2,4.9 -2019,3,8,8,30,894.0,370.8250311922944,75.0,19.2,4.9 -2019,3,8,8,45,894.0,412.79515620881097,75.0,19.2,4.9 -2019,3,8,9,0,989.0,498.2719044064199,80.0,21.2,6.9 -2019,3,8,9,15,989.0,540.8135423768521,80.0,21.2,6.9 -2019,3,8,9,30,989.0,581.1333587290289,80.0,21.2,6.9 -2019,3,8,9,45,989.0,619.0586978193202,80.0,21.2,6.9 -2019,3,8,10,0,1042.0,685.2104126787834,80.0,21.9,4.4 -2019,3,8,10,15,1042.0,719.6207791938983,80.0,21.9,4.4 -2019,3,8,10,30,1042.0,751.0303245309185,80.0,21.9,4.4 -2019,3,8,10,45,1042.0,779.3045481946293,80.0,21.9,4.4 -2019,3,8,11,0,1066.0,820.0054245771503,79.0,23.4,2.8 -2019,3,8,11,15,1066.0,842.1584810769032,79.0,23.4,2.8 -2019,3,8,11,30,1066.0,860.7756775121268,79.0,23.4,2.8 -2019,3,8,11,45,1066.0,875.7772921895215,79.0,23.4,2.8 -2019,3,8,12,0,1067.0,887.8571525766508,79.0,24.0,4.6 -2019,3,8,12,15,1067.0,895.4577669952945,79.0,24.0,4.6 -2019,3,8,12,30,1067.0,899.2940343127382,79.0,24.0,4.6 -2019,3,8,12,45,1067.0,899.3495270433735,79.0,24.0,4.6 -2019,3,8,13,0,1042.0,877.4903616459973,80.0,25.0,4.6 -2019,3,8,13,15,1042.0,870.1752887796229,80.0,25.0,4.6 -2019,3,8,13,30,1042.0,859.2146972115588,80.0,25.0,4.6 -2019,3,8,13,45,1042.0,844.6555218776,80.0,25.0,4.6 -2019,3,8,14,0,989.0,789.587280441721,81.0,25.1,4.5 -2019,3,8,14,15,989.0,769.1294393227305,81.0,25.1,4.5 -2019,3,8,14,30,989.0,745.4763750165913,81.0,25.1,4.5 -2019,3,8,14,45,989.0,718.729373575947,81.0,25.1,4.5 -2019,3,8,15,0,896.0,625.8297885858922,75.0,25.3,4.2 -2019,3,8,15,15,896.0,596.3147756595288,75.0,25.3,4.2 -2019,3,8,15,30,896.0,564.342237535009,75.0,25.3,4.2 -2019,3,8,15,45,896.0,530.0490855290952,75.0,25.3,4.2 -2019,3,8,16,0,721.0,395.8278384601258,59.0,24.9,4.7 -2019,3,8,16,15,721.0,364.8598216482595,59.0,24.9,4.7 -2019,3,8,16,30,721.0,332.4008703783802,59.0,24.9,4.7 -2019,3,8,16,45,721.0,298.58997886301415,59.0,24.9,4.7 -2019,3,8,17,0,498.0,159.29933620544455,18.0,24.2,4.9 -2019,3,8,17,15,498.0,134.38189412435963,18.0,24.2,4.9 -2019,3,8,17,30,498.0,108.84093367215671,18.0,24.2,4.9 -2019,3,8,17,45,498.0,82.78582516261163,18.0,24.2,4.9 -2019,3,8,18,0,0.0,0.0,0.0,22.7,3.1 -2019,3,8,18,15,0.0,0.0,0.0,22.7,3.1 -2019,3,8,18,30,0.0,0.0,0.0,22.7,3.1 -2019,3,8,18,45,0.0,0.0,0.0,22.7,3.1 -2019,3,8,19,0,0.0,0.0,0.0,21.6,3.0 -2019,3,8,19,15,0.0,0.0,0.0,21.6,3.0 -2019,3,8,19,30,0.0,0.0,0.0,21.6,3.0 -2019,3,8,19,45,0.0,0.0,0.0,21.6,3.0 -2019,3,8,20,0,0.0,0.0,0.0,20.3,2.3 -2019,3,8,20,15,0.0,0.0,0.0,20.3,2.3 -2019,3,8,20,30,0.0,0.0,0.0,20.3,2.3 -2019,3,8,20,45,0.0,0.0,0.0,20.3,2.3 -2019,3,8,21,0,0.0,0.0,0.0,18.1,0.2 -2019,3,8,21,15,0.0,0.0,0.0,18.1,0.2 -2019,3,8,21,30,0.0,0.0,0.0,18.1,0.2 -2019,3,8,21,45,0.0,0.0,0.0,18.1,0.2 -2019,3,8,22,0,0.0,0.0,0.0,16.4,2.0 -2019,3,8,22,15,0.0,0.0,0.0,16.4,2.0 -2019,3,8,22,30,0.0,0.0,0.0,16.4,2.0 -2019,3,8,22,45,0.0,0.0,0.0,16.4,2.0 -2019,3,8,23,0,0.0,0.0,0.0,13.8,1.3 -2019,3,8,23,15,0.0,0.0,0.0,13.8,1.3 -2019,3,8,23,30,0.0,0.0,0.0,13.8,1.3 -2019,3,8,23,45,0.0,0.0,0.0,13.8,1.3 -2019,3,9,0,0,0.0,0.0,0.0,13.0,0.3 -2019,3,9,0,15,0.0,0.0,0.0,13.0,0.3 -2019,3,9,0,30,0.0,0.0,0.0,13.0,0.3 -2019,3,9,0,45,0.0,0.0,0.0,13.0,0.3 -2019,3,9,1,0,0.0,0.0,0.0,10.9,2.8 -2019,3,9,1,15,0.0,0.0,0.0,10.9,2.8 -2019,3,9,1,30,0.0,0.0,0.0,10.9,2.8 -2019,3,9,1,45,0.0,0.0,0.0,10.9,2.8 -2019,3,9,2,0,0.0,0.0,0.0,9.5,3.9 -2019,3,9,2,15,0.0,0.0,0.0,9.5,3.9 -2019,3,9,2,30,0.0,0.0,0.0,9.5,3.9 -2019,3,9,2,45,0.0,0.0,0.0,9.5,3.9 -2019,3,9,3,0,0.0,0.0,0.0,9.9,2.2 -2019,3,9,3,15,0.0,0.0,0.0,9.9,2.2 -2019,3,9,3,30,0.0,0.0,0.0,9.9,2.2 -2019,3,9,3,45,0.0,0.0,0.0,9.9,2.2 -2019,3,9,4,0,0.0,0.0,0.0,9.4,2.7 -2019,3,9,4,15,0.0,0.0,0.0,9.4,2.7 -2019,3,9,4,30,0.0,0.0,0.0,9.4,2.7 -2019,3,9,4,45,0.0,0.0,0.0,9.4,2.7 -2019,3,9,5,0,0.0,0.0,0.0,9.3,3.4 -2019,3,9,5,15,0.0,0.0,0.0,9.3,3.4 -2019,3,9,5,30,0.0,0.0,0.0,9.3,3.4 -2019,3,9,5,45,0.0,0.0,0.0,9.3,3.4 -2019,3,9,6,0,508.0,-78.86573522303617,18.0,9.5,2.0 -2019,3,9,6,15,508.0,-51.56249691853046,18.0,9.5,2.0 -2019,3,9,6,30,508.0,-24.080878713650698,18.0,9.5,2.0 -2019,3,9,6,45,508.0,3.4614388833953136,18.0,9.5,2.0 -2019,3,9,7,0,749.0,75.08846469443357,56.0,14.8,1.7 -2019,3,9,7,15,749.0,115.35479345289156,56.0,14.8,1.7 -2019,3,9,7,30,749.0,155.1907677912776,56.0,14.8,1.7 -2019,3,9,7,45,749.0,194.425803951745,56.0,14.8,1.7 -2019,3,9,8,0,926.0,287.69411417359083,69.0,22.0,3.2 -2019,3,9,8,15,926.0,334.0960127661111,69.0,22.0,3.2 -2019,3,9,8,30,926.0,379.1449055495601,69.0,22.0,3.2 -2019,3,9,8,45,926.0,422.64788624900785,69.0,22.0,3.2 -2019,3,9,9,0,1021.0,508.98537846573487,73.0,24.5,3.5 -2019,3,9,9,15,1021.0,552.9343728015384,73.0,24.5,3.5 -2019,3,9,9,30,1021.0,594.5880435349992,73.0,24.5,3.5 -2019,3,9,9,45,1021.0,633.7680232532487,73.0,24.5,3.5 -2019,3,9,10,0,1074.0,700.3126552653805,72.0,25.7,3.2 -2019,3,9,10,15,1074.0,735.8047101714151,72.0,25.7,3.2 -2019,3,9,10,30,1074.0,768.2016132147298,72.0,25.7,3.2 -2019,3,9,10,45,1074.0,797.3646358828299,72.0,25.7,3.2 -2019,3,9,11,0,1099.0,837.6542071707382,69.0,26.8,3.9 -2019,3,9,11,15,1099.0,860.5091125026283,69.0,26.8,3.9 -2019,3,9,11,30,1099.0,879.7161353383703,69.0,26.8,3.9 -2019,3,9,11,45,1099.0,895.193028257466,69.0,26.8,3.9 -2019,3,9,12,0,1099.0,906.8735168283799,69.0,27.4,2.8 -2019,3,9,12,15,1099.0,914.7075834058301,69.0,27.4,2.8 -2019,3,9,12,30,1099.0,918.6616813140241,69.0,27.4,2.8 -2019,3,9,12,45,1099.0,918.7188784986749,69.0,27.4,2.8 -2019,3,9,13,0,1074.0,897.6369161556628,71.0,28.9,4.0 -2019,3,9,13,15,1074.0,890.0918942884601,71.0,28.9,4.0 -2019,3,9,13,30,1074.0,878.786756996026,71.0,28.9,4.0 -2019,3,9,13,45,1074.0,863.769914611843,71.0,28.9,4.0 -2019,3,9,14,0,1021.0,808.9049261296059,73.0,28.8,3.7 -2019,3,9,14,15,1021.0,787.7703016450905,73.0,28.8,3.7 -2019,3,9,14,30,1021.0,763.3347500582565,73.0,28.8,3.7 -2019,3,9,14,45,1021.0,735.702908152413,73.0,28.8,3.7 -2019,3,9,15,0,927.0,643.8076429357468,70.0,28.8,3.9 -2019,3,9,15,15,927.0,613.2499905566738,70.0,28.8,3.9 -2019,3,9,15,30,927.0,580.1479991015705,70.0,28.8,3.9 -2019,3,9,15,45,927.0,544.643416379758,70.0,28.8,3.9 -2019,3,9,16,0,750.0,409.46948095891116,56.0,28.0,2.6 -2019,3,9,16,15,750.0,377.23321897634526,56.0,28.0,2.6 -2019,3,9,16,30,750.0,343.4449637202247,56.0,28.0,2.6 -2019,3,9,16,45,750.0,308.24940168682326,56.0,28.0,2.6 -2019,3,9,17,0,511.0,165.02985672064193,18.0,27.5,1.5 -2019,3,9,17,15,511.0,139.44398025563675,18.0,27.5,1.5 -2019,3,9,17,30,511.0,113.21785893864516,18.0,27.5,1.5 -2019,3,9,17,45,511.0,86.46379704745381,18.0,27.5,1.5 -2019,3,9,18,0,0.0,0.0,0.0,25.0,1.6 -2019,3,9,18,15,0.0,0.0,0.0,25.0,1.6 -2019,3,9,18,30,0.0,0.0,0.0,25.0,1.6 -2019,3,9,18,45,0.0,0.0,0.0,25.0,1.6 -2019,3,9,19,0,0.0,0.0,0.0,20.5,2.2 -2019,3,9,19,15,0.0,0.0,0.0,20.5,2.2 -2019,3,9,19,30,0.0,0.0,0.0,20.5,2.2 -2019,3,9,19,45,0.0,0.0,0.0,20.5,2.2 -2019,3,9,20,0,0.0,0.0,0.0,19.3,2.9 -2019,3,9,20,15,0.0,0.0,0.0,19.3,2.9 -2019,3,9,20,30,0.0,0.0,0.0,19.3,2.9 -2019,3,9,20,45,0.0,0.0,0.0,19.3,2.9 -2019,3,9,21,0,0.0,0.0,0.0,18.0,1.5 -2019,3,9,21,15,0.0,0.0,0.0,18.0,1.5 -2019,3,9,21,30,0.0,0.0,0.0,18.0,1.5 -2019,3,9,21,45,0.0,0.0,0.0,18.0,1.5 -2019,3,9,22,0,0.0,0.0,0.0,15.4,1.6 -2019,3,9,22,15,0.0,0.0,0.0,15.4,1.6 -2019,3,9,22,30,0.0,0.0,0.0,15.4,1.6 -2019,3,9,22,45,0.0,0.0,0.0,15.4,1.6 -2019,3,9,23,0,0.0,0.0,0.0,13.8,2.1 -2019,3,9,23,15,0.0,0.0,0.0,13.8,2.1 -2019,3,9,23,30,0.0,0.0,0.0,13.8,2.1 -2019,3,9,23,45,0.0,0.0,0.0,13.8,2.1 -2019,3,10,0,0,0.0,0.0,0.0,13.1,2.2 -2019,3,10,0,15,0.0,0.0,0.0,13.1,2.2 -2019,3,10,0,30,0.0,0.0,0.0,13.1,2.2 -2019,3,10,0,45,0.0,0.0,0.0,13.1,2.2 -2019,3,10,1,0,0.0,0.0,0.0,11.5,2.5 -2019,3,10,1,15,0.0,0.0,0.0,11.5,2.5 -2019,3,10,1,30,0.0,0.0,0.0,11.5,2.5 -2019,3,10,1,45,0.0,0.0,0.0,11.5,2.5 -2019,3,10,2,0,0.0,0.0,0.0,10.1,1.3 -2019,3,10,2,15,0.0,0.0,0.0,10.1,1.3 -2019,3,10,2,30,0.0,0.0,0.0,10.1,1.3 -2019,3,10,2,45,0.0,0.0,0.0,10.1,1.3 -2019,3,10,3,0,0.0,0.0,0.0,10.3,0.2 -2019,3,10,3,15,0.0,0.0,0.0,10.3,0.2 -2019,3,10,3,30,0.0,0.0,0.0,10.3,0.2 -2019,3,10,3,45,0.0,0.0,0.0,10.3,0.2 -2019,3,10,4,0,0.0,0.0,0.0,8.3,1.6 -2019,3,10,4,15,0.0,0.0,0.0,8.3,1.6 -2019,3,10,4,30,0.0,0.0,0.0,8.3,1.6 -2019,3,10,4,45,0.0,0.0,0.0,8.3,1.6 -2019,3,10,5,0,0.0,0.0,0.0,8.5,2.5 -2019,3,10,5,15,0.0,0.0,0.0,8.5,2.5 -2019,3,10,5,30,0.0,0.0,0.0,8.5,2.5 -2019,3,10,5,45,0.0,0.0,0.0,8.5,2.5 -2019,3,10,6,0,506.0,-74.6199657668768,20.0,10.4,1.5 -2019,3,10,6,15,506.0,-47.406299527022625,20.0,10.4,1.5 -2019,3,10,6,30,506.0,-20.01483858682775,20.0,10.4,1.5 -2019,3,10,6,45,506.0,7.437122612748464,20.0,10.4,1.5 -2019,3,10,7,0,738.0,80.63248725849527,59.0,13.8,1.3 -2019,3,10,7,15,738.0,120.33359906310871,59.0,13.8,1.3 -2019,3,10,7,30,738.0,159.61039731658204,59.0,13.8,1.3 -2019,3,10,7,45,738.0,198.29469273891,59.0,13.8,1.3 -2019,3,10,8,0,978.0,294.8536245351404,60.0,17.5,0.2 -2019,3,10,8,15,978.0,343.893539521065,60.0,17.5,0.2 -2019,3,10,8,30,978.0,391.503528321534,60.0,17.5,0.2 -2019,3,10,8,45,978.0,437.47971765528536,60.0,17.5,0.2 -2019,3,10,9,0,1022.0,513.5940546937275,73.0,20.3,1.6 -2019,3,10,9,15,1022.0,557.615083219741,73.0,20.3,1.6 -2019,3,10,9,30,1022.0,599.3370260146196,73.0,20.3,1.6 -2019,3,10,9,45,1022.0,638.581223314047,73.0,20.3,1.6 -2019,3,10,10,0,1120.0,718.9228771948578,59.0,23.0,2.6 -2019,3,10,10,15,1120.0,755.9594656622558,59.0,23.0,2.6 -2019,3,10,10,30,1120.0,789.7662082926869,59.0,23.0,2.6 -2019,3,10,10,45,1120.0,820.1983394241016,59.0,23.0,2.6 -2019,3,10,11,0,1099.0,842.3481900489893,69.0,24.5,2.3 -2019,3,10,11,15,1099.0,865.218155925987,69.0,24.5,2.3 -2019,3,10,11,30,1099.0,884.4378354859466,69.0,24.5,2.3 -2019,3,10,11,45,1099.0,899.9249271103333,69.0,24.5,2.3 -2019,3,10,12,0,149.0,490.2396303836063,376.0,25.6,0.7 -2019,3,10,12,15,149.0,491.30245578132894,376.0,25.6,0.7 -2019,3,10,12,30,149.0,491.83889693106426,376.0,25.6,0.7 -2019,3,10,12,45,149.0,491.8466567094532,376.0,25.6,0.7 -2019,3,10,13,0,289.0,546.6854217826358,323.0,25.6,5.9 -2019,3,10,13,15,289.0,544.6538126609621,323.0,25.6,5.9 -2019,3,10,13,30,289.0,541.6097366530556,323.0,25.6,5.9 -2019,3,10,13,45,289.0,537.566228959717,323.0,25.6,5.9 -2019,3,10,14,0,867.0,742.6218135049797,114.0,25.5,3.9 -2019,3,10,14,15,867.0,724.6631513230847,114.0,25.5,3.9 -2019,3,10,14,30,867.0,703.8996020819928,114.0,25.5,3.9 -2019,3,10,14,45,867.0,680.4200784872327,114.0,25.5,3.9 -2019,3,10,15,0,757.0,575.7717629317801,104.0,24.8,6.1 -2019,3,10,15,15,757.0,550.801551404885,104.0,24.8,6.1 -2019,3,10,15,30,757.0,523.7522310467066,104.0,24.8,6.1 -2019,3,10,15,45,757.0,494.73963119970585,104.0,24.8,6.1 -2019,3,10,16,0,271.0,236.83704732009465,108.0,23.5,5.0 -2019,3,10,16,15,271.0,225.1813356948421,108.0,23.5,5.0 -2019,3,10,16,30,271.0,212.96446762872586,108.0,23.5,5.0 -2019,3,10,16,45,271.0,200.23875762637277,108.0,23.5,5.0 -2019,3,10,17,0,6.0,13.750377102546848,12.0,22.3,4.0 -2019,3,10,17,15,6.0,13.449757885873488,12.0,22.3,4.0 -2019,3,10,17,30,6.0,13.141616163330667,12.0,22.3,4.0 -2019,3,10,17,45,6.0,12.82727144508109,12.0,22.3,4.0 -2019,3,10,18,0,0.0,0.0,0.0,18.6,3.5 -2019,3,10,18,15,0.0,0.0,0.0,18.6,3.5 -2019,3,10,18,30,0.0,0.0,0.0,18.6,3.5 -2019,3,10,18,45,0.0,0.0,0.0,18.6,3.5 -2019,3,10,19,0,0.0,0.0,0.0,16.5,2.9 -2019,3,10,19,15,0.0,0.0,0.0,16.5,2.9 -2019,3,10,19,30,0.0,0.0,0.0,16.5,2.9 -2019,3,10,19,45,0.0,0.0,0.0,16.5,2.9 -2019,3,10,20,0,0.0,0.0,0.0,14.9,1.6 -2019,3,10,20,15,0.0,0.0,0.0,14.9,1.6 -2019,3,10,20,30,0.0,0.0,0.0,14.9,1.6 -2019,3,10,20,45,0.0,0.0,0.0,14.9,1.6 -2019,3,10,21,0,0.0,0.0,0.0,13.8,1.9 -2019,3,10,21,15,0.0,0.0,0.0,13.8,1.9 -2019,3,10,21,30,0.0,0.0,0.0,13.8,1.9 -2019,3,10,21,45,0.0,0.0,0.0,13.8,1.9 -2019,3,10,22,0,0.0,0.0,0.0,12.7,0.0 -2019,3,10,22,15,0.0,0.0,0.0,12.7,0.0 -2019,3,10,22,30,0.0,0.0,0.0,12.7,0.0 -2019,3,10,22,45,0.0,0.0,0.0,12.7,0.0 -2019,3,10,23,0,0.0,0.0,0.0,11.6,0.0 -2019,3,10,23,15,0.0,0.0,0.0,11.6,0.0 -2019,3,10,23,30,0.0,0.0,0.0,11.6,0.0 -2019,3,10,23,45,0.0,0.0,0.0,11.6,0.0 -2019,3,11,0,0,0.0,0.0,0.0,10.9,0.0 -2019,3,11,0,15,0.0,0.0,0.0,10.9,0.0 -2019,3,11,0,30,0.0,0.0,0.0,10.9,0.0 -2019,3,11,0,45,0.0,0.0,0.0,10.9,0.0 -2019,3,11,1,0,0.0,0.0,0.0,9.4,0.0 -2019,3,11,1,15,0.0,0.0,0.0,9.4,0.0 -2019,3,11,1,30,0.0,0.0,0.0,9.4,0.0 -2019,3,11,1,45,0.0,0.0,0.0,9.4,0.0 -2019,3,11,2,0,0.0,0.0,0.0,9.1,0.0 -2019,3,11,2,15,0.0,0.0,0.0,9.1,0.0 -2019,3,11,2,30,0.0,0.0,0.0,9.1,0.0 -2019,3,11,2,45,0.0,0.0,0.0,9.1,0.0 -2019,3,11,3,0,0.0,0.0,0.0,9.3,0.0 -2019,3,11,3,15,0.0,0.0,0.0,9.3,0.0 -2019,3,11,3,30,0.0,0.0,0.0,9.3,0.0 -2019,3,11,3,45,0.0,0.0,0.0,9.3,0.0 -2019,3,11,4,0,0.0,0.0,0.0,9.3,0.2 -2019,3,11,4,15,0.0,0.0,0.0,9.3,0.2 -2019,3,11,4,30,0.0,0.0,0.0,9.3,0.2 -2019,3,11,4,45,0.0,0.0,0.0,9.3,0.2 -2019,3,11,5,0,0.0,0.0,0.0,8.0,1.6 -2019,3,11,5,15,0.0,0.0,0.0,8.0,1.6 -2019,3,11,5,30,0.0,0.0,0.0,8.0,1.6 -2019,3,11,5,45,0.0,0.0,0.0,8.0,1.6 -2019,3,11,6,0,1.0,10.816712191177213,11.0,9.5,1.6 -2019,3,11,6,15,1.0,10.870527163297991,11.0,9.5,1.6 -2019,3,11,6,30,1.0,10.924693724093286,11.0,9.5,1.6 -2019,3,11,6,45,1.0,10.978979924033972,11.0,9.5,1.6 -2019,3,11,7,0,1.0,39.033153301277736,39.0,10.7,2.2 -2019,3,11,7,15,1.0,39.08698187710637,39.0,10.7,2.2 -2019,3,11,7,30,1.0,39.14023514929426,39.0,10.7,2.2 -2019,3,11,7,45,1.0,39.19268507915431,39.0,10.7,2.2 -2019,3,11,8,0,1.0,80.24410706803461,80.0,11.4,0.3 -2019,3,11,8,15,1.0,80.2942809190843,80.0,11.4,0.3 -2019,3,11,8,30,1.0,80.34299178017038,80.0,11.4,0.3 -2019,3,11,8,45,1.0,80.39003106390744,80.0,11.4,0.3 -2019,3,11,9,0,269.0,392.06808469158676,275.0,13.1,0.3 -2019,3,11,9,15,269.0,403.6619473645904,275.0,13.1,0.3 -2019,3,11,9,30,269.0,414.6502975102235,275.0,13.1,0.3 -2019,3,11,9,45,269.0,424.98608132620024,275.0,13.1,0.3 -2019,3,11,10,0,600.0,585.0409800731052,229.0,15.7,2.6 -2019,3,11,10,15,600.0,604.8941923383196,229.0,15.7,2.6 -2019,3,11,10,30,600.0,623.0160676300525,229.0,15.7,2.6 -2019,3,11,10,45,600.0,639.3290052961837,229.0,15.7,2.6 -2019,3,11,11,0,750.0,722.953938541524,192.0,16.9,2.7 -2019,3,11,11,15,750.0,738.5708687674988,192.0,16.9,2.7 -2019,3,11,11,30,750.0,751.6951732053717,192.0,16.9,2.7 -2019,3,11,11,45,750.0,762.2706515686597,192.0,16.9,2.7 -2019,3,11,12,0,849.0,809.5812844161118,155.0,18.4,3.4 -2019,3,11,12,15,849.0,815.6409677314929,155.0,18.4,3.4 -2019,3,11,12,30,849.0,818.6994790276103,155.0,18.4,3.4 -2019,3,11,12,45,849.0,818.7437212895427,155.0,18.4,3.4 -2019,3,11,13,0,777.0,772.7361760136723,168.0,19.1,2.2 -2019,3,11,13,15,777.0,767.2706758393931,168.0,19.1,2.2 -2019,3,11,13,30,777.0,759.0814046974982,168.0,19.1,2.2 -2019,3,11,13,45,777.0,748.2034303042569,168.0,19.1,2.2 -2019,3,11,14,0,858.0,742.7584303914554,117.0,20.5,3.2 -2019,3,11,14,15,858.0,724.9752778510858,117.0,20.5,3.2 -2019,3,11,14,30,858.0,704.4146503559007,117.0,20.5,3.2 -2019,3,11,14,45,858.0,681.1645916693594,117.0,20.5,3.2 -2019,3,11,15,0,706.0,558.9571229034887,116.0,19.8,4.2 -2019,3,11,15,15,706.0,535.6548853545246,116.0,19.8,4.2 -2019,3,11,15,30,706.0,510.4124204340571,116.0,19.8,4.2 -2019,3,11,15,45,706.0,483.33782025216937,116.0,19.8,4.2 -2019,3,11,16,0,473.0,317.8169144430767,91.0,18.4,4.7 -2019,3,11,16,15,473.0,297.46069020890866,91.0,18.4,4.7 -2019,3,11,16,30,473.0,276.12442917321926,91.0,18.4,4.7 -2019,3,11,16,45,473.0,253.89949648136556,91.0,18.4,4.7 -2019,3,11,17,0,181.0,81.527425687098,28.0,16.9,5.0 -2019,3,11,17,15,181.0,72.45317766076138,28.0,16.9,5.0 -2019,3,11,17,30,181.0,63.15186136914739,28.0,16.9,5.0 -2019,3,11,17,45,181.0,53.66330647658072,28.0,16.9,5.0 -2019,3,11,18,0,0.0,0.0,0.0,14.8,4.4 -2019,3,11,18,15,0.0,0.0,0.0,14.8,4.4 -2019,3,11,18,30,0.0,0.0,0.0,14.8,4.4 -2019,3,11,18,45,0.0,0.0,0.0,14.8,4.4 -2019,3,11,19,0,0.0,0.0,0.0,13.2,2.5 -2019,3,11,19,15,0.0,0.0,0.0,13.2,2.5 -2019,3,11,19,30,0.0,0.0,0.0,13.2,2.5 -2019,3,11,19,45,0.0,0.0,0.0,13.2,2.5 -2019,3,11,20,0,0.0,0.0,0.0,12.1,1.9 -2019,3,11,20,15,0.0,0.0,0.0,12.1,1.9 -2019,3,11,20,30,0.0,0.0,0.0,12.1,1.9 -2019,3,11,20,45,0.0,0.0,0.0,12.1,1.9 -2019,3,11,21,0,0.0,0.0,0.0,11.6,0.2 -2019,3,11,21,15,0.0,0.0,0.0,11.6,0.2 -2019,3,11,21,30,0.0,0.0,0.0,11.6,0.2 -2019,3,11,21,45,0.0,0.0,0.0,11.6,0.2 -2019,3,11,22,0,0.0,0.0,0.0,11.0,1.3 -2019,3,11,22,15,0.0,0.0,0.0,11.0,1.3 -2019,3,11,22,30,0.0,0.0,0.0,11.0,1.3 -2019,3,11,22,45,0.0,0.0,0.0,11.0,1.3 -2019,3,11,23,0,0.0,0.0,0.0,10.0,0.0 -2019,3,11,23,15,0.0,0.0,0.0,10.0,0.0 -2019,3,11,23,30,0.0,0.0,0.0,10.0,0.0 -2019,3,11,23,45,0.0,0.0,0.0,10.0,0.0 -2019,3,12,0,0,0.0,0.0,0.0,9.7,0.0 -2019,3,12,0,15,0.0,0.0,0.0,9.7,0.0 -2019,3,12,0,30,0.0,0.0,0.0,9.7,0.0 -2019,3,12,0,45,0.0,0.0,0.0,9.7,0.0 -2019,3,12,1,0,0.0,0.0,0.0,9.5,0.0 -2019,3,12,1,15,0.0,0.0,0.0,9.5,0.0 -2019,3,12,1,30,0.0,0.0,0.0,9.5,0.0 -2019,3,12,1,45,0.0,0.0,0.0,9.5,0.0 -2019,3,12,2,0,0.0,0.0,0.0,10.0,0.0 -2019,3,12,2,15,0.0,0.0,0.0,10.0,0.0 -2019,3,12,2,30,0.0,0.0,0.0,10.0,0.0 -2019,3,12,2,45,0.0,0.0,0.0,10.0,0.0 -2019,3,12,3,0,0.0,0.0,0.0,10.0,0.0 -2019,3,12,3,15,0.0,0.0,0.0,10.0,0.0 -2019,3,12,3,30,0.0,0.0,0.0,10.0,0.0 -2019,3,12,3,45,0.0,0.0,0.0,10.0,0.0 -2019,3,12,4,0,0.0,0.0,0.0,10.0,0.0 -2019,3,12,4,15,0.0,0.0,0.0,10.0,0.0 -2019,3,12,4,30,0.0,0.0,0.0,10.0,0.0 -2019,3,12,4,45,0.0,0.0,0.0,10.0,0.0 -2019,3,12,5,0,0.0,0.0,0.0,10.0,0.0 -2019,3,12,5,15,0.0,0.0,0.0,10.0,0.0 -2019,3,12,5,30,0.0,0.0,0.0,10.0,0.0 -2019,3,12,5,45,0.0,0.0,0.0,10.0,0.0 -2019,3,12,6,0,1.0,11.820442758516055,12.0,10.1,0.0 -2019,3,12,6,15,1.0,11.87428831908163,12.0,10.1,0.0 -2019,3,12,6,30,1.0,11.928485668164823,12.0,10.1,0.0 -2019,3,12,6,45,1.0,11.98280272439633,12.0,10.1,0.0 -2019,3,12,7,0,1.0,39.03700689380246,39.0,10.7,0.0 -2019,3,12,7,15,1.0,39.09086606580824,39.0,10.7,0.0 -2019,3,12,7,30,1.0,39.14414960717054,39.0,10.7,0.0 -2019,3,12,7,45,1.0,39.196629349585,39.0,10.7,0.0 -2019,3,12,8,0,0.0,65.0,65.0,11.2,0.0 -2019,3,12,8,15,0.0,65.0,65.0,11.2,0.0 -2019,3,12,8,30,0.0,65.0,65.0,11.2,0.0 -2019,3,12,8,45,0.0,65.0,65.0,11.2,0.0 -2019,3,12,9,0,0.0,86.0,86.0,11.8,0.5 -2019,3,12,9,15,0.0,86.0,86.0,11.8,0.5 -2019,3,12,9,30,0.0,86.0,86.0,11.8,0.5 -2019,3,12,9,45,0.0,86.0,86.0,11.8,0.5 -2019,3,12,10,0,402.0,536.224615856323,296.0,13.7,1.6 -2019,3,12,10,15,402.0,549.5338287367572,296.0,13.7,1.6 -2019,3,12,10,30,402.0,561.6823865030462,296.0,13.7,1.6 -2019,3,12,10,45,402.0,572.6182671657542,296.0,13.7,1.6 -2019,3,12,11,0,729.0,720.1761038060396,201.0,16.8,2.1 -2019,3,12,11,15,729.0,735.3643881063908,201.0,16.8,2.1 -2019,3,12,11,30,729.0,748.1284630021875,201.0,16.8,2.1 -2019,3,12,11,45,729.0,758.4136707651495,201.0,16.8,2.1 -2019,3,12,12,0,64.0,415.6176433300738,366.0,18.0,2.1 -2019,3,12,12,15,64.0,416.07469888840797,366.0,18.0,2.1 -2019,3,12,12,30,64.0,416.3053890937146,366.0,18.0,2.1 -2019,3,12,12,45,64.0,416.3087260951183,366.0,18.0,2.1 -2019,3,12,13,0,294.0,555.0765704265882,325.0,19.6,2.2 -2019,3,12,13,15,294.0,553.0073678664552,325.0,19.6,2.2 -2019,3,12,13,30,294.0,549.906963462083,325.0,19.6,2.2 -2019,3,12,13,45,294.0,545.7886336211138,325.0,19.6,2.2 -2019,3,12,14,0,908.0,770.0828993438078,104.0,21.0,3.2 -2019,3,12,14,15,908.0,751.2527355627881,104.0,21.0,3.2 -2019,3,12,14,30,908.0,729.4815685947278,104.0,21.0,3.2 -2019,3,12,14,45,908.0,704.8626259189547,104.0,21.0,3.2 -2019,3,12,15,0,839.0,618.9202814510301,89.0,21.0,3.7 -2019,3,12,15,15,839.0,591.2125054495557,89.0,21.0,3.7 -2019,3,12,15,30,839.0,561.1976812391448,89.0,21.0,3.7 -2019,3,12,15,45,839.0,529.0043369050263,89.0,21.0,3.7 -2019,3,12,16,0,573.0,357.12324038521956,80.0,19.9,4.2 -2019,3,12,16,15,573.0,332.44935798952514,80.0,19.9,4.2 -2019,3,12,16,30,573.0,306.5875680277703,80.0,19.9,4.2 -2019,3,12,16,45,573.0,279.64861465494533,80.0,19.9,4.2 -2019,3,12,17,0,292.0,114.52246691919669,27.0,19.1,4.5 -2019,3,12,17,15,292.0,99.87502767740526,27.0,19.1,4.5 -2019,3,12,17,30,292.0,84.8610601448138,27.0,19.1,4.5 -2019,3,12,17,45,292.0,69.54485643538295,27.0,19.1,4.5 -2019,3,12,18,0,0.0,0.0,0.0,16.9,3.6 -2019,3,12,18,15,0.0,0.0,0.0,16.9,3.6 -2019,3,12,18,30,0.0,0.0,0.0,16.9,3.6 -2019,3,12,18,45,0.0,0.0,0.0,16.9,3.6 -2019,3,12,19,0,0.0,0.0,0.0,14.2,3.4 -2019,3,12,19,15,0.0,0.0,0.0,14.2,3.4 -2019,3,12,19,30,0.0,0.0,0.0,14.2,3.4 -2019,3,12,19,45,0.0,0.0,0.0,14.2,3.4 -2019,3,12,20,0,0.0,0.0,0.0,12.7,1.3 -2019,3,12,20,15,0.0,0.0,0.0,12.7,1.3 -2019,3,12,20,30,0.0,0.0,0.0,12.7,1.3 -2019,3,12,20,45,0.0,0.0,0.0,12.7,1.3 -2019,3,12,21,0,0.0,0.0,0.0,11.6,0.2 -2019,3,12,21,15,0.0,0.0,0.0,11.6,0.2 -2019,3,12,21,30,0.0,0.0,0.0,11.6,0.2 -2019,3,12,21,45,0.0,0.0,0.0,11.6,0.2 -2019,3,12,22,0,0.0,0.0,0.0,11.0,1.3 -2019,3,12,22,15,0.0,0.0,0.0,11.0,1.3 -2019,3,12,22,30,0.0,0.0,0.0,11.0,1.3 -2019,3,12,22,45,0.0,0.0,0.0,11.0,1.3 -2019,3,12,23,0,0.0,0.0,0.0,10.5,0.0 -2019,3,12,23,15,0.0,0.0,0.0,10.5,0.0 -2019,3,12,23,30,0.0,0.0,0.0,10.5,0.0 -2019,3,12,23,45,0.0,0.0,0.0,10.5,0.0 -2019,3,13,0,0,0.0,0.0,0.0,9.9,0.0 -2019,3,13,0,15,0.0,0.0,0.0,9.9,0.0 -2019,3,13,0,30,0.0,0.0,0.0,9.9,0.0 -2019,3,13,0,45,0.0,0.0,0.0,9.9,0.0 -2019,3,13,1,0,0.0,0.0,0.0,9.0,0.0 -2019,3,13,1,15,0.0,0.0,0.0,9.0,0.0 -2019,3,13,1,30,0.0,0.0,0.0,9.0,0.0 -2019,3,13,1,45,0.0,0.0,0.0,9.0,0.0 -2019,3,13,2,0,0.0,0.0,0.0,9.5,0.0 -2019,3,13,2,15,0.0,0.0,0.0,9.5,0.0 -2019,3,13,2,30,0.0,0.0,0.0,9.5,0.0 -2019,3,13,2,45,0.0,0.0,0.0,9.5,0.0 -2019,3,13,3,0,0.0,0.0,0.0,10.1,0.0 -2019,3,13,3,15,0.0,0.0,0.0,10.1,0.0 -2019,3,13,3,30,0.0,0.0,0.0,10.1,0.0 -2019,3,13,3,45,0.0,0.0,0.0,10.1,0.0 -2019,3,13,4,0,0.0,0.0,0.0,10.5,0.2 -2019,3,13,4,15,0.0,0.0,0.0,10.5,0.2 -2019,3,13,4,30,0.0,0.0,0.0,10.5,0.2 -2019,3,13,4,45,0.0,0.0,0.0,10.5,0.2 -2019,3,13,5,0,0.0,0.0,0.0,10.0,1.3 -2019,3,13,5,15,0.0,0.0,0.0,10.0,1.3 -2019,3,13,5,30,0.0,0.0,0.0,10.0,1.3 -2019,3,13,5,45,0.0,0.0,0.0,10.0,1.3 -2019,3,13,6,0,1.0,11.824194530725666,12.0,10.0,0.0 -2019,3,13,6,15,1.0,11.878068207503626,12.0,10.0,0.0 -2019,3,13,6,30,1.0,11.932293856490496,12.0,10.0,0.0 -2019,3,13,6,45,1.0,11.986639275132442,12.0,10.0,0.0 -2019,3,13,7,0,1.0,40.040871748003575,40.0,10.1,0.2 -2019,3,13,7,15,1.0,40.09475904332915,40.0,10.1,0.2 -2019,3,13,7,30,1.0,40.14807040743764,40.0,10.1,0.2 -2019,3,13,7,45,1.0,40.20057755288344,40.0,10.1,0.2 -2019,3,13,8,0,0.0,66.0,66.0,10.8,0.8 -2019,3,13,8,15,0.0,66.0,66.0,10.8,0.8 -2019,3,13,8,30,0.0,66.0,66.0,10.8,0.8 -2019,3,13,8,45,0.0,66.0,66.0,10.8,0.8 -2019,3,13,9,0,0.0,87.0,87.0,11.2,0.2 -2019,3,13,9,15,0.0,87.0,87.0,11.2,0.2 -2019,3,13,9,30,0.0,87.0,87.0,11.2,0.2 -2019,3,13,9,45,0.0,87.0,87.0,11.2,0.2 -2019,3,13,10,0,0.0,101.0,101.0,11.9,1.8 -2019,3,13,10,15,0.0,101.0,101.0,11.9,1.8 -2019,3,13,10,30,0.0,101.0,101.0,11.9,1.8 -2019,3,13,10,45,0.0,101.0,101.0,11.9,1.8 -2019,3,13,11,0,73.0,424.2966983756147,372.0,13.5,1.9 -2019,3,13,11,15,73.0,425.8184044119696,372.0,13.5,1.9 -2019,3,13,11,30,73.0,427.0972302117323,372.0,13.5,1.9 -2019,3,13,11,45,73.0,428.1276996464993,372.0,13.5,1.9 -2019,3,13,12,0,666.0,745.1643350489725,226.0,15.4,2.1 -2019,3,13,12,15,666.0,749.923052987189,226.0,15.4,2.1 -2019,3,13,12,30,666.0,752.3249264534356,226.0,15.4,2.1 -2019,3,13,12,45,666.0,752.3596702567875,226.0,15.4,2.1 -2019,3,13,13,0,957.0,861.9939471281236,109.0,18.4,2.1 -2019,3,13,13,15,957.0,855.2549646342904,109.0,18.4,2.1 -2019,3,13,13,30,957.0,845.1575621820507,109.0,18.4,2.1 -2019,3,13,13,45,957.0,831.7449783988865,109.0,18.4,2.1 -2019,3,13,14,0,949.0,793.172247626209,93.0,19.0,2.2 -2019,3,13,14,15,949.0,773.481546736988,93.0,19.0,2.2 -2019,3,13,14,30,949.0,750.7154390300824,93.0,19.0,2.2 -2019,3,13,14,45,949.0,724.97141247381,93.0,19.0,2.2 -2019,3,13,15,0,874.0,637.6758523366328,82.0,19.5,2.7 -2019,3,13,15,15,874.0,608.7971380820038,82.0,19.5,2.7 -2019,3,13,15,30,874.0,577.5138791250506,82.0,19.5,2.7 -2019,3,13,15,45,874.0,543.9600351833205,82.0,19.5,2.7 -2019,3,13,16,0,545.0,349.81488842960994,84.0,18.8,3.7 -2019,3,13,16,15,545.0,326.3344563465695,84.0,18.8,3.7 -2019,3,13,16,30,545.0,301.72357456459224,84.0,18.8,3.7 -2019,3,13,16,45,545.0,276.08763065779993,84.0,18.8,3.7 -2019,3,13,17,0,314.0,123.37326628539952,28.0,18.0,4.6 -2019,3,13,17,15,314.0,107.61402824224508,28.0,18.0,4.6 -2019,3,13,17,30,314.0,91.46044095558673,28.0,18.0,4.6 -2019,3,13,17,45,314.0,74.98167656612975,28.0,18.0,4.6 -2019,3,13,18,0,0.0,0.0,0.0,15.3,4.5 -2019,3,13,18,15,0.0,0.0,0.0,15.3,4.5 -2019,3,13,18,30,0.0,0.0,0.0,15.3,4.5 -2019,3,13,18,45,0.0,0.0,0.0,15.3,4.5 -2019,3,13,19,0,0.0,0.0,0.0,13.2,3.5 -2019,3,13,19,15,0.0,0.0,0.0,13.2,3.5 -2019,3,13,19,30,0.0,0.0,0.0,13.2,3.5 -2019,3,13,19,45,0.0,0.0,0.0,13.2,3.5 -2019,3,13,20,0,0.0,0.0,0.0,12.1,2.5 -2019,3,13,20,15,0.0,0.0,0.0,12.1,2.5 -2019,3,13,20,30,0.0,0.0,0.0,12.1,2.5 -2019,3,13,20,45,0.0,0.0,0.0,12.1,2.5 -2019,3,13,21,0,0.0,0.0,0.0,11.0,1.3 -2019,3,13,21,15,0.0,0.0,0.0,11.0,1.3 -2019,3,13,21,30,0.0,0.0,0.0,11.0,1.3 -2019,3,13,21,45,0.0,0.0,0.0,11.0,1.3 -2019,3,13,22,0,0.0,0.0,0.0,10.6,0.0 -2019,3,13,22,15,0.0,0.0,0.0,10.6,0.0 -2019,3,13,22,30,0.0,0.0,0.0,10.6,0.0 -2019,3,13,22,45,0.0,0.0,0.0,10.6,0.0 -2019,3,13,23,0,0.0,0.0,0.0,10.5,0.0 -2019,3,13,23,15,0.0,0.0,0.0,10.5,0.0 -2019,3,13,23,30,0.0,0.0,0.0,10.5,0.0 -2019,3,13,23,45,0.0,0.0,0.0,10.5,0.0 -2019,3,14,0,0,0.0,0.0,0.0,9.3,0.0 -2019,3,14,0,15,0.0,0.0,0.0,9.3,0.0 -2019,3,14,0,30,0.0,0.0,0.0,9.3,0.0 -2019,3,14,0,45,0.0,0.0,0.0,9.3,0.0 -2019,3,14,1,0,0.0,0.0,0.0,8.2,0.0 -2019,3,14,1,15,0.0,0.0,0.0,8.2,0.0 -2019,3,14,1,30,0.0,0.0,0.0,8.2,0.0 -2019,3,14,1,45,0.0,0.0,0.0,8.2,0.0 -2019,3,14,2,0,0.0,0.0,0.0,7.8,0.0 -2019,3,14,2,15,0.0,0.0,0.0,7.8,0.0 -2019,3,14,2,30,0.0,0.0,0.0,7.8,0.0 -2019,3,14,2,45,0.0,0.0,0.0,7.8,0.0 -2019,3,14,3,0,0.0,0.0,0.0,7.8,0.0 -2019,3,14,3,15,0.0,0.0,0.0,7.8,0.0 -2019,3,14,3,30,0.0,0.0,0.0,7.8,0.0 -2019,3,14,3,45,0.0,0.0,0.0,7.8,0.0 -2019,3,14,4,0,0.0,0.0,0.0,7.7,0.0 -2019,3,14,4,15,0.0,0.0,0.0,7.7,0.0 -2019,3,14,4,30,0.0,0.0,0.0,7.7,0.0 -2019,3,14,4,45,0.0,0.0,0.0,7.7,0.0 -2019,3,14,5,0,0.0,0.0,0.0,7.3,0.0 -2019,3,14,5,15,0.0,0.0,0.0,7.3,0.0 -2019,3,14,5,30,0.0,0.0,0.0,7.3,0.0 -2019,3,14,5,45,0.0,0.0,0.0,7.3,0.0 -2019,3,14,6,0,288.0,-16.545705987891523,33.0,8.6,0.2 -2019,3,14,6,15,288.0,-1.0227115808769582,33.0,8.6,0.2 -2019,3,14,6,30,288.0,14.601699008531483,33.0,8.6,0.2 -2019,3,14,6,45,288.0,30.260619655486817,33.0,8.6,0.2 -2019,3,14,7,0,497.0,116.2390181927618,94.0,10.8,1.3 -2019,3,14,7,15,497.0,143.03373503768336,94.0,10.8,1.3 -2019,3,14,7,30,497.0,169.54207800188777,94.0,10.8,1.3 -2019,3,14,7,45,497.0,195.6505342911678,94.0,10.8,1.3 -2019,3,14,8,0,619.0,297.48306007793013,139.0,12.5,0.0 -2019,3,14,8,15,619.0,328.58933305195126,139.0,12.5,0.0 -2019,3,14,8,30,619.0,358.78859641410315,139.0,12.5,0.0 -2019,3,14,8,45,619.0,387.9515322823938,139.0,12.5,0.0 -2019,3,14,9,0,688.0,477.825271754318,170.0,15.3,0.2 -2019,3,14,9,15,688.0,507.5244343341564,170.0,15.3,0.2 -2019,3,14,9,30,688.0,535.6724991046012,170.0,15.3,0.2 -2019,3,14,9,45,688.0,562.1489317309356,170.0,15.3,0.2 -2019,3,14,10,0,729.0,629.6811330967967,188.0,17.5,2.2 -2019,3,14,10,15,729.0,653.8405783329686,188.0,17.5,2.2 -2019,3,14,10,30,729.0,675.8931533943087,188.0,17.5,2.2 -2019,3,14,10,45,729.0,695.7444257688313,188.0,17.5,2.2 -2019,3,14,11,0,749.0,734.7211694872344,195.0,19.6,2.6 -2019,3,14,11,15,749.0,750.3417121694166,195.0,19.6,2.6 -2019,3,14,11,30,749.0,763.4690524776141,195.0,19.6,2.6 -2019,3,14,11,45,749.0,774.0469771252812,195.0,19.6,2.6 -2019,3,14,12,0,748.0,781.2464378928074,195.0,21.1,2.7 -2019,3,14,12,15,748.0,786.5936046638051,195.0,21.1,2.7 -2019,3,14,12,30,748.0,789.2924866218456,195.0,21.1,2.7 -2019,3,14,12,45,748.0,789.3315267400441,195.0,21.1,2.7 -2019,3,14,13,0,728.0,762.8894199323909,187.0,21.0,3.5 -2019,3,14,13,15,728.0,757.7605679378661,187.0,21.0,3.5 -2019,3,14,13,30,728.0,750.0757159955916,187.0,21.0,3.5 -2019,3,14,13,45,728.0,739.8677718213839,187.0,21.0,3.5 -2019,3,14,14,0,686.0,678.0161908186177,169.0,20.5,6.1 -2019,3,14,14,15,686.0,663.7756830427378,169.0,20.5,6.1 -2019,3,14,14,30,686.0,647.3110109292033,169.0,20.5,6.1 -2019,3,14,14,45,686.0,628.6926787317068,169.0,20.5,6.1 -2019,3,14,15,0,615.0,531.564510203119,138.0,19.7,5.1 -2019,3,14,15,15,615.0,511.2340161027679,138.0,19.7,5.1 -2019,3,14,15,30,615.0,489.21073258479964,138.0,19.7,5.1 -2019,3,14,15,45,615.0,465.58896673031404,138.0,19.7,5.1 -2019,3,14,16,0,490.0,332.9922545982407,92.0,18.5,5.1 -2019,3,14,16,15,490.0,311.8713721651137,92.0,18.5,5.1 -2019,3,14,16,30,490.0,289.7336389728797,92.0,18.5,5.1 -2019,3,14,16,45,490.0,266.67385219371397,92.0,18.5,5.1 -2019,3,14,17,0,298.0,120.70539938304638,29.0,17.6,5.0 -2019,3,14,17,15,298.0,105.74207025967979,29.0,17.6,5.0 -2019,3,14,17,30,298.0,90.40430821614657,29.0,17.6,5.0 -2019,3,14,17,45,298.0,74.7577919042131,29.0,17.6,5.0 -2019,3,14,18,0,0.0,0.0,0.0,15.9,4.0 -2019,3,14,18,15,0.0,0.0,0.0,15.9,4.0 -2019,3,14,18,30,0.0,0.0,0.0,15.9,4.0 -2019,3,14,18,45,0.0,0.0,0.0,15.9,4.0 -2019,3,14,19,0,0.0,0.0,0.0,14.3,3.0 -2019,3,14,19,15,0.0,0.0,0.0,14.3,3.0 -2019,3,14,19,30,0.0,0.0,0.0,14.3,3.0 -2019,3,14,19,45,0.0,0.0,0.0,14.3,3.0 -2019,3,14,20,0,0.0,0.0,0.0,13.2,2.3 -2019,3,14,20,15,0.0,0.0,0.0,13.2,2.3 -2019,3,14,20,30,0.0,0.0,0.0,13.2,2.3 -2019,3,14,20,45,0.0,0.0,0.0,13.2,2.3 -2019,3,14,21,0,0.0,0.0,0.0,12.7,0.0 -2019,3,14,21,15,0.0,0.0,0.0,12.7,0.0 -2019,3,14,21,30,0.0,0.0,0.0,12.7,0.0 -2019,3,14,21,45,0.0,0.0,0.0,12.7,0.0 -2019,3,14,22,0,0.0,0.0,0.0,11.6,0.2 -2019,3,14,22,15,0.0,0.0,0.0,11.6,0.2 -2019,3,14,22,30,0.0,0.0,0.0,11.6,0.2 -2019,3,14,22,45,0.0,0.0,0.0,11.6,0.2 -2019,3,14,23,0,0.0,0.0,0.0,10.6,1.5 -2019,3,14,23,15,0.0,0.0,0.0,10.6,1.5 -2019,3,14,23,30,0.0,0.0,0.0,10.6,1.5 -2019,3,14,23,45,0.0,0.0,0.0,10.6,1.5 -2019,3,15,0,0,0.0,0.0,0.0,10.1,1.5 -2019,3,15,0,15,0.0,0.0,0.0,10.1,1.5 -2019,3,15,0,30,0.0,0.0,0.0,10.1,1.5 -2019,3,15,0,45,0.0,0.0,0.0,10.1,1.5 -2019,3,15,1,0,0.0,0.0,0.0,10.6,1.6 -2019,3,15,1,15,0.0,0.0,0.0,10.6,1.6 -2019,3,15,1,30,0.0,0.0,0.0,10.6,1.6 -2019,3,15,1,45,0.0,0.0,0.0,10.6,1.6 -2019,3,15,2,0,0.0,0.0,0.0,10.6,2.0 -2019,3,15,2,15,0.0,0.0,0.0,10.6,2.0 -2019,3,15,2,30,0.0,0.0,0.0,10.6,2.0 -2019,3,15,2,45,0.0,0.0,0.0,10.6,2.0 -2019,3,15,3,0,0.0,0.0,0.0,10.6,1.5 -2019,3,15,3,15,0.0,0.0,0.0,10.6,1.5 -2019,3,15,3,30,0.0,0.0,0.0,10.6,1.5 -2019,3,15,3,45,0.0,0.0,0.0,10.6,1.5 -2019,3,15,4,0,0.0,0.0,0.0,10.5,1.3 -2019,3,15,4,15,0.0,0.0,0.0,10.5,1.3 -2019,3,15,4,30,0.0,0.0,0.0,10.5,1.3 -2019,3,15,4,45,0.0,0.0,0.0,10.5,1.3 -2019,3,15,5,0,0.0,0.0,0.0,10.1,0.0 -2019,3,15,5,15,0.0,0.0,0.0,10.1,0.0 -2019,3,15,5,30,0.0,0.0,0.0,10.1,0.0 -2019,3,15,5,45,0.0,0.0,0.0,10.1,0.0 -2019,3,15,6,0,1.0,13.831756836214577,14.0,10.7,0.0 -2019,3,15,6,15,1.0,13.885679193302064,14.0,10.7,0.0 -2019,3,15,6,30,1.0,13.939953840640909,14.0,10.7,0.0 -2019,3,15,6,45,1.0,13.994348365858812,14.0,10.7,0.0 -2019,3,15,7,0,1.0,41.048629843247994,41.0,11.2,0.0 -2019,3,15,7,15,1.0,41.10256583118882,41.0,11.2,0.0 -2019,3,15,7,30,1.0,41.15592536750054,41.0,11.2,0.0 -2019,3,15,7,45,1.0,41.20847995845675,41.0,11.2,0.0 -2019,3,15,8,0,156.0,256.56071092798175,216.0,13.1,0.0 -2019,3,15,8,15,156.0,264.4034503024949,216.0,13.1,0.0 -2019,3,15,8,30,156.0,272.0175078287517,216.0,13.1,0.0 -2019,3,15,8,45,156.0,279.37027894349313,216.0,13.1,0.0 -2019,3,15,9,0,319.0,417.02088888900136,273.0,15.9,0.2 -2019,3,15,9,15,319.0,430.7971797475708,273.0,15.9,0.2 -2019,3,15,9,30,319.0,443.85397642798426,273.0,15.9,0.2 -2019,3,15,9,45,319.0,456.1353677223406,273.0,15.9,0.2 -2019,3,15,10,0,533.0,583.1279328750286,258.0,18.5,1.6 -2019,3,15,10,15,533.0,600.7993953602561,258.0,18.5,1.6 -2019,3,15,10,30,533.0,616.9297844933506,258.0,18.5,1.6 -2019,3,15,10,45,533.0,631.4500274716615,258.0,18.5,1.6 -2019,3,15,11,0,753.0,739.745503993119,194.0,20.1,2.2 -2019,3,15,11,15,753.0,755.45618935984,194.0,20.1,2.2 -2019,3,15,11,30,753.0,768.6592846350903,194.0,20.1,2.2 -2019,3,15,11,45,753.0,779.2982521379251,194.0,20.1,2.2 -2019,3,15,12,0,778.0,797.0263234914514,184.0,21.2,3.0 -2019,3,15,12,15,778.0,802.5903294107347,184.0,21.2,3.0 -2019,3,15,12,30,778.0,805.3986568546123,184.0,21.2,3.0 -2019,3,15,12,45,778.0,805.4392801338271,184.0,21.2,3.0 -2019,3,15,13,0,834.0,813.2465669596141,150.0,22.1,2.4 -2019,3,15,13,15,834.0,807.368416574039,150.0,22.1,2.4 -2019,3,15,13,30,834.0,798.5608480468534,150.0,22.1,2.4 -2019,3,15,13,45,834.0,786.8615767386532,150.0,22.1,2.4 -2019,3,15,14,0,688.0,682.3772687038323,169.0,21.6,4.5 -2019,3,15,14,15,688.0,668.0891301605438,169.0,21.6,4.5 -2019,3,15,14,30,688.0,651.5693880326361,169.0,21.6,4.5 -2019,3,15,14,45,688.0,632.888782392058,169.0,21.6,4.5 -2019,3,15,15,0,539.0,502.15932875286757,155.0,20.7,4.3 -2019,3,15,15,15,539.0,484.3335940849809,155.0,20.7,4.3 -2019,3,15,15,30,539.0,465.0236251993665,155.0,20.7,4.3 -2019,3,15,15,45,539.0,444.312110347313,155.0,20.7,4.3 -2019,3,15,16,0,314.0,266.71122481696364,111.0,19.3,5.6 -2019,3,15,16,15,314.0,253.17082519491825,111.0,19.3,5.6 -2019,3,15,16,30,314.0,238.97853208888193,111.0,19.3,5.6 -2019,3,15,16,45,314.0,224.19511907677526,111.0,19.3,5.6 -2019,3,15,17,0,161.0,82.1888740491586,32.0,18.0,6.3 -2019,3,15,17,15,161.0,74.1011989689232,32.0,18.0,6.3 -2019,3,15,17,30,161.0,65.81114300321212,32.0,18.0,6.3 -2019,3,15,17,45,161.0,57.35420544438303,32.0,18.0,6.3 -2019,3,15,18,0,0.0,0.0,0.0,15.5,3.0 -2019,3,15,18,15,0.0,0.0,0.0,15.5,3.0 -2019,3,15,18,30,0.0,0.0,0.0,15.5,3.0 -2019,3,15,18,45,0.0,0.0,0.0,15.5,3.0 -2019,3,15,19,0,0.0,0.0,0.0,14.2,2.5 -2019,3,15,19,15,0.0,0.0,0.0,14.2,2.5 -2019,3,15,19,30,0.0,0.0,0.0,14.2,2.5 -2019,3,15,19,45,0.0,0.0,0.0,14.2,2.5 -2019,3,15,20,0,0.0,0.0,0.0,12.7,1.3 -2019,3,15,20,15,0.0,0.0,0.0,12.7,1.3 -2019,3,15,20,30,0.0,0.0,0.0,12.7,1.3 -2019,3,15,20,45,0.0,0.0,0.0,12.7,1.3 -2019,3,15,21,0,0.0,0.0,0.0,12.2,0.0 -2019,3,15,21,15,0.0,0.0,0.0,12.2,0.0 -2019,3,15,21,30,0.0,0.0,0.0,12.2,0.0 -2019,3,15,21,45,0.0,0.0,0.0,12.2,0.0 -2019,3,15,22,0,0.0,0.0,0.0,12.2,0.0 -2019,3,15,22,15,0.0,0.0,0.0,12.2,0.0 -2019,3,15,22,30,0.0,0.0,0.0,12.2,0.0 -2019,3,15,22,45,0.0,0.0,0.0,12.2,0.0 -2019,3,15,23,0,0.0,0.0,0.0,12.1,0.2 -2019,3,15,23,15,0.0,0.0,0.0,12.1,0.2 -2019,3,15,23,30,0.0,0.0,0.0,12.1,0.2 -2019,3,15,23,45,0.0,0.0,0.0,12.1,0.2 -2019,3,16,0,0,0.0,0.0,0.0,11.4,1.7 -2019,3,16,0,15,0.0,0.0,0.0,11.4,1.7 -2019,3,16,0,30,0.0,0.0,0.0,11.4,1.7 -2019,3,16,0,45,0.0,0.0,0.0,11.4,1.7 -2019,3,16,1,0,0.0,0.0,0.0,11.1,0.0 -2019,3,16,1,15,0.0,0.0,0.0,11.1,0.0 -2019,3,16,1,30,0.0,0.0,0.0,11.1,0.0 -2019,3,16,1,45,0.0,0.0,0.0,11.1,0.0 -2019,3,16,2,0,0.0,0.0,0.0,11.2,0.0 -2019,3,16,2,15,0.0,0.0,0.0,11.2,0.0 -2019,3,16,2,30,0.0,0.0,0.0,11.2,0.0 -2019,3,16,2,45,0.0,0.0,0.0,11.2,0.0 -2019,3,16,3,0,0.0,0.0,0.0,11.7,0.0 -2019,3,16,3,15,0.0,0.0,0.0,11.7,0.0 -2019,3,16,3,30,0.0,0.0,0.0,11.7,0.0 -2019,3,16,3,45,0.0,0.0,0.0,11.7,0.0 -2019,3,16,4,0,0.0,0.0,0.0,11.6,0.2 -2019,3,16,4,15,0.0,0.0,0.0,11.6,0.2 -2019,3,16,4,30,0.0,0.0,0.0,11.6,0.2 -2019,3,16,4,45,0.0,0.0,0.0,11.6,0.2 -2019,3,16,5,0,0.0,0.0,0.0,11.2,1.3 -2019,3,16,5,15,0.0,0.0,0.0,11.2,1.3 -2019,3,16,5,30,0.0,0.0,0.0,11.2,1.3 -2019,3,16,5,45,0.0,0.0,0.0,11.2,1.3 -2019,3,16,6,0,1.0,13.83556490112981,14.0,11.7,0.2 -2019,3,16,6,15,1.0,13.889507762328186,14.0,11.7,0.2 -2019,3,16,6,30,1.0,13.94380304773717,14.0,11.7,0.2 -2019,3,16,6,45,1.0,13.998218256609075,14.0,11.7,0.2 -2019,3,16,7,0,1.0,42.052520374665534,42.0,11.8,1.5 -2019,3,16,7,15,1.0,42.106476871900426,42.0,11.8,1.5 -2019,3,16,7,30,1.0,42.15985669830903,42.0,11.8,1.5 -2019,3,16,7,45,1.0,42.21243127327964,42.0,11.8,1.5 -2019,3,16,8,0,0.0,68.0,68.0,12.1,0.9 -2019,3,16,8,15,0.0,68.0,68.0,12.1,0.9 -2019,3,16,8,30,0.0,68.0,68.0,12.1,0.9 -2019,3,16,8,45,0.0,68.0,68.0,12.1,0.9 -2019,3,16,9,0,0.0,88.0,88.0,12.3,0.0 -2019,3,16,9,15,0.0,88.0,88.0,12.3,0.0 -2019,3,16,9,30,0.0,88.0,88.0,12.3,0.0 -2019,3,16,9,45,0.0,88.0,88.0,12.3,0.0 -2019,3,16,10,0,0.0,103.0,103.0,12.9,0.2 -2019,3,16,10,15,0.0,103.0,103.0,12.9,0.2 -2019,3,16,10,30,0.0,103.0,103.0,12.9,0.2 -2019,3,16,10,45,0.0,103.0,103.0,12.9,0.2 -2019,3,16,11,0,0.0,138.0,138.0,14.0,1.9 -2019,3,16,11,15,0.0,138.0,138.0,14.0,1.9 -2019,3,16,11,30,0.0,138.0,138.0,14.0,1.9 -2019,3,16,11,45,0.0,138.0,138.0,14.0,1.9 -2019,3,16,12,0,1.0,181.79212323296187,181.0,14.5,0.2 -2019,3,16,12,15,1.0,181.79927763096498,181.0,14.5,0.2 -2019,3,16,12,30,1.0,181.80288867893077,181.0,14.5,0.2 -2019,3,16,12,45,1.0,181.8029409137975,181.0,14.5,0.2 -2019,3,16,13,0,1.0,186.79943411188745,186.0,15.0,2.1 -2019,3,16,13,15,1.0,186.79238328986474,186.0,15.0,2.1 -2019,3,16,13,30,1.0,186.78181864043177,186.0,15.0,2.1 -2019,3,16,13,45,1.0,186.7677854030393,186.0,15.0,2.1 -2019,3,16,14,0,2.0,152.50068734032854,151.0,15.0,2.2 -2019,3,16,14,15,2.0,152.45913625996914,151.0,15.0,2.2 -2019,3,16,14,30,2.0,152.4110954931055,151.0,15.0,2.2 -2019,3,16,14,45,2.0,152.3567707576767,151.0,15.0,2.2 -2019,3,16,15,0,3.0,108.9445920208099,107.0,15.1,3.0 -2019,3,16,15,15,3.0,108.8453387019899,107.0,15.1,3.0 -2019,3,16,15,30,3.0,108.73782119800389,107.0,15.1,3.0 -2019,3,16,15,45,3.0,108.62249991531031,107.0,15.1,3.0 -2019,3,16,16,0,2.0,47.99991245156408,47.0,15.0,2.2 -2019,3,16,16,15,2.0,47.91363507326597,47.0,15.0,2.2 -2019,3,16,16,30,2.0,47.82320392829197,47.0,15.0,2.2 -2019,3,16,16,45,2.0,47.72900625668809,47.0,15.0,2.2 -2019,3,16,17,0,1.0,12.315722713672816,12.0,14.9,1.5 -2019,3,16,17,15,1.0,12.265469605356826,12.0,14.9,1.5 -2019,3,16,17,30,1.0,12.213958994920883,12.0,14.9,1.5 -2019,3,16,17,45,1.0,12.161411458706926,12.0,14.9,1.5 -2019,3,16,18,0,0.0,0.0,0.0,14.4,1.6 -2019,3,16,18,15,0.0,0.0,0.0,14.4,1.6 -2019,3,16,18,30,0.0,0.0,0.0,14.4,1.6 -2019,3,16,18,45,0.0,0.0,0.0,14.4,1.6 -2019,3,16,19,0,0.0,0.0,0.0,14.3,2.2 -2019,3,16,19,15,0.0,0.0,0.0,14.3,2.2 -2019,3,16,19,30,0.0,0.0,0.0,14.3,2.2 -2019,3,16,19,45,0.0,0.0,0.0,14.3,2.2 -2019,3,16,20,0,0.0,0.0,0.0,13.2,2.1 -2019,3,16,20,15,0.0,0.0,0.0,13.2,2.1 -2019,3,16,20,30,0.0,0.0,0.0,13.2,2.1 -2019,3,16,20,45,0.0,0.0,0.0,13.2,2.1 -2019,3,16,21,0,0.0,0.0,0.0,12.8,0.0 -2019,3,16,21,15,0.0,0.0,0.0,12.8,0.0 -2019,3,16,21,30,0.0,0.0,0.0,12.8,0.0 -2019,3,16,21,45,0.0,0.0,0.0,12.8,0.0 -2019,3,16,22,0,0.0,0.0,0.0,12.8,0.5 -2019,3,16,22,15,0.0,0.0,0.0,12.8,0.5 -2019,3,16,22,30,0.0,0.0,0.0,12.8,0.5 -2019,3,16,22,45,0.0,0.0,0.0,12.8,0.5 -2019,3,16,23,0,0.0,0.0,0.0,12.9,1.3 -2019,3,16,23,15,0.0,0.0,0.0,12.9,1.3 -2019,3,16,23,30,0.0,0.0,0.0,12.9,1.3 -2019,3,16,23,45,0.0,0.0,0.0,12.9,1.3 -2019,3,17,0,0,0.0,0.0,0.0,12.2,0.0 -2019,3,17,0,15,0.0,0.0,0.0,12.2,0.0 -2019,3,17,0,30,0.0,0.0,0.0,12.2,0.0 -2019,3,17,0,45,0.0,0.0,0.0,12.2,0.0 -2019,3,17,1,0,0.0,0.0,0.0,12.1,0.0 -2019,3,17,1,15,0.0,0.0,0.0,12.1,0.0 -2019,3,17,1,30,0.0,0.0,0.0,12.1,0.0 -2019,3,17,1,45,0.0,0.0,0.0,12.1,0.0 -2019,3,17,2,0,0.0,0.0,0.0,12.1,0.0 -2019,3,17,2,15,0.0,0.0,0.0,12.1,0.0 -2019,3,17,2,30,0.0,0.0,0.0,12.1,0.0 -2019,3,17,2,45,0.0,0.0,0.0,12.1,0.0 -2019,3,17,3,0,0.0,0.0,0.0,12.1,0.0 -2019,3,17,3,15,0.0,0.0,0.0,12.1,0.0 -2019,3,17,3,30,0.0,0.0,0.0,12.1,0.0 -2019,3,17,3,45,0.0,0.0,0.0,12.1,0.0 -2019,3,17,4,0,0.0,0.0,0.0,11.6,0.0 -2019,3,17,4,15,0.0,0.0,0.0,11.6,0.0 -2019,3,17,4,30,0.0,0.0,0.0,11.6,0.0 -2019,3,17,4,45,0.0,0.0,0.0,11.6,0.0 -2019,3,17,5,0,0.0,0.0,0.0,11.3,0.4 -2019,3,17,5,15,0.0,0.0,0.0,11.3,0.4 -2019,3,17,5,30,0.0,0.0,0.0,11.3,0.4 -2019,3,17,5,45,0.0,0.0,0.0,11.3,0.4 -2019,3,17,6,0,1.0,14.839389235683509,15.0,12.8,3.5 -2019,3,17,6,15,1.0,14.893350008869914,15.0,12.8,3.5 -2019,3,17,6,30,1.0,14.947663323291088,15.0,12.8,3.5 -2019,3,17,6,45,1.0,15.002096600996351,15.0,12.8,3.5 -2019,3,17,7,0,1.0,43.05641675033382,43.0,13.0,2.1 -2019,3,17,7,15,1.0,43.110391164084646,43.0,13.0,2.1 -2019,3,17,7,30,1.0,43.163788715522855,43.0,13.0,2.1 -2019,3,17,7,45,1.0,43.216380748135435,43.0,13.0,2.1 -2019,3,17,8,0,0.0,68.0,68.0,13.3,3.0 -2019,3,17,8,15,0.0,68.0,68.0,13.3,3.0 -2019,3,17,8,30,0.0,68.0,68.0,13.3,3.0 -2019,3,17,8,45,0.0,68.0,68.0,13.3,3.0 -2019,3,17,9,0,0.0,89.0,89.0,13.3,6.4 -2019,3,17,9,15,0.0,89.0,89.0,13.3,6.4 -2019,3,17,9,30,0.0,89.0,89.0,13.3,6.4 -2019,3,17,9,45,0.0,89.0,89.0,13.3,6.4 -2019,3,17,10,0,0.0,103.0,103.0,11.6,11.2 -2019,3,17,10,15,0.0,103.0,103.0,11.6,11.2 -2019,3,17,10,30,0.0,103.0,103.0,11.6,11.2 -2019,3,17,10,45,0.0,103.0,103.0,11.6,11.2 -2019,3,17,11,0,0.0,112.0,112.0,11.9,4.1 -2019,3,17,11,15,0.0,112.0,112.0,11.9,4.1 -2019,3,17,11,30,0.0,112.0,112.0,11.9,4.1 -2019,3,17,11,45,0.0,112.0,112.0,11.9,4.1 -2019,3,17,12,0,0.0,143.0,143.0,11.4,5.1 -2019,3,17,12,15,0.0,143.0,143.0,11.4,5.1 -2019,3,17,12,30,0.0,143.0,143.0,11.4,5.1 -2019,3,17,12,45,0.0,143.0,143.0,11.4,5.1 -2019,3,17,13,0,0.0,147.0,147.0,10.0,7.2 -2019,3,17,13,15,0.0,147.0,147.0,10.0,7.2 -2019,3,17,13,30,0.0,147.0,147.0,10.0,7.2 -2019,3,17,13,45,0.0,147.0,147.0,10.0,7.2 -2019,3,17,14,0,1.0,137.7544717614338,137.0,8.9,5.0 -2019,3,17,14,15,1.0,137.73368932263546,137.0,8.9,5.0 -2019,3,17,14,30,1.0,137.70966096311912,137.0,8.9,5.0 -2019,3,17,14,45,1.0,137.6824895760091,137.0,8.9,5.0 -2019,3,17,15,0,2.0,104.30458302671293,103.0,8.7,4.1 -2019,3,17,15,15,2.0,104.23839217580314,103.0,8.7,4.1 -2019,3,17,15,30,2.0,104.16669003867423,103.0,8.7,4.1 -2019,3,17,15,45,2.0,104.08978365488531,103.0,8.7,4.1 -2019,3,17,16,0,2.0,48.008002349378614,47.0,9.0,4.4 -2019,3,17,16,15,2.0,47.92169632225964,47.0,9.0,4.4 -2019,3,17,16,30,2.0,47.83123514918646,47.0,9.0,4.4 -2019,3,17,16,45,2.0,47.73700619879001,47.0,9.0,4.4 -2019,3,17,17,0,1.0,13.319706486951095,13.0,9.4,3.2 -2019,3,17,17,15,1.0,13.269436691847373,13.0,9.4,3.2 -2019,3,17,17,30,1.0,13.217908977064035,13.0,9.4,3.2 -2019,3,17,17,45,1.0,13.165343992186461,13.0,9.4,3.2 -2019,3,17,18,0,0.0,0.0,0.0,9.4,6.4 -2019,3,17,18,15,0.0,0.0,0.0,9.4,6.4 -2019,3,17,18,30,0.0,0.0,0.0,9.4,6.4 -2019,3,17,18,45,0.0,0.0,0.0,9.4,6.4 -2019,3,17,19,0,0.0,0.0,0.0,9.0,3.9 -2019,3,17,19,15,0.0,0.0,0.0,9.0,3.9 -2019,3,17,19,30,0.0,0.0,0.0,9.0,3.9 -2019,3,17,19,45,0.0,0.0,0.0,9.0,3.9 -2019,3,17,20,0,0.0,0.0,0.0,8.3,4.1 -2019,3,17,20,15,0.0,0.0,0.0,8.3,4.1 -2019,3,17,20,30,0.0,0.0,0.0,8.3,4.1 -2019,3,17,20,45,0.0,0.0,0.0,8.3,4.1 -2019,3,17,21,0,0.0,0.0,0.0,8.2,3.9 -2019,3,17,21,15,0.0,0.0,0.0,8.2,3.9 -2019,3,17,21,30,0.0,0.0,0.0,8.2,3.9 -2019,3,17,21,45,0.0,0.0,0.0,8.2,3.9 -2019,3,17,22,0,0.0,0.0,0.0,7.1,2.3 -2019,3,17,22,15,0.0,0.0,0.0,7.1,2.3 -2019,3,17,22,30,0.0,0.0,0.0,7.1,2.3 -2019,3,17,22,45,0.0,0.0,0.0,7.1,2.3 -2019,3,17,23,0,0.0,0.0,0.0,6.6,0.6 -2019,3,17,23,15,0.0,0.0,0.0,6.6,0.6 -2019,3,17,23,30,0.0,0.0,0.0,6.6,0.6 -2019,3,17,23,45,0.0,0.0,0.0,6.6,0.6 -2019,3,18,0,0,0.0,0.0,0.0,5.7,1.1 -2019,3,18,0,15,0.0,0.0,0.0,5.7,1.1 -2019,3,18,0,30,0.0,0.0,0.0,5.7,1.1 -2019,3,18,0,45,0.0,0.0,0.0,5.7,1.1 -2019,3,18,1,0,0.0,0.0,0.0,5.7,1.8 -2019,3,18,1,15,0.0,0.0,0.0,5.7,1.8 -2019,3,18,1,30,0.0,0.0,0.0,5.7,1.8 -2019,3,18,1,45,0.0,0.0,0.0,5.7,1.8 -2019,3,18,2,0,0.0,0.0,0.0,5.7,0.0 -2019,3,18,2,15,0.0,0.0,0.0,5.7,0.0 -2019,3,18,2,30,0.0,0.0,0.0,5.7,0.0 -2019,3,18,2,45,0.0,0.0,0.0,5.7,0.0 -2019,3,18,3,0,0.0,0.0,0.0,5.7,1.3 -2019,3,18,3,15,0.0,0.0,0.0,5.7,1.3 -2019,3,18,3,30,0.0,0.0,0.0,5.7,1.3 -2019,3,18,3,45,0.0,0.0,0.0,5.7,1.3 -2019,3,18,4,0,0.0,0.0,0.0,6.0,0.0 -2019,3,18,4,15,0.0,0.0,0.0,6.0,0.0 -2019,3,18,4,30,0.0,0.0,0.0,6.0,0.0 -2019,3,18,4,45,0.0,0.0,0.0,6.0,0.0 -2019,3,18,5,0,0.0,0.0,0.0,6.2,0.0 -2019,3,18,5,15,0.0,0.0,0.0,6.2,0.0 -2019,3,18,5,30,0.0,0.0,0.0,6.2,0.0 -2019,3,18,5,45,0.0,0.0,0.0,6.2,0.0 -2019,3,18,6,0,1.0,14.84322856751082,15.0,6.7,0.3 -2019,3,18,6,15,1.0,14.89720463846921,15.0,6.7,0.3 -2019,3,18,6,30,1.0,14.95153335060711,15.0,6.7,0.3 -2019,3,18,6,45,1.0,15.005982060038452,15.0,6.7,0.3 -2019,3,18,7,0,1.0,43.06031760903033,43.0,7.3,2.7 -2019,3,18,7,15,1.0,43.11430732442022,43.0,7.3,2.7 -2019,3,18,7,30,1.0,43.16772001395816,43.0,7.3,2.7 -2019,3,18,7,45,1.0,43.220326956307495,43.0,7.3,2.7 -2019,3,18,8,0,0.0,69.0,69.0,8.0,4.8 -2019,3,18,8,15,0.0,69.0,69.0,8.0,4.8 -2019,3,18,8,30,0.0,69.0,69.0,8.0,4.8 -2019,3,18,8,45,0.0,69.0,69.0,8.0,4.8 -2019,3,18,9,0,1.0,144.46356519522692,144.0,10.0,7.2 -2019,3,18,9,15,1.0,144.50679407887762,144.0,10.0,7.2 -2019,3,18,9,30,1.0,144.54776524813815,144.0,10.0,7.2 -2019,3,18,9,45,1.0,144.5863032581717,144.0,10.0,7.2 -2019,3,18,10,0,17.0,306.5781324161484,296.0,11.2,8.2 -2019,3,18,10,15,17.0,307.14232400260755,296.0,11.2,8.2 -2019,3,18,10,30,17.0,307.65731419330695,296.0,11.2,8.2 -2019,3,18,10,45,17.0,308.1208977211872,296.0,11.2,8.2 -2019,3,18,11,0,289.0,579.0285206569934,366.0,12.3,8.4 -2019,3,18,11,15,289.0,585.0642589093587,366.0,12.3,8.4 -2019,3,18,11,30,289.0,590.1366300594586,366.0,12.3,8.4 -2019,3,18,11,45,289.0,594.2239134353038,366.0,12.3,8.4 -2019,3,18,12,0,15.0,326.0056370239786,314.0,12.6,9.4 -2019,3,18,12,15,15.0,326.113019062779,314.0,12.6,9.4 -2019,3,18,12,30,15.0,326.1672181292282,314.0,12.6,9.4 -2019,3,18,12,45,15.0,326.1680021346028,314.0,12.6,9.4 -2019,3,18,13,0,6.0,247.84614708866854,243.0,11.2,7.1 -2019,3,18,13,15,6.0,247.8038161116283,243.0,11.2,7.1 -2019,3,18,13,30,6.0,247.74038919046282,243.0,11.2,7.1 -2019,3,18,13,45,6.0,247.656137928986,243.0,11.2,7.1 -2019,3,18,14,0,11.0,228.344275690729,220.0,12.1,9.7 -2019,3,18,14,15,11.0,228.11560405436617,220.0,12.1,9.7 -2019,3,18,14,30,11.0,227.8512171677724,220.0,12.1,9.7 -2019,3,18,14,45,11.0,227.5522471761855,220.0,12.1,9.7 -2019,3,18,15,0,10.0,155.56361301364376,149.0,11.4,9.3 -2019,3,18,15,15,10.0,155.2325649342212,149.0,11.4,9.3 -2019,3,18,15,30,10.0,154.87395261150957,149.0,11.4,9.3 -2019,3,18,15,45,10.0,154.4893116785299,149.0,11.4,9.3 -2019,3,18,16,0,9.0,80.57226030412751,76.0,10.5,9.6 -2019,3,18,16,15,9.0,80.1837730779497,76.0,10.5,9.6 -2019,3,18,16,30,9.0,79.77658239408763,76.0,10.5,9.6 -2019,3,18,16,45,9.0,79.35243190556263,76.0,10.5,9.6 -2019,3,18,17,0,3.0,13.971045963294449,13.0,10.0,9.7 -2019,3,18,17,15,3.0,13.820193823822185,13.0,10.0,9.7 -2019,3,18,17,30,3.0,13.66556685545788,13.0,10.0,9.7 -2019,3,18,17,45,3.0,13.507827194618839,13.0,10.0,9.7 -2019,3,18,18,0,0.0,0.0,0.0,9.9,8.8 -2019,3,18,18,15,0.0,0.0,0.0,9.9,8.8 -2019,3,18,18,30,0.0,0.0,0.0,9.9,8.8 -2019,3,18,18,45,0.0,0.0,0.0,9.9,8.8 -2019,3,18,19,0,0.0,0.0,0.0,8.9,5.3 -2019,3,18,19,15,0.0,0.0,0.0,8.9,5.3 -2019,3,18,19,30,0.0,0.0,0.0,8.9,5.3 -2019,3,18,19,45,0.0,0.0,0.0,8.9,5.3 -2019,3,18,20,0,0.0,0.0,0.0,8.8,7.3 -2019,3,18,20,15,0.0,0.0,0.0,8.8,7.3 -2019,3,18,20,30,0.0,0.0,0.0,8.8,7.3 -2019,3,18,20,45,0.0,0.0,0.0,8.8,7.3 -2019,3,18,21,0,0.0,0.0,0.0,8.3,7.9 -2019,3,18,21,15,0.0,0.0,0.0,8.3,7.9 -2019,3,18,21,30,0.0,0.0,0.0,8.3,7.9 -2019,3,18,21,45,0.0,0.0,0.0,8.3,7.9 -2019,3,18,22,0,0.0,0.0,0.0,8.2,8.7 -2019,3,18,22,15,0.0,0.0,0.0,8.2,8.7 -2019,3,18,22,30,0.0,0.0,0.0,8.2,8.7 -2019,3,18,22,45,0.0,0.0,0.0,8.2,8.7 -2019,3,18,23,0,0.0,0.0,0.0,7.7,4.0 -2019,3,18,23,15,0.0,0.0,0.0,7.7,4.0 -2019,3,18,23,30,0.0,0.0,0.0,7.7,4.0 -2019,3,18,23,45,0.0,0.0,0.0,7.7,4.0 -2019,3,19,0,0,0.0,0.0,0.0,7.1,2.9 -2019,3,19,0,15,0.0,0.0,0.0,7.1,2.9 -2019,3,19,0,30,0.0,0.0,0.0,7.1,2.9 -2019,3,19,0,45,0.0,0.0,0.0,7.1,2.9 -2019,3,19,1,0,0.0,0.0,0.0,6.6,1.3 -2019,3,19,1,15,0.0,0.0,0.0,6.6,1.3 -2019,3,19,1,30,0.0,0.0,0.0,6.6,1.3 -2019,3,19,1,45,0.0,0.0,0.0,6.6,1.3 -2019,3,19,2,0,0.0,0.0,0.0,6.0,0.2 -2019,3,19,2,15,0.0,0.0,0.0,6.0,0.2 -2019,3,19,2,30,0.0,0.0,0.0,6.0,0.2 -2019,3,19,2,45,0.0,0.0,0.0,6.0,0.2 -2019,3,19,3,0,0.0,0.0,0.0,5.7,1.3 -2019,3,19,3,15,0.0,0.0,0.0,5.7,1.3 -2019,3,19,3,30,0.0,0.0,0.0,5.7,1.3 -2019,3,19,3,45,0.0,0.0,0.0,5.7,1.3 -2019,3,19,4,0,0.0,0.0,0.0,6.0,0.2 -2019,3,19,4,15,0.0,0.0,0.0,6.0,0.2 -2019,3,19,4,30,0.0,0.0,0.0,6.0,0.2 -2019,3,19,4,45,0.0,0.0,0.0,6.0,0.2 -2019,3,19,5,0,0.0,0.0,0.0,5.7,1.3 -2019,3,19,5,15,0.0,0.0,0.0,5.7,1.3 -2019,3,19,5,30,0.0,0.0,0.0,5.7,1.3 -2019,3,19,5,45,0.0,0.0,0.0,5.7,1.3 -2019,3,19,6,0,1.0,20.847081610406374,21.0,6.8,0.0 -2019,3,19,6,15,1.0,20.901070346046406,21.0,6.8,0.0 -2019,3,19,6,30,1.0,20.955411805607955,21.0,6.8,0.0 -2019,3,19,6,45,1.0,21.009873290618522,21.0,6.8,0.0 -2019,3,19,7,0,3.0,59.192664765914635,59.0,7.9,0.2 -2019,3,19,7,15,3.0,59.35467191573361,59.0,7.9,0.2 -2019,3,19,7,30,3.0,59.514947581825176,59.0,7.9,0.2 -2019,3,19,7,45,3.0,59.67280543918116,59.0,7.9,0.2 -2019,3,19,8,0,12.0,163.31027806488635,160.0,9.1,1.5 -2019,3,19,8,15,12.0,163.914308357635,160.0,9.1,1.5 -2019,3,19,8,30,12.0,164.50072608452464,160.0,9.1,1.5 -2019,3,19,8,45,12.0,165.06702011482028,160.0,9.1,1.5 -2019,3,19,9,0,201.0,396.98032196663013,303.0,10.8,1.5 -2019,3,19,9,15,201.0,405.671366326259,303.0,10.8,1.5 -2019,3,19,9,30,201.0,413.9085036159048,303.0,10.8,1.5 -2019,3,19,9,45,201.0,421.6564611491051,303.0,10.8,1.5 -2019,3,19,10,0,323.0,534.2880880460461,332.0,12.3,1.6 -2019,3,19,10,15,323.0,545.0102433927734,332.0,12.3,1.6 -2019,3,19,10,30,323.0,554.7973528769362,332.0,12.3,1.6 -2019,3,19,10,45,323.0,563.6075065931791,332.0,12.3,1.6 -2019,3,19,11,0,450.0,648.533560835382,315.0,13.4,2.5 -2019,3,19,11,15,450.0,657.9339743365178,315.0,13.4,2.5 -2019,3,19,11,30,450.0,665.8339832912609,315.0,13.4,2.5 -2019,3,19,11,45,450.0,672.1997586484354,315.0,13.4,2.5 -2019,3,19,12,0,644.0,758.0680056007815,240.0,14.5,2.1 -2019,3,19,12,15,644.0,762.6793561975813,240.0,14.5,2.1 -2019,3,19,12,30,644.0,765.00684876718,240.0,14.5,2.1 -2019,3,19,12,45,644.0,765.040516629071,240.0,14.5,2.1 -2019,3,19,13,0,952.0,884.8055361225321,112.0,15.6,1.9 -2019,3,19,13,15,952.0,878.0874451685341,112.0,15.6,1.9 -2019,3,19,13,30,952.0,868.0213457039123,112.0,15.6,1.9 -2019,3,19,13,45,952.0,854.6503423119502,112.0,15.6,1.9 -2019,3,19,14,0,470.0,595.4400158513711,237.0,15.6,0.0 -2019,3,19,14,15,470.0,585.6672079735022,237.0,15.6,0.0 -2019,3,19,14,30,470.0,574.3680268017314,237.0,15.6,0.0 -2019,3,19,14,45,470.0,561.5908571645182,237.0,15.6,0.0 -2019,3,19,15,0,408.0,454.44529457115937,185.0,15.6,0.3 -2019,3,19,15,15,408.0,440.93536377014175,185.0,15.6,0.3 -2019,3,19,15,30,408.0,426.30054796732236,185.0,15.6,0.3 -2019,3,19,15,45,408.0,410.60351569074675,185.0,15.6,0.3 -2019,3,19,16,0,244.0,245.9372600646176,121.0,14.9,3.2 -2019,3,19,16,15,244.0,235.4024684582611,121.0,14.9,3.2 -2019,3,19,16,30,244.0,224.36048635567994,121.0,14.9,3.2 -2019,3,19,16,45,244.0,212.85859721943325,121.0,14.9,3.2 -2019,3,19,17,0,110.0,72.04125380945287,36.0,14.1,5.5 -2019,3,19,17,15,110.0,66.50871087113379,36.0,14.1,5.5 -2019,3,19,17,30,110.0,60.83772506416811,36.0,14.1,5.5 -2019,3,19,17,45,110.0,55.0525804204068,36.0,14.1,5.5 -2019,3,19,18,0,0.0,0.0,0.0,12.0,4.1 -2019,3,19,18,15,0.0,0.0,0.0,12.0,4.1 -2019,3,19,18,30,0.0,0.0,0.0,12.0,4.1 -2019,3,19,18,45,0.0,0.0,0.0,12.0,4.1 -2019,3,19,19,0,0.0,0.0,0.0,10.5,3.9 -2019,3,19,19,15,0.0,0.0,0.0,10.5,3.9 -2019,3,19,19,30,0.0,0.0,0.0,10.5,3.9 -2019,3,19,19,45,0.0,0.0,0.0,10.5,3.9 -2019,3,19,20,0,0.0,0.0,0.0,9.9,2.0 -2019,3,19,20,15,0.0,0.0,0.0,9.9,2.0 -2019,3,19,20,30,0.0,0.0,0.0,9.9,2.0 -2019,3,19,20,45,0.0,0.0,0.0,9.9,2.0 -2019,3,19,21,0,0.0,0.0,0.0,9.3,1.3 -2019,3,19,21,15,0.0,0.0,0.0,9.3,1.3 -2019,3,19,21,30,0.0,0.0,0.0,9.3,1.3 -2019,3,19,21,45,0.0,0.0,0.0,9.3,1.3 -2019,3,19,22,0,0.0,0.0,0.0,8.8,0.0 -2019,3,19,22,15,0.0,0.0,0.0,8.8,0.0 -2019,3,19,22,30,0.0,0.0,0.0,8.8,0.0 -2019,3,19,22,45,0.0,0.0,0.0,8.8,0.0 -2019,3,19,23,0,0.0,0.0,0.0,8.2,0.2 -2019,3,19,23,15,0.0,0.0,0.0,8.2,0.2 -2019,3,19,23,30,0.0,0.0,0.0,8.2,0.2 -2019,3,19,23,45,0.0,0.0,0.0,8.2,0.2 -2019,3,20,0,0,0.0,0.0,0.0,7.7,1.3 -2019,3,20,0,15,0.0,0.0,0.0,7.7,1.3 -2019,3,20,0,30,0.0,0.0,0.0,7.7,1.3 -2019,3,20,0,45,0.0,0.0,0.0,7.7,1.3 -2019,3,20,1,0,0.0,0.0,0.0,6.6,0.0 -2019,3,20,1,15,0.0,0.0,0.0,6.6,0.0 -2019,3,20,1,30,0.0,0.0,0.0,6.6,0.0 -2019,3,20,1,45,0.0,0.0,0.0,6.6,0.0 -2019,3,20,2,0,0.0,0.0,0.0,6.0,0.0 -2019,3,20,2,15,0.0,0.0,0.0,6.0,0.0 -2019,3,20,2,30,0.0,0.0,0.0,6.0,0.0 -2019,3,20,2,45,0.0,0.0,0.0,6.0,0.0 -2019,3,20,3,0,0.0,0.0,0.0,5.1,0.0 -2019,3,20,3,15,0.0,0.0,0.0,5.1,0.0 -2019,3,20,3,30,0.0,0.0,0.0,5.1,0.0 -2019,3,20,3,45,0.0,0.0,0.0,5.1,0.0 -2019,3,20,4,0,0.0,0.0,0.0,5.6,0.2 -2019,3,20,4,15,0.0,0.0,0.0,5.6,0.2 -2019,3,20,4,30,0.0,0.0,0.0,5.6,0.2 -2019,3,20,4,45,0.0,0.0,0.0,5.6,0.2 -2019,3,20,5,0,0.0,0.0,0.0,5.7,1.3 -2019,3,20,5,15,0.0,0.0,0.0,5.7,1.3 -2019,3,20,5,30,0.0,0.0,0.0,5.7,1.3 -2019,3,20,5,45,0.0,0.0,0.0,5.7,1.3 -2019,3,20,6,0,221.0,12.059301399274702,45.0,7.0,0.0 -2019,3,20,6,15,221.0,23.99302550328095,45.0,7.0,0.0 -2019,3,20,6,30,221.0,36.00471605555332,45.0,7.0,0.0 -2019,3,20,6,45,221.0,48.042937153078725,45.0,7.0,0.0 -2019,3,20,7,0,268.0,148.2581236577992,130.0,9.7,0.0 -2019,3,20,7,15,268.0,162.73344733127456,130.0,9.7,0.0 -2019,3,20,7,30,268.0,177.05406309576176,130.0,9.7,0.0 -2019,3,20,7,45,268.0,191.15864787601643,130.0,9.7,0.0 -2019,3,20,8,0,427.0,309.47524316816714,190.0,12.5,0.0 -2019,3,20,8,15,427.0,330.9726418648101,190.0,12.5,0.0 -2019,3,20,8,30,427.0,351.8432104920222,190.0,12.5,0.0 -2019,3,20,8,45,427.0,371.99757807083387,190.0,12.5,0.0 -2019,3,20,9,0,655.0,496.8615539364216,188.0,15.3,0.0 -2019,3,20,9,15,655.0,525.1883706032331,188.0,15.3,0.0 -2019,3,20,9,30,655.0,552.0357629542623,188.0,15.3,0.0 -2019,3,20,9,45,655.0,577.2887663337754,188.0,15.3,0.0 -2019,3,20,10,0,808.0,674.2734484756438,165.0,17.5,0.0 -2019,3,20,10,15,808.0,701.1004106068987,165.0,17.5,0.0 -2019,3,20,10,30,808.0,725.5878767007588,165.0,17.5,0.0 -2019,3,20,10,45,808.0,747.6309876680257,165.0,17.5,0.0 -2019,3,20,11,0,798.0,774.6831813312963,180.0,19.6,0.0 -2019,3,20,11,15,798.0,791.356340561956,180.0,19.6,0.0 -2019,3,20,11,30,798.0,805.3682887821221,180.0,19.6,0.0 -2019,3,20,11,45,798.0,816.6590246783627,180.0,19.6,0.0 -2019,3,20,12,0,847.0,845.7965276309503,161.0,21.2,0.0 -2019,3,20,12,15,847.0,851.8625812956053,161.0,21.2,0.0 -2019,3,20,12,30,847.0,854.924307905824,161.0,21.2,0.0 -2019,3,20,12,45,847.0,854.9685966782168,161.0,21.2,0.0 -2019,3,20,13,0,782.0,809.9672865712663,172.0,21.8,0.4 -2019,3,20,13,15,782.0,804.4478309396247,172.0,21.8,0.4 -2019,3,20,13,30,782.0,796.1777152536193,172.0,21.8,0.4 -2019,3,20,13,45,782.0,785.1923534182689,172.0,21.8,0.4 -2019,3,20,14,0,763.0,735.971987280441,151.0,22.1,3.1 -2019,3,20,14,15,763.0,720.1038260782229,151.0,22.1,3.1 -2019,3,20,14,30,763.0,701.7572842728985,151.0,22.1,3.1 -2019,3,20,14,45,763.0,681.0109245730904,151.0,22.1,3.1 -2019,3,20,15,0,670.0,576.1623888217147,131.0,22.2,3.1 -2019,3,20,15,15,670.0,553.9728474131416,131.0,22.2,3.1 -2019,3,20,15,30,670.0,529.9357256805092,131.0,22.2,3.1 -2019,3,20,15,45,670.0,504.15395426932275,131.0,22.2,3.1 -2019,3,20,16,0,497.0,353.4653037871323,97.0,21.4,3.4 -2019,3,20,16,15,497.0,332.0031612886578,97.0,21.4,3.4 -2019,3,20,16,30,497.0,309.5077382934646,97.0,21.4,3.4 -2019,3,20,16,45,497.0,286.07536365637793,97.0,21.4,3.4 -2019,3,20,17,0,370.0,155.69287728190955,33.0,20.8,3.6 -2019,3,20,17,15,370.0,137.0799622534962,33.0,20.8,3.6 -2019,3,20,17,30,370.0,118.00128936669164,33.0,20.8,3.6 -2019,3,20,17,45,370.0,98.53855642780827,33.0,20.8,3.6 -2019,3,20,18,0,0.0,0.0,0.0,18.0,3.6 -2019,3,20,18,15,0.0,0.0,0.0,18.0,3.6 -2019,3,20,18,30,0.0,0.0,0.0,18.0,3.6 -2019,3,20,18,45,0.0,0.0,0.0,18.0,3.6 -2019,3,20,19,0,0.0,0.0,0.0,15.9,3.5 -2019,3,20,19,15,0.0,0.0,0.0,15.9,3.5 -2019,3,20,19,30,0.0,0.0,0.0,15.9,3.5 -2019,3,20,19,45,0.0,0.0,0.0,15.9,3.5 -2019,3,20,20,0,0.0,0.0,0.0,14.4,2.7 -2019,3,20,20,15,0.0,0.0,0.0,14.4,2.7 -2019,3,20,20,30,0.0,0.0,0.0,14.4,2.7 -2019,3,20,20,45,0.0,0.0,0.0,14.4,2.7 -2019,3,20,21,0,0.0,0.0,0.0,14.2,0.0 -2019,3,20,21,15,0.0,0.0,0.0,14.2,0.0 -2019,3,20,21,30,0.0,0.0,0.0,14.2,0.0 -2019,3,20,21,45,0.0,0.0,0.0,14.2,0.0 -2019,3,20,22,0,0.0,0.0,0.0,12.7,0.0 -2019,3,20,22,15,0.0,0.0,0.0,12.7,0.0 -2019,3,20,22,30,0.0,0.0,0.0,12.7,0.0 -2019,3,20,22,45,0.0,0.0,0.0,12.7,0.0 -2019,3,20,23,0,0.0,0.0,0.0,11.6,0.0 -2019,3,20,23,15,0.0,0.0,0.0,11.6,0.0 -2019,3,20,23,30,0.0,0.0,0.0,11.6,0.0 -2019,3,20,23,45,0.0,0.0,0.0,11.6,0.0 -2019,3,21,0,0,0.0,0.0,0.0,10.5,0.2 -2019,3,21,0,15,0.0,0.0,0.0,10.5,0.2 -2019,3,21,0,30,0.0,0.0,0.0,10.5,0.2 -2019,3,21,0,45,0.0,0.0,0.0,10.5,0.2 -2019,3,21,1,0,0.0,0.0,0.0,9.9,1.6 -2019,3,21,1,15,0.0,0.0,0.0,9.9,1.6 -2019,3,21,1,30,0.0,0.0,0.0,9.9,1.6 -2019,3,21,1,45,0.0,0.0,0.0,9.9,1.6 -2019,3,21,2,0,0.0,0.0,0.0,9.3,2.0 -2019,3,21,2,15,0.0,0.0,0.0,9.3,2.0 -2019,3,21,2,30,0.0,0.0,0.0,9.3,2.0 -2019,3,21,2,45,0.0,0.0,0.0,9.3,2.0 -2019,3,21,3,0,0.0,0.0,0.0,8.9,1.7 -2019,3,21,3,15,0.0,0.0,0.0,8.9,1.7 -2019,3,21,3,30,0.0,0.0,0.0,8.9,1.7 -2019,3,21,3,45,0.0,0.0,0.0,8.9,1.7 -2019,3,21,4,0,0.0,0.0,0.0,8.8,2.9 -2019,3,21,4,15,0.0,0.0,0.0,8.8,2.9 -2019,3,21,4,30,0.0,0.0,0.0,8.8,2.9 -2019,3,21,4,45,0.0,0.0,0.0,8.8,2.9 -2019,3,21,5,0,0.0,0.0,0.0,8.1,1.6 -2019,3,21,5,15,0.0,0.0,0.0,8.1,1.6 -2019,3,21,5,30,0.0,0.0,0.0,8.1,1.6 -2019,3,21,5,45,0.0,0.0,0.0,8.1,1.6 -2019,3,21,6,0,446.0,-26.748665309081844,38.0,10.4,1.9 -2019,3,21,6,15,446.0,-2.6619418187312647,38.0,10.4,1.9 -2019,3,21,6,30,446.0,21.582147156571402,38.0,10.4,1.9 -2019,3,21,6,45,446.0,45.879784705813556,38.0,10.4,1.9 -2019,3,21,7,0,723.0,126.0801939382902,74.0,13.8,0.0 -2019,3,21,7,15,723.0,165.1364793371759,74.0,13.8,0.0 -2019,3,21,7,30,723.0,203.77534289574876,74.0,13.8,0.0 -2019,3,21,7,45,723.0,241.83132706830477,74.0,13.8,0.0 -2019,3,21,8,0,865.0,337.43204951487553,92.0,17.5,0.0 -2019,3,21,8,15,865.0,380.9865755835097,92.0,17.5,0.0 -2019,3,21,8,30,865.0,423.27112071236166,92.0,17.5,0.0 -2019,3,21,8,45,865.0,464.10461598754875,92.0,17.5,0.0 -2019,3,21,9,0,946.0,548.8281468015086,99.0,19.7,0.2 -2019,3,21,9,15,946.0,589.7454269001819,99.0,19.7,0.2 -2019,3,21,9,30,946.0,628.5257206997704,99.0,19.7,0.2 -2019,3,21,9,45,946.0,665.0029650285658,99.0,19.7,0.2 -2019,3,21,10,0,994.0,730.4659968011688,100.0,21.9,1.3 -2019,3,21,10,15,994.0,763.47296758159,100.0,21.9,1.3 -2019,3,21,10,30,994.0,793.6015029667026,100.0,21.9,1.3 -2019,3,21,10,45,994.0,820.7225879425707,100.0,21.9,1.3 -2019,3,21,11,0,1015.0,859.4536088003192,99.0,23.4,0.2 -2019,3,21,11,15,1015.0,880.6635857986216,99.0,23.4,0.2 -2019,3,21,11,30,1015.0,898.4882281078386,99.0,23.4,0.2 -2019,3,21,11,45,1015.0,912.8512078731134,99.0,23.4,0.2 -2019,3,21,12,0,1014.0,922.878517141465,99.0,24.5,2.2 -2019,3,21,12,15,1014.0,930.1415823215842,99.0,24.5,2.2 -2019,3,21,12,30,1014.0,933.8074780032028,99.0,24.5,2.2 -2019,3,21,12,45,1014.0,933.8605062582131,99.0,24.5,2.2 -2019,3,21,13,0,990.0,911.6246899520432,100.0,25.7,3.2 -2019,3,21,13,15,990.0,904.6361920839355,100.0,25.7,3.2 -2019,3,21,13,30,990.0,894.164926492212,100.0,25.7,3.2 -2019,3,21,13,45,990.0,880.2557327437142,100.0,25.7,3.2 -2019,3,21,14,0,939.0,822.6637511523467,99.0,26.1,3.6 -2019,3,21,14,15,939.0,803.1326465059058,99.0,26.1,3.6 -2019,3,21,14,30,939.0,780.5510617000991,99.0,26.1,3.6 -2019,3,21,14,45,939.0,755.0156945478533,99.0,26.1,3.6 -2019,3,21,15,0,853.0,661.1527320277672,91.0,26.1,3.6 -2019,3,21,15,15,853.0,632.8986173134718,91.0,26.1,3.6 -2019,3,21,15,30,853.0,602.2919642812967,91.0,26.1,3.6 -2019,3,21,15,45,853.0,569.4638353183445,91.0,26.1,3.6 -2019,3,21,16,0,701.0,435.5157311423249,71.0,25.2,3.3 -2019,3,21,16,15,701.0,405.24005491584563,71.0,25.2,3.3 -2019,3,21,16,30,701.0,373.5067765057998,71.0,25.2,3.3 -2019,3,21,16,45,701.0,340.4517826821206,71.0,25.2,3.3 -2019,3,21,17,0,415.0,172.25092339695885,33.0,24.1,3.1 -2019,3,21,17,15,415.0,151.37143196404585,33.0,24.1,3.1 -2019,3,21,17,30,415.0,129.96946529287783,33.0,24.1,3.1 -2019,3,21,17,45,415.0,108.13666989043031,33.0,24.1,3.1 -2019,3,21,18,0,0.0,0.0,0.0,21.4,3.2 -2019,3,21,18,15,0.0,0.0,0.0,21.4,3.2 -2019,3,21,18,30,0.0,0.0,0.0,21.4,3.2 -2019,3,21,18,45,0.0,0.0,0.0,21.4,3.2 -2019,3,21,19,0,0.0,0.0,0.0,19.2,3.8 -2019,3,21,19,15,0.0,0.0,0.0,19.2,3.8 -2019,3,21,19,30,0.0,0.0,0.0,19.2,3.8 -2019,3,21,19,45,0.0,0.0,0.0,19.2,3.8 -2019,3,21,20,0,0.0,0.0,0.0,17.7,1.3 -2019,3,21,20,15,0.0,0.0,0.0,17.7,1.3 -2019,3,21,20,30,0.0,0.0,0.0,17.7,1.3 -2019,3,21,20,45,0.0,0.0,0.0,17.7,1.3 -2019,3,21,21,0,0.0,0.0,0.0,17.1,0.0 -2019,3,21,21,15,0.0,0.0,0.0,17.1,0.0 -2019,3,21,21,30,0.0,0.0,0.0,17.1,0.0 -2019,3,21,21,45,0.0,0.0,0.0,17.1,0.0 -2019,3,21,22,0,0.0,0.0,0.0,15.8,0.0 -2019,3,21,22,15,0.0,0.0,0.0,15.8,0.0 -2019,3,21,22,30,0.0,0.0,0.0,15.8,0.0 -2019,3,21,22,45,0.0,0.0,0.0,15.8,0.0 -2019,3,21,23,0,0.0,0.0,0.0,13.8,0.0 -2019,3,21,23,15,0.0,0.0,0.0,13.8,0.0 -2019,3,21,23,30,0.0,0.0,0.0,13.8,0.0 -2019,3,21,23,45,0.0,0.0,0.0,13.8,0.0 -2019,3,22,0,0,0.0,0.0,0.0,13.2,0.0 -2019,3,22,0,15,0.0,0.0,0.0,13.2,0.0 -2019,3,22,0,30,0.0,0.0,0.0,13.2,0.0 -2019,3,22,0,45,0.0,0.0,0.0,13.2,0.0 -2019,3,22,1,0,0.0,0.0,0.0,12.1,0.2 -2019,3,22,1,15,0.0,0.0,0.0,12.1,0.2 -2019,3,22,1,30,0.0,0.0,0.0,12.1,0.2 -2019,3,22,1,45,0.0,0.0,0.0,12.1,0.2 -2019,3,22,2,0,0.0,0.0,0.0,11.0,1.3 -2019,3,22,2,15,0.0,0.0,0.0,11.0,1.3 -2019,3,22,2,30,0.0,0.0,0.0,11.0,1.3 -2019,3,22,2,45,0.0,0.0,0.0,11.0,1.3 -2019,3,22,3,0,0.0,0.0,0.0,10.4,0.2 -2019,3,22,3,15,0.0,0.0,0.0,10.4,0.2 -2019,3,22,3,30,0.0,0.0,0.0,10.4,0.2 -2019,3,22,3,45,0.0,0.0,0.0,10.4,0.2 -2019,3,22,4,0,0.0,0.0,0.0,9.0,1.5 -2019,3,22,4,15,0.0,0.0,0.0,9.0,1.5 -2019,3,22,4,30,0.0,0.0,0.0,9.0,1.5 -2019,3,22,4,45,0.0,0.0,0.0,9.0,1.5 -2019,3,22,5,0,0.0,0.0,0.0,10.1,1.5 -2019,3,22,5,15,0.0,0.0,0.0,10.1,1.5 -2019,3,22,5,30,0.0,0.0,0.0,10.1,1.5 -2019,3,22,5,45,0.0,0.0,0.0,10.1,1.5 -2019,3,22,6,0,400.0,-14.51601862875333,42.0,11.5,1.3 -2019,3,22,6,15,400.0,7.088297849824592,42.0,11.5,1.3 -2019,3,22,6,30,400.0,28.833761535122903,42.0,11.5,1.3 -2019,3,22,6,45,400.0,50.62725501321678,42.0,11.5,1.3 -2019,3,22,7,0,652.0,134.51199197475322,85.0,15.0,0.0 -2019,3,22,7,15,652.0,169.73592972665335,85.0,15.0,0.0 -2019,3,22,7,30,652.0,204.5834046181124,85.0,15.0,0.0 -2019,3,22,7,45,652.0,238.90519441176374,85.0,15.0,0.0 -2019,3,22,8,0,783.0,337.2377895287425,112.0,18.6,0.0 -2019,3,22,8,15,783.0,376.66686717682876,112.0,18.6,0.0 -2019,3,22,8,30,783.0,414.9462554216293,112.0,18.6,0.0 -2019,3,22,8,45,783.0,451.91203604592096,112.0,18.6,0.0 -2019,3,22,9,0,859.0,537.8437825795677,126.0,21.3,0.2 -2019,3,22,9,15,859.0,575.0012799205593,126.0,21.3,0.2 -2019,3,22,9,30,859.0,610.2181530916528,126.0,21.3,0.2 -2019,3,22,9,45,859.0,643.3435980353372,126.0,21.3,0.2 -2019,3,22,10,0,904.0,707.9559172593837,131.0,23.0,1.6 -2019,3,22,10,15,904.0,737.9769332400019,131.0,23.0,1.6 -2019,3,22,10,30,904.0,765.3799096684116,131.0,23.0,1.6 -2019,3,22,10,45,904.0,790.0475027925648,131.0,23.0,1.6 -2019,3,22,11,0,925.0,828.690847375322,132.0,24.6,2.7 -2019,3,22,11,15,925.0,848.0218134615178,132.0,24.6,2.7 -2019,3,22,11,30,925.0,864.2673546992867,132.0,24.6,2.7 -2019,3,22,11,45,925.0,877.3579051869872,132.0,24.6,2.7 -2019,3,22,12,0,924.0,886.4209363029466,132.0,26.0,3.1 -2019,3,22,12,15,924.0,893.0399248364172,132.0,26.0,3.1 -2019,3,22,12,30,924.0,896.3807349324012,132.0,26.0,3.1 -2019,3,22,12,45,924.0,896.4290607291772,132.0,26.0,3.1 -2019,3,22,13,0,900.0,872.4136642418156,131.0,25.6,3.2 -2019,3,22,13,15,900.0,866.0599332602895,131.0,25.6,3.2 -2019,3,22,13,30,900.0,856.5397751574244,131.0,25.6,3.2 -2019,3,22,13,45,900.0,843.8939567117778,131.0,25.6,3.2 -2019,3,22,14,0,852.0,784.9938756988568,125.0,25.4,3.9 -2019,3,22,14,15,852.0,767.270824979449,125.0,25.4,3.9 -2019,3,22,14,30,852.0,746.7796863529993,125.0,25.4,3.9 -2019,3,22,14,45,852.0,723.6082060209629,125.0,25.4,3.9 -2019,3,22,15,0,771.0,627.3939831324095,109.0,24.1,6.1 -2019,3,22,15,15,771.0,601.8537579584595,109.0,24.1,6.1 -2019,3,22,15,30,771.0,574.1869625848565,109.0,24.1,6.1 -2019,3,22,15,45,771.0,544.5120704768742,109.0,24.1,6.1 -2019,3,22,16,0,630.0,411.080904110666,81.0,22.7,5.3 -2019,3,22,16,15,630.0,383.86930560393967,81.0,22.7,5.3 -2019,3,22,16,30,630.0,355.3476228862105,81.0,22.7,5.3 -2019,3,22,16,45,630.0,325.6379901816042,81.0,22.7,5.3 -2019,3,22,17,0,368.0,159.9258529540254,35.0,21.4,4.5 -2019,3,22,17,15,368.0,141.40942076237027,35.0,21.4,4.5 -2019,3,22,17,30,368.0,122.42964503804086,35.0,21.4,4.5 -2019,3,22,17,45,368.0,103.06780009451681,35.0,21.4,4.5 -2019,3,22,18,0,0.0,0.0,0.0,19.3,3.5 -2019,3,22,18,15,0.0,0.0,0.0,19.3,3.5 -2019,3,22,18,30,0.0,0.0,0.0,19.3,3.5 -2019,3,22,18,45,0.0,0.0,0.0,19.3,3.5 -2019,3,22,19,0,0.0,0.0,0.0,18.2,3.0 -2019,3,22,19,15,0.0,0.0,0.0,18.2,3.0 -2019,3,22,19,30,0.0,0.0,0.0,18.2,3.0 -2019,3,22,19,45,0.0,0.0,0.0,18.2,3.0 -2019,3,22,20,0,0.0,0.0,0.0,16.9,2.1 -2019,3,22,20,15,0.0,0.0,0.0,16.9,2.1 -2019,3,22,20,30,0.0,0.0,0.0,16.9,2.1 -2019,3,22,20,45,0.0,0.0,0.0,16.9,2.1 -2019,3,22,21,0,0.0,0.0,0.0,14.8,2.0 -2019,3,22,21,15,0.0,0.0,0.0,14.8,2.0 -2019,3,22,21,30,0.0,0.0,0.0,14.8,2.0 -2019,3,22,21,45,0.0,0.0,0.0,14.8,2.0 -2019,3,22,22,0,0.0,0.0,0.0,13.1,1.6 -2019,3,22,22,15,0.0,0.0,0.0,13.1,1.6 -2019,3,22,22,30,0.0,0.0,0.0,13.1,1.6 -2019,3,22,22,45,0.0,0.0,0.0,13.1,1.6 -2019,3,22,23,0,0.0,0.0,0.0,11.6,2.2 -2019,3,22,23,15,0.0,0.0,0.0,11.6,2.2 -2019,3,22,23,30,0.0,0.0,0.0,11.6,2.2 -2019,3,22,23,45,0.0,0.0,0.0,11.6,2.2 -2019,3,23,0,0,0.0,0.0,0.0,10.6,2.3 -2019,3,23,0,15,0.0,0.0,0.0,10.6,2.3 -2019,3,23,0,30,0.0,0.0,0.0,10.6,2.3 -2019,3,23,0,45,0.0,0.0,0.0,10.6,2.3 -2019,3,23,1,0,0.0,0.0,0.0,10.6,0.0 -2019,3,23,1,15,0.0,0.0,0.0,10.6,0.0 -2019,3,23,1,30,0.0,0.0,0.0,10.6,0.0 -2019,3,23,1,45,0.0,0.0,0.0,10.6,0.0 -2019,3,23,2,0,0.0,0.0,0.0,10.6,0.0 -2019,3,23,2,15,0.0,0.0,0.0,10.6,0.0 -2019,3,23,2,30,0.0,0.0,0.0,10.6,0.0 -2019,3,23,2,45,0.0,0.0,0.0,10.6,0.0 -2019,3,23,3,0,0.0,0.0,0.0,10.5,0.0 -2019,3,23,3,15,0.0,0.0,0.0,10.5,0.0 -2019,3,23,3,30,0.0,0.0,0.0,10.5,0.0 -2019,3,23,3,45,0.0,0.0,0.0,10.5,0.0 -2019,3,23,4,0,0.0,0.0,0.0,9.9,0.0 -2019,3,23,4,15,0.0,0.0,0.0,9.9,0.0 -2019,3,23,4,30,0.0,0.0,0.0,9.9,0.0 -2019,3,23,4,45,0.0,0.0,0.0,9.9,0.0 -2019,3,23,5,0,0.0,0.0,0.0,9.6,0.8 -2019,3,23,5,15,0.0,0.0,0.0,9.6,0.8 -2019,3,23,5,30,0.0,0.0,0.0,9.6,0.8 -2019,3,23,5,45,0.0,0.0,0.0,9.6,0.8 -2019,3,23,6,0,0.0,18.0,18.0,10.6,2.3 -2019,3,23,6,15,0.0,18.0,18.0,10.6,2.3 -2019,3,23,6,30,0.0,18.0,18.0,10.6,2.3 -2019,3,23,6,45,0.0,18.0,18.0,10.6,2.3 -2019,3,23,7,0,1.0,46.07984149496203,46.0,11.2,0.0 -2019,3,23,7,15,1.0,46.1338679486434,46.0,11.2,0.0 -2019,3,23,7,30,1.0,46.187316983825,46.0,11.2,0.0 -2019,3,23,7,45,1.0,46.23995972353255,46.0,11.2,0.0 -2019,3,23,8,0,0.0,79.0,79.0,12.3,0.4 -2019,3,23,8,15,0.0,79.0,79.0,12.3,0.4 -2019,3,23,8,30,0.0,79.0,79.0,12.3,0.4 -2019,3,23,8,45,0.0,79.0,79.0,12.3,0.4 -2019,3,23,9,0,50.0,318.168173918512,294.0,13.1,0.2 -2019,3,23,9,15,50.0,320.3310888953613,294.0,13.1,0.2 -2019,3,23,9,30,50.0,322.3810413375439,294.0,13.1,0.2 -2019,3,23,9,45,50.0,324.309253033988,294.0,13.1,0.2 -2019,3,23,10,0,57.0,392.60251247825084,356.0,15.9,1.3 -2019,3,23,10,15,57.0,394.49550092266594,356.0,15.9,1.3 -2019,3,23,10,30,57.0,396.22340772485575,356.0,15.9,1.3 -2019,3,23,10,45,57.0,397.77883372262016,356.0,15.9,1.3 -2019,3,23,11,0,755.0,770.6160412104884,199.0,18.0,0.0 -2019,3,23,11,15,755.0,786.3948760296128,199.0,18.0,0.0 -2019,3,23,11,30,755.0,799.6552433902008,199.0,18.0,0.0 -2019,3,23,11,45,755.0,810.3403603634457,199.0,18.0,0.0 -2019,3,23,12,0,635.0,767.956078794924,247.0,19.5,0.3 -2019,3,23,12,15,635.0,772.5050117373867,247.0,19.5,0.3 -2019,3,23,12,30,635.0,774.8010001687437,247.0,19.5,0.3 -2019,3,23,12,45,635.0,774.8342123140455,247.0,19.5,0.3 -2019,3,23,13,0,851.0,852.3928103412169,148.0,20.7,2.7 -2019,3,23,13,15,851.0,846.3847812708813,148.0,20.7,2.7 -2019,3,23,13,30,851.0,837.3826080906645,148.0,20.7,2.7 -2019,3,23,13,45,851.0,825.4248394881632,148.0,20.7,2.7 -2019,3,23,14,0,787.0,757.7342297596034,145.0,21.6,3.7 -2019,3,23,14,15,787.0,741.3626808493035,145.0,21.6,3.7 -2019,3,23,14,30,787.0,722.4341293509262,145.0,21.6,3.7 -2019,3,23,14,45,787.0,701.0296302279522,145.0,21.6,3.7 -2019,3,23,15,0,26.0,201.58356017995465,184.0,20.7,4.6 -2019,3,23,15,15,26.0,200.7222494773481,184.0,20.7,4.6 -2019,3,23,15,30,26.0,199.78922297504403,184.0,20.7,4.6 -2019,3,23,15,45,26.0,198.78847603576608,184.0,20.7,4.6 -2019,3,23,16,0,7.0,77.69500223387772,74.0,19.3,4.9 -2019,3,23,16,15,7.0,77.39263989431957,74.0,19.3,4.9 -2019,3,23,16,30,7.0,77.07572052214319,74.0,19.3,4.9 -2019,3,23,16,45,7.0,76.74560121475456,74.0,19.3,4.9 -2019,3,23,17,0,3.0,16.030155254446615,15.0,18.1,4.9 -2019,3,23,17,15,3.0,15.879200464870905,15.0,18.1,4.9 -2019,3,23,17,30,3.0,15.724468277751642,15.0,18.1,4.9 -2019,3,23,17,45,3.0,15.566621280068988,15.0,18.1,4.9 -2019,3,23,18,0,0.0,0.0,0.0,16.6,2.9 -2019,3,23,18,15,0.0,0.0,0.0,16.6,2.9 -2019,3,23,18,30,0.0,0.0,0.0,16.6,2.9 -2019,3,23,18,45,0.0,0.0,0.0,16.6,2.9 -2019,3,23,19,0,0.0,0.0,0.0,15.5,1.6 -2019,3,23,19,15,0.0,0.0,0.0,15.5,1.6 -2019,3,23,19,30,0.0,0.0,0.0,15.5,1.6 -2019,3,23,19,45,0.0,0.0,0.0,15.5,1.6 -2019,3,23,20,0,0.0,0.0,0.0,14.3,1.9 -2019,3,23,20,15,0.0,0.0,0.0,14.3,1.9 -2019,3,23,20,30,0.0,0.0,0.0,14.3,1.9 -2019,3,23,20,45,0.0,0.0,0.0,14.3,1.9 -2019,3,23,21,0,0.0,0.0,0.0,13.8,0.0 -2019,3,23,21,15,0.0,0.0,0.0,13.8,0.0 -2019,3,23,21,30,0.0,0.0,0.0,13.8,0.0 -2019,3,23,21,45,0.0,0.0,0.0,13.8,0.0 -2019,3,23,22,0,0.0,0.0,0.0,13.2,0.0 -2019,3,23,22,15,0.0,0.0,0.0,13.2,0.0 -2019,3,23,22,30,0.0,0.0,0.0,13.2,0.0 -2019,3,23,22,45,0.0,0.0,0.0,13.2,0.0 -2019,3,23,23,0,0.0,0.0,0.0,12.7,0.0 -2019,3,23,23,15,0.0,0.0,0.0,12.7,0.0 -2019,3,23,23,30,0.0,0.0,0.0,12.7,0.0 -2019,3,23,23,45,0.0,0.0,0.0,12.7,0.0 -2019,3,24,0,0,0.0,0.0,0.0,12.1,0.2 -2019,3,24,0,15,0.0,0.0,0.0,12.1,0.2 -2019,3,24,0,30,0.0,0.0,0.0,12.1,0.2 -2019,3,24,0,45,0.0,0.0,0.0,12.1,0.2 -2019,3,24,1,0,0.0,0.0,0.0,11.0,2.0 -2019,3,24,1,15,0.0,0.0,0.0,11.0,2.0 -2019,3,24,1,30,0.0,0.0,0.0,11.0,2.0 -2019,3,24,1,45,0.0,0.0,0.0,11.0,2.0 -2019,3,24,2,0,0.0,0.0,0.0,10.4,1.1 -2019,3,24,2,15,0.0,0.0,0.0,10.4,1.1 -2019,3,24,2,30,0.0,0.0,0.0,10.4,1.1 -2019,3,24,2,45,0.0,0.0,0.0,10.4,1.1 -2019,3,24,3,0,0.0,0.0,0.0,10.0,2.3 -2019,3,24,3,15,0.0,0.0,0.0,10.0,2.3 -2019,3,24,3,30,0.0,0.0,0.0,10.0,2.3 -2019,3,24,3,45,0.0,0.0,0.0,10.0,2.3 -2019,3,24,4,0,0.0,0.0,0.0,10.0,0.5 -2019,3,24,4,15,0.0,0.0,0.0,10.0,0.5 -2019,3,24,4,30,0.0,0.0,0.0,10.0,0.5 -2019,3,24,4,45,0.0,0.0,0.0,10.0,0.5 -2019,3,24,5,0,0.0,0.0,0.0,10.0,1.5 -2019,3,24,5,15,0.0,0.0,0.0,10.0,1.5 -2019,3,24,5,30,0.0,0.0,0.0,10.0,1.5 -2019,3,24,5,45,0.0,0.0,0.0,10.0,1.5 -2019,3,24,6,0,0.0,19.0,19.0,10.0,1.5 -2019,3,24,6,15,0.0,19.0,19.0,10.0,1.5 -2019,3,24,6,30,0.0,19.0,19.0,10.0,1.5 -2019,3,24,6,45,0.0,19.0,19.0,10.0,1.5 -2019,3,24,7,0,1.0,47.08374068161309,47.0,11.0,0.0 -2019,3,24,7,15,1.0,47.13776646546665,47.0,11.0,0.0 -2019,3,24,7,30,1.0,47.19121483797937,47.0,11.0,0.0 -2019,3,24,7,45,1.0,47.24385692501461,47.0,11.0,0.0 -2019,3,24,8,0,0.0,72.0,72.0,11.1,0.0 -2019,3,24,8,15,0.0,72.0,72.0,11.1,0.0 -2019,3,24,8,30,0.0,72.0,72.0,11.1,0.0 -2019,3,24,8,45,0.0,72.0,72.0,11.1,0.0 -2019,3,24,9,0,0.0,93.0,93.0,11.9,0.0 -2019,3,24,9,15,0.0,93.0,93.0,11.9,0.0 -2019,3,24,9,30,0.0,93.0,93.0,11.9,0.0 -2019,3,24,9,45,0.0,93.0,93.0,11.9,0.0 -2019,3,24,10,0,2.0,215.29208311360122,214.0,13.1,0.0 -2019,3,24,10,15,2.0,215.3585029372809,214.0,13.1,0.0 -2019,3,24,10,30,2.0,215.41913049445108,214.0,13.1,0.0 -2019,3,24,10,45,2.0,215.47370616860434,214.0,13.1,0.0 -2019,3,24,11,0,393.0,642.0722647609211,343.0,15.7,0.0 -2019,3,24,11,15,393.0,650.2855166841025,343.0,15.7,0.0 -2019,3,24,11,30,393.0,657.187847494641,343.0,15.7,0.0 -2019,3,24,11,45,393.0,662.7497003523409,343.0,15.7,0.0 -2019,3,24,12,0,322.0,630.422435758028,365.0,17.0,0.2 -2019,3,24,12,15,322.0,632.7291101630844,365.0,17.0,0.2 -2019,3,24,12,30,322.0,633.8933607281961,365.0,17.0,0.2 -2019,3,24,12,45,322.0,633.910201953704,365.0,17.0,0.2 -2019,3,24,13,0,61.0,404.7284262891199,354.0,19.4,1.6 -2019,3,24,13,15,61.0,404.29777384552744,354.0,19.4,1.6 -2019,3,24,13,30,61.0,403.652502687163,354.0,19.4,1.6 -2019,3,24,13,45,61.0,402.7953759641905,354.0,19.4,1.6 -2019,3,24,14,0,104.0,387.3758468619988,306.0,19.5,2.3 -2019,3,24,14,15,104.0,385.21241614143923,306.0,19.5,2.3 -2019,3,24,14,30,104.0,382.7110883787668,306.0,19.5,2.3 -2019,3,24,14,45,104.0,379.88257464347214,306.0,19.5,2.3 -2019,3,24,15,0,427.0,477.43795650976847,187.0,20.4,3.6 -2019,3,24,15,15,427.0,463.29275996256195,187.0,20.4,3.6 -2019,3,24,15,30,427.0,447.9697839227844,187.0,20.4,3.6 -2019,3,24,15,45,427.0,431.53464372626445,187.0,20.4,3.6 -2019,3,24,16,0,247.0,258.34252023448136,127.0,20.3,3.6 -2019,3,24,16,15,247.0,247.673581386762,127.0,20.3,3.6 -2019,3,24,16,30,247.0,236.49099361360018,127.0,20.3,3.6 -2019,3,24,16,45,247.0,224.84264247262266,127.0,20.3,3.6 -2019,3,24,17,0,149.0,92.74486959823344,41.0,19.7,3.6 -2019,3,24,17,15,149.0,85.24754133675404,41.0,19.7,3.6 -2019,3,24,17,30,149.0,77.56260465663675,41.0,19.7,3.6 -2019,3,24,17,45,149.0,69.72296763655872,41.0,19.7,3.6 -2019,3,24,18,0,0.0,0.0,0.0,17.5,3.5 -2019,3,24,18,15,0.0,0.0,0.0,17.5,3.5 -2019,3,24,18,30,0.0,0.0,0.0,17.5,3.5 -2019,3,24,18,45,0.0,0.0,0.0,17.5,3.5 -2019,3,24,19,0,0.0,0.0,0.0,15.3,3.2 -2019,3,24,19,15,0.0,0.0,0.0,15.3,3.2 -2019,3,24,19,30,0.0,0.0,0.0,15.3,3.2 -2019,3,24,19,45,0.0,0.0,0.0,15.3,3.2 -2019,3,24,20,0,0.0,0.0,0.0,13.2,3.9 -2019,3,24,20,15,0.0,0.0,0.0,13.2,3.9 -2019,3,24,20,30,0.0,0.0,0.0,13.2,3.9 -2019,3,24,20,45,0.0,0.0,0.0,13.2,3.9 -2019,3,24,21,0,0.0,0.0,0.0,12.1,2.1 -2019,3,24,21,15,0.0,0.0,0.0,12.1,2.1 -2019,3,24,21,30,0.0,0.0,0.0,12.1,2.1 -2019,3,24,21,45,0.0,0.0,0.0,12.1,2.1 -2019,3,24,22,0,0.0,0.0,0.0,11.1,2.1 -2019,3,24,22,15,0.0,0.0,0.0,11.1,2.1 -2019,3,24,22,30,0.0,0.0,0.0,11.1,2.1 -2019,3,24,22,45,0.0,0.0,0.0,11.1,2.1 -2019,3,24,23,0,0.0,0.0,0.0,11.1,1.6 -2019,3,24,23,15,0.0,0.0,0.0,11.1,1.6 -2019,3,24,23,30,0.0,0.0,0.0,11.1,1.6 -2019,3,24,23,45,0.0,0.0,0.0,11.1,1.6 -2019,3,25,0,0,0.0,0.0,0.0,11.0,0.0 -2019,3,25,0,15,0.0,0.0,0.0,11.0,0.0 -2019,3,25,0,30,0.0,0.0,0.0,11.0,0.0 -2019,3,25,0,45,0.0,0.0,0.0,11.0,0.0 -2019,3,25,1,0,0.0,0.0,0.0,10.0,0.0 -2019,3,25,1,15,0.0,0.0,0.0,10.0,0.0 -2019,3,25,1,30,0.0,0.0,0.0,10.0,0.0 -2019,3,25,1,45,0.0,0.0,0.0,10.0,0.0 -2019,3,25,2,0,0.0,0.0,0.0,9.9,0.0 -2019,3,25,2,15,0.0,0.0,0.0,9.9,0.0 -2019,3,25,2,30,0.0,0.0,0.0,9.9,0.0 -2019,3,25,2,45,0.0,0.0,0.0,9.9,0.0 -2019,3,25,3,0,0.0,0.0,0.0,9.2,0.2 -2019,3,25,3,15,0.0,0.0,0.0,9.2,0.2 -2019,3,25,3,30,0.0,0.0,0.0,9.2,0.2 -2019,3,25,3,45,0.0,0.0,0.0,9.2,0.2 -2019,3,25,4,0,0.0,0.0,0.0,7.9,2.0 -2019,3,25,4,15,0.0,0.0,0.0,7.9,2.0 -2019,3,25,4,30,0.0,0.0,0.0,7.9,2.0 -2019,3,25,4,45,0.0,0.0,0.0,7.9,2.0 -2019,3,25,5,0,0.0,0.0,0.0,8.5,1.5 -2019,3,25,5,15,0.0,0.0,0.0,8.5,1.5 -2019,3,25,5,30,0.0,0.0,0.0,8.5,1.5 -2019,3,25,5,45,0.0,0.0,0.0,8.5,1.5 -2019,3,25,6,0,83.0,40.24438210515796,51.0,10.2,1.5 -2019,3,25,6,15,83.0,44.72711109812192,51.0,10.2,1.5 -2019,3,25,6,30,83.0,49.23912704753591,51.0,10.2,1.5 -2019,3,25,6,45,83.0,53.76110880840731,51.0,10.2,1.5 -2019,3,25,7,0,197.0,162.26406547517976,145.0,12.0,1.6 -2019,3,25,7,15,197.0,172.9064853176215,145.0,12.0,1.6 -2019,3,25,7,30,197.0,183.4351621752749,145.0,12.0,1.6 -2019,3,25,7,45,197.0,193.80501063744367,145.0,12.0,1.6 -2019,3,25,8,0,361.0,321.0647552131101,213.0,14.2,2.8 -2019,3,25,8,15,361.0,339.242747304334,213.0,14.2,2.8 -2019,3,25,8,30,361.0,356.89069796098954,213.0,14.2,2.8 -2019,3,25,8,45,361.0,373.9330359490024,213.0,14.2,2.8 -2019,3,25,9,0,284.0,440.48001793474964,301.0,16.7,4.0 -2019,3,25,9,15,284.0,452.7644613445299,301.0,16.7,4.0 -2019,3,25,9,30,284.0,464.40732527504673,301.0,16.7,4.0 -2019,3,25,9,45,284.0,475.35875319550473,301.0,16.7,4.0 -2019,3,25,10,0,3.0,231.94970263461536,230.0,16.7,3.0 -2019,3,25,10,15,3.0,232.04932619584537,230.0,16.7,3.0 -2019,3,25,10,30,3.0,232.14026189575182,230.0,16.7,3.0 -2019,3,25,10,45,3.0,232.222120333707,230.0,16.7,3.0 -2019,3,25,11,0,1.0,219.76485032643748,219.0,16.6,3.1 -2019,3,25,11,15,1.0,219.7857478911413,219.0,16.6,3.1 -2019,3,25,11,30,1.0,219.80330998543351,219.0,16.6,3.1 -2019,3,25,11,45,1.0,219.81746140573014,219.0,16.6,3.1 -2019,3,25,12,0,0.0,172.0,172.0,16.0,6.7 -2019,3,25,12,15,0.0,172.0,172.0,16.0,6.7 -2019,3,25,12,30,0.0,172.0,172.0,16.0,6.7 -2019,3,25,12,45,0.0,172.0,172.0,16.0,6.7 -2019,3,25,13,0,0.0,151.0,151.0,15.4,6.5 -2019,3,25,13,15,0.0,151.0,151.0,15.4,6.5 -2019,3,25,13,30,0.0,151.0,151.0,15.4,6.5 -2019,3,25,13,45,0.0,151.0,151.0,15.4,6.5 -2019,3,25,14,0,1.0,140.7863109332088,140.0,13.7,4.4 -2019,3,25,14,15,1.0,140.76551000390438,140.0,13.7,4.4 -2019,3,25,14,30,1.0,140.74146026592845,140.0,13.7,4.4 -2019,3,25,14,45,1.0,140.7142647039512,140.0,13.7,4.4 -2019,3,25,15,0,2.0,107.36807954708833,106.0,11.0,5.1 -2019,3,25,15,15,2.0,107.30182980499913,106.0,11.0,5.1 -2019,3,25,15,30,2.0,107.23006387320126,106.0,11.0,5.1 -2019,3,25,15,45,2.0,107.15308906443238,106.0,11.0,5.1 -2019,3,25,16,0,2.0,51.07123499664104,50.0,11.9,6.1 -2019,3,25,16,15,2.0,50.98485218151198,50.0,11.9,6.1 -2019,3,25,16,30,2.0,50.89431052352131,50.0,11.9,6.1 -2019,3,25,16,45,2.0,50.799997735948764,50.0,11.9,6.1 -2019,3,25,17,0,1.0,16.351158840314945,16.0,8.2,7.0 -2019,3,25,17,15,1.0,16.30084431927883,16.0,8.2,7.0 -2019,3,25,17,30,1.0,16.24927075936955,16.0,8.2,7.0 -2019,3,25,17,45,1.0,16.196659006488353,16.0,8.2,7.0 -2019,3,25,18,0,0.0,0.0,0.0,8.9,0.4 -2019,3,25,18,15,0.0,0.0,0.0,8.9,0.4 -2019,3,25,18,30,0.0,0.0,0.0,8.9,0.4 -2019,3,25,18,45,0.0,0.0,0.0,8.9,0.4 -2019,3,25,19,0,0.0,0.0,0.0,8.9,1.1 -2019,3,25,19,15,0.0,0.0,0.0,8.9,1.1 -2019,3,25,19,30,0.0,0.0,0.0,8.9,1.1 -2019,3,25,19,45,0.0,0.0,0.0,8.9,1.1 -2019,3,25,20,0,0.0,0.0,0.0,8.9,0.3 -2019,3,25,20,15,0.0,0.0,0.0,8.9,0.3 -2019,3,25,20,30,0.0,0.0,0.0,8.9,0.3 -2019,3,25,20,45,0.0,0.0,0.0,8.9,0.3 -2019,3,25,21,0,0.0,0.0,0.0,9.0,2.7 -2019,3,25,21,15,0.0,0.0,0.0,9.0,2.7 -2019,3,25,21,30,0.0,0.0,0.0,9.0,2.7 -2019,3,25,21,45,0.0,0.0,0.0,9.0,2.7 -2019,3,25,22,0,0.0,0.0,0.0,9.3,2.9 -2019,3,25,22,15,0.0,0.0,0.0,9.3,2.9 -2019,3,25,22,30,0.0,0.0,0.0,9.3,2.9 -2019,3,25,22,45,0.0,0.0,0.0,9.3,2.9 -2019,3,25,23,0,0.0,0.0,0.0,8.8,1.5 -2019,3,25,23,15,0.0,0.0,0.0,8.8,1.5 -2019,3,25,23,30,0.0,0.0,0.0,8.8,1.5 -2019,3,25,23,45,0.0,0.0,0.0,8.8,1.5 -2019,3,26,0,0,0.0,0.0,0.0,8.3,2.2 -2019,3,26,0,15,0.0,0.0,0.0,8.3,2.2 -2019,3,26,0,30,0.0,0.0,0.0,8.3,2.2 -2019,3,26,0,45,0.0,0.0,0.0,8.3,2.2 -2019,3,26,1,0,0.0,0.0,0.0,8.3,2.5 -2019,3,26,1,15,0.0,0.0,0.0,8.3,2.5 -2019,3,26,1,30,0.0,0.0,0.0,8.3,2.5 -2019,3,26,1,45,0.0,0.0,0.0,8.3,2.5 -2019,3,26,2,0,0.0,0.0,0.0,8.4,2.1 -2019,3,26,2,15,0.0,0.0,0.0,8.4,2.1 -2019,3,26,2,30,0.0,0.0,0.0,8.4,2.1 -2019,3,26,2,45,0.0,0.0,0.0,8.4,2.1 -2019,3,26,3,0,0.0,0.0,0.0,8.8,1.8 -2019,3,26,3,15,0.0,0.0,0.0,8.8,1.8 -2019,3,26,3,30,0.0,0.0,0.0,8.8,1.8 -2019,3,26,3,45,0.0,0.0,0.0,8.8,1.8 -2019,3,26,4,0,0.0,0.0,0.0,8.3,0.2 -2019,3,26,4,15,0.0,0.0,0.0,8.3,0.2 -2019,3,26,4,30,0.0,0.0,0.0,8.3,0.2 -2019,3,26,4,45,0.0,0.0,0.0,8.3,0.2 -2019,3,26,5,0,5.0,-0.6678752191699322,1.0,8.4,1.3 -2019,3,26,5,15,5.0,-0.4163306584994697,1.0,8.4,1.3 -2019,3,26,5,30,5.0,-0.15849160523131367,1.0,8.4,1.3 -2019,3,26,5,45,5.0,0.10453783422427021,1.0,8.4,1.3 -2019,3,26,6,0,10.0,30.743262654853037,32.0,8.9,0.0 -2019,3,26,6,15,10.0,31.283290278065202,32.0,8.9,0.0 -2019,3,26,6,30,10.0,31.82684605689589,32.0,8.9,0.0 -2019,3,26,6,45,10.0,32.37160240205194,32.0,8.9,0.0 -2019,3,26,7,0,43.0,132.93547430789286,129.0,10.3,0.0 -2019,3,26,7,15,43.0,135.25818008839,129.0,10.3,0.0 -2019,3,26,7,30,43.0,137.55606148757442,129.0,10.3,0.0 -2019,3,26,7,45,43.0,139.81927862451766,129.0,10.3,0.0 -2019,3,26,8,0,1.0,97.30321255944149,97.0,12.3,0.0 -2019,3,26,8,15,1.0,97.35356149480646,97.0,12.3,0.0 -2019,3,26,8,30,1.0,97.40244233502672,97.0,12.3,0.0 -2019,3,26,8,45,1.0,97.44964576484011,97.0,12.3,0.0 -2019,3,26,9,0,1.0,146.49496965191338,146.0,12.9,0.9 -2019,3,26,9,15,1.0,146.5382199124038,146.0,12.9,0.9 -2019,3,26,9,30,1.0,146.5792113420561,146.0,12.9,0.9 -2019,3,26,9,45,1.0,146.61776840927539,146.0,12.9,0.9 -2019,3,26,10,0,5.0,258.2686300339019,255.0,14.6,0.0 -2019,3,26,10,15,5.0,258.4346507930915,255.0,14.6,0.0 -2019,3,26,10,30,5.0,258.5861933975669,255.0,14.6,0.0 -2019,3,26,10,45,5.0,258.7226089186304,255.0,14.6,0.0 -2019,3,26,11,0,493.0,686.9506819220869,308.0,16.2,0.4 -2019,3,26,11,15,493.0,697.2520328313664,308.0,16.2,0.4 -2019,3,26,11,30,493.0,705.909180138708,308.0,16.2,0.4 -2019,3,26,11,45,493.0,712.8850526102727,308.0,16.2,0.4 -2019,3,26,12,0,27.0,379.4625639334846,357.0,17.2,3.1 -2019,3,26,12,15,27.0,379.65594718477905,357.0,17.2,3.1 -2019,3,26,12,30,27.0,379.7535537473304,357.0,17.2,3.1 -2019,3,26,12,45,27.0,379.7549656548529,357.0,17.2,3.1 -2019,3,26,13,0,23.0,336.30311362262455,317.0,17.3,3.0 -2019,3,26,13,15,23.0,336.1407646348206,317.0,17.3,3.0 -2019,3,26,13,30,23.0,335.89750787178986,317.0,17.3,3.0 -2019,3,26,13,45,23.0,335.5743849963372,317.0,17.3,3.0 -2019,3,26,14,0,68.0,352.7282181554388,299.0,17.8,2.1 -2019,3,26,14,15,68.0,351.3139126425747,299.0,17.8,2.1 -2019,3,26,14,30,68.0,349.67871276739095,299.0,17.8,2.1 -2019,3,26,14,45,68.0,347.82962070679355,299.0,17.8,2.1 -2019,3,26,15,0,435.0,487.2195769446433,188.0,18.2,2.2 -2019,3,26,15,15,435.0,472.8118643450658,188.0,18.2,2.2 -2019,3,26,15,30,435.0,457.2045142305194,188.0,18.2,2.2 -2019,3,26,15,45,435.0,440.4643596702786,188.0,18.2,2.2 -2019,3,26,16,0,427.0,341.3474416414315,111.0,17.8,2.7 -2019,3,26,16,15,427.0,322.9067665480961,111.0,17.8,2.7 -2019,3,26,16,30,427.0,303.5782774855064,111.0,17.8,2.7 -2019,3,26,16,45,427.0,283.44474201119186,111.0,17.8,2.7 -2019,3,26,17,0,268.0,137.1446288150415,42.0,17.5,3.2 -2019,3,26,17,15,268.0,123.66184036310473,42.0,17.5,3.2 -2019,3,26,17,30,268.0,109.84166710793156,42.0,17.5,3.2 -2019,3,26,17,45,268.0,95.74328915311227,42.0,17.5,3.2 -2019,3,26,18,0,0.0,0.0,0.0,14.8,4.0 -2019,3,26,18,15,0.0,0.0,0.0,14.8,4.0 -2019,3,26,18,30,0.0,0.0,0.0,14.8,4.0 -2019,3,26,18,45,0.0,0.0,0.0,14.8,4.0 -2019,3,26,19,0,0.0,0.0,0.0,13.2,3.4 -2019,3,26,19,15,0.0,0.0,0.0,13.2,3.4 -2019,3,26,19,30,0.0,0.0,0.0,13.2,3.4 -2019,3,26,19,45,0.0,0.0,0.0,13.2,3.4 -2019,3,26,20,0,0.0,0.0,0.0,12.7,1.3 -2019,3,26,20,15,0.0,0.0,0.0,12.7,1.3 -2019,3,26,20,30,0.0,0.0,0.0,12.7,1.3 -2019,3,26,20,45,0.0,0.0,0.0,12.7,1.3 -2019,3,26,21,0,0.0,0.0,0.0,11.6,0.0 -2019,3,26,21,15,0.0,0.0,0.0,11.6,0.0 -2019,3,26,21,30,0.0,0.0,0.0,11.6,0.0 -2019,3,26,21,45,0.0,0.0,0.0,11.6,0.0 -2019,3,26,22,0,0.0,0.0,0.0,11.0,0.0 -2019,3,26,22,15,0.0,0.0,0.0,11.0,0.0 -2019,3,26,22,30,0.0,0.0,0.0,11.0,0.0 -2019,3,26,22,45,0.0,0.0,0.0,11.0,0.0 -2019,3,26,23,0,0.0,0.0,0.0,9.9,0.2 -2019,3,26,23,15,0.0,0.0,0.0,9.9,0.2 -2019,3,26,23,30,0.0,0.0,0.0,9.9,0.2 -2019,3,26,23,45,0.0,0.0,0.0,9.9,0.2 -2019,3,27,0,0,0.0,0.0,0.0,8.8,1.3 -2019,3,27,0,15,0.0,0.0,0.0,8.8,1.3 -2019,3,27,0,30,0.0,0.0,0.0,8.8,1.3 -2019,3,27,0,45,0.0,0.0,0.0,8.8,1.3 -2019,3,27,1,0,0.0,0.0,0.0,8.2,0.0 -2019,3,27,1,15,0.0,0.0,0.0,8.2,0.0 -2019,3,27,1,30,0.0,0.0,0.0,8.2,0.0 -2019,3,27,1,45,0.0,0.0,0.0,8.2,0.0 -2019,3,27,2,0,0.0,0.0,0.0,7.2,0.0 -2019,3,27,2,15,0.0,0.0,0.0,7.2,0.0 -2019,3,27,2,30,0.0,0.0,0.0,7.2,0.0 -2019,3,27,2,45,0.0,0.0,0.0,7.2,0.0 -2019,3,27,3,0,0.0,0.0,0.0,7.2,0.0 -2019,3,27,3,15,0.0,0.0,0.0,7.2,0.0 -2019,3,27,3,30,0.0,0.0,0.0,7.2,0.0 -2019,3,27,3,45,0.0,0.0,0.0,7.2,0.0 -2019,3,27,4,0,0.0,0.0,0.0,7.1,0.0 -2019,3,27,4,15,0.0,0.0,0.0,7.1,0.0 -2019,3,27,4,30,0.0,0.0,0.0,7.1,0.0 -2019,3,27,4,45,0.0,0.0,0.0,7.1,0.0 -2019,3,27,5,0,105.0,-34.610787890902024,0.0,6.9,0.0 -2019,3,27,5,15,105.0,-29.329201837358347,0.0,6.9,0.0 -2019,3,27,5,30,105.0,-23.915452702134452,0.0,6.9,0.0 -2019,3,27,5,45,105.0,-18.392722990161214,0.0,6.9,0.0 -2019,3,27,6,0,281.0,20.78580964096777,55.0,8.6,0.0 -2019,3,27,6,15,281.0,35.958144873437504,55.0,8.6,0.0 -2019,3,27,6,30,281.0,51.22960533116539,55.0,8.6,0.0 -2019,3,27,6,45,281.0,66.53479627595424,55.0,8.6,0.0 -2019,3,27,7,0,379.0,168.1576500464519,132.0,11.4,0.2 -2019,3,27,7,15,379.0,188.6265776483286,132.0,11.4,0.2 -2019,3,27,7,30,379.0,208.87673950375648,132.0,11.4,0.2 -2019,3,27,7,45,379.0,228.82142131080917,132.0,11.4,0.2 -2019,3,27,8,0,523.0,341.59165812204094,181.0,13.5,1.6 -2019,3,27,8,15,523.0,367.9199155332975,181.0,13.5,1.6 -2019,3,27,8,30,523.0,393.4804826926322,181.0,13.5,1.6 -2019,3,27,8,45,523.0,418.1639053273391,181.0,13.5,1.6 -2019,3,27,9,0,241.0,434.2071528507974,314.0,15.2,1.9 -2019,3,27,9,15,241.0,444.62878895874167,314.0,15.2,1.9 -2019,3,27,9,30,241.0,454.5061344021302,314.0,15.2,1.9 -2019,3,27,9,45,241.0,463.7968928713767,314.0,15.2,1.9 -2019,3,27,10,0,455.0,601.1696363490853,302.0,16.9,0.0 -2019,3,27,10,15,455.0,616.2750952148571,302.0,16.9,0.0 -2019,3,27,10,30,455.0,630.0632539336125,302.0,16.9,0.0 -2019,3,27,10,45,455.0,642.4750694929212,302.0,16.9,0.0 -2019,3,27,11,0,794.0,799.3124609206393,186.0,18.4,0.3 -2019,3,27,11,15,794.0,815.9006088372365,186.0,18.4,0.3 -2019,3,27,11,30,794.0,829.8411144403022,186.0,18.4,0.3 -2019,3,27,11,45,794.0,841.0742823446589,186.0,18.4,0.3 -2019,3,27,12,0,791.0,847.0448869358022,186.0,19.0,2.6 -2019,3,27,12,15,791.0,852.7093886390845,186.0,19.0,2.6 -2019,3,27,12,30,791.0,855.5684394416883,186.0,19.0,2.6 -2019,3,27,12,45,791.0,855.6097964491472,186.0,19.0,2.6 -2019,3,27,13,0,386.0,645.4078976862968,320.0,20.0,2.9 -2019,3,27,13,15,386.0,642.683696431131,320.0,20.0,2.9 -2019,3,27,13,30,386.0,638.601870063504,320.0,20.0,2.9 -2019,3,27,13,45,386.0,633.1798975905751,320.0,20.0,2.9 -2019,3,27,14,0,445.0,606.2804236923243,253.0,19.9,5.1 -2019,3,27,14,15,445.0,597.0265308267824,253.0,19.9,5.1 -2019,3,27,14,30,445.0,586.3273117959138,253.0,19.9,5.1 -2019,3,27,14,45,445.0,574.2285822981831,253.0,19.9,5.1 -2019,3,27,15,0,674.0,601.1689207658249,135.0,19.7,5.1 -2019,3,27,15,15,674.0,578.8488374662534,135.0,19.7,5.1 -2019,3,27,15,30,674.0,554.6703044593925,135.0,19.7,5.1 -2019,3,27,15,45,674.0,528.7368579355334,135.0,19.7,5.1 -2019,3,27,16,0,492.0,371.28560542415505,104.0,18.8,5.1 -2019,3,27,16,15,492.0,350.04121967682124,104.0,18.8,5.1 -2019,3,27,16,30,492.0,327.7740371859166,104.0,18.8,5.1 -2019,3,27,16,45,492.0,304.5794094453872,104.0,18.8,5.1 -2019,3,27,17,0,343.0,163.0872645901582,40.0,18.0,4.9 -2019,3,27,17,15,343.0,145.83408348191557,40.0,18.0,4.9 -2019,3,27,17,30,343.0,128.14916964018408,40.0,18.0,4.9 -2019,3,27,17,45,343.0,110.10825258107151,40.0,18.0,4.9 -2019,3,27,18,0,0.0,0.0,0.0,15.8,3.6 -2019,3,27,18,15,0.0,0.0,0.0,15.8,3.6 -2019,3,27,18,30,0.0,0.0,0.0,15.8,3.6 -2019,3,27,18,45,0.0,0.0,0.0,15.8,3.6 -2019,3,27,19,0,0.0,0.0,0.0,13.7,3.5 -2019,3,27,19,15,0.0,0.0,0.0,13.7,3.5 -2019,3,27,19,30,0.0,0.0,0.0,13.7,3.5 -2019,3,27,19,45,0.0,0.0,0.0,13.7,3.5 -2019,3,27,20,0,0.0,0.0,0.0,12.1,2.3 -2019,3,27,20,15,0.0,0.0,0.0,12.1,2.3 -2019,3,27,20,30,0.0,0.0,0.0,12.1,2.3 -2019,3,27,20,45,0.0,0.0,0.0,12.1,2.3 -2019,3,27,21,0,0.0,0.0,0.0,11.7,0.0 -2019,3,27,21,15,0.0,0.0,0.0,11.7,0.0 -2019,3,27,21,30,0.0,0.0,0.0,11.7,0.0 -2019,3,27,21,45,0.0,0.0,0.0,11.7,0.0 -2019,3,27,22,0,0.0,0.0,0.0,11.6,0.0 -2019,3,27,22,15,0.0,0.0,0.0,11.6,0.0 -2019,3,27,22,30,0.0,0.0,0.0,11.6,0.0 -2019,3,27,22,45,0.0,0.0,0.0,11.6,0.0 -2019,3,27,23,0,0.0,0.0,0.0,10.5,0.2 -2019,3,27,23,15,0.0,0.0,0.0,10.5,0.2 -2019,3,27,23,30,0.0,0.0,0.0,10.5,0.2 -2019,3,27,23,45,0.0,0.0,0.0,10.5,0.2 -2019,3,28,0,0,0.0,0.0,0.0,9.1,1.3 -2019,3,28,0,15,0.0,0.0,0.0,9.1,1.3 -2019,3,28,0,30,0.0,0.0,0.0,9.1,1.3 -2019,3,28,0,45,0.0,0.0,0.0,9.1,1.3 -2019,3,28,1,0,0.0,0.0,0.0,6.8,0.0 -2019,3,28,1,15,0.0,0.0,0.0,6.8,0.0 -2019,3,28,1,30,0.0,0.0,0.0,6.8,0.0 -2019,3,28,1,45,0.0,0.0,0.0,6.8,0.0 -2019,3,28,2,0,0.0,0.0,0.0,7.7,0.0 -2019,3,28,2,15,0.0,0.0,0.0,7.7,0.0 -2019,3,28,2,30,0.0,0.0,0.0,7.7,0.0 -2019,3,28,2,45,0.0,0.0,0.0,7.7,0.0 -2019,3,28,3,0,0.0,0.0,0.0,7.1,0.0 -2019,3,28,3,15,0.0,0.0,0.0,7.1,0.0 -2019,3,28,3,30,0.0,0.0,0.0,7.1,0.0 -2019,3,28,3,45,0.0,0.0,0.0,7.1,0.0 -2019,3,28,4,0,0.0,0.0,0.0,6.8,0.0 -2019,3,28,4,15,0.0,0.0,0.0,6.8,0.0 -2019,3,28,4,30,0.0,0.0,0.0,6.8,0.0 -2019,3,28,4,45,0.0,0.0,0.0,6.8,0.0 -2019,3,28,5,0,1.0,1.674333819050842,2.0,7.2,0.0 -2019,3,28,5,15,1.0,1.7246240723472506,2.0,7.2,0.0 -2019,3,28,5,30,1.0,1.7761727572561998,2.0,7.2,0.0 -2019,3,28,5,45,1.0,1.8287591343950116,2.0,7.2,0.0 -2019,3,28,6,0,3.0,21.64647406247071,22.0,7.5,0.2 -2019,3,28,6,15,3.0,21.808422262936727,22.0,7.5,0.2 -2019,3,28,6,30,3.0,21.971428517525947,22.0,7.5,0.2 -2019,3,28,6,45,3.0,22.134794808431042,22.0,7.5,0.2 -2019,3,28,7,0,4.0,77.39709543481855,77.0,10.4,1.3 -2019,3,28,7,15,4.0,77.61308095323602,77.0,10.4,1.3 -2019,3,28,7,30,4.0,77.82675808334523,77.0,10.4,1.3 -2019,3,28,7,45,4.0,78.03721182687075,77.0,10.4,1.3 -2019,3,28,8,0,14.0,188.35239346000674,184.0,13.5,0.0 -2019,3,28,8,15,14.0,189.0570171235724,184.0,13.5,0.0 -2019,3,28,8,30,14.0,189.7410950780414,184.0,13.5,0.0 -2019,3,28,8,45,14.0,190.4016979965912,184.0,13.5,0.0 -2019,3,28,9,0,75.0,354.69284147914436,317.0,15.2,0.2 -2019,3,28,9,15,75.0,357.93540794937917,317.0,15.2,0.2 -2019,3,28,9,30,75.0,361.0086249392954,317.0,15.2,0.2 -2019,3,28,9,45,75.0,363.8993324619332,317.0,15.2,0.2 -2019,3,28,10,0,458.0,605.8610619368294,303.0,17.0,2.4 -2019,3,28,10,15,458.0,621.0629232393072,303.0,17.0,2.4 -2019,3,28,10,30,458.0,634.9390774377093,303.0,17.0,2.4 -2019,3,28,10,45,458.0,647.4301047094523,303.0,17.0,2.4 -2019,3,28,11,0,638.0,746.191802541634,251.0,19.0,4.4 -2019,3,28,11,15,638.0,759.5180182101477,251.0,19.0,4.4 -2019,3,28,11,30,638.0,770.7172301492154,251.0,19.0,4.4 -2019,3,28,11,45,638.0,779.7414816139798,251.0,19.0,4.4 -2019,3,28,12,0,661.0,794.8588675805219,240.0,19.5,3.3 -2019,3,28,12,15,661.0,799.5914201803316,240.0,19.5,3.3 -2019,3,28,12,30,661.0,801.9800871836464,240.0,19.5,3.3 -2019,3,28,12,45,661.0,802.0146399516431,240.0,19.5,3.3 -2019,3,28,13,0,631.0,767.2927400312931,233.0,20.6,4.4 -2019,3,28,13,15,631.0,762.8403827708347,233.0,20.6,4.4 -2019,3,28,13,30,631.0,756.1691615351157,233.0,20.6,4.4 -2019,3,28,13,45,631.0,747.3076435176516,233.0,20.6,4.4 -2019,3,28,14,0,26.0,288.73793685035656,268.0,20.5,2.7 -2019,3,28,14,15,26.0,288.19737353918043,268.0,20.5,2.7 -2019,3,28,14,30,26.0,287.5723819437124,268.0,20.5,2.7 -2019,3,28,14,45,26.0,286.86563837391475,268.0,20.5,2.7 -2019,3,28,15,0,6.0,148.17234674175106,144.0,19.9,3.6 -2019,3,28,15,15,6.0,147.97369337636795,144.0,19.9,3.6 -2019,3,28,15,30,6.0,147.7584994235778,144.0,19.9,3.6 -2019,3,28,15,45,6.0,147.52768637692367,144.0,19.9,3.6 -2019,3,28,16,0,2.0,52.09408087110213,51.0,18.8,3.6 -2019,3,28,16,15,2.0,52.007739720200995,51.0,18.8,3.6 -2019,3,28,16,30,2.0,51.91724173233464,51.0,18.8,3.6 -2019,3,28,16,45,2.0,51.822974433780615,51.0,18.8,3.6 -2019,3,28,17,0,1.0,22.362670745791757,22.0,18.2,3.6 -2019,3,28,17,15,1.0,22.312380492495347,22.0,18.2,3.6 -2019,3,28,17,30,1.0,22.2608318075864,22.0,18.2,3.6 -2019,3,28,17,45,1.0,22.208245430447587,22.0,18.2,3.6 -2019,3,28,18,0,0.0,0.0,0.0,17.1,3.5 -2019,3,28,18,15,0.0,0.0,0.0,17.1,3.5 -2019,3,28,18,30,0.0,0.0,0.0,17.1,3.5 -2019,3,28,18,45,0.0,0.0,0.0,17.1,3.5 -2019,3,28,19,0,0.0,0.0,0.0,16.0,3.0 -2019,3,28,19,15,0.0,0.0,0.0,16.0,3.0 -2019,3,28,19,30,0.0,0.0,0.0,16.0,3.0 -2019,3,28,19,45,0.0,0.0,0.0,16.0,3.0 -2019,3,28,20,0,0.0,0.0,0.0,14.9,2.0 -2019,3,28,20,15,0.0,0.0,0.0,14.9,2.0 -2019,3,28,20,30,0.0,0.0,0.0,14.9,2.0 -2019,3,28,20,45,0.0,0.0,0.0,14.9,2.0 -2019,3,28,21,0,0.0,0.0,0.0,13.9,1.3 -2019,3,28,21,15,0.0,0.0,0.0,13.9,1.3 -2019,3,28,21,30,0.0,0.0,0.0,13.9,1.3 -2019,3,28,21,45,0.0,0.0,0.0,13.9,1.3 -2019,3,28,22,0,0.0,0.0,0.0,13.8,0.0 -2019,3,28,22,15,0.0,0.0,0.0,13.8,0.0 -2019,3,28,22,30,0.0,0.0,0.0,13.8,0.0 -2019,3,28,22,45,0.0,0.0,0.0,13.8,0.0 -2019,3,28,23,0,0.0,0.0,0.0,13.2,0.0 -2019,3,28,23,15,0.0,0.0,0.0,13.2,0.0 -2019,3,28,23,30,0.0,0.0,0.0,13.2,0.0 -2019,3,28,23,45,0.0,0.0,0.0,13.2,0.0 -2019,3,29,0,0,0.0,0.0,0.0,12.2,0.0 -2019,3,29,0,15,0.0,0.0,0.0,12.2,0.0 -2019,3,29,0,30,0.0,0.0,0.0,12.2,0.0 -2019,3,29,0,45,0.0,0.0,0.0,12.2,0.0 -2019,3,29,1,0,0.0,0.0,0.0,11.2,0.0 -2019,3,29,1,15,0.0,0.0,0.0,11.2,0.0 -2019,3,29,1,30,0.0,0.0,0.0,11.2,0.0 -2019,3,29,1,45,0.0,0.0,0.0,11.2,0.0 -2019,3,29,2,0,0.0,0.0,0.0,12.2,0.0 -2019,3,29,2,15,0.0,0.0,0.0,12.2,0.0 -2019,3,29,2,30,0.0,0.0,0.0,12.2,0.0 -2019,3,29,2,45,0.0,0.0,0.0,12.2,0.0 -2019,3,29,3,0,0.0,0.0,0.0,12.2,0.0 -2019,3,29,3,15,0.0,0.0,0.0,12.2,0.0 -2019,3,29,3,30,0.0,0.0,0.0,12.2,0.0 -2019,3,29,3,45,0.0,0.0,0.0,12.2,0.0 -2019,3,29,4,0,0.0,0.0,0.0,12.3,0.0 -2019,3,29,4,15,0.0,0.0,0.0,12.3,0.0 -2019,3,29,4,30,0.0,0.0,0.0,12.3,0.0 -2019,3,29,4,45,0.0,0.0,0.0,12.3,0.0 -2019,3,29,5,0,1.0,1.6783046373361852,2.0,12.8,0.0 -2019,3,29,5,15,1.0,1.7285818637280508,2.0,12.8,0.0 -2019,3,29,5,30,1.0,1.7801171957554054,2.0,12.8,0.0 -2019,3,29,5,45,1.0,1.8326899512146604,2.0,12.8,0.0 -2019,3,29,6,0,3.0,21.658225016487467,22.0,12.9,0.0 -2019,3,29,6,15,3.0,21.820131266801912,22.0,12.9,0.0 -2019,3,29,6,30,3.0,21.983095297167164,22.0,12.9,0.0 -2019,3,29,6,45,3.0,22.146419270586513,22.0,12.9,0.0 -2019,3,29,7,0,1.0,50.10313460291061,50.0,14.0,0.0 -2019,3,29,7,15,1.0,50.157116995596304,50.0,14.0,0.0 -2019,3,29,7,30,1.0,50.21052244069292,50.0,14.0,0.0 -2019,3,29,7,45,1.0,50.2631222478856,50.0,14.0,0.0 -2019,3,29,8,0,2.0,123.62938235344934,123.0,15.2,0.4 -2019,3,29,8,15,2.0,123.73001680227968,123.0,15.2,0.4 -2019,3,29,8,30,2.0,123.82771691010264,123.0,15.2,0.4 -2019,3,29,8,45,2.0,123.92206431005734,123.0,15.2,0.4 -2019,3,29,9,0,100.0,376.63274960463457,326.0,17.0,0.2 -2019,3,29,9,15,100.0,380.95505165002413,326.0,17.0,0.2 -2019,3,29,9,30,100.0,385.05161287810546,326.0,17.0,0.2 -2019,3,29,9,45,100.0,388.90489118478445,326.0,17.0,0.2 -2019,3,29,10,0,245.0,533.9210462899252,371.0,19.2,1.6 -2019,3,29,10,15,245.0,542.0509398640612,371.0,19.2,1.6 -2019,3,29,10,30,245.0,549.4718506727213,371.0,19.2,1.6 -2019,3,29,10,45,245.0,556.1520012365438,371.0,19.2,1.6 -2019,3,29,11,0,560.0,720.714939714878,284.0,21.2,2.3 -2019,3,29,11,15,560.0,732.4089016012198,284.0,21.2,2.3 -2019,3,29,11,30,560.0,742.2363845738954,284.0,21.2,2.3 -2019,3,29,11,45,560.0,750.1553058420733,284.0,21.2,2.3 -2019,3,29,12,0,815.0,865.1203225461711,178.0,22.2,4.3 -2019,3,29,12,15,815.0,870.9539553228394,178.0,22.2,4.3 -2019,3,29,12,30,815.0,873.8983718568771,178.0,22.2,4.3 -2019,3,29,12,45,815.0,873.9409637046504,178.0,22.2,4.3 -2019,3,29,13,0,110.0,469.54474887478045,376.0,22.1,5.9 -2019,3,29,13,15,110.0,468.76878622160376,376.0,22.1,5.9 -2019,3,29,13,30,110.0,467.60611704948417,376.0,22.1,5.9 -2019,3,29,13,45,110.0,466.061720086313,376.0,22.1,5.9 -2019,3,29,14,0,459.0,618.793398024881,251.0,20.8,7.1 -2019,3,29,14,15,459.0,609.2528484636217,251.0,20.8,7.1 -2019,3,29,14,30,459.0,598.2222010470232,251.0,20.8,7.1 -2019,3,29,14,45,459.0,585.7486907007794,251.0,20.8,7.1 -2019,3,29,15,0,12.0,174.3891694355859,166.0,19.8,6.1 -2019,3,29,15,15,12.0,173.991965620922,166.0,19.8,6.1 -2019,3,29,15,30,12.0,173.56168920060568,166.0,19.8,6.1 -2019,3,29,15,45,12.0,173.10018268432592,166.0,19.8,6.1 -2019,3,29,16,0,159.0,223.57484565834346,136.0,18.9,5.0 -2019,3,29,16,15,159.0,216.7125022051538,136.0,18.9,5.0 -2019,3,29,16,30,159.0,209.51977581594215,136.0,18.9,5.0 -2019,3,29,16,45,159.0,202.0274668493546,136.0,18.9,5.0 -2019,3,29,17,0,80.0,95.31706089188742,66.0,18.8,4.0 -2019,3,29,17,15,80.0,91.29488278053816,66.0,18.8,4.0 -2019,3,29,17,30,80.0,87.17205621834978,66.0,18.8,4.0 -2019,3,29,17,45,80.0,82.96623578160938,66.0,18.8,4.0 -2019,3,29,18,0,0.0,0.0,0.0,18.2,2.7 -2019,3,29,18,15,0.0,0.0,0.0,18.2,2.7 -2019,3,29,18,30,0.0,0.0,0.0,18.2,2.7 -2019,3,29,18,45,0.0,0.0,0.0,18.2,2.7 -2019,3,29,19,0,0.0,0.0,0.0,17.1,0.2 -2019,3,29,19,15,0.0,0.0,0.0,17.1,0.2 -2019,3,29,19,30,0.0,0.0,0.0,17.1,0.2 -2019,3,29,19,45,0.0,0.0,0.0,17.1,0.2 -2019,3,29,20,0,0.0,0.0,0.0,16.4,1.6 -2019,3,29,20,15,0.0,0.0,0.0,16.4,1.6 -2019,3,29,20,30,0.0,0.0,0.0,16.4,1.6 -2019,3,29,20,45,0.0,0.0,0.0,16.4,1.6 -2019,3,29,21,0,0.0,0.0,0.0,14.2,2.6 -2019,3,29,21,15,0.0,0.0,0.0,14.2,2.6 -2019,3,29,21,30,0.0,0.0,0.0,14.2,2.6 -2019,3,29,21,45,0.0,0.0,0.0,14.2,2.6 -2019,3,29,22,0,0.0,0.0,0.0,12.7,2.3 -2019,3,29,22,15,0.0,0.0,0.0,12.7,2.3 -2019,3,29,22,30,0.0,0.0,0.0,12.7,2.3 -2019,3,29,22,45,0.0,0.0,0.0,12.7,2.3 -2019,3,29,23,0,0.0,0.0,0.0,11.7,0.0 -2019,3,29,23,15,0.0,0.0,0.0,11.7,0.0 -2019,3,29,23,30,0.0,0.0,0.0,11.7,0.0 -2019,3,29,23,45,0.0,0.0,0.0,11.7,0.0 -2019,3,30,0,0,0.0,0.0,0.0,11.6,0.2 -2019,3,30,0,15,0.0,0.0,0.0,11.6,0.2 -2019,3,30,0,30,0.0,0.0,0.0,11.6,0.2 -2019,3,30,0,45,0.0,0.0,0.0,11.6,0.2 -2019,3,30,1,0,0.0,0.0,0.0,11.1,1.7 -2019,3,30,1,15,0.0,0.0,0.0,11.1,1.7 -2019,3,30,1,30,0.0,0.0,0.0,11.1,1.7 -2019,3,30,1,45,0.0,0.0,0.0,11.1,1.7 -2019,3,30,2,0,0.0,0.0,0.0,11.1,0.0 -2019,3,30,2,15,0.0,0.0,0.0,11.1,0.0 -2019,3,30,2,30,0.0,0.0,0.0,11.1,0.0 -2019,3,30,2,45,0.0,0.0,0.0,11.1,0.0 -2019,3,30,3,0,0.0,0.0,0.0,11.1,0.0 -2019,3,30,3,15,0.0,0.0,0.0,11.1,0.0 -2019,3,30,3,30,0.0,0.0,0.0,11.1,0.0 -2019,3,30,3,45,0.0,0.0,0.0,11.1,0.0 -2019,3,30,4,0,0.0,0.0,0.0,10.1,0.0 -2019,3,30,4,15,0.0,0.0,0.0,10.1,0.0 -2019,3,30,4,30,0.0,0.0,0.0,10.1,0.0 -2019,3,30,4,45,0.0,0.0,0.0,10.1,0.0 -2019,3,30,5,0,1.0,2.6822844571092275,3.0,11.0,0.0 -2019,3,30,5,15,1.0,2.732546212027768,3.0,11.0,0.0 -2019,3,30,5,30,1.0,2.7840656854333963,3.0,11.0,0.0 -2019,3,30,5,45,1.0,2.836622263031577,3.0,11.0,0.0 -2019,3,30,6,0,3.0,22.669972668465206,23.0,10.7,0.0 -2019,3,30,6,15,3.0,22.83182909645625,23.0,10.7,0.0 -2019,3,30,6,30,3.0,22.99474297899455,23.0,10.7,0.0 -2019,3,30,6,45,3.0,23.158016693824088,23.0,10.7,0.0 -2019,3,30,7,0,1.0,51.10698369261058,51.0,11.6,0.0 -2019,3,30,7,15,1.0,51.160949473657,51.0,11.6,0.0 -2019,3,30,7,30,1.0,51.21433848465455,51.0,11.6,0.0 -2019,3,30,7,45,1.0,51.2669221056617,51.0,11.6,0.0 -2019,3,30,8,0,0.0,76.0,76.0,12.5,2.1 -2019,3,30,8,15,0.0,76.0,76.0,12.5,2.1 -2019,3,30,8,30,0.0,76.0,76.0,12.5,2.1 -2019,3,30,8,45,0.0,76.0,76.0,12.5,2.1 -2019,3,30,9,0,130.0,397.306826807555,331.0,15.2,1.5 -2019,3,30,9,15,130.0,402.92409037167533,331.0,15.2,1.5 -2019,3,30,9,30,130.0,408.2479811787129,331.0,15.2,1.5 -2019,3,30,9,45,130.0,413.2557015108936,331.0,15.2,1.5 -2019,3,30,10,0,664.0,670.9902785168806,227.0,18.6,2.3 -2019,3,30,10,15,664.0,693.0171689911735,227.0,18.6,2.3 -2019,3,30,10,30,664.0,713.1231627672637,227.0,18.6,2.3 -2019,3,30,10,45,664.0,731.2221628930733,227.0,18.6,2.3 -2019,3,30,11,0,625.0,747.6805973940652,258.0,20.8,3.9 -2019,3,30,11,15,625.0,760.7278779542901,258.0,20.8,3.9 -2019,3,30,11,30,625.0,771.6926757526387,258.0,20.8,3.9 -2019,3,30,11,45,625.0,780.5280378415921,258.0,20.8,3.9 -2019,3,30,12,0,927.0,917.9036997850003,133.0,22.2,2.3 -2019,3,30,12,15,927.0,924.5369678646106,133.0,22.2,2.3 -2019,3,30,12,30,927.0,927.8849852932058,133.0,22.2,2.3 -2019,3,30,12,45,927.0,927.9334153461593,133.0,22.2,2.3 -2019,3,30,13,0,701.0,806.6721871603271,208.0,22.2,4.2 -2019,3,30,13,15,701.0,801.7287104889562,208.0,22.2,4.2 -2019,3,30,13,30,701.0,794.3216169834055,208.0,22.2,4.2 -2019,3,30,13,45,701.0,784.4826249552239,208.0,22.2,4.2 -2019,3,30,14,0,113.0,405.95675736391263,315.0,22.1,5.0 -2019,3,30,14,15,113.0,403.6087173868852,315.0,22.1,5.0 -2019,3,30,14,30,113.0,400.8939470332109,315.0,22.1,5.0 -2019,3,30,14,45,113.0,397.8240713663232,315.0,22.1,5.0 -2019,3,30,15,0,575.0,564.0888118358064,160.0,21.9,4.6 -2019,3,30,15,15,575.0,545.06198584952,160.0,21.9,4.6 -2019,3,30,15,30,575.0,524.4509185004094,160.0,21.9,4.6 -2019,3,30,15,45,575.0,502.34386954313214,160.0,21.9,4.6 -2019,3,30,16,0,479.0,373.603837874381,108.0,21.4,4.3 -2019,3,30,16,15,479.0,352.9368504001726,108.0,21.4,4.3 -2019,3,30,16,30,479.0,331.2748646360893,108.0,21.4,4.3 -2019,3,30,16,45,479.0,308.71064053078163,108.0,21.4,4.3 -2019,3,30,17,0,393.0,186.50090816597987,41.0,21.4,4.1 -2019,3,30,17,15,393.0,166.74803848299365,41.0,21.4,4.1 -2019,3,30,17,30,393.0,146.50088543458156,41.0,21.4,4.1 -2019,3,30,17,45,393.0,125.84615043849642,41.0,21.4,4.1 -2019,3,30,18,0,0.0,0.0,0.0,18.8,3.9 -2019,3,30,18,15,0.0,0.0,0.0,18.8,3.9 -2019,3,30,18,30,0.0,0.0,0.0,18.8,3.9 -2019,3,30,18,45,0.0,0.0,0.0,18.8,3.9 -2019,3,30,19,0,0.0,0.0,0.0,17.6,1.9 -2019,3,30,19,15,0.0,0.0,0.0,17.6,1.9 -2019,3,30,19,30,0.0,0.0,0.0,17.6,1.9 -2019,3,30,19,45,0.0,0.0,0.0,17.6,1.9 -2019,3,30,20,0,0.0,0.0,0.0,16.0,0.2 -2019,3,30,20,15,0.0,0.0,0.0,16.0,0.2 -2019,3,30,20,30,0.0,0.0,0.0,16.0,0.2 -2019,3,30,20,45,0.0,0.0,0.0,16.0,0.2 -2019,3,30,21,0,0.0,0.0,0.0,15.3,1.5 -2019,3,30,21,15,0.0,0.0,0.0,15.3,1.5 -2019,3,30,21,30,0.0,0.0,0.0,15.3,1.5 -2019,3,30,21,45,0.0,0.0,0.0,15.3,1.5 -2019,3,30,22,0,0.0,0.0,0.0,13.2,1.6 -2019,3,30,22,15,0.0,0.0,0.0,13.2,1.6 -2019,3,30,22,30,0.0,0.0,0.0,13.2,1.6 -2019,3,30,22,45,0.0,0.0,0.0,13.2,1.6 -2019,3,30,23,0,0.0,0.0,0.0,12.2,2.4 -2019,3,30,23,15,0.0,0.0,0.0,12.2,2.4 -2019,3,30,23,30,0.0,0.0,0.0,12.2,2.4 -2019,3,30,23,45,0.0,0.0,0.0,12.2,2.4 -2019,3,31,0,0,0.0,0.0,0.0,11.8,2.0 -2019,3,31,0,15,0.0,0.0,0.0,11.8,2.0 -2019,3,31,0,30,0.0,0.0,0.0,11.8,2.0 -2019,3,31,0,45,0.0,0.0,0.0,11.8,2.0 -2019,3,31,1,0,0.0,0.0,0.0,11.7,0.0 -2019,3,31,1,15,0.0,0.0,0.0,11.7,0.0 -2019,3,31,1,30,0.0,0.0,0.0,11.7,0.0 -2019,3,31,1,45,0.0,0.0,0.0,11.7,0.0 -2019,3,31,2,0,0.0,0.0,0.0,11.7,0.0 -2019,3,31,2,15,0.0,0.0,0.0,11.7,0.0 -2019,3,31,2,30,0.0,0.0,0.0,11.7,0.0 -2019,3,31,2,45,0.0,0.0,0.0,11.7,0.0 -2019,3,31,3,0,0.0,0.0,0.0,11.7,0.0 -2019,3,31,3,15,0.0,0.0,0.0,11.7,0.0 -2019,3,31,3,30,0.0,0.0,0.0,11.7,0.0 -2019,3,31,3,45,0.0,0.0,0.0,11.7,0.0 -2019,3,31,4,0,0.0,0.0,0.0,11.9,0.8 -2019,3,31,4,15,0.0,0.0,0.0,11.9,0.8 -2019,3,31,4,30,0.0,0.0,0.0,11.9,0.8 -2019,3,31,4,45,0.0,0.0,0.0,11.9,0.8 -2019,3,31,5,0,1.0,3.686271816620553,4.0,12.0,1.5 -2019,3,31,5,15,1.0,3.73651567458289,4.0,12.0,1.5 -2019,3,31,5,30,1.0,3.788016803190159,4.0,12.0,1.5 -2019,3,31,5,45,1.0,3.8405546667030683,4.0,12.0,1.5 -2019,3,31,6,0,2.0,22.78780857984859,23.0,11.8,2.0 -2019,3,31,6,15,2.0,22.895674443153645,23.0,11.8,2.0 -2019,3,31,6,30,2.0,23.00424502513476,23.0,11.8,2.0 -2019,3,31,6,45,2.0,23.113055409891835,23.0,11.8,2.0 -2019,3,31,7,0,1.0,51.11081982732623,51.0,11.8,0.6 -2019,3,31,7,15,1.0,51.164766392505214,51.0,11.8,0.6 -2019,3,31,7,30,1.0,51.21813639300874,51.0,11.8,0.6 -2019,3,31,7,45,1.0,51.27070129030114,51.0,11.8,0.6 -2019,3,31,8,0,0.0,76.0,76.0,12.8,0.0 -2019,3,31,8,15,0.0,76.0,76.0,12.8,0.0 -2019,3,31,8,30,0.0,76.0,76.0,12.8,0.0 -2019,3,31,8,45,0.0,76.0,76.0,12.8,0.0 -2019,3,31,9,0,0.0,96.0,96.0,13.4,0.2 -2019,3,31,9,15,0.0,96.0,96.0,13.4,0.2 -2019,3,31,9,30,0.0,96.0,96.0,13.4,0.2 -2019,3,31,9,45,0.0,96.0,96.0,13.4,0.2 -2019,3,31,10,0,0.0,110.0,110.0,14.0,2.3 -2019,3,31,10,15,0.0,110.0,110.0,14.0,2.3 -2019,3,31,10,30,0.0,110.0,110.0,14.0,2.3 -2019,3,31,10,45,0.0,110.0,110.0,14.0,2.3 -2019,3,31,11,0,0.0,132.0,132.0,14.3,3.8 -2019,3,31,11,15,0.0,132.0,132.0,14.3,3.8 -2019,3,31,11,30,0.0,132.0,132.0,14.3,3.8 -2019,3,31,11,45,0.0,132.0,132.0,14.3,3.8 -2019,3,31,12,0,0.0,181.0,181.0,15.0,4.1 -2019,3,31,12,15,0.0,181.0,181.0,15.0,4.1 -2019,3,31,12,30,0.0,181.0,181.0,15.0,4.1 -2019,3,31,12,45,0.0,181.0,181.0,15.0,4.1 -2019,3,31,13,0,1.0,200.85759607621262,200.0,15.7,1.6 -2019,3,31,13,15,1.0,200.8505465520718,200.0,15.7,1.6 -2019,3,31,13,30,1.0,200.8399838473293,200.0,15.7,1.6 -2019,3,31,13,45,1.0,200.82595319310857,200.0,15.7,1.6 -2019,3,31,14,0,10.0,241.08514670824957,233.0,16.1,2.9 -2019,3,31,14,15,10.0,240.87742954908074,233.0,16.1,2.9 -2019,3,31,14,30,10.0,240.63726993034427,233.0,16.1,2.9 -2019,3,31,14,45,10.0,240.3656962523975,233.0,16.1,2.9 -2019,3,31,15,0,4.0,134.82554857416886,132.0,16.1,3.9 -2019,3,31,15,15,4.0,134.69323517584863,132.0,16.1,3.9 -2019,3,31,15,30,4.0,134.54990489228302,132.0,16.1,3.9 -2019,3,31,15,45,4.0,134.39617148575073,132.0,16.1,3.9 -2019,3,31,16,0,3.0,62.67451994972505,61.0,16.0,1.9 -2019,3,31,16,15,3.0,62.54512770457331,61.0,16.0,1.9 -2019,3,31,16,30,3.0,62.40950595631621,61.0,16.0,1.9 -2019,3,31,16,45,3.0,62.26823545810081,61.0,16.0,1.9 -2019,3,31,17,0,1.0,23.373973717296238,23.0,16.0,2.3 -2019,3,31,17,15,1.0,23.323729859333902,23.0,16.0,2.3 -2019,3,31,17,30,1.0,23.27222873072663,23.0,16.0,2.3 -2019,3,31,17,45,1.0,23.21969086721372,23.0,16.0,2.3 -2019,3,31,18,0,0.0,0.0,0.0,15.5,4.0 -2019,3,31,18,15,0.0,0.0,0.0,15.5,4.0 -2019,3,31,18,30,0.0,0.0,0.0,15.5,4.0 -2019,3,31,18,45,0.0,0.0,0.0,15.5,4.0 -2019,3,31,19,0,0.0,0.0,0.0,14.9,3.2 -2019,3,31,19,15,0.0,0.0,0.0,14.9,3.2 -2019,3,31,19,30,0.0,0.0,0.0,14.9,3.2 -2019,3,31,19,45,0.0,0.0,0.0,14.9,3.2 -2019,3,31,20,0,0.0,0.0,0.0,14.3,4.0 -2019,3,31,20,15,0.0,0.0,0.0,14.3,4.0 -2019,3,31,20,30,0.0,0.0,0.0,14.3,4.0 -2019,3,31,20,45,0.0,0.0,0.0,14.3,4.0 -2019,3,31,21,0,0.0,0.0,0.0,13.2,3.0 -2019,3,31,21,15,0.0,0.0,0.0,13.2,3.0 -2019,3,31,21,30,0.0,0.0,0.0,13.2,3.0 -2019,3,31,21,45,0.0,0.0,0.0,13.2,3.0 -2019,3,31,22,0,0.0,0.0,0.0,12.2,2.6 -2019,3,31,22,15,0.0,0.0,0.0,12.2,2.6 -2019,3,31,22,30,0.0,0.0,0.0,12.2,2.6 -2019,3,31,22,45,0.0,0.0,0.0,12.2,2.6 -2019,3,31,23,0,0.0,0.0,0.0,11.6,6.3 -2019,3,31,23,15,0.0,0.0,0.0,11.6,6.3 -2019,3,31,23,30,0.0,0.0,0.0,11.6,6.3 -2019,3,31,23,45,0.0,0.0,0.0,11.6,6.3 -2019,4,1,0,0,0.0,0.0,0.0,10.5,4.5 -2019,4,1,0,15,0.0,0.0,0.0,10.5,4.5 -2019,4,1,0,30,0.0,0.0,0.0,10.5,4.5 -2019,4,1,0,45,0.0,0.0,0.0,10.5,4.5 -2019,4,1,1,0,0.0,0.0,0.0,9.3,3.7 -2019,4,1,1,15,0.0,0.0,0.0,9.3,3.7 -2019,4,1,1,30,0.0,0.0,0.0,9.3,3.7 -2019,4,1,1,45,0.0,0.0,0.0,9.3,3.7 -2019,4,1,2,0,0.0,0.0,0.0,9.3,0.0 -2019,4,1,2,15,0.0,0.0,0.0,9.3,0.0 -2019,4,1,2,30,0.0,0.0,0.0,9.3,0.0 -2019,4,1,2,45,0.0,0.0,0.0,9.3,0.0 -2019,4,1,3,0,0.0,0.0,0.0,9.0,0.2 -2019,4,1,3,15,0.0,0.0,0.0,9.0,0.2 -2019,4,1,3,30,0.0,0.0,0.0,9.0,0.2 -2019,4,1,3,45,0.0,0.0,0.0,9.0,0.2 -2019,4,1,4,0,0.0,0.0,0.0,9.2,2.1 -2019,4,1,4,15,0.0,0.0,0.0,9.2,2.1 -2019,4,1,4,30,0.0,0.0,0.0,9.2,2.1 -2019,4,1,4,45,0.0,0.0,0.0,9.2,2.1 -2019,4,1,5,0,129.0,-36.955784059776384,3.0,8.4,0.0 -2019,4,1,5,15,129.0,-30.47694513011831,3.0,8.4,0.0 -2019,4,1,5,30,129.0,-23.835983817150957,3.0,8.4,0.0 -2019,4,1,5,45,129.0,-17.061337736755384,3.0,8.4,0.0 -2019,4,1,6,0,257.0,38.73815225099085,65.0,9.1,0.0 -2019,4,1,6,15,257.0,52.593315427049546,65.0,9.1,0.0 -2019,4,1,6,30,257.0,66.53899836488337,65.0,9.1,0.0 -2019,4,1,6,45,257.0,80.51548350917233,65.0,9.1,0.0 -2019,4,1,7,0,1.0,62.11464171752848,62.0,10.7,0.4 -2019,4,1,7,15,1.0,62.168566486309366,62.0,10.7,0.4 -2019,4,1,7,30,1.0,62.22191492336814,62.0,10.7,0.4 -2019,4,1,7,45,1.0,62.27445858250713,62.0,10.7,0.4 -2019,4,1,8,0,85.0,276.7076594154553,249.0,11.2,0.0 -2019,4,1,8,15,85.0,280.9800580137715,249.0,11.2,0.0 -2019,4,1,8,30,85.0,285.1278802413458,249.0,11.2,0.0 -2019,4,1,8,45,85.0,289.13336448661454,249.0,11.2,0.0 -2019,4,1,9,0,165.0,419.37169620508877,334.0,13.5,2.8 -2019,4,1,9,15,165.0,426.4958816889949,334.0,13.5,2.8 -2019,4,1,9,30,165.0,433.2479924227092,334.0,13.5,2.8 -2019,4,1,9,45,165.0,439.599114831467,334.0,13.5,2.8 -2019,4,1,10,0,212.0,526.2889400971105,383.0,15.2,4.5 -2019,4,1,10,15,212.0,533.3162773824822,383.0,15.2,4.5 -2019,4,1,10,30,212.0,539.7307824115541,383.0,15.2,4.5 -2019,4,1,10,45,212.0,545.504987289019,383.0,15.2,4.5 -2019,4,1,11,0,470.0,695.5974434531427,324.0,16.8,4.0 -2019,4,1,11,15,470.0,705.4015419668247,324.0,16.8,4.0 -2019,4,1,11,30,470.0,713.6408035739776,324.0,16.8,4.0 -2019,4,1,11,45,470.0,720.2799464914851,324.0,16.8,4.0 -2019,4,1,12,0,792.0,864.2172518829168,188.0,17.9,3.4 -2019,4,1,12,15,792.0,869.8802031132881,188.0,17.9,3.4 -2019,4,1,12,30,792.0,872.7384713438225,188.0,17.9,3.4 -2019,4,1,12,45,792.0,872.7798170311471,188.0,17.9,3.4 -2019,4,1,13,0,439.0,685.0300299401683,307.0,18.4,2.5 -2019,4,1,13,15,439.0,681.9365392316555,307.0,18.4,2.5 -2019,4,1,13,30,439.0,677.3013853794678,307.0,18.4,2.5 -2019,4,1,13,45,439.0,671.1444168240018,307.0,18.4,2.5 -2019,4,1,14,0,717.0,754.2431959725294,172.0,19.4,5.5 -2019,4,1,14,15,717.0,739.3558931097538,172.0,19.4,5.5 -2019,4,1,14,30,717.0,722.1434057358376,172.0,19.4,5.5 -2019,4,1,14,45,717.0,702.6794403642257,172.0,19.4,5.5 -2019,4,1,15,0,963.0,753.6995717287831,70.0,19.2,4.0 -2019,4,1,15,15,963.0,721.8579914538058,70.0,19.2,4.0 -2019,4,1,15,30,963.0,687.3651676889442,70.0,19.2,4.0 -2019,4,1,15,45,963.0,650.3688040009938,70.0,19.2,4.0 -2019,4,1,16,0,900.0,554.6330135505154,49.0,18.8,3.5 -2019,4,1,16,15,900.0,515.8310237739797,49.0,18.8,3.5 -2019,4,1,16,30,900.0,475.16093815040426,49.0,18.8,3.5 -2019,4,1,16,45,900.0,432.79691223021376,49.0,18.8,3.5 -2019,4,1,17,0,586.0,254.32592021319775,33.0,18.2,2.9 -2019,4,1,17,15,586.0,224.8949154629681,33.0,18.2,2.9 -2019,4,1,17,30,586.0,194.72744779320954,33.0,18.2,2.9 -2019,4,1,17,45,586.0,163.95269893187762,33.0,18.2,2.9 -2019,4,1,18,0,0.0,0.0,0.0,17.7,1.3 -2019,4,1,18,15,0.0,0.0,0.0,17.7,1.3 -2019,4,1,18,30,0.0,0.0,0.0,17.7,1.3 -2019,4,1,18,45,0.0,0.0,0.0,17.7,1.3 -2019,4,1,19,0,0.0,0.0,0.0,17.1,0.0 -2019,4,1,19,15,0.0,0.0,0.0,17.1,0.0 -2019,4,1,19,30,0.0,0.0,0.0,17.1,0.0 -2019,4,1,19,45,0.0,0.0,0.0,17.1,0.0 -2019,4,1,20,0,0.0,0.0,0.0,16.0,0.3 -2019,4,1,20,15,0.0,0.0,0.0,16.0,0.3 -2019,4,1,20,30,0.0,0.0,0.0,16.0,0.3 -2019,4,1,20,45,0.0,0.0,0.0,16.0,0.3 -2019,4,1,21,0,0.0,0.0,0.0,14.8,2.3 -2019,4,1,21,15,0.0,0.0,0.0,14.8,2.3 -2019,4,1,21,30,0.0,0.0,0.0,14.8,2.3 -2019,4,1,21,45,0.0,0.0,0.0,14.8,2.3 -2019,4,1,22,0,0.0,0.0,0.0,13.2,0.0 -2019,4,1,22,15,0.0,0.0,0.0,13.2,0.0 -2019,4,1,22,30,0.0,0.0,0.0,13.2,0.0 -2019,4,1,22,45,0.0,0.0,0.0,13.2,0.0 -2019,4,1,23,0,0.0,0.0,0.0,12.1,0.0 -2019,4,1,23,15,0.0,0.0,0.0,12.1,0.0 -2019,4,1,23,30,0.0,0.0,0.0,12.1,0.0 -2019,4,1,23,45,0.0,0.0,0.0,12.1,0.0 -2019,4,2,0,0,0.0,0.0,0.0,11.3,0.3 -2019,4,2,0,15,0.0,0.0,0.0,11.3,0.3 -2019,4,2,0,30,0.0,0.0,0.0,11.3,0.3 -2019,4,2,0,45,0.0,0.0,0.0,11.3,0.3 -2019,4,2,1,0,0.0,0.0,0.0,12.7,2.5 -2019,4,2,1,15,0.0,0.0,0.0,12.7,2.5 -2019,4,2,1,30,0.0,0.0,0.0,12.7,2.5 -2019,4,2,1,45,0.0,0.0,0.0,12.7,2.5 -2019,4,2,2,0,0.0,0.0,0.0,12.5,1.8 -2019,4,2,2,15,0.0,0.0,0.0,12.5,1.8 -2019,4,2,2,30,0.0,0.0,0.0,12.5,1.8 -2019,4,2,2,45,0.0,0.0,0.0,12.5,1.8 -2019,4,2,3,0,0.0,0.0,0.0,14.9,4.1 -2019,4,2,3,15,0.0,0.0,0.0,14.9,4.1 -2019,4,2,3,30,0.0,0.0,0.0,14.9,4.1 -2019,4,2,3,45,0.0,0.0,0.0,14.9,4.1 -2019,4,2,4,0,0.0,0.0,0.0,14.5,4.1 -2019,4,2,4,15,0.0,0.0,0.0,14.5,4.1 -2019,4,2,4,30,0.0,0.0,0.0,14.5,4.1 -2019,4,2,4,45,0.0,0.0,0.0,14.5,4.1 -2019,4,2,5,0,419.0,-128.10370345527173,0.0,15.1,4.4 -2019,4,2,5,15,419.0,-107.06953522127648,0.0,15.1,4.4 -2019,4,2,5,30,419.0,-85.50902121421178,0.0,15.1,4.4 -2019,4,2,5,45,419.0,-63.51448686508616,0.0,15.1,4.4 -2019,4,2,6,0,760.0,-41.69424408460645,33.0,16.3,6.6 -2019,4,2,6,15,760.0,-0.740278472519897,33.0,16.3,6.6 -2019,4,2,6,30,760.0,40.48125116345021,33.0,16.3,6.6 -2019,4,2,6,45,760.0,81.79382790495876,33.0,16.3,6.6 -2019,4,2,7,0,757.0,171.6652006995711,82.0,18.0,6.3 -2019,4,2,7,15,757.0,212.46781767227782,82.0,18.0,6.3 -2019,4,2,7,30,757.0,252.83434853765573,82.0,18.0,6.3 -2019,4,2,7,45,757.0,292.59193761335666,82.0,18.0,6.3 -2019,4,2,8,0,786.0,381.13115551416166,122.0,19.7,7.1 -2019,4,2,8,15,786.0,420.62043698851426,122.0,19.7,7.1 -2019,4,2,8,30,786.0,458.9582736114389,122.0,19.7,7.1 -2019,4,2,8,45,786.0,495.98049688078464,122.0,19.7,7.1 -2019,4,2,9,0,858.0,580.0426396125515,133.0,21.8,6.5 -2019,4,2,9,15,858.0,617.0716758876447,133.0,21.8,6.5 -2019,4,2,9,30,858.0,652.1667971273946,133.0,21.8,6.5 -2019,4,2,9,45,858.0,685.1777206347514,133.0,21.8,6.5 -2019,4,2,10,0,792.0,717.1197740621485,179.0,22.9,4.9 -2019,4,2,10,15,792.0,743.3609906954277,179.0,22.9,4.9 -2019,4,2,10,30,792.0,767.3137923367443,179.0,22.9,4.9 -2019,4,2,10,45,792.0,788.8756094121691,179.0,22.9,4.9 -2019,4,2,11,0,879.0,852.0437670335269,154.0,24.0,3.8 -2019,4,2,11,15,879.0,870.3712376125344,154.0,24.0,3.8 -2019,4,2,11,30,879.0,885.7734517464608,154.0,24.0,3.8 -2019,4,2,11,45,879.0,898.1844547897938,154.0,24.0,3.8 -2019,4,2,12,0,847.0,892.1180688066486,166.0,24.5,4.9 -2019,4,2,12,15,847.0,898.1715458197339,166.0,24.5,4.9 -2019,4,2,12,30,847.0,901.2269246013798,166.0,24.5,4.9 -2019,4,2,12,45,847.0,901.2711215505726,166.0,24.5,4.9 -2019,4,2,13,0,671.0,801.1368934020862,221.0,25.1,3.5 -2019,4,2,13,15,671.0,796.4107089924499,221.0,25.1,3.5 -2019,4,2,13,30,671.0,789.3291968960364,221.0,25.1,3.5 -2019,4,2,13,45,671.0,779.922681234816,221.0,25.1,3.5 -2019,4,2,14,0,1038.0,919.5368658044372,73.0,25.5,3.4 -2019,4,2,14,15,1038.0,897.9942682230769,73.0,25.5,3.4 -2019,4,2,14,30,1038.0,873.0870239567112,73.0,25.5,3.4 -2019,4,2,14,45,1038.0,844.9217896491186,73.0,25.5,3.4 -2019,4,2,15,0,1012.0,782.068018531311,60.0,24.7,5.7 -2019,4,2,15,15,1012.0,748.6213638697166,60.0,24.7,5.7 -2019,4,2,15,30,1012.0,712.3898215026694,60.0,24.7,5.7 -2019,4,2,15,45,1012.0,673.5285404569529,60.0,24.7,5.7 -2019,4,2,16,0,870.0,545.9144463562889,54.0,23.2,5.4 -2019,4,2,16,15,870.0,508.4227934719168,54.0,23.2,5.4 -2019,4,2,16,30,870.0,469.12613003382506,54.0,23.2,5.4 -2019,4,2,16,45,870.0,428.19273038778954,54.0,23.2,5.4 -2019,4,2,17,0,554.0,246.2827864482279,35.0,22.0,5.0 -2019,4,2,17,15,554.0,218.47149957082144,35.0,22.0,5.0 -2019,4,2,17,30,554.0,189.96428057341362,35.0,22.0,5.0 -2019,4,2,17,45,554.0,160.8832017442595,35.0,22.0,5.0 -2019,4,2,18,0,0.0,0.0,0.0,20.3,4.4 -2019,4,2,18,15,0.0,0.0,0.0,20.3,4.4 -2019,4,2,18,30,0.0,0.0,0.0,20.3,4.4 -2019,4,2,18,45,0.0,0.0,0.0,20.3,4.4 -2019,4,2,19,0,0.0,0.0,0.0,17.7,2.7 -2019,4,2,19,15,0.0,0.0,0.0,17.7,2.7 -2019,4,2,19,30,0.0,0.0,0.0,17.7,2.7 -2019,4,2,19,45,0.0,0.0,0.0,17.7,2.7 -2019,4,2,20,0,0.0,0.0,0.0,17.1,0.0 -2019,4,2,20,15,0.0,0.0,0.0,17.1,0.0 -2019,4,2,20,30,0.0,0.0,0.0,17.1,0.0 -2019,4,2,20,45,0.0,0.0,0.0,17.1,0.0 -2019,4,2,21,0,0.0,0.0,0.0,16.0,0.0 -2019,4,2,21,15,0.0,0.0,0.0,16.0,0.0 -2019,4,2,21,30,0.0,0.0,0.0,16.0,0.0 -2019,4,2,21,45,0.0,0.0,0.0,16.0,0.0 -2019,4,2,22,0,0.0,0.0,0.0,14.8,0.2 -2019,4,2,22,15,0.0,0.0,0.0,14.8,0.2 -2019,4,2,22,30,0.0,0.0,0.0,14.8,0.2 -2019,4,2,22,45,0.0,0.0,0.0,14.8,0.2 -2019,4,2,23,0,0.0,0.0,0.0,13.3,1.7 -2019,4,2,23,15,0.0,0.0,0.0,13.3,1.7 -2019,4,2,23,30,0.0,0.0,0.0,13.3,1.7 -2019,4,2,23,45,0.0,0.0,0.0,13.3,1.7 -2019,4,3,0,0,0.0,0.0,0.0,13.2,2.9 -2019,4,3,0,15,0.0,0.0,0.0,13.2,2.9 -2019,4,3,0,30,0.0,0.0,0.0,13.2,2.9 -2019,4,3,0,45,0.0,0.0,0.0,13.2,2.9 -2019,4,3,1,0,0.0,0.0,0.0,11.9,1.3 -2019,4,3,1,15,0.0,0.0,0.0,11.9,1.3 -2019,4,3,1,30,0.0,0.0,0.0,11.9,1.3 -2019,4,3,1,45,0.0,0.0,0.0,11.9,1.3 -2019,4,3,2,0,0.0,0.0,0.0,10.1,0.3 -2019,4,3,2,15,0.0,0.0,0.0,10.1,0.3 -2019,4,3,2,30,0.0,0.0,0.0,10.1,0.3 -2019,4,3,2,45,0.0,0.0,0.0,10.1,0.3 -2019,4,3,3,0,0.0,0.0,0.0,10.9,2.3 -2019,4,3,3,15,0.0,0.0,0.0,10.9,2.3 -2019,4,3,3,30,0.0,0.0,0.0,10.9,2.3 -2019,4,3,3,45,0.0,0.0,0.0,10.9,2.3 -2019,4,3,4,0,0.0,0.0,0.0,9.4,0.0 -2019,4,3,4,15,0.0,0.0,0.0,9.4,0.0 -2019,4,3,4,30,0.0,0.0,0.0,9.4,0.0 -2019,4,3,4,45,0.0,0.0,0.0,9.4,0.0 -2019,4,3,5,0,430.0,-129.7463473388541,0.0,9.7,0.0 -2019,4,3,5,15,430.0,-108.17073199099497,0.0,9.7,0.0 -2019,4,3,5,30,430.0,-86.05522203863399,0.0,9.7,0.0 -2019,4,3,5,45,430.0,-63.4945194906219,0.0,9.7,0.0 -2019,4,3,6,0,571.0,-4.893413706707456,49.0,12.7,0.0 -2019,4,3,6,15,571.0,25.860606286854892,49.0,12.7,0.0 -2019,4,3,6,30,571.0,56.81555112901477,49.0,12.7,0.0 -2019,4,3,6,45,571.0,87.83886699366852,49.0,12.7,0.0 -2019,4,3,7,0,855.0,170.51320442026372,66.0,16.6,0.0 -2019,4,3,7,15,855.0,216.5750854027704,66.0,16.6,0.0 -2019,4,3,7,30,855.0,262.1446708448379,66.0,16.6,0.0 -2019,4,3,7,45,855.0,307.0268247856334,66.0,16.6,0.0 -2019,4,3,8,0,1014.0,403.0348139425387,65.0,20.3,0.2 -2019,4,3,8,15,1014.0,453.9536017000758,65.0,20.3,0.2 -2019,4,3,8,30,1014.0,503.3876783204288,65.0,20.3,0.2 -2019,4,3,8,45,1014.0,551.125359498252,65.0,20.3,0.2 -2019,4,3,9,0,1014.0,615.9622251539198,84.0,22.5,1.5 -2019,4,3,9,15,1014.0,659.7019947916908,84.0,22.5,1.5 -2019,4,3,9,30,1014.0,701.1573680029247,84.0,22.5,1.5 -2019,4,3,9,45,1014.0,740.150826515186,84.0,22.5,1.5 -2019,4,3,10,0,1048.0,799.7358316387301,84.0,24.5,1.6 -2019,4,3,10,15,1048.0,834.4417453553036,84.0,24.5,1.6 -2019,4,3,10,30,1048.0,866.1210641403735,84.0,24.5,1.6 -2019,4,3,10,45,1048.0,894.6381322874047,84.0,24.5,1.6 -2019,4,3,11,0,534.0,725.9112844156424,300.0,25.7,2.3 -2019,4,3,11,15,534.0,737.0398279243507,300.0,25.7,2.3 -2019,4,3,11,30,534.0,746.3921392201698,300.0,25.7,2.3 -2019,4,3,11,45,534.0,753.928170270338,300.0,25.7,2.3 -2019,4,3,12,0,520.0,750.5658021144791,303.0,26.7,4.3 -2019,4,3,12,15,520.0,754.2803695408986,303.0,26.7,4.3 -2019,4,3,12,30,520.0,756.1552276551924,303.0,26.7,4.3 -2019,4,3,12,45,520.0,756.1823480270818,303.0,26.7,4.3 -2019,4,3,13,0,495.0,718.661536901674,289.0,26.6,5.6 -2019,4,3,13,15,495.0,715.1767457357842,289.0,26.6,5.6 -2019,4,3,13,30,495.0,709.9552840542615,289.0,26.6,5.6 -2019,4,3,13,45,495.0,703.0195109576401,289.0,26.6,5.6 -2019,4,3,14,0,533.0,668.5206755954877,232.0,26.0,4.7 -2019,4,3,14,15,533.0,657.4643367667272,232.0,26.0,4.7 -2019,4,3,14,30,533.0,644.6811554043315,232.0,26.0,4.7 -2019,4,3,14,45,533.0,630.2258710534039,232.0,26.0,4.7 -2019,4,3,15,0,636.0,605.0112643171433,149.0,25.4,5.1 -2019,4,3,15,15,636.0,584.0019100502459,149.0,25.4,5.1 -2019,4,3,15,30,636.0,561.2432420481077,149.0,25.4,5.1 -2019,4,3,15,45,636.0,536.8327164210882,149.0,25.4,5.1 -2019,4,3,16,0,762.0,503.5670525850167,70.0,24.4,5.1 -2019,4,3,16,15,762.0,470.7459080758189,70.0,24.4,5.1 -2019,4,3,16,30,762.0,436.34461151499073,70.0,24.4,5.1 -2019,4,3,16,45,762.0,400.51047453578883,70.0,24.4,5.1 -2019,4,3,17,0,621.0,271.1069586366998,32.0,23.6,4.9 -2019,4,3,17,15,621.0,239.94775600641944,32.0,23.6,4.9 -2019,4,3,17,30,621.0,208.00884512173064,32.0,23.6,4.9 -2019,4,3,17,45,621.0,175.42699330239233,32.0,23.6,4.9 -2019,4,3,18,0,0.0,0.0,0.0,21.4,3.5 -2019,4,3,18,15,0.0,0.0,0.0,21.4,3.5 -2019,4,3,18,30,0.0,0.0,0.0,21.4,3.5 -2019,4,3,18,45,0.0,0.0,0.0,21.4,3.5 -2019,4,3,19,0,0.0,0.0,0.0,19.3,3.0 -2019,4,3,19,15,0.0,0.0,0.0,19.3,3.0 -2019,4,3,19,30,0.0,0.0,0.0,19.3,3.0 -2019,4,3,19,45,0.0,0.0,0.0,19.3,3.0 -2019,4,3,20,0,0.0,0.0,0.0,18.2,1.9 -2019,4,3,20,15,0.0,0.0,0.0,18.2,1.9 -2019,4,3,20,30,0.0,0.0,0.0,18.2,1.9 -2019,4,3,20,45,0.0,0.0,0.0,18.2,1.9 -2019,4,3,21,0,0.0,0.0,0.0,17.1,0.0 -2019,4,3,21,15,0.0,0.0,0.0,17.1,0.0 -2019,4,3,21,30,0.0,0.0,0.0,17.1,0.0 -2019,4,3,21,45,0.0,0.0,0.0,17.1,0.0 -2019,4,3,22,0,0.0,0.0,0.0,16.0,0.0 -2019,4,3,22,15,0.0,0.0,0.0,16.0,0.0 -2019,4,3,22,30,0.0,0.0,0.0,16.0,0.0 -2019,4,3,22,45,0.0,0.0,0.0,16.0,0.0 -2019,4,3,23,0,0.0,0.0,0.0,15.4,0.0 -2019,4,3,23,15,0.0,0.0,0.0,15.4,0.0 -2019,4,3,23,30,0.0,0.0,0.0,15.4,0.0 -2019,4,3,23,45,0.0,0.0,0.0,15.4,0.0 -2019,4,4,0,0,0.0,0.0,0.0,13.7,0.2 -2019,4,4,0,15,0.0,0.0,0.0,13.7,0.2 -2019,4,4,0,30,0.0,0.0,0.0,13.7,0.2 -2019,4,4,0,45,0.0,0.0,0.0,13.7,0.2 -2019,4,4,1,0,0.0,0.0,0.0,12.1,2.1 -2019,4,4,1,15,0.0,0.0,0.0,12.1,2.1 -2019,4,4,1,30,0.0,0.0,0.0,12.1,2.1 -2019,4,4,1,45,0.0,0.0,0.0,12.1,2.1 -2019,4,4,2,0,0.0,0.0,0.0,11.6,1.9 -2019,4,4,2,15,0.0,0.0,0.0,11.6,1.9 -2019,4,4,2,30,0.0,0.0,0.0,11.6,1.9 -2019,4,4,2,45,0.0,0.0,0.0,11.6,1.9 -2019,4,4,3,0,0.0,0.0,0.0,10.5,0.0 -2019,4,4,3,15,0.0,0.0,0.0,10.5,0.0 -2019,4,4,3,30,0.0,0.0,0.0,10.5,0.0 -2019,4,4,3,45,0.0,0.0,0.0,10.5,0.0 -2019,4,4,4,0,0.0,0.0,0.0,10.0,0.0 -2019,4,4,4,15,0.0,0.0,0.0,10.0,0.0 -2019,4,4,4,30,0.0,0.0,0.0,10.0,0.0 -2019,4,4,4,45,0.0,0.0,0.0,10.0,0.0 -2019,4,4,5,0,8.0,5.618135523112494,8.0,10.2,0.0 -2019,4,4,5,15,8.0,6.019323529842034,8.0,10.2,0.0 -2019,4,4,5,30,8.0,6.430550612478889,8.0,10.2,0.0 -2019,4,4,5,45,8.0,6.850055833522475,8.0,10.2,0.0 -2019,4,4,6,0,16.0,47.552085614425344,49.0,12.1,0.0 -2019,4,4,6,15,16.0,48.413374783858856,49.0,12.1,0.0 -2019,4,4,6,30,16.0,49.28029100289445,49.0,12.1,0.0 -2019,4,4,6,45,16.0,50.14912200319081,49.0,12.1,0.0 -2019,4,4,7,0,27.0,139.4022485974701,136.0,15.3,0.0 -2019,4,4,7,15,27.0,140.85604147748165,136.0,15.3,0.0 -2019,4,4,7,30,27.0,142.29429665611656,136.0,15.3,0.0 -2019,4,4,7,45,27.0,143.710855303895,136.0,15.3,0.0 -2019,4,4,8,0,172.0,317.96815029128356,260.0,17.5,0.0 -2019,4,4,8,15,172.0,326.6005544818785,260.0,17.5,0.0 -2019,4,4,8,30,172.0,334.9812514499158,260.0,17.5,0.0 -2019,4,4,8,45,172.0,343.07435376435035,260.0,17.5,0.0 -2019,4,4,9,0,838.0,583.6062920033928,141.0,19.8,0.2 -2019,4,4,9,15,838.0,619.734446242927,141.0,19.8,0.2 -2019,4,4,9,30,838.0,653.9757358024308,141.0,19.8,0.2 -2019,4,4,9,45,838.0,686.1835342231919,141.0,19.8,0.2 -2019,4,4,10,0,74.0,438.7950767121872,388.0,22.9,1.5 -2019,4,4,10,15,74.0,441.2443493969816,388.0,22.9,1.5 -2019,4,4,10,30,74.0,443.4800286188806,388.0,22.9,1.5 -2019,4,4,10,45,74.0,445.4925408562285,388.0,22.9,1.5 -2019,4,4,11,0,136.0,532.9346551119127,424.0,23.4,1.6 -2019,4,4,11,15,136.0,535.7673460857819,424.0,23.4,1.6 -2019,4,4,11,30,136.0,538.1479098829897,424.0,23.4,1.6 -2019,4,4,11,45,136.0,540.0661525638855,424.0,23.4,1.6 -2019,4,4,12,0,494.0,740.8518147051097,314.0,24.5,2.6 -2019,4,4,12,15,494.0,744.3787303342604,314.0,24.5,2.6 -2019,4,4,12,30,494.0,746.1588747297324,314.0,24.5,2.6 -2019,4,4,12,45,494.0,746.1846250399312,314.0,24.5,2.6 -2019,4,4,13,0,567.0,756.0657466718803,262.0,25.0,2.7 -2019,4,4,13,15,567.0,752.0762524870672,262.0,25.0,2.7 -2019,4,4,13,30,567.0,746.0985654398326,262.0,25.0,2.7 -2019,4,4,13,45,567.0,738.1582829038236,262.0,25.0,2.7 -2019,4,4,14,0,938.0,874.3923513083352,103.0,24.9,3.7 -2019,4,4,14,15,938.0,854.9454599440406,103.0,24.9,3.7 -2019,4,4,14,30,938.0,832.4612413347184,103.0,24.9,3.7 -2019,4,4,14,45,938.0,807.035976356294,103.0,24.9,3.7 -2019,4,4,15,0,896.0,731.5197993043699,86.0,24.3,4.6 -2019,4,4,15,15,896.0,701.9378480116573,86.0,24.3,4.6 -2019,4,4,15,30,896.0,669.8927979937687,86.0,24.3,4.6 -2019,4,4,15,45,896.0,635.5218710745263,86.0,24.3,4.6 -2019,4,4,16,0,796.0,520.7208817817145,65.0,23.2,4.6 -2019,4,4,16,15,796.0,486.45396443842964,65.0,23.2,4.6 -2019,4,4,16,30,796.0,450.53728927734943,65.0,23.2,4.6 -2019,4,4,16,45,796.0,413.12465701554197,65.0,23.2,4.6 -2019,4,4,17,0,502.0,234.10915790527392,39.0,21.9,4.4 -2019,4,4,17,15,502.0,208.93461048299523,39.0,21.9,4.4 -2019,4,4,17,30,502.0,183.1301110475326,39.0,21.9,4.4 -2019,4,4,17,45,502.0,156.80615842704754,39.0,21.9,4.4 -2019,4,4,18,0,0.0,0.0,0.0,19.7,3.0 -2019,4,4,18,15,0.0,0.0,0.0,19.7,3.0 -2019,4,4,18,30,0.0,0.0,0.0,19.7,3.0 -2019,4,4,18,45,0.0,0.0,0.0,19.7,3.0 -2019,4,4,19,0,0.0,0.0,0.0,17.5,1.9 -2019,4,4,19,15,0.0,0.0,0.0,17.5,1.9 -2019,4,4,19,30,0.0,0.0,0.0,17.5,1.9 -2019,4,4,19,45,0.0,0.0,0.0,17.5,1.9 -2019,4,4,20,0,0.0,0.0,0.0,15.6,0.0 -2019,4,4,20,15,0.0,0.0,0.0,15.6,0.0 -2019,4,4,20,30,0.0,0.0,0.0,15.6,0.0 -2019,4,4,20,45,0.0,0.0,0.0,15.6,0.0 -2019,4,4,21,0,0.0,0.0,0.0,15.5,0.0 -2019,4,4,21,15,0.0,0.0,0.0,15.5,0.0 -2019,4,4,21,30,0.0,0.0,0.0,15.5,0.0 -2019,4,4,21,45,0.0,0.0,0.0,15.5,0.0 -2019,4,4,22,0,0.0,0.0,0.0,14.2,0.0 -2019,4,4,22,15,0.0,0.0,0.0,14.2,0.0 -2019,4,4,22,30,0.0,0.0,0.0,14.2,0.0 -2019,4,4,22,45,0.0,0.0,0.0,14.2,0.0 -2019,4,4,23,0,0.0,0.0,0.0,12.8,0.0 -2019,4,4,23,15,0.0,0.0,0.0,12.8,0.0 -2019,4,4,23,30,0.0,0.0,0.0,12.8,0.0 -2019,4,4,23,45,0.0,0.0,0.0,12.8,0.0 -2019,4,5,0,0,0.0,0.0,0.0,12.7,0.0 -2019,4,5,0,15,0.0,0.0,0.0,12.7,0.0 -2019,4,5,0,30,0.0,0.0,0.0,12.7,0.0 -2019,4,5,0,45,0.0,0.0,0.0,12.7,0.0 -2019,4,5,1,0,0.0,0.0,0.0,12.0,0.0 -2019,4,5,1,15,0.0,0.0,0.0,12.0,0.0 -2019,4,5,1,30,0.0,0.0,0.0,12.0,0.0 -2019,4,5,1,45,0.0,0.0,0.0,12.0,0.0 -2019,4,5,2,0,0.0,0.0,0.0,10.5,0.0 -2019,4,5,2,15,0.0,0.0,0.0,10.5,0.0 -2019,4,5,2,30,0.0,0.0,0.0,10.5,0.0 -2019,4,5,2,45,0.0,0.0,0.0,10.5,0.0 -2019,4,5,3,0,0.0,0.0,0.0,9.9,0.0 -2019,4,5,3,15,0.0,0.0,0.0,9.9,0.0 -2019,4,5,3,30,0.0,0.0,0.0,9.9,0.0 -2019,4,5,3,45,0.0,0.0,0.0,9.9,0.0 -2019,4,5,4,0,0.0,0.0,0.0,9.3,0.0 -2019,4,5,4,15,0.0,0.0,0.0,9.3,0.0 -2019,4,5,4,30,0.0,0.0,0.0,9.3,0.0 -2019,4,5,4,45,0.0,0.0,0.0,9.3,0.0 -2019,4,5,5,0,169.0,-44.64043572709835,5.0,9.1,0.0 -2019,4,5,5,15,169.0,-36.17034735722075,5.0,9.1,0.0 -2019,4,5,5,30,169.0,-27.48830883265125,5.0,9.1,0.0 -2019,4,5,5,45,169.0,-18.631497975242873,5.0,9.1,0.0 -2019,4,5,6,0,337.0,39.81093242622035,69.0,10.8,0.0 -2019,4,5,6,15,337.0,57.94111537495513,69.0,10.8,0.0 -2019,4,5,6,30,337.0,76.18974801790174,69.0,10.8,0.0 -2019,4,5,6,45,337.0,94.47868690850206,69.0,10.8,0.0 -2019,4,5,7,0,3.0,82.38928441545393,82.0,12.5,0.3 -2019,4,5,7,15,3.0,82.5507215016622,82.0,12.5,0.3 -2019,4,5,7,30,3.0,82.7104331968116,82.0,12.5,0.3 -2019,4,5,7,45,3.0,82.86773559090412,82.0,12.5,0.3 -2019,4,5,8,0,5.0,161.70325848489793,160.0,14.6,2.7 -2019,4,5,8,15,5.0,161.95405217556691,160.0,14.6,2.7 -2019,4,5,8,30,5.0,162.19753311976115,160.0,14.6,2.7 -2019,4,5,8,45,5.0,162.43265869469775,160.0,14.6,2.7 -2019,4,5,9,0,16.0,281.5069505810166,273.0,16.2,3.0 -2019,4,5,9,15,16.0,282.1963406463859,273.0,16.2,3.0 -2019,4,5,9,30,16.0,282.8497259450439,273.0,16.2,3.0 -2019,4,5,9,45,16.0,283.4643085808319,273.0,16.2,3.0 -2019,4,5,10,0,302.0,574.3319974124058,366.0,17.4,2.7 -2019,4,5,10,15,302.0,584.3217709829073,366.0,17.4,2.7 -2019,4,5,10,30,302.0,593.4403674306203,366.0,17.4,2.7 -2019,4,5,10,45,302.0,601.6487395256434,366.0,17.4,2.7 -2019,4,5,11,0,623.0,765.1060020647066,264.0,19.1,3.2 -2019,4,5,11,15,623.0,778.0745579904042,264.0,19.1,3.2 -2019,4,5,11,30,623.0,788.9731964312256,264.0,19.1,3.2 -2019,4,5,11,45,623.0,797.755247744178,264.0,19.1,3.2 -2019,4,5,12,0,720.0,844.5198012886864,220.0,20.6,4.2 -2019,4,5,12,15,720.0,849.657207427573,220.0,20.6,4.2 -2019,4,5,12,30,720.0,852.2502166478146,220.0,20.6,4.2 -2019,4,5,12,45,720.0,852.287725285844,220.0,20.6,4.2 -2019,4,5,13,0,585.0,767.6877778381809,256.0,20.5,5.1 -2019,4,5,13,15,585.0,763.5740654382865,256.0,20.5,5.1 -2019,4,5,13,30,585.0,757.4102551431104,256.0,20.5,5.1 -2019,4,5,13,45,585.0,749.2227413346216,256.0,20.5,5.1 -2019,4,5,14,0,667.0,740.7556780581426,190.0,19.9,5.2 -2019,4,5,14,15,667.0,726.9354100261138,190.0,19.9,5.2 -2019,4,5,14,30,667.0,710.9566131145368,190.0,19.9,5.2 -2019,4,5,14,45,667.0,692.8877109848968,190.0,19.9,5.2 -2019,4,5,15,0,658.0,620.291452716891,144.0,19.2,6.2 -2019,4,5,15,15,658.0,598.5800449585311,144.0,19.2,6.2 -2019,4,5,15,30,658.0,575.0608679883894,144.0,19.2,6.2 -2019,4,5,15,45,658.0,549.834634532982,144.0,19.2,6.2 -2019,4,5,16,0,606.0,444.0572591508214,95.0,18.2,5.9 -2019,4,5,16,15,606.0,417.98504734197047,95.0,18.2,5.9 -2019,4,5,16,30,606.0,390.6576063326645,95.0,18.2,5.9 -2019,4,5,16,45,606.0,362.1919564206906,95.0,18.2,5.9 -2019,4,5,17,0,387.0,197.80489581036426,46.0,17.0,5.7 -2019,4,5,17,15,387.0,178.40889463200546,46.0,17.0,5.7 -2019,4,5,17,30,387.0,158.52754014083155,46.0,17.0,5.7 -2019,4,5,17,45,387.0,138.2459673490148,46.0,17.0,5.7 -2019,4,5,18,0,0.0,0.0,0.0,15.4,5.6 -2019,4,5,18,15,0.0,0.0,0.0,15.4,5.6 -2019,4,5,18,30,0.0,0.0,0.0,15.4,5.6 -2019,4,5,18,45,0.0,0.0,0.0,15.4,5.6 -2019,4,5,19,0,0.0,0.0,0.0,13.8,4.9 -2019,4,5,19,15,0.0,0.0,0.0,13.8,4.9 -2019,4,5,19,30,0.0,0.0,0.0,13.8,4.9 -2019,4,5,19,45,0.0,0.0,0.0,13.8,4.9 -2019,4,5,20,0,0.0,0.0,0.0,12.7,3.2 -2019,4,5,20,15,0.0,0.0,0.0,12.7,3.2 -2019,4,5,20,30,0.0,0.0,0.0,12.7,3.2 -2019,4,5,20,45,0.0,0.0,0.0,12.7,3.2 -2019,4,5,21,0,0.0,0.0,0.0,12.1,0.0 -2019,4,5,21,15,0.0,0.0,0.0,12.1,0.0 -2019,4,5,21,30,0.0,0.0,0.0,12.1,0.0 -2019,4,5,21,45,0.0,0.0,0.0,12.1,0.0 -2019,4,5,22,0,0.0,0.0,0.0,11.0,0.0 -2019,4,5,22,15,0.0,0.0,0.0,11.0,0.0 -2019,4,5,22,30,0.0,0.0,0.0,11.0,0.0 -2019,4,5,22,45,0.0,0.0,0.0,11.0,0.0 -2019,4,5,23,0,0.0,0.0,0.0,10.0,0.0 -2019,4,5,23,15,0.0,0.0,0.0,10.0,0.0 -2019,4,5,23,30,0.0,0.0,0.0,10.0,0.0 -2019,4,5,23,45,0.0,0.0,0.0,10.0,0.0 -2019,4,6,0,0,0.0,0.0,0.0,10.1,0.2 -2019,4,6,0,15,0.0,0.0,0.0,10.1,0.2 -2019,4,6,0,30,0.0,0.0,0.0,10.1,0.2 -2019,4,6,0,45,0.0,0.0,0.0,10.1,0.2 -2019,4,6,1,0,0.0,0.0,0.0,10.4,1.9 -2019,4,6,1,15,0.0,0.0,0.0,10.4,1.9 -2019,4,6,1,30,0.0,0.0,0.0,10.4,1.9 -2019,4,6,1,45,0.0,0.0,0.0,10.4,1.9 -2019,4,6,2,0,0.0,0.0,0.0,8.8,0.0 -2019,4,6,2,15,0.0,0.0,0.0,8.8,0.0 -2019,4,6,2,30,0.0,0.0,0.0,8.8,0.0 -2019,4,6,2,45,0.0,0.0,0.0,8.8,0.0 -2019,4,6,3,0,0.0,0.0,0.0,7.7,0.0 -2019,4,6,3,15,0.0,0.0,0.0,7.7,0.0 -2019,4,6,3,30,0.0,0.0,0.0,7.7,0.0 -2019,4,6,3,45,0.0,0.0,0.0,7.7,0.0 -2019,4,6,4,0,0.0,0.0,0.0,7.1,0.0 -2019,4,6,4,15,0.0,0.0,0.0,7.1,0.0 -2019,4,6,4,30,0.0,0.0,0.0,7.1,0.0 -2019,4,6,4,45,0.0,0.0,0.0,7.1,0.0 -2019,4,6,5,0,559.0,-161.95862852550934,0.0,7.2,0.3 -2019,4,6,5,15,559.0,-133.96000566152802,0.0,7.2,0.3 -2019,4,6,5,30,559.0,-105.26076289985073,0.0,7.2,0.3 -2019,4,6,5,45,559.0,-75.98379480397072,0.0,7.2,0.3 -2019,4,6,6,0,611.0,-1.557211226975653,49.0,11.5,2.6 -2019,4,6,6,15,611.0,31.292920993205993,49.0,11.5,2.6 -2019,4,6,6,30,611.0,64.35767256539862,49.0,11.5,2.6 -2019,4,6,6,45,611.0,97.49545514717731,49.0,11.5,2.6 -2019,4,6,7,0,851.0,182.6027444907848,69.0,14.7,2.9 -2019,4,6,7,15,851.0,228.36793154117328,69.0,14.7,2.9 -2019,4,6,7,30,851.0,273.6439940267004,69.0,14.7,2.9 -2019,4,6,7,45,851.0,318.2370528968953,69.0,14.7,2.9 -2019,4,6,8,0,977.0,412.3315655576855,76.0,17.0,5.0 -2019,4,6,8,15,977.0,461.30547704317246,76.0,17.0,5.0 -2019,4,6,8,30,977.0,508.85138690065133,76.0,17.0,5.0 -2019,4,6,8,45,977.0,554.7656962447313,76.0,17.0,5.0 -2019,4,6,9,0,1051.0,636.4536687764154,74.0,19.1,4.2 -2019,4,6,9,15,1051.0,681.7091700789554,74.0,19.1,4.2 -2019,4,6,9,30,1051.0,724.6011128554028,74.0,19.1,4.2 -2019,4,6,9,45,1051.0,764.9458272218983,74.0,19.1,4.2 -2019,4,6,10,0,1094.0,827.3788608030011,69.0,20.7,4.9 -2019,4,6,10,15,1094.0,863.5439590818569,69.0,20.7,4.9 -2019,4,6,10,30,1094.0,896.5552114760605,69.0,20.7,4.9 -2019,4,6,10,45,1094.0,926.2712587348801,69.0,20.7,4.9 -2019,4,6,11,0,1113.0,964.9101284080562,66.0,21.9,3.5 -2019,4,6,11,15,1113.0,988.0639329584047,66.0,21.9,3.5 -2019,4,6,11,30,1113.0,1007.522147563754,66.0,21.9,3.5 -2019,4,6,11,45,1113.0,1023.201449161884,66.0,21.9,3.5 -2019,4,6,12,0,1110.0,1032.422743216178,66.0,23.4,2.8 -2019,4,6,12,15,1110.0,1040.337872423521,66.0,23.4,2.8 -2019,4,6,12,30,1110.0,1044.3328851710419,66.0,23.4,2.8 -2019,4,6,12,45,1110.0,1044.39067420083,66.0,23.4,2.8 -2019,4,6,13,0,1085.0,1022.5625462844652,70.0,24.0,4.2 -2019,4,6,13,15,1085.0,1014.9376941867304,70.0,24.0,4.2 -2019,4,6,13,30,1085.0,1003.5129426993825,70.0,24.0,4.2 -2019,4,6,13,45,1085.0,988.3372143622499,70.0,24.0,4.2 -2019,4,6,14,0,1035.0,933.0250103806259,75.0,24.4,4.6 -2019,4,6,14,15,1035.0,911.5934097491273,75.0,24.4,4.6 -2019,4,6,14,30,1035.0,886.8144985740978,75.0,24.4,4.6 -2019,4,6,14,45,1035.0,858.7943839573168,75.0,24.4,4.6 -2019,4,6,15,0,950.0,765.8409659079558,75.0,24.6,4.5 -2019,4,6,15,15,950.0,734.514650121762,75.0,24.6,4.5 -2019,4,6,15,30,950.0,700.579993603953,75.0,24.6,4.5 -2019,4,6,15,45,950.0,664.1823097634815,75.0,24.6,4.5 -2019,4,6,16,0,803.0,530.2983154037395,65.0,24.1,4.0 -2019,4,6,16,15,803.0,495.77246195256646,65.0,24.1,4.0 -2019,4,6,16,30,803.0,459.58438437786043,65.0,24.1,4.0 -2019,4,6,16,45,803.0,421.8890455834908,65.0,24.1,4.0 -2019,4,6,17,0,515.0,243.85012371182236,40.0,23.6,3.7 -2019,4,6,17,15,515.0,218.0553280500149,40.0,23.6,3.7 -2019,4,6,17,30,515.0,191.6150596738721,40.0,23.6,3.7 -2019,4,6,17,45,515.0,164.64253987176443,40.0,23.6,3.7 -2019,4,6,18,0,0.0,0.0,0.0,21.6,4.0 -2019,4,6,18,15,0.0,0.0,0.0,21.6,4.0 -2019,4,6,18,30,0.0,0.0,0.0,21.6,4.0 -2019,4,6,18,45,0.0,0.0,0.0,21.6,4.0 -2019,4,6,19,0,0.0,0.0,0.0,20.3,2.9 -2019,4,6,19,15,0.0,0.0,0.0,20.3,2.9 -2019,4,6,19,30,0.0,0.0,0.0,20.3,2.9 -2019,4,6,19,45,0.0,0.0,0.0,20.3,2.9 -2019,4,6,20,0,0.0,0.0,0.0,18.2,1.6 -2019,4,6,20,15,0.0,0.0,0.0,18.2,1.6 -2019,4,6,20,30,0.0,0.0,0.0,18.2,1.6 -2019,4,6,20,45,0.0,0.0,0.0,18.2,1.6 -2019,4,6,21,0,0.0,0.0,0.0,17.7,2.0 -2019,4,6,21,15,0.0,0.0,0.0,17.7,2.0 -2019,4,6,21,30,0.0,0.0,0.0,17.7,2.0 -2019,4,6,21,45,0.0,0.0,0.0,17.7,2.0 -2019,4,6,22,0,0.0,0.0,0.0,16.6,1.6 -2019,4,6,22,15,0.0,0.0,0.0,16.6,1.6 -2019,4,6,22,30,0.0,0.0,0.0,16.6,1.6 -2019,4,6,22,45,0.0,0.0,0.0,16.6,1.6 -2019,4,6,23,0,0.0,0.0,0.0,16.0,2.2 -2019,4,6,23,15,0.0,0.0,0.0,16.0,2.2 -2019,4,6,23,30,0.0,0.0,0.0,16.0,2.2 -2019,4,6,23,45,0.0,0.0,0.0,16.0,2.2 -2019,4,7,0,0,0.0,0.0,0.0,15.5,2.7 -2019,4,7,0,15,0.0,0.0,0.0,15.5,2.7 -2019,4,7,0,30,0.0,0.0,0.0,15.5,2.7 -2019,4,7,0,45,0.0,0.0,0.0,15.5,2.7 -2019,4,7,1,0,0.0,0.0,0.0,15.0,3.1 -2019,4,7,1,15,0.0,0.0,0.0,15.0,3.1 -2019,4,7,1,30,0.0,0.0,0.0,15.0,3.1 -2019,4,7,1,45,0.0,0.0,0.0,15.0,3.1 -2019,4,7,2,0,0.0,0.0,0.0,14.5,3.0 -2019,4,7,2,15,0.0,0.0,0.0,14.5,3.0 -2019,4,7,2,30,0.0,0.0,0.0,14.5,3.0 -2019,4,7,2,45,0.0,0.0,0.0,14.5,3.0 -2019,4,7,3,0,0.0,0.0,0.0,10.5,2.5 -2019,4,7,3,15,0.0,0.0,0.0,10.5,2.5 -2019,4,7,3,30,0.0,0.0,0.0,10.5,2.5 -2019,4,7,3,45,0.0,0.0,0.0,10.5,2.5 -2019,4,7,4,0,0.0,0.0,0.0,10.0,2.2 -2019,4,7,4,15,0.0,0.0,0.0,10.0,2.2 -2019,4,7,4,30,0.0,0.0,0.0,10.0,2.2 -2019,4,7,4,45,0.0,0.0,0.0,10.0,2.2 -2019,4,7,5,0,543.0,-155.15196666625556,0.0,10.3,2.5 -2019,4,7,5,15,543.0,-127.97324882440064,0.0,10.3,2.5 -2019,4,7,5,30,543.0,-100.1144278715326,0.0,10.3,2.5 -2019,4,7,5,45,543.0,-71.69479955593584,0.0,10.3,2.5 -2019,4,7,6,0,624.0,-0.2259707543461147,49.0,12.8,1.3 -2019,4,7,6,15,624.0,33.30026340281077,49.0,12.8,1.3 -2019,4,7,6,30,624.0,67.04553408018452,49.0,12.8,1.3 -2019,4,7,6,45,624.0,100.86533884806663,49.0,12.8,1.3 -2019,4,7,7,0,863.0,186.40644362694715,68.0,17.8,0.4 -2019,4,7,7,15,863.0,232.7853763030659,68.0,17.8,0.4 -2019,4,7,7,30,863.0,278.66862488553124,68.0,17.8,0.4 -2019,4,7,7,45,863.0,323.85971025978904,68.0,17.8,0.4 -2019,4,7,8,0,988.0,416.642104117358,73.0,22.5,3.1 -2019,4,7,8,15,988.0,466.1336985547155,73.0,22.5,3.1 -2019,4,7,8,30,988.0,514.1821965497925,73.0,22.5,3.1 -2019,4,7,8,45,988.0,560.5818470576344,73.0,22.5,3.1 -2019,4,7,9,0,1062.0,641.9901469126996,70.0,25.2,3.2 -2019,4,7,9,15,1062.0,687.688174267694,70.0,25.2,3.2 -2019,4,7,9,30,1062.0,730.999531293739,70.0,25.2,3.2 -2019,4,7,9,45,1062.0,771.7387521107687,70.0,25.2,3.2 -2019,4,7,10,0,1105.0,834.6828442170755,65.0,26.9,3.6 -2019,4,7,10,15,1105.0,871.1867116200912,65.0,26.9,3.6 -2019,4,7,10,30,1105.0,904.5071901354232,65.0,26.9,3.6 -2019,4,7,10,45,1105.0,934.5015963586161,65.0,26.9,3.6 -2019,4,7,11,0,1123.0,972.6376405998163,62.0,28.4,0.2 -2019,4,7,11,15,1123.0,995.9835732030796,62.0,28.4,0.2 -2019,4,7,11,30,1123.0,1015.603250209875,62.0,28.4,0.2 -2019,4,7,11,45,1123.0,1031.4126571511922,62.0,28.4,0.2 -2019,4,7,12,0,1120.0,1041.722517547402,63.0,29.2,2.0 -2019,4,7,12,15,1120.0,1049.7035178115325,63.0,29.2,2.0 -2019,4,7,12,30,1120.0,1053.7317777372946,63.0,29.2,2.0 -2019,4,7,12,45,1120.0,1053.7900476972563,63.0,29.2,2.0 -2019,4,7,13,0,1096.0,1032.7306907811355,67.0,31.0,1.6 -2019,4,7,13,15,1096.0,1025.033778936602,67.0,31.0,1.6 -2019,4,7,13,30,1096.0,1013.5010562140268,67.0,31.0,1.6 -2019,4,7,13,45,1096.0,998.1819075026441,67.0,31.0,1.6 -2019,4,7,14,0,1045.0,941.697371056371,72.0,30.4,3.1 -2019,4,7,14,15,1045.0,920.0734313867976,72.0,30.4,3.1 -2019,4,7,14,30,1045.0,895.0721405574484,72.0,30.4,3.1 -2019,4,7,14,45,1045.0,866.8005579339232,72.0,30.4,3.1 -2019,4,7,15,0,960.0,774.2866573228841,73.0,29.3,7.0 -2019,4,7,15,15,960.0,742.6521393113933,73.0,29.3,7.0 -2019,4,7,15,30,960.0,708.3836185522589,73.0,29.3,7.0 -2019,4,7,15,45,960.0,671.6278381123707,73.0,29.3,7.0 -2019,4,7,16,0,813.0,537.8622937538137,64.0,27.7,5.7 -2019,4,7,16,15,813.0,502.930274112114,64.0,27.7,5.7 -2019,4,7,16,30,813.0,466.31647574728214,64.0,27.7,5.7 -2019,4,7,16,45,813.0,428.17768456496856,64.0,27.7,5.7 -2019,4,7,17,0,525.0,249.66240932373861,40.0,26.3,4.5 -2019,4,7,17,15,525.0,223.3846434545418,40.0,26.3,4.5 -2019,4,7,17,30,525.0,196.4493193288407,40.0,26.3,4.5 -2019,4,7,17,45,525.0,168.97177813972777,40.0,26.3,4.5 -2019,4,7,18,0,208.0,40.042845811232,0.0,23.0,3.4 -2019,4,7,18,15,208.0,28.867434425513043,0.0,23.0,3.4 -2019,4,7,18,30,208.0,17.61901086638843,0.0,23.0,3.4 -2019,4,7,18,45,208.0,6.345742610427716,0.0,23.0,3.4 -2019,4,7,19,0,0.0,0.0,0.0,21.0,1.9 -2019,4,7,19,15,0.0,0.0,0.0,21.0,1.9 -2019,4,7,19,30,0.0,0.0,0.0,21.0,1.9 -2019,4,7,19,45,0.0,0.0,0.0,21.0,1.9 -2019,4,7,20,0,0.0,0.0,0.0,19.9,0.2 -2019,4,7,20,15,0.0,0.0,0.0,19.9,0.2 -2019,4,7,20,30,0.0,0.0,0.0,19.9,0.2 -2019,4,7,20,45,0.0,0.0,0.0,19.9,0.2 -2019,4,7,21,0,0.0,0.0,0.0,19.1,1.3 -2019,4,7,21,15,0.0,0.0,0.0,19.1,1.3 -2019,4,7,21,30,0.0,0.0,0.0,19.1,1.3 -2019,4,7,21,45,0.0,0.0,0.0,19.1,1.3 -2019,4,7,22,0,0.0,0.0,0.0,16.6,0.0 -2019,4,7,22,15,0.0,0.0,0.0,16.6,0.0 -2019,4,7,22,30,0.0,0.0,0.0,16.6,0.0 -2019,4,7,22,45,0.0,0.0,0.0,16.6,0.0 -2019,4,7,23,0,0.0,0.0,0.0,15.4,0.0 -2019,4,7,23,15,0.0,0.0,0.0,15.4,0.0 -2019,4,7,23,30,0.0,0.0,0.0,15.4,0.0 -2019,4,7,23,45,0.0,0.0,0.0,15.4,0.0 -2019,4,8,0,0,0.0,0.0,0.0,13.7,0.2 -2019,4,8,0,15,0.0,0.0,0.0,13.7,0.2 -2019,4,8,0,30,0.0,0.0,0.0,13.7,0.2 -2019,4,8,0,45,0.0,0.0,0.0,13.7,0.2 -2019,4,8,1,0,0.0,0.0,0.0,12.2,1.9 -2019,4,8,1,15,0.0,0.0,0.0,12.2,1.9 -2019,4,8,1,30,0.0,0.0,0.0,12.2,1.9 -2019,4,8,1,45,0.0,0.0,0.0,12.2,1.9 -2019,4,8,2,0,0.0,0.0,0.0,12.0,0.2 -2019,4,8,2,15,0.0,0.0,0.0,12.0,0.2 -2019,4,8,2,30,0.0,0.0,0.0,12.0,0.2 -2019,4,8,2,45,0.0,0.0,0.0,12.0,0.2 -2019,4,8,3,0,0.0,0.0,0.0,10.5,1.5 -2019,4,8,3,15,0.0,0.0,0.0,10.5,1.5 -2019,4,8,3,30,0.0,0.0,0.0,10.5,1.5 -2019,4,8,3,45,0.0,0.0,0.0,10.5,1.5 -2019,4,8,4,0,0.0,0.0,0.0,9.6,1.5 -2019,4,8,4,15,0.0,0.0,0.0,9.6,1.5 -2019,4,8,4,30,0.0,0.0,0.0,9.6,1.5 -2019,4,8,4,45,0.0,0.0,0.0,9.6,1.5 -2019,4,8,5,0,575.0,-161.99905620047653,0.0,11.2,1.5 -2019,4,8,5,15,575.0,-133.23949711292124,0.0,11.2,1.5 -2019,4,8,5,30,575.0,-103.7602769390476,0.0,11.2,1.5 -2019,4,8,5,45,575.0,-73.68763022537256,0.0,11.2,1.5 -2019,4,8,6,0,645.0,0.5965833618006897,49.0,12.3,1.3 -2019,4,8,6,15,645.0,35.22599735457139,49.0,12.3,1.3 -2019,4,8,6,30,645.0,70.08165525838112,49.0,12.3,1.3 -2019,4,8,6,45,645.0,105.01429979494813,49.0,12.3,1.3 -2019,4,8,7,0,954.0,187.40949487226163,53.0,17.2,0.0 -2019,4,8,7,15,954.0,238.64176173460822,53.0,17.2,0.0 -2019,4,8,7,30,954.0,289.3264735261471,53.0,17.2,0.0 -2019,4,8,7,45,954.0,339.24659052972834,53.0,17.2,0.0 -2019,4,8,8,0,1015.0,423.62072573120963,67.0,21.2,0.0 -2019,4,8,8,15,1015.0,474.4279871609261,67.0,21.2,0.0 -2019,4,8,8,30,1015.0,523.7537893843919,67.0,21.2,0.0 -2019,4,8,8,45,1015.0,571.3869117438517,67.0,21.2,0.0 -2019,4,8,9,0,1014.0,634.5813884168908,85.0,25.8,0.0 -2019,4,8,9,15,1014.0,678.1823567935068,85.0,25.8,0.0 -2019,4,8,9,30,1014.0,719.5061779153942,85.0,25.8,0.0 -2019,4,8,9,45,1014.0,758.3758968363611,85.0,25.8,0.0 -2019,4,8,10,0,1047.0,817.7193743815303,85.0,27.4,0.4 -2019,4,8,10,15,1047.0,852.2821431136379,85.0,27.4,0.4 -2019,4,8,10,30,1047.0,883.8308001436993,85.0,27.4,0.4 -2019,4,8,10,45,1047.0,912.2302492788739,85.0,27.4,0.4 -2019,4,8,11,0,1085.0,958.2945410640233,75.0,29.0,3.2 -2019,4,8,11,15,1085.0,980.8341539507002,75.0,29.0,3.2 -2019,4,8,11,30,1085.0,999.7762083209329,75.0,29.0,3.2 -2019,4,8,11,45,1085.0,1015.0395913898715,75.0,29.0,3.2 -2019,4,8,12,0,929.0,948.7449382989621,134.0,29.4,4.3 -2019,4,8,12,15,929.0,955.3600968842992,134.0,29.4,4.3 -2019,4,8,12,30,929.0,958.6989738859249,134.0,29.4,4.3 -2019,4,8,12,45,929.0,958.7472717199246,134.0,29.4,4.3 -2019,4,8,13,0,911.0,936.5875757051082,131.0,29.2,6.3 -2019,4,8,13,15,911.0,930.1945039522828,131.0,29.2,6.3 -2019,4,8,13,30,911.0,920.6153993243372,131.0,29.2,6.3 -2019,4,8,13,45,911.0,907.8912810178989,131.0,29.2,6.3 -2019,4,8,14,0,577.0,704.0430502485139,222.0,27.7,6.6 -2019,4,8,14,15,577.0,692.1119749329741,222.0,27.7,6.6 -2019,4,8,14,30,577.0,678.3174357126119,222.0,27.7,6.6 -2019,4,8,14,45,577.0,662.7185029221453,222.0,27.7,6.6 -2019,4,8,15,0,882.0,738.1800705430824,91.0,27.3,5.6 -2019,4,8,15,15,882.0,709.1369138830343,91.0,27.3,5.6 -2019,4,8,15,30,882.0,677.6755204597449,91.0,27.3,5.6 -2019,4,8,15,45,882.0,643.9306127898938,91.0,27.3,5.6 -2019,4,8,16,0,857.0,560.3911732751319,58.0,26.4,5.1 -2019,4,8,16,15,857.0,523.59529144043,58.0,26.4,5.1 -2019,4,8,16,30,857.0,485.0278964838633,58.0,26.4,5.1 -2019,4,8,16,45,857.0,444.85413991161073,58.0,26.4,5.1 -2019,4,8,17,0,726.0,320.4721513321709,28.0,25.8,4.5 -2019,4,8,17,15,726.0,284.1600819451009,28.0,25.8,4.5 -2019,4,8,17,30,726.0,246.93936221252312,28.0,25.8,4.5 -2019,4,8,17,45,726.0,208.96937697056123,28.0,25.8,4.5 -2019,4,8,18,0,159.0,31.18956254066035,0.0,23.6,4.0 -2019,4,8,18,15,159.0,22.653009323837846,0.0,23.6,4.0 -2019,4,8,18,30,159.0,14.060684352200994,0.0,23.6,4.0 -2019,4,8,18,45,159.0,5.44938128039613,0.0,23.6,4.0 -2019,4,8,19,0,0.0,0.0,0.0,20.9,2.9 -2019,4,8,19,15,0.0,0.0,0.0,20.9,2.9 -2019,4,8,19,30,0.0,0.0,0.0,20.9,2.9 -2019,4,8,19,45,0.0,0.0,0.0,20.9,2.9 -2019,4,8,20,0,0.0,0.0,0.0,19.3,1.3 -2019,4,8,20,15,0.0,0.0,0.0,19.3,1.3 -2019,4,8,20,30,0.0,0.0,0.0,19.3,1.3 -2019,4,8,20,45,0.0,0.0,0.0,19.3,1.3 -2019,4,8,21,0,0.0,0.0,0.0,18.2,0.0 -2019,4,8,21,15,0.0,0.0,0.0,18.2,0.0 -2019,4,8,21,30,0.0,0.0,0.0,18.2,0.0 -2019,4,8,21,45,0.0,0.0,0.0,18.2,0.0 -2019,4,8,22,0,0.0,0.0,0.0,17.5,0.0 -2019,4,8,22,15,0.0,0.0,0.0,17.5,0.0 -2019,4,8,22,30,0.0,0.0,0.0,17.5,0.0 -2019,4,8,22,45,0.0,0.0,0.0,17.5,0.0 -2019,4,8,23,0,0.0,0.0,0.0,14.9,0.0 -2019,4,8,23,15,0.0,0.0,0.0,14.9,0.0 -2019,4,8,23,30,0.0,0.0,0.0,14.9,0.0 -2019,4,8,23,45,0.0,0.0,0.0,14.9,0.0 -2019,4,9,0,0,0.0,0.0,0.0,14.1,0.0 -2019,4,9,0,15,0.0,0.0,0.0,14.1,0.0 -2019,4,9,0,30,0.0,0.0,0.0,14.1,0.0 -2019,4,9,0,45,0.0,0.0,0.0,14.1,0.0 -2019,4,9,1,0,0.0,0.0,0.0,12.0,0.2 -2019,4,9,1,15,0.0,0.0,0.0,12.0,0.2 -2019,4,9,1,30,0.0,0.0,0.0,12.0,0.2 -2019,4,9,1,45,0.0,0.0,0.0,12.0,0.2 -2019,4,9,2,0,0.0,0.0,0.0,10.6,1.3 -2019,4,9,2,15,0.0,0.0,0.0,10.6,1.3 -2019,4,9,2,30,0.0,0.0,0.0,10.6,1.3 -2019,4,9,2,45,0.0,0.0,0.0,10.6,1.3 -2019,4,9,3,0,0.0,0.0,0.0,10.5,0.2 -2019,4,9,3,15,0.0,0.0,0.0,10.5,0.2 -2019,4,9,3,30,0.0,0.0,0.0,10.5,0.2 -2019,4,9,3,45,0.0,0.0,0.0,10.5,0.2 -2019,4,9,4,0,0.0,0.0,0.0,10.0,1.5 -2019,4,9,4,15,0.0,0.0,0.0,10.0,1.5 -2019,4,9,4,30,0.0,0.0,0.0,10.0,1.5 -2019,4,9,4,45,0.0,0.0,0.0,10.0,1.5 -2019,4,9,5,0,599.0,-166.37227486964457,0.0,10.3,1.6 -2019,4,9,5,15,599.0,-136.43531043222197,0.0,10.3,1.6 -2019,4,9,5,30,599.0,-105.74922225884376,0.0,10.3,1.6 -2019,4,9,5,45,599.0,-74.44541289008242,0.0,10.3,1.6 -2019,4,9,6,0,696.0,-4.565808531349099,45.0,13.3,2.5 -2019,4,9,6,15,696.0,32.773066360388135,45.0,13.3,2.5 -2019,4,9,6,30,696.0,70.3558868496765,45.0,13.3,2.5 -2019,4,9,6,45,696.0,108.0217175293612,45.0,13.3,2.5 -2019,4,9,7,0,904.0,192.67640495263979,62.0,17.2,1.3 -2019,4,9,7,15,904.0,241.18628361676738,62.0,17.2,1.3 -2019,4,9,7,30,904.0,289.1777032769593,62.0,17.2,1.3 -2019,4,9,7,45,904.0,336.4451573064538,62.0,17.2,1.3 -2019,4,9,8,0,1015.0,427.17481504272394,67.0,21.4,0.0 -2019,4,9,8,15,1015.0,477.9430829671422,67.0,21.4,0.0 -2019,4,9,8,30,1015.0,527.2310286741138,67.0,21.4,0.0 -2019,4,9,8,45,1015.0,574.8275936132986,67.0,21.4,0.0 -2019,4,9,9,0,1015.0,638.5289619864699,85.0,23.6,0.2 -2019,4,9,9,15,1015.0,682.139433518051,85.0,23.6,0.2 -2019,4,9,9,30,1015.0,723.4722614737428,85.0,23.6,0.2 -2019,4,9,9,45,1015.0,762.350452338708,85.0,23.6,0.2 -2019,4,9,10,0,1047.0,821.1054949224925,85.0,26.3,2.1 -2019,4,9,10,15,1047.0,855.6417374560262,85.0,26.3,2.1 -2019,4,9,10,30,1047.0,887.1661815548956,85.0,26.3,2.1 -2019,4,9,10,45,1047.0,915.5438347097485,85.0,26.3,2.1 -2019,4,9,11,0,1033.0,938.2117806830122,94.0,27.9,2.1 -2019,4,9,11,15,1033.0,959.6546844400297,94.0,27.9,2.1 -2019,4,9,11,30,1033.0,977.6750759553242,94.0,27.9,2.1 -2019,4,9,11,45,1033.0,992.1957891458867,94.0,27.9,2.1 -2019,4,9,12,0,1036.0,1003.7949770336528,92.0,29.0,2.4 -2019,4,9,12,15,1036.0,1011.1663920254758,92.0,29.0,2.4 -2019,4,9,12,30,1036.0,1014.8869752387327,92.0,29.0,2.4 -2019,4,9,12,45,1036.0,1014.9407945649098,92.0,29.0,2.4 -2019,4,9,13,0,1007.0,989.5935452492082,96.0,29.8,4.8 -2019,4,9,13,15,1007.0,982.5322034697849,96.0,29.8,4.8 -2019,4,9,13,30,1007.0,971.9517916843411,96.0,29.8,4.8 -2019,4,9,13,45,1007.0,957.8976168404765,96.0,29.8,4.8 -2019,4,9,14,0,872.0,855.2242689724209,124.0,28.0,6.3 -2019,4,9,14,15,872.0,837.2070888990232,124.0,28.0,6.3 -2019,4,9,14,30,872.0,816.3758821058602,124.0,28.0,6.3 -2019,4,9,14,45,872.0,792.8198510184852,124.0,28.0,6.3 -2019,4,9,15,0,54.0,266.79650547435057,227.0,26.3,6.8 -2019,4,9,15,15,54.0,265.0197177204079,227.0,26.3,6.8 -2019,4,9,15,30,54.0,263.09498828377025,227.0,26.3,6.8 -2019,4,9,15,45,54.0,261.0305591513752,227.0,26.3,6.8 -2019,4,9,16,0,34.0,145.04442959025837,125.0,24.5,7.5 -2019,4,9,16,15,34.0,143.5857366846134,125.0,24.5,7.5 -2019,4,9,16,30,34.0,142.05681598459927,125.0,24.5,7.5 -2019,4,9,16,45,34.0,140.46421456337757,125.0,24.5,7.5 -2019,4,9,17,0,14.0,42.688427370184826,37.0,23.0,7.8 -2019,4,9,17,15,14.0,41.98873204109648,37.0,23.0,7.8 -2019,4,9,17,30,14.0,41.27152797694407,37.0,23.0,7.8 -2019,4,9,17,45,14.0,40.53988635563747,37.0,23.0,7.8 -2019,4,9,18,0,7.0,2.3984700894613775,1.0,20.4,4.8 -2019,4,9,18,15,7.0,2.0229354281939056,1.0,20.4,4.8 -2019,4,9,18,30,7.0,1.6449472910889944,1.0,20.4,4.8 -2019,4,9,18,45,7.0,1.2661242813795204,1.0,20.4,4.8 -2019,4,9,19,0,0.0,0.0,0.0,18.6,2.7 -2019,4,9,19,15,0.0,0.0,0.0,18.6,2.7 -2019,4,9,19,30,0.0,0.0,0.0,18.6,2.7 -2019,4,9,19,45,0.0,0.0,0.0,18.6,2.7 -2019,4,9,20,0,0.0,0.0,0.0,16.4,3.0 -2019,4,9,20,15,0.0,0.0,0.0,16.4,3.0 -2019,4,9,20,30,0.0,0.0,0.0,16.4,3.0 -2019,4,9,20,45,0.0,0.0,0.0,16.4,3.0 -2019,4,9,21,0,0.0,0.0,0.0,14.3,2.0 -2019,4,9,21,15,0.0,0.0,0.0,14.3,2.0 -2019,4,9,21,30,0.0,0.0,0.0,14.3,2.0 -2019,4,9,21,45,0.0,0.0,0.0,14.3,2.0 -2019,4,9,22,0,0.0,0.0,0.0,13.2,1.3 -2019,4,9,22,15,0.0,0.0,0.0,13.2,1.3 -2019,4,9,22,30,0.0,0.0,0.0,13.2,1.3 -2019,4,9,22,45,0.0,0.0,0.0,13.2,1.3 -2019,4,9,23,0,0.0,0.0,0.0,12.2,0.0 -2019,4,9,23,15,0.0,0.0,0.0,12.2,0.0 -2019,4,9,23,30,0.0,0.0,0.0,12.2,0.0 -2019,4,9,23,45,0.0,0.0,0.0,12.2,0.0 -2019,4,10,0,0,0.0,0.0,0.0,11.9,0.2 -2019,4,10,0,15,0.0,0.0,0.0,11.9,0.2 -2019,4,10,0,30,0.0,0.0,0.0,11.9,0.2 -2019,4,10,0,45,0.0,0.0,0.0,11.9,0.2 -2019,4,10,1,0,0.0,0.0,0.0,10.0,1.5 -2019,4,10,1,15,0.0,0.0,0.0,10.0,1.5 -2019,4,10,1,30,0.0,0.0,0.0,10.0,1.5 -2019,4,10,1,45,0.0,0.0,0.0,10.0,1.5 -2019,4,10,2,0,0.0,0.0,0.0,10.0,1.5 -2019,4,10,2,15,0.0,0.0,0.0,10.0,1.5 -2019,4,10,2,30,0.0,0.0,0.0,10.0,1.5 -2019,4,10,2,45,0.0,0.0,0.0,10.0,1.5 -2019,4,10,3,0,0.0,0.0,0.0,9.8,1.3 -2019,4,10,3,15,0.0,0.0,0.0,9.8,1.3 -2019,4,10,3,30,0.0,0.0,0.0,9.8,1.3 -2019,4,10,3,45,0.0,0.0,0.0,9.8,1.3 -2019,4,10,4,0,0.0,0.0,0.0,8.4,0.0 -2019,4,10,4,15,0.0,0.0,0.0,8.4,0.0 -2019,4,10,4,30,0.0,0.0,0.0,8.4,0.0 -2019,4,10,4,45,0.0,0.0,0.0,8.4,0.0 -2019,4,10,5,0,213.0,-45.31306830139452,13.0,9.1,0.2 -2019,4,10,5,15,213.0,-34.67632236400318,13.0,9.1,0.2 -2019,4,10,5,30,213.0,-23.773409198077843,13.0,9.1,0.2 -2019,4,10,5,45,213.0,-12.651016751640707,13.0,9.1,0.2 -2019,4,10,6,0,426.0,41.28645436662374,70.0,10.9,1.3 -2019,4,10,6,15,426.0,64.12191784065303,70.0,10.9,1.3 -2019,4,10,6,30,426.0,87.10657195844651,70.0,10.9,1.3 -2019,4,10,6,45,426.0,110.14199290240352,70.0,10.9,1.3 -2019,4,10,7,0,600.0,207.91484431490116,119.0,13.6,0.0 -2019,4,10,7,15,600.0,240.08559920913837,119.0,13.6,0.0 -2019,4,10,7,30,600.0,271.9125227437095,119.0,13.6,0.0 -2019,4,10,7,45,600.0,303.25932714588134,119.0,13.6,0.0 -2019,4,10,8,0,696.0,402.3904654806357,153.0,16.0,0.2 -2019,4,10,8,15,696.0,437.1748070997746,153.0,16.0,0.2 -2019,4,10,8,30,696.0,470.94489245563653,153.0,16.0,0.2 -2019,4,10,8,45,696.0,503.55611285824995,153.0,16.0,0.2 -2019,4,10,9,0,757.0,587.3372101951882,172.0,19.2,1.9 -2019,4,10,9,15,757.0,619.8361252925156,172.0,19.2,1.9 -2019,4,10,9,30,757.0,650.6377199391526,172.0,19.2,1.9 -2019,4,10,9,45,757.0,679.6100969780756,172.0,19.2,1.9 -2019,4,10,10,0,794.0,741.7603416655875,181.0,21.2,0.3 -2019,4,10,10,15,794.0,767.9299456020702,181.0,21.2,0.3 -2019,4,10,10,30,794.0,791.8173796674341,181.0,21.2,0.3 -2019,4,10,10,45,794.0,813.3203542017457,181.0,21.2,0.3 -2019,4,10,11,0,811.0,849.2925022988882,184.0,22.4,2.7 -2019,4,10,11,15,811.0,866.1135240582372,184.0,22.4,2.7 -2019,4,10,11,30,811.0,880.2497343973597,184.0,22.4,2.7 -2019,4,10,11,45,811.0,891.6405998933532,184.0,22.4,2.7 -2019,4,10,12,0,808.0,897.5878831492184,184.0,23.8,4.1 -2019,4,10,12,15,808.0,903.332363000775,184.0,23.8,4.1 -2019,4,10,12,30,808.0,906.2317812709852,184.0,23.8,4.1 -2019,4,10,12,45,808.0,906.2737222056892,184.0,23.8,4.1 -2019,4,10,13,0,785.0,878.9783847435424,180.0,22.5,8.0 -2019,4,10,13,15,785.0,873.4782204508595,180.0,22.5,8.0 -2019,4,10,13,30,785.0,865.2370100800831,180.0,22.5,8.0 -2019,4,10,13,45,785.0,854.2900437592347,180.0,22.5,8.0 -2019,4,10,14,0,741.0,791.6522175494565,168.0,20.5,6.4 -2019,4,10,14,15,741.0,776.3541425486131,168.0,20.5,6.4 -2019,4,10,14,30,741.0,758.6667262836,168.0,20.5,6.4 -2019,4,10,14,45,741.0,738.6657089862855,168.0,20.5,6.4 -2019,4,10,15,0,672.0,641.3677300836846,144.0,19.9,4.1 -2019,4,10,15,15,672.0,619.2744952338066,144.0,19.9,4.1 -2019,4,10,15,30,672.0,595.3416988872823,144.0,19.9,4.1 -2019,4,10,15,45,672.0,569.6718249522969,144.0,19.9,4.1 -2019,4,10,16,0,559.0,436.3861768383966,105.0,18.8,4.1 -2019,4,10,16,15,559.0,412.4229662025962,105.0,18.8,4.1 -2019,4,10,16,30,559.0,387.30606281731855,105.0,18.8,4.1 -2019,4,10,16,45,559.0,361.14302111887645,105.0,18.8,4.1 -2019,4,10,17,0,350.0,195.4097609015313,52.0,17.5,4.2 -2019,4,10,17,15,350.0,177.9315398776489,52.0,17.5,4.2 -2019,4,10,17,30,350.0,160.01595486321753,52.0,17.5,4.2 -2019,4,10,17,45,350.0,141.73972314371989,52.0,17.5,4.2 -2019,4,10,18,0,85.0,17.286840113376385,0.0,15.3,4.5 -2019,4,10,18,15,85.0,12.73046829344097,0.0,15.3,4.5 -2019,4,10,18,30,85.0,8.144328387308464,0.0,15.3,4.5 -2019,4,10,18,45,85.0,3.548058950133958,0.0,15.3,4.5 -2019,4,10,19,0,0.0,0.0,0.0,13.2,3.4 -2019,4,10,19,15,0.0,0.0,0.0,13.2,3.4 -2019,4,10,19,30,0.0,0.0,0.0,13.2,3.4 -2019,4,10,19,45,0.0,0.0,0.0,13.2,3.4 -2019,4,10,20,0,0.0,0.0,0.0,12.2,1.9 -2019,4,10,20,15,0.0,0.0,0.0,12.2,1.9 -2019,4,10,20,30,0.0,0.0,0.0,12.2,1.9 -2019,4,10,20,45,0.0,0.0,0.0,12.2,1.9 -2019,4,10,21,0,0.0,0.0,0.0,12.1,0.0 -2019,4,10,21,15,0.0,0.0,0.0,12.1,0.0 -2019,4,10,21,30,0.0,0.0,0.0,12.1,0.0 -2019,4,10,21,45,0.0,0.0,0.0,12.1,0.0 -2019,4,10,22,0,0.0,0.0,0.0,12.1,0.7 -2019,4,10,22,15,0.0,0.0,0.0,12.1,0.7 -2019,4,10,22,30,0.0,0.0,0.0,12.1,0.7 -2019,4,10,22,45,0.0,0.0,0.0,12.1,0.7 -2019,4,10,23,0,0.0,0.0,0.0,12.3,2.7 -2019,4,10,23,15,0.0,0.0,0.0,12.3,2.7 -2019,4,10,23,30,0.0,0.0,0.0,12.3,2.7 -2019,4,10,23,45,0.0,0.0,0.0,12.3,2.7 -2019,4,11,0,0,0.0,0.0,0.0,12.7,3.0 -2019,4,11,0,15,0.0,0.0,0.0,12.7,3.0 -2019,4,11,0,30,0.0,0.0,0.0,12.7,3.0 -2019,4,11,0,45,0.0,0.0,0.0,12.7,3.0 -2019,4,11,1,0,0.0,0.0,0.0,12.2,2.7 -2019,4,11,1,15,0.0,0.0,0.0,12.2,2.7 -2019,4,11,1,30,0.0,0.0,0.0,12.2,2.7 -2019,4,11,1,45,0.0,0.0,0.0,12.2,2.7 -2019,4,11,2,0,0.0,0.0,0.0,12.2,3.7 -2019,4,11,2,15,0.0,0.0,0.0,12.2,3.7 -2019,4,11,2,30,0.0,0.0,0.0,12.2,3.7 -2019,4,11,2,45,0.0,0.0,0.0,12.2,3.7 -2019,4,11,3,0,0.0,0.0,0.0,12.2,3.9 -2019,4,11,3,15,0.0,0.0,0.0,12.2,3.9 -2019,4,11,3,30,0.0,0.0,0.0,12.2,3.9 -2019,4,11,3,45,0.0,0.0,0.0,12.2,3.9 -2019,4,11,4,0,0.0,0.0,0.0,11.5,2.3 -2019,4,11,4,15,0.0,0.0,0.0,11.5,2.3 -2019,4,11,4,30,0.0,0.0,0.0,11.5,2.3 -2019,4,11,4,45,0.0,0.0,0.0,11.5,2.3 -2019,4,11,5,0,1.0,9.730200257068796,10.0,11.0,1.5 -2019,4,11,5,15,1.0,9.780095540873827,10.0,11.0,1.5 -2019,4,11,5,30,1.0,9.8312393728237,10.0,11.0,1.5 -2019,4,11,5,45,1.0,9.883412747178264,10.0,11.0,1.5 -2019,4,11,6,0,2.0,29.87278449907746,30.0,11.3,0.6 -2019,4,11,6,15,2.0,29.979902027084858,30.0,11.3,0.6 -2019,4,11,6,30,2.0,30.087719384678813,30.0,11.3,0.6 -2019,4,11,6,45,2.0,30.195774881381684,30.0,11.3,0.6 -2019,4,11,7,0,1.0,58.151802903483805,58.0,13.0,4.1 -2019,4,11,7,15,1.0,58.20537520642936,58.0,13.0,4.1 -2019,4,11,7,30,1.0,58.258374944701735,58.0,13.0,4.1 -2019,4,11,7,45,1.0,58.310575165284966,58.0,13.0,4.1 -2019,4,11,8,0,1.0,106.3617523388206,106.0,13.3,6.6 -2019,4,11,8,15,1.0,106.4116873167947,106.0,13.3,6.6 -2019,4,11,8,30,1.0,106.4601662699654,106.0,13.3,6.6 -2019,4,11,8,45,1.0,106.50698160401262,106.0,13.3,6.6 -2019,4,11,9,0,0.0,117.0,117.0,13.4,5.5 -2019,4,11,9,15,0.0,117.0,117.0,13.4,5.5 -2019,4,11,9,30,0.0,117.0,117.0,13.4,5.5 -2019,4,11,9,45,0.0,117.0,117.0,13.4,5.5 -2019,4,11,10,0,1.0,193.70938394504256,193.0,14.0,3.7 -2019,4,11,10,15,1.0,193.74231509996483,193.0,14.0,3.7 -2019,4,11,10,30,1.0,193.77237443115726,193.0,14.0,3.7 -2019,4,11,10,45,1.0,193.79943321994892,193.0,14.0,3.7 -2019,4,11,11,0,125.0,537.9219495565092,435.0,15.0,4.3 -2019,4,11,11,15,125.0,540.512379466851,435.0,15.0,4.3 -2019,4,11,11,30,125.0,542.6893496060753,435.0,15.0,4.3 -2019,4,11,11,45,125.0,544.4435378538316,435.0,15.0,4.3 -2019,4,11,12,0,2.0,257.77227892010774,256.0,16.1,4.8 -2019,4,11,12,15,2.0,257.78648583111413,256.0,16.1,4.8 -2019,4,11,12,30,2.0,257.79365650250645,256.0,16.1,4.8 -2019,4,11,12,45,2.0,257.79376022836885,256.0,16.1,4.8 -2019,4,11,13,0,28.0,373.0151519034394,348.0,17.7,7.1 -2019,4,11,13,15,28.0,372.8191346266027,348.0,17.7,7.1 -2019,4,11,13,30,28.0,372.5254307427265,348.0,17.7,7.1 -2019,4,11,13,45,28.0,372.13529793693186,348.0,17.7,7.1 -2019,4,11,14,0,119.0,431.51422897559667,331.0,17.1,6.5 -2019,4,11,14,15,119.0,429.0595434949059,331.0,17.1,6.5 -2019,4,11,14,30,119.0,426.22147112996663,331.0,17.1,6.5 -2019,4,11,14,45,119.0,423.01216494235433,331.0,17.1,6.5 -2019,4,11,15,0,648.0,631.6184727114721,150.0,16.6,4.7 -2019,4,11,15,15,648.0,610.3324090579628,150.0,16.6,4.7 -2019,4,11,15,30,648.0,587.2739918592058,150.0,16.6,4.7 -2019,4,11,15,45,648.0,562.5419607976394,150.0,16.6,4.7 -2019,4,11,16,0,488.0,407.87377229455745,117.0,15.8,5.2 -2019,4,11,16,15,488.0,386.9719893287562,117.0,15.8,5.2 -2019,4,11,16,30,488.0,365.06390400116857,117.0,15.8,5.2 -2019,4,11,16,45,488.0,342.24333009655743,117.0,15.8,5.2 -2019,4,11,17,0,325.0,188.26761550236623,54.0,15.5,5.6 -2019,4,11,17,15,325.0,172.05164826573144,54.0,15.5,5.6 -2019,4,11,17,30,325.0,155.42990288202247,54.0,15.5,5.6 -2019,4,11,17,45,325.0,138.47355621678923,54.0,15.5,5.6 -2019,4,11,18,0,282.0,58.356835267070416,0.0,14.3,4.6 -2019,4,11,18,15,282.0,43.25326381802733,0.0,14.3,4.6 -2019,4,11,18,30,282.0,28.05101639727981,0.0,14.3,4.6 -2019,4,11,18,45,282.0,12.815191362174977,0.0,14.3,4.6 -2019,4,11,19,0,0.0,0.0,0.0,13.2,4.4 -2019,4,11,19,15,0.0,0.0,0.0,13.2,4.4 -2019,4,11,19,30,0.0,0.0,0.0,13.2,4.4 -2019,4,11,19,45,0.0,0.0,0.0,13.2,4.4 -2019,4,11,20,0,0.0,0.0,0.0,12.1,3.0 -2019,4,11,20,15,0.0,0.0,0.0,12.1,3.0 -2019,4,11,20,30,0.0,0.0,0.0,12.1,3.0 -2019,4,11,20,45,0.0,0.0,0.0,12.1,3.0 -2019,4,11,21,0,0.0,0.0,0.0,11.7,2.6 -2019,4,11,21,15,0.0,0.0,0.0,11.7,2.6 -2019,4,11,21,30,0.0,0.0,0.0,11.7,2.6 -2019,4,11,21,45,0.0,0.0,0.0,11.7,2.6 -2019,4,11,22,0,0.0,0.0,0.0,11.6,2.3 -2019,4,11,22,15,0.0,0.0,0.0,11.6,2.3 -2019,4,11,22,30,0.0,0.0,0.0,11.6,2.3 -2019,4,11,22,45,0.0,0.0,0.0,11.6,2.3 -2019,4,11,23,0,0.0,0.0,0.0,11.4,0.6 -2019,4,11,23,15,0.0,0.0,0.0,11.4,0.6 -2019,4,11,23,30,0.0,0.0,0.0,11.4,0.6 -2019,4,11,23,45,0.0,0.0,0.0,11.4,0.6 -2019,4,12,0,0,0.0,0.0,0.0,11.0,3.0 -2019,4,12,0,15,0.0,0.0,0.0,11.0,3.0 -2019,4,12,0,30,0.0,0.0,0.0,11.0,3.0 -2019,4,12,0,45,0.0,0.0,0.0,11.0,3.0 -2019,4,12,1,0,0.0,0.0,0.0,10.0,1.9 -2019,4,12,1,15,0.0,0.0,0.0,10.0,1.9 -2019,4,12,1,30,0.0,0.0,0.0,10.0,1.9 -2019,4,12,1,45,0.0,0.0,0.0,10.0,1.9 -2019,4,12,2,0,0.0,0.0,0.0,9.4,1.3 -2019,4,12,2,15,0.0,0.0,0.0,9.4,1.3 -2019,4,12,2,30,0.0,0.0,0.0,9.4,1.3 -2019,4,12,2,45,0.0,0.0,0.0,9.4,1.3 -2019,4,12,3,0,0.0,0.0,0.0,9.3,0.0 -2019,4,12,3,15,0.0,0.0,0.0,9.3,0.0 -2019,4,12,3,30,0.0,0.0,0.0,9.3,0.0 -2019,4,12,3,45,0.0,0.0,0.0,9.3,0.0 -2019,4,12,4,0,0.0,0.0,0.0,8.9,0.0 -2019,4,12,4,15,0.0,0.0,0.0,8.9,0.0 -2019,4,12,4,30,0.0,0.0,0.0,8.9,0.0 -2019,4,12,4,45,0.0,0.0,0.0,8.9,0.0 -2019,4,12,5,0,188.0,-35.9779215654165,14.0,9.1,0.2 -2019,4,12,5,15,188.0,-26.605967742205756,14.0,9.1,0.2 -2019,4,12,5,30,188.0,-16.999496051429517,14.0,9.1,0.2 -2019,4,12,5,45,188.0,-7.199642879680127,14.0,9.1,0.2 -2019,4,12,6,0,377.0,54.44342282482502,77.0,10.9,1.3 -2019,4,12,6,15,377.0,74.61708248939162,77.0,10.9,1.3 -2019,4,12,6,30,377.0,94.92254246866871,77.0,10.9,1.3 -2019,4,12,6,45,377.0,115.27285166567401,77.0,10.9,1.3 -2019,4,12,7,0,179.0,210.81425777416968,183.0,12.8,0.0 -2019,4,12,7,15,179.0,220.39515409816758,183.0,12.8,0.0 -2019,4,12,7,30,179.0,229.87365268171052,183.0,12.8,0.0 -2019,4,12,7,45,179.0,239.2091651386982,183.0,12.8,0.0 -2019,4,12,8,0,7.0,188.55604473520128,186.0,14.2,0.6 -2019,4,12,8,15,7.0,188.90527807422262,186.0,14.2,0.6 -2019,4,12,8,30,7.0,189.2443283226647,186.0,14.2,0.6 -2019,4,12,8,45,7.0,189.57174361531173,186.0,14.2,0.6 -2019,4,12,9,0,6.0,244.33096163681282,241.0,15.6,4.5 -2019,4,12,9,15,6.0,244.58810027667474,241.0,15.6,4.5 -2019,4,12,9,30,6.0,244.8318093398633,241.0,15.6,4.5 -2019,4,12,9,45,6.0,245.06104522675503,241.0,15.6,4.5 -2019,4,12,10,0,2.0,247.42494210469644,246.0,15.7,3.9 -2019,4,12,10,15,2.0,247.49074571947668,246.0,15.7,3.9 -2019,4,12,10,30,2.0,247.5508108054115,246.0,15.7,3.9 -2019,4,12,10,45,2.0,247.6048801545816,246.0,15.7,3.9 -2019,4,12,11,0,3.0,279.4790833505994,277.0,16.6,2.8 -2019,4,12,11,15,3.0,279.5411982636066,277.0,16.6,2.8 -2019,4,12,11,30,3.0,279.59339898530044,277.0,16.6,2.8 -2019,4,12,11,45,3.0,279.6354619841767,277.0,16.6,2.8 -2019,4,12,12,0,2.0,258.7781380933443,257.0,16.3,4.4 -2019,4,12,12,15,2.0,258.79233234345924,257.0,16.3,4.4 -2019,4,12,12,30,2.0,258.79949662450446,257.0,16.3,4.4 -2019,4,12,12,45,2.0,258.79960025792866,257.0,16.3,4.4 -2019,4,12,13,0,15.0,334.444820999682,321.0,17.7,6.6 -2019,4,12,13,15,15.0,334.3399053262083,321.0,17.7,6.6 -2019,4,12,13,30,15.0,334.18270417906456,321.0,17.7,6.6 -2019,4,12,13,45,15.0,333.9738907176969,321.0,17.7,6.6 -2019,4,12,14,0,24.0,302.34297458144715,282.0,16.6,6.1 -2019,4,12,14,15,24.0,301.84835315257743,282.0,16.6,6.1 -2019,4,12,14,30,24.0,301.27647890659995,282.0,16.6,6.1 -2019,4,12,14,45,24.0,300.6298006968317,282.0,16.6,6.1 -2019,4,12,15,0,16.0,202.94072513243117,191.0,16.2,5.7 -2019,4,12,15,15,16.0,202.41561170096145,191.0,16.2,5.7 -2019,4,12,15,30,16.0,201.8467754531424,191.0,16.2,5.7 -2019,4,12,15,45,16.0,201.23665223311653,191.0,16.2,5.7 -2019,4,12,16,0,12.0,110.19089101163485,103.0,15.5,6.0 -2019,4,12,16,15,12.0,109.67737078828789,103.0,15.5,6.0 -2019,4,12,16,30,12.0,109.13912747722996,103.0,15.5,6.0 -2019,4,12,16,45,12.0,108.57846591895164,103.0,15.5,6.0 -2019,4,12,17,0,9.0,36.74834021423983,33.0,14.9,6.1 -2019,4,12,17,15,9.0,36.29968285036272,33.0,14.9,6.1 -2019,4,12,17,30,9.0,35.83979856729365,33.0,14.9,6.1 -2019,4,12,17,45,9.0,35.37065666013543,33.0,14.9,6.1 -2019,4,12,18,0,4.0,2.8418960295815556,2.0,14.3,4.8 -2019,4,12,18,15,4.0,2.627851895209496,2.0,14.3,4.8 -2019,4,12,18,30,4.0,2.41240934901027,2.0,14.3,4.8 -2019,4,12,18,45,4.0,2.1964909490420435,2.0,14.3,4.8 -2019,4,12,19,0,0.0,0.0,0.0,13.2,2.7 -2019,4,12,19,15,0.0,0.0,0.0,13.2,2.7 -2019,4,12,19,30,0.0,0.0,0.0,13.2,2.7 -2019,4,12,19,45,0.0,0.0,0.0,13.2,2.7 -2019,4,12,20,0,0.0,0.0,0.0,12.7,3.1 -2019,4,12,20,15,0.0,0.0,0.0,12.7,3.1 -2019,4,12,20,30,0.0,0.0,0.0,12.7,3.1 -2019,4,12,20,45,0.0,0.0,0.0,12.7,3.1 -2019,4,12,21,0,0.0,0.0,0.0,12.1,3.0 -2019,4,12,21,15,0.0,0.0,0.0,12.1,3.0 -2019,4,12,21,30,0.0,0.0,0.0,12.1,3.0 -2019,4,12,21,45,0.0,0.0,0.0,12.1,3.0 -2019,4,12,22,0,0.0,0.0,0.0,11.7,2.0 -2019,4,12,22,15,0.0,0.0,0.0,11.7,2.0 -2019,4,12,22,30,0.0,0.0,0.0,11.7,2.0 -2019,4,12,22,45,0.0,0.0,0.0,11.7,2.0 -2019,4,12,23,0,0.0,0.0,0.0,11.8,1.5 -2019,4,12,23,15,0.0,0.0,0.0,11.8,1.5 -2019,4,12,23,30,0.0,0.0,0.0,11.8,1.5 -2019,4,12,23,45,0.0,0.0,0.0,11.8,1.5 -2019,4,13,0,0,0.0,0.0,0.0,11.7,1.3 -2019,4,13,0,15,0.0,0.0,0.0,11.7,1.3 -2019,4,13,0,30,0.0,0.0,0.0,11.7,1.3 -2019,4,13,0,45,0.0,0.0,0.0,11.7,1.3 -2019,4,13,1,0,0.0,0.0,0.0,11.6,0.2 -2019,4,13,1,15,0.0,0.0,0.0,11.6,0.2 -2019,4,13,1,30,0.0,0.0,0.0,11.6,0.2 -2019,4,13,1,45,0.0,0.0,0.0,11.6,0.2 -2019,4,13,2,0,0.0,0.0,0.0,11.1,1.5 -2019,4,13,2,15,0.0,0.0,0.0,11.1,1.5 -2019,4,13,2,30,0.0,0.0,0.0,11.1,1.5 -2019,4,13,2,45,0.0,0.0,0.0,11.1,1.5 -2019,4,13,3,0,0.0,0.0,0.0,11.1,1.7 -2019,4,13,3,15,0.0,0.0,0.0,11.1,1.7 -2019,4,13,3,30,0.0,0.0,0.0,11.1,1.7 -2019,4,13,3,45,0.0,0.0,0.0,11.1,1.7 -2019,4,13,4,0,0.0,0.0,0.0,10.9,1.5 -2019,4,13,4,15,0.0,0.0,0.0,10.9,1.5 -2019,4,13,4,30,0.0,0.0,0.0,10.9,1.5 -2019,4,13,4,45,0.0,0.0,0.0,10.9,1.5 -2019,4,13,5,0,4.0,8.952429480827496,10.0,10.8,1.6 -2019,4,13,5,15,4.0,9.151647208836204,10.0,10.8,1.6 -2019,4,13,5,30,4.0,9.355850035751198,10.0,10.8,1.6 -2019,4,13,5,45,4.0,9.564163533717837,10.0,10.8,1.6 -2019,4,13,6,0,7.0,49.60746742662468,50.0,12.3,2.6 -2019,4,13,6,15,7.0,49.98169611750784,50.0,12.3,2.6 -2019,4,13,6,30,7.0,50.3583697519487,50.0,12.3,2.6 -2019,4,13,6,45,7.0,50.73587535561659,50.0,12.3,2.6 -2019,4,13,7,0,1.0,60.15894234165156,60.0,13.4,2.8 -2019,4,13,7,15,1.0,60.21241709749578,60.0,13.4,2.8 -2019,4,13,7,30,1.0,60.26532033122091,60.0,13.4,2.8 -2019,4,13,7,45,1.0,60.317425503058296,60.0,13.4,2.8 -2019,4,13,8,0,1.0,108.3685094906628,108.0,14.5,4.6 -2019,4,13,8,15,1.0,108.41835354455694,108.0,14.5,4.6 -2019,4,13,8,30,1.0,108.46674422484972,108.0,14.5,4.6 -2019,4,13,8,45,1.0,108.51347431521909,108.0,14.5,4.6 -2019,4,13,9,0,0.0,114.0,114.0,15.0,4.7 -2019,4,13,9,15,0.0,114.0,114.0,15.0,4.7 -2019,4,13,9,30,0.0,114.0,114.0,15.0,4.7 -2019,4,13,9,45,0.0,114.0,114.0,15.0,4.7 -2019,4,13,10,0,0.0,116.0,116.0,14.9,5.6 -2019,4,13,10,15,0.0,116.0,116.0,14.9,5.6 -2019,4,13,10,30,0.0,116.0,116.0,14.9,5.6 -2019,4,13,10,45,0.0,116.0,116.0,14.9,5.6 -2019,4,13,11,0,0.0,122.0,122.0,13.9,5.0 -2019,4,13,11,15,0.0,122.0,122.0,13.9,5.0 -2019,4,13,11,30,0.0,122.0,122.0,13.9,5.0 -2019,4,13,11,45,0.0,122.0,122.0,13.9,5.0 -2019,4,13,12,0,0.0,121.0,121.0,13.6,4.7 -2019,4,13,12,15,0.0,121.0,121.0,13.6,4.7 -2019,4,13,12,30,0.0,121.0,121.0,13.6,4.7 -2019,4,13,12,45,0.0,121.0,121.0,13.6,4.7 -2019,4,13,13,0,0.0,147.0,147.0,10.0,7.4 -2019,4,13,13,15,0.0,147.0,147.0,10.0,7.4 -2019,4,13,13,30,0.0,147.0,147.0,10.0,7.4 -2019,4,13,13,45,0.0,147.0,147.0,10.0,7.4 -2019,4,13,14,0,2.0,187.70107048154932,186.0,10.0,7.3 -2019,4,13,14,15,2.0,187.65989038293006,186.0,10.0,7.3 -2019,4,13,14,30,2.0,187.61227853986657,186.0,10.0,7.3 -2019,4,13,14,45,2.0,187.55843883358042,186.0,10.0,7.3 -2019,4,13,15,0,7.0,167.2451063488582,162.0,9.9,4.1 -2019,4,13,15,15,7.0,167.01558299307857,162.0,9.9,4.1 -2019,4,13,15,30,7.0,166.7669487044391,162.0,9.9,4.1 -2019,4,13,15,45,7.0,166.5002681731347,162.0,9.9,4.1 -2019,4,13,16,0,19.0,127.44528342238557,116.0,10.3,4.1 -2019,4,13,16,15,19.0,126.63296630081226,116.0,10.3,4.1 -2019,4,13,16,30,19.0,125.78154071469808,116.0,10.3,4.1 -2019,4,13,16,45,19.0,124.89465259911603,116.0,10.3,4.1 -2019,4,13,17,0,4.0,28.679178893712532,27.0,10.7,4.6 -2019,4,13,17,15,4.0,28.479961165703823,27.0,10.7,4.6 -2019,4,13,17,30,4.0,28.27575833878883,27.0,10.7,4.6 -2019,4,13,17,45,4.0,28.06744484082219,27.0,10.7,4.6 -2019,4,13,18,0,2.0,2.4279563510915336,2.0,9.0,8.6 -2019,4,13,18,15,2.0,2.321033867982059,2.0,9.0,8.6 -2019,4,13,18,30,2.0,2.213412829570385,2.0,9.0,8.6 -2019,4,13,18,45,2.0,2.1055540856652732,2.0,9.0,8.6 -2019,4,13,19,0,0.0,0.0,0.0,9.9,7.4 -2019,4,13,19,15,0.0,0.0,0.0,9.9,7.4 -2019,4,13,19,30,0.0,0.0,0.0,9.9,7.4 -2019,4,13,19,45,0.0,0.0,0.0,9.9,7.4 -2019,4,13,20,0,0.0,0.0,0.0,9.4,8.9 -2019,4,13,20,15,0.0,0.0,0.0,9.4,8.9 -2019,4,13,20,30,0.0,0.0,0.0,9.4,8.9 -2019,4,13,20,45,0.0,0.0,0.0,9.4,8.9 -2019,4,13,21,0,0.0,0.0,0.0,9.3,6.5 -2019,4,13,21,15,0.0,0.0,0.0,9.3,6.5 -2019,4,13,21,30,0.0,0.0,0.0,9.3,6.5 -2019,4,13,21,45,0.0,0.0,0.0,9.3,6.5 -2019,4,13,22,0,0.0,0.0,0.0,8.9,8.6 -2019,4,13,22,15,0.0,0.0,0.0,8.9,8.6 -2019,4,13,22,30,0.0,0.0,0.0,8.9,8.6 -2019,4,13,22,45,0.0,0.0,0.0,8.9,8.6 -2019,4,13,23,0,0.0,0.0,0.0,8.8,7.0 -2019,4,13,23,15,0.0,0.0,0.0,8.8,7.0 -2019,4,13,23,30,0.0,0.0,0.0,8.8,7.0 -2019,4,13,23,45,0.0,0.0,0.0,8.8,7.0 -2019,4,14,0,0,0.0,0.0,0.0,8.2,5.0 -2019,4,14,0,15,0.0,0.0,0.0,8.2,5.0 -2019,4,14,0,30,0.0,0.0,0.0,8.2,5.0 -2019,4,14,0,45,0.0,0.0,0.0,8.2,5.0 -2019,4,14,1,0,0.0,0.0,0.0,7.9,0.3 -2019,4,14,1,15,0.0,0.0,0.0,7.9,0.3 -2019,4,14,1,30,0.0,0.0,0.0,7.9,0.3 -2019,4,14,1,45,0.0,0.0,0.0,7.9,0.3 -2019,4,14,2,0,0.0,0.0,0.0,8.2,2.3 -2019,4,14,2,15,0.0,0.0,0.0,8.2,2.3 -2019,4,14,2,30,0.0,0.0,0.0,8.2,2.3 -2019,4,14,2,45,0.0,0.0,0.0,8.2,2.3 -2019,4,14,3,0,0.0,0.0,0.0,7.2,0.0 -2019,4,14,3,15,0.0,0.0,0.0,7.2,0.0 -2019,4,14,3,30,0.0,0.0,0.0,7.2,0.0 -2019,4,14,3,45,0.0,0.0,0.0,7.2,0.0 -2019,4,14,4,0,0.0,0.0,0.0,7.4,0.0 -2019,4,14,4,15,0.0,0.0,0.0,7.4,0.0 -2019,4,14,4,30,0.0,0.0,0.0,7.4,0.0 -2019,4,14,4,45,0.0,0.0,0.0,7.4,0.0 -2019,4,14,5,0,153.0,-24.467752524247274,15.0,7.2,0.0 -2019,4,14,5,15,153.0,-16.855056689725714,15.0,7.2,0.0 -2019,4,14,5,30,153.0,-9.051865551107053,15.0,7.2,0.0 -2019,4,14,5,45,153.0,-1.0915935708146023,15.0,7.2,0.0 -2019,4,14,6,0,305.0,70.03568630102555,86.0,9.0,1.9 -2019,4,14,6,15,305.0,86.32556818318412,86.0,9.0,1.9 -2019,4,14,6,30,305.0,102.72187654394702,86.0,9.0,1.9 -2019,4,14,6,45,305.0,119.15439987370661,86.0,9.0,1.9 -2019,4,14,7,0,20.0,149.2493620711343,146.0,9.2,0.0 -2019,4,14,7,15,20.0,150.31782107095282,146.0,9.2,0.0 -2019,4,14,7,30,20.0,151.3748607020974,146.0,9.2,0.0 -2019,4,14,7,45,20.0,152.41595455858788,146.0,9.2,0.0 -2019,4,14,8,0,2.0,149.7436644516699,149.0,10.8,0.4 -2019,4,14,8,15,2.0,149.84325598253312,149.0,10.8,0.4 -2019,4,14,8,30,2.0,149.9399435822237,149.0,10.8,0.4 -2019,4,14,8,45,2.0,150.03331321959604,149.0,10.8,0.4 -2019,4,14,9,0,2.0,207.12296507152848,206.0,12.3,3.0 -2019,4,14,9,15,2.0,207.20851523502753,206.0,12.3,3.0 -2019,4,14,9,30,2.0,207.28959737115912,206.0,12.3,3.0 -2019,4,14,9,45,2.0,207.3658642737684,206.0,12.3,3.0 -2019,4,14,10,0,4.0,278.87397871253944,276.0,12.9,2.2 -2019,4,14,10,15,4.0,279.0053361002809,276.0,12.9,2.2 -2019,4,14,10,30,4.0,279.1252382182605,276.0,12.9,2.2 -2019,4,14,10,45,4.0,279.23317162720144,276.0,12.9,2.2 -2019,4,14,11,0,4.0,292.3286741396763,289.0,13.4,2.6 -2019,4,14,11,15,4.0,292.4113367992649,289.0,13.4,2.6 -2019,4,14,11,30,4.0,292.4808056317683,289.0,13.4,2.6 -2019,4,14,11,45,4.0,292.5367831609806,289.0,13.4,2.6 -2019,4,14,12,0,7.0,323.26330194442386,317.0,14.5,3.0 -2019,4,14,12,15,7.0,323.3128875080586,317.0,14.5,3.0 -2019,4,14,12,30,7.0,323.3379148896243,317.0,14.5,3.0 -2019,4,14,12,45,7.0,323.3382769180308,317.0,14.5,3.0 -2019,4,14,13,0,26.0,370.4518961597768,347.0,15.6,5.6 -2019,4,14,13,15,26.0,370.2703875552148,347.0,15.6,5.6 -2019,4,14,13,30,26.0,369.9984228438532,347.0,15.6,5.6 -2019,4,14,13,45,26.0,369.63716662033863,347.0,15.6,5.6 -2019,4,14,14,0,58.0,366.496677641474,317.0,15.6,4.9 -2019,4,14,14,15,58.0,365.3036117336752,317.0,15.6,4.9 -2019,4,14,14,30,58.0,363.92420593643146,317.0,15.6,4.9 -2019,4,14,14,45,58.0,362.3643670771368,317.0,15.6,4.9 -2019,4,14,15,0,63.0,284.3920482998487,237.0,15.2,3.2 -2019,4,14,15,15,63.0,282.32833933894085,237.0,15.2,3.2 -2019,4,14,15,30,63.0,280.0927986127634,237.0,15.2,3.2 -2019,4,14,15,45,63.0,277.6949990499122,237.0,15.2,3.2 -2019,4,14,16,0,52.0,171.4849339143506,140.0,14.9,3.7 -2019,4,14,16,15,52.0,169.2639040131938,140.0,14.9,3.7 -2019,4,14,16,30,52.0,166.93594411286952,140.0,14.9,3.7 -2019,4,14,16,45,52.0,164.51102289506582,140.0,14.9,3.7 -2019,4,14,17,0,18.0,50.61521993086393,43.0,14.4,4.0 -2019,4,14,17,15,18.0,49.719608656214334,43.0,14.4,4.0 -2019,4,14,17,30,18.0,48.80158616931802,43.0,14.4,4.0 -2019,4,14,17,45,18.0,47.865083583401265,43.0,14.4,4.0 -2019,4,14,18,0,9.0,4.957055573155721,3.0,14.3,3.7 -2019,4,14,18,15,9.0,4.476370534010059,3.0,14.3,3.7 -2019,4,14,18,30,9.0,3.9925450413973813,3.0,14.3,3.7 -2019,4,14,18,45,9.0,3.5076509103552964,3.0,14.3,3.7 -2019,4,14,19,0,0.0,0.0,0.0,13.8,3.6 -2019,4,14,19,15,0.0,0.0,0.0,13.8,3.6 -2019,4,14,19,30,0.0,0.0,0.0,13.8,3.6 -2019,4,14,19,45,0.0,0.0,0.0,13.8,3.6 -2019,4,14,20,0,0.0,0.0,0.0,12.7,0.0 -2019,4,14,20,15,0.0,0.0,0.0,12.7,0.0 -2019,4,14,20,30,0.0,0.0,0.0,12.7,0.0 -2019,4,14,20,45,0.0,0.0,0.0,12.7,0.0 -2019,4,14,21,0,0.0,0.0,0.0,11.4,0.2 -2019,4,14,21,15,0.0,0.0,0.0,11.4,0.2 -2019,4,14,21,30,0.0,0.0,0.0,11.4,0.2 -2019,4,14,21,45,0.0,0.0,0.0,11.4,0.2 -2019,4,14,22,0,0.0,0.0,0.0,9.4,1.6 -2019,4,14,22,15,0.0,0.0,0.0,9.4,1.6 -2019,4,14,22,30,0.0,0.0,0.0,9.4,1.6 -2019,4,14,22,45,0.0,0.0,0.0,9.4,1.6 -2019,4,14,23,0,0.0,0.0,0.0,9.4,2.0 -2019,4,14,23,15,0.0,0.0,0.0,9.4,2.0 -2019,4,14,23,30,0.0,0.0,0.0,9.4,2.0 -2019,4,14,23,45,0.0,0.0,0.0,9.4,2.0 -2019,4,15,0,0,0.0,0.0,0.0,9.2,1.5 -2019,4,15,0,15,0.0,0.0,0.0,9.2,1.5 -2019,4,15,0,30,0.0,0.0,0.0,9.2,1.5 -2019,4,15,0,45,0.0,0.0,0.0,9.2,1.5 -2019,4,15,1,0,0.0,0.0,0.0,7.8,1.3 -2019,4,15,1,15,0.0,0.0,0.0,7.8,1.3 -2019,4,15,1,30,0.0,0.0,0.0,7.8,1.3 -2019,4,15,1,45,0.0,0.0,0.0,7.8,1.3 -2019,4,15,2,0,0.0,0.0,0.0,7.7,0.0 -2019,4,15,2,15,0.0,0.0,0.0,7.7,0.0 -2019,4,15,2,30,0.0,0.0,0.0,7.7,0.0 -2019,4,15,2,45,0.0,0.0,0.0,7.7,0.0 -2019,4,15,3,0,0.0,0.0,0.0,6.6,0.0 -2019,4,15,3,15,0.0,0.0,0.0,6.6,0.0 -2019,4,15,3,30,0.0,0.0,0.0,6.6,0.0 -2019,4,15,3,45,0.0,0.0,0.0,6.6,0.0 -2019,4,15,4,0,0.0,0.0,0.0,6.2,0.0 -2019,4,15,4,15,0.0,0.0,0.0,6.2,0.0 -2019,4,15,4,30,0.0,0.0,0.0,6.2,0.0 -2019,4,15,4,45,0.0,0.0,0.0,6.2,0.0 -2019,4,15,5,0,228.0,-39.92138844784812,18.0,7.0,0.2 -2019,4,15,5,15,228.0,-28.58839150508527,18.0,7.0,0.2 -2019,4,15,5,30,228.0,-16.971804787310873,18.0,7.0,0.2 -2019,4,15,5,45,228.0,-5.121372302261403,18.0,7.0,0.2 -2019,4,15,6,0,457.0,52.77569028304758,75.0,9.1,1.3 -2019,4,15,6,15,457.0,77.15925368556542,75.0,9.1,1.3 -2019,4,15,6,30,457.0,101.70212191346695,75.0,9.1,1.3 -2019,4,15,6,45,457.0,126.29919863711069,75.0,9.1,1.3 -2019,4,15,7,0,623.0,223.3950367894984,120.0,10.9,0.2 -2019,4,15,7,15,623.0,256.6440522644087,120.0,10.9,0.2 -2019,4,15,7,30,623.0,289.5377122546287,120.0,10.9,0.2 -2019,4,15,7,45,623.0,321.93516105815354,120.0,10.9,0.2 -2019,4,15,8,0,718.0,420.33374879402936,151.0,13.1,1.3 -2019,4,15,8,15,718.0,456.0511403044695,151.0,13.1,1.3 -2019,4,15,8,30,718.0,490.7270692958248,151.0,13.1,1.3 -2019,4,15,8,45,718.0,524.2130481166087,151.0,13.1,1.3 -2019,4,15,9,0,778.0,607.2402544137849,168.0,15.7,0.2 -2019,4,15,9,15,778.0,640.4857891506399,168.0,15.7,0.2 -2019,4,15,9,30,778.0,671.995009741807,168.0,15.7,0.2 -2019,4,15,9,45,778.0,701.6329888673314,168.0,15.7,0.2 -2019,4,15,10,0,815.0,762.9657350933818,175.0,16.8,1.3 -2019,4,15,10,15,815.0,789.7028780515268,175.0,16.8,1.3 -2019,4,15,10,30,815.0,814.1083578233671,175.0,16.8,1.3 -2019,4,15,10,45,815.0,836.0776663977218,175.0,16.8,1.3 -2019,4,15,11,0,831.0,870.8765654239094,177.0,18.0,0.0 -2019,4,15,11,15,831.0,888.0324566557815,177.0,18.0,0.0 -2019,4,15,11,30,831.0,902.4500877889236,177.0,18.0,0.0 -2019,4,15,11,45,831.0,914.0677203133886,177.0,18.0,0.0 -2019,4,15,12,0,828.0,920.1430584299833,177.0,19.7,0.2 -2019,4,15,12,15,828.0,926.0024217562624,177.0,19.7,0.2 -2019,4,15,12,30,828.0,928.9598253017566,177.0,19.7,0.2 -2019,4,15,12,45,828.0,929.0026050104552,177.0,19.7,0.2 -2019,4,15,13,0,805.0,901.3213949793816,173.0,21.8,2.1 -2019,4,15,13,15,805.0,895.707262872311,173.0,21.8,2.1 -2019,4,15,13,30,805.0,887.295288014533,173.0,21.8,2.1 -2019,4,15,13,45,805.0,876.1214917738182,173.0,21.8,2.1 -2019,4,15,14,0,760.0,813.7051289024068,163.0,22.2,2.3 -2019,4,15,14,15,760.0,798.0875786499023,163.0,22.2,2.3 -2019,4,15,14,30,760.0,780.0307896525558,163.0,22.2,2.3 -2019,4,15,14,45,760.0,759.6120838529826,163.0,22.2,2.3 -2019,4,15,15,0,690.0,663.0579462185076,142.0,22.1,3.7 -2019,4,15,15,15,690.0,640.4781577656121,142.0,22.1,3.7 -2019,4,15,15,30,690.0,616.0182956285043,142.0,22.1,3.7 -2019,4,15,15,45,690.0,589.7831006920023,142.0,22.1,3.7 -2019,4,15,16,0,577.0,457.12115446822946,106.0,21.0,4.4 -2019,4,15,16,15,577.0,432.5010578776749,106.0,21.0,4.4 -2019,4,15,16,30,577.0,406.6956432026763,106.0,21.0,4.4 -2019,4,15,16,45,577.0,379.8154131905914,106.0,21.0,4.4 -2019,4,15,17,0,372.0,213.5838405512275,55.0,19.7,5.0 -2019,4,15,17,15,372.0,195.0931613288249,55.0,19.7,5.0 -2019,4,15,17,30,372.0,176.1397829998246,55.0,19.7,5.0 -2019,4,15,17,45,372.0,156.80486684000704,55.0,19.7,5.0 -2019,4,15,18,0,285.0,62.95374800990544,0.0,17.6,4.0 -2019,4,15,18,15,285.0,47.74736820745992,0.0,17.6,4.0 -2019,4,15,18,30,285.0,32.44164075679918,0.0,17.6,4.0 -2019,4,15,18,45,285.0,17.102107132645006,0.0,17.6,4.0 -2019,4,15,19,0,0.0,0.0,0.0,15.9,3.4 -2019,4,15,19,15,0.0,0.0,0.0,15.9,3.4 -2019,4,15,19,30,0.0,0.0,0.0,15.9,3.4 -2019,4,15,19,45,0.0,0.0,0.0,15.9,3.4 -2019,4,15,20,0,0.0,0.0,0.0,14.4,1.3 -2019,4,15,20,15,0.0,0.0,0.0,14.4,1.3 -2019,4,15,20,30,0.0,0.0,0.0,14.4,1.3 -2019,4,15,20,45,0.0,0.0,0.0,14.4,1.3 -2019,4,15,21,0,0.0,0.0,0.0,14.3,0.0 -2019,4,15,21,15,0.0,0.0,0.0,14.3,0.0 -2019,4,15,21,30,0.0,0.0,0.0,14.3,0.0 -2019,4,15,21,45,0.0,0.0,0.0,14.3,0.0 -2019,4,15,22,0,0.0,0.0,0.0,13.8,0.0 -2019,4,15,22,15,0.0,0.0,0.0,13.8,0.0 -2019,4,15,22,30,0.0,0.0,0.0,13.8,0.0 -2019,4,15,22,45,0.0,0.0,0.0,13.8,0.0 -2019,4,15,23,0,0.0,0.0,0.0,13.2,0.0 -2019,4,15,23,15,0.0,0.0,0.0,13.2,0.0 -2019,4,15,23,30,0.0,0.0,0.0,13.2,0.0 -2019,4,15,23,45,0.0,0.0,0.0,13.2,0.0 -2019,4,16,0,0,0.0,0.0,0.0,11.9,0.0 -2019,4,16,0,15,0.0,0.0,0.0,11.9,0.0 -2019,4,16,0,30,0.0,0.0,0.0,11.9,0.0 -2019,4,16,0,45,0.0,0.0,0.0,11.9,0.0 -2019,4,16,1,0,0.0,0.0,0.0,10.0,0.2 -2019,4,16,1,15,0.0,0.0,0.0,10.0,0.2 -2019,4,16,1,30,0.0,0.0,0.0,10.0,0.2 -2019,4,16,1,45,0.0,0.0,0.0,10.0,0.2 -2019,4,16,2,0,0.0,0.0,0.0,10.0,1.5 -2019,4,16,2,15,0.0,0.0,0.0,10.0,1.5 -2019,4,16,2,30,0.0,0.0,0.0,10.0,1.5 -2019,4,16,2,45,0.0,0.0,0.0,10.0,1.5 -2019,4,16,3,0,0.0,0.0,0.0,9.9,1.5 -2019,4,16,3,15,0.0,0.0,0.0,9.9,1.5 -2019,4,16,3,30,0.0,0.0,0.0,9.9,1.5 -2019,4,16,3,45,0.0,0.0,0.0,9.9,1.5 -2019,4,16,4,0,0.0,0.0,0.0,9.5,1.5 -2019,4,16,4,15,0.0,0.0,0.0,9.5,1.5 -2019,4,16,4,30,0.0,0.0,0.0,9.5,1.5 -2019,4,16,4,45,0.0,0.0,0.0,9.5,1.5 -2019,4,16,5,0,269.0,-49.287718341976316,18.0,10.3,1.6 -2019,4,16,5,15,269.0,-35.9307040654471,18.0,10.3,1.6 -2019,4,16,5,30,269.0,-22.23945227940152,18.0,10.3,1.6 -2019,4,16,5,45,269.0,-8.272591025906522,18.0,10.3,1.6 -2019,4,16,6,0,538.0,43.82014290183764,68.0,13.3,2.0 -2019,4,16,6,15,538.0,72.49560562597365,68.0,13.3,2.0 -2019,4,16,6,30,538.0,101.35841338687288,68.0,13.3,2.0 -2019,4,16,6,45,538.0,130.28497121060443,68.0,13.3,2.0 -2019,4,16,7,0,720.0,223.98701862024245,102.0,17.1,1.5 -2019,4,16,7,15,720.0,262.3728035259759,102.0,17.1,1.5 -2019,4,16,7,30,720.0,300.3483326991542,102.0,17.1,1.5 -2019,4,16,7,45,720.0,337.75098909374844,102.0,17.1,1.5 -2019,4,16,8,0,983.0,448.9298033936629,77.0,20.4,1.5 -2019,4,16,8,15,983.0,497.77883891519707,77.0,20.4,1.5 -2019,4,16,8,30,983.0,545.203513993885,77.0,20.4,1.5 -2019,4,16,8,45,983.0,591.0007488902712,77.0,20.4,1.5 -2019,4,16,9,0,1015.0,662.138402142232,86.0,23.4,1.3 -2019,4,16,9,15,1015.0,705.4662336254876,86.0,23.4,1.3 -2019,4,16,9,30,1015.0,746.5311829712823,86.0,23.4,1.3 -2019,4,16,9,45,1015.0,785.1574037621123,86.0,23.4,1.3 -2019,4,16,10,0,964.0,813.2394392682617,115.0,24.6,0.0 -2019,4,16,10,15,964.0,844.8317657514231,115.0,24.6,0.0 -2019,4,16,10,30,964.0,873.6690235742632,115.0,24.6,0.0 -2019,4,16,10,45,964.0,899.6277271716083,115.0,24.6,0.0 -2019,4,16,11,0,921.0,910.5732123606217,139.0,26.3,0.4 -2019,4,16,11,15,921.0,929.5673279293901,139.0,26.3,0.4 -2019,4,16,11,30,921.0,945.5297835237703,139.0,26.3,0.4 -2019,4,16,11,45,921.0,958.3922254583064,139.0,26.3,0.4 -2019,4,16,12,0,890.0,951.1928572811526,150.0,27.8,3.2 -2019,4,16,12,15,890.0,957.4844019433334,150.0,27.8,3.2 -2019,4,16,12,30,890.0,960.6599408977313,150.0,27.8,3.2 -2019,4,16,12,45,890.0,960.7058759990256,150.0,27.8,3.2 -2019,4,16,13,0,923.0,964.5675457685551,127.0,27.8,3.8 -2019,4,16,13,15,923.0,958.137180634371,127.0,27.8,3.8 -2019,4,16,13,30,923.0,948.5021972026551,127.0,27.8,3.8 -2019,4,16,13,45,923.0,935.7038539516516,127.0,27.8,3.8 -2019,4,16,14,0,949.0,916.1292639534634,101.0,27.7,5.2 -2019,4,16,14,15,949.0,896.648197951362,101.0,27.7,5.2 -2019,4,16,14,30,949.0,874.1244671129156,101.0,27.7,5.2 -2019,4,16,14,45,949.0,848.6545215114803,101.0,27.7,5.2 -2019,4,16,15,0,886.0,763.5930670651255,92.0,27.2,6.1 -2019,4,16,15,15,886.0,734.6295241254478,92.0,27.2,6.1 -2019,4,16,15,30,886.0,703.254373344712,92.0,27.2,6.1 -2019,4,16,15,45,886.0,669.6019679353624,92.0,27.2,6.1 -2019,4,16,16,0,808.0,563.116999359287,69.0,26.1,5.3 -2019,4,16,16,15,808.0,528.676258455286,69.0,26.1,5.3 -2019,4,16,16,30,808.0,492.5773911144122,69.0,26.1,5.3 -2019,4,16,16,45,808.0,454.974978228618,69.0,26.1,5.3 -2019,4,16,17,0,587.0,294.1121694966454,42.0,25.4,4.5 -2019,4,16,17,15,587.0,264.96507886347564,42.0,25.4,4.5 -2019,4,16,17,30,587.0,235.0886297987591,42.0,25.4,4.5 -2019,4,16,17,45,587.0,204.6107578441064,42.0,25.4,4.5 -2019,4,16,18,0,382.0,85.68121642221004,0.0,23.6,3.5 -2019,4,16,18,15,382.0,65.32057188574177,0.0,23.6,3.5 -2019,4,16,18,30,382.0,44.82690540867204,0.0,23.6,3.5 -2019,4,16,18,45,382.0,24.287974017100492,0.0,23.6,3.5 -2019,4,16,19,0,0.0,0.0,0.0,21.5,3.0 -2019,4,16,19,15,0.0,0.0,0.0,21.5,3.0 -2019,4,16,19,30,0.0,0.0,0.0,21.5,3.0 -2019,4,16,19,45,0.0,0.0,0.0,21.5,3.0 -2019,4,16,20,0,0.0,0.0,0.0,19.9,2.3 -2019,4,16,20,15,0.0,0.0,0.0,19.9,2.3 -2019,4,16,20,30,0.0,0.0,0.0,19.9,2.3 -2019,4,16,20,45,0.0,0.0,0.0,19.9,2.3 -2019,4,16,21,0,0.0,0.0,0.0,18.6,0.2 -2019,4,16,21,15,0.0,0.0,0.0,18.6,0.2 -2019,4,16,21,30,0.0,0.0,0.0,18.6,0.2 -2019,4,16,21,45,0.0,0.0,0.0,18.6,0.2 -2019,4,16,22,0,0.0,0.0,0.0,16.6,1.5 -2019,4,16,22,15,0.0,0.0,0.0,16.6,1.5 -2019,4,16,22,30,0.0,0.0,0.0,16.6,1.5 -2019,4,16,22,45,0.0,0.0,0.0,16.6,1.5 -2019,4,16,23,0,0.0,0.0,0.0,16.0,1.3 -2019,4,16,23,15,0.0,0.0,0.0,16.0,1.3 -2019,4,16,23,30,0.0,0.0,0.0,16.0,1.3 -2019,4,16,23,45,0.0,0.0,0.0,16.0,1.3 -2019,4,17,0,0,0.0,0.0,0.0,14.8,0.2 -2019,4,17,0,15,0.0,0.0,0.0,14.8,0.2 -2019,4,17,0,30,0.0,0.0,0.0,14.8,0.2 -2019,4,17,0,45,0.0,0.0,0.0,14.8,0.2 -2019,4,17,1,0,0.0,0.0,0.0,13.2,1.3 -2019,4,17,1,15,0.0,0.0,0.0,13.2,1.3 -2019,4,17,1,30,0.0,0.0,0.0,13.2,1.3 -2019,4,17,1,45,0.0,0.0,0.0,13.2,1.3 -2019,4,17,2,0,0.0,0.0,0.0,12.7,0.2 -2019,4,17,2,15,0.0,0.0,0.0,12.7,0.2 -2019,4,17,2,30,0.0,0.0,0.0,12.7,0.2 -2019,4,17,2,45,0.0,0.0,0.0,12.7,0.2 -2019,4,17,3,0,0.0,0.0,0.0,11.7,1.3 -2019,4,17,3,15,0.0,0.0,0.0,11.7,1.3 -2019,4,17,3,30,0.0,0.0,0.0,11.7,1.3 -2019,4,17,3,45,0.0,0.0,0.0,11.7,1.3 -2019,4,17,4,0,0.0,0.0,0.0,11.7,0.0 -2019,4,17,4,15,0.0,0.0,0.0,11.7,0.0 -2019,4,17,4,30,0.0,0.0,0.0,11.7,0.0 -2019,4,17,4,45,0.0,0.0,0.0,11.7,0.0 -2019,4,17,5,0,289.0,-52.16851486778266,19.0,12.1,0.2 -2019,4,17,5,15,289.0,-37.83386957187506,19.0,12.1,0.2 -2019,4,17,5,30,289.0,-23.140523143789714,19.0,12.1,0.2 -2019,4,17,5,45,289.0,-8.151394748695218,19.0,12.1,0.2 -2019,4,17,6,0,578.0,41.13865972889555,65.0,15.5,1.3 -2019,4,17,6,15,578.0,71.91294643223509,65.0,15.5,1.3 -2019,4,17,6,30,578.0,102.88829039241016,65.0,15.5,1.3 -2019,4,17,6,45,578.0,133.93205043116188,65.0,15.5,1.3 -2019,4,17,7,0,770.0,226.09981859792615,93.0,19.9,0.0 -2019,4,17,7,15,770.0,267.10706919544776,93.0,19.9,0.0 -2019,4,17,7,30,770.0,307.676046622959,93.0,19.9,0.0 -2019,4,17,7,45,770.0,347.63302829085313,93.0,19.9,0.0 -2019,4,17,8,0,877.0,440.63462605220036,106.0,23.5,0.2 -2019,4,17,8,15,877.0,484.16917678752304,106.0,23.5,0.2 -2019,4,17,8,30,877.0,526.4343290321192,106.0,23.5,0.2 -2019,4,17,8,45,877.0,567.2490969154134,106.0,23.5,0.2 -2019,4,17,9,0,944.0,648.6706246710986,110.0,25.3,1.9 -2019,4,17,9,15,944.0,688.9242410755807,110.0,25.3,1.9 -2019,4,17,9,30,944.0,727.0755323368093,110.0,25.3,1.9 -2019,4,17,9,45,944.0,762.9611287685111,110.0,25.3,1.9 -2019,4,17,10,0,983.0,822.786120308232,108.0,27.4,0.2 -2019,4,17,10,15,983.0,854.9664204855411,108.0,27.4,0.2 -2019,4,17,10,30,983.0,884.3403766430298,108.0,27.4,0.2 -2019,4,17,10,45,983.0,910.7822049908601,108.0,27.4,0.2 -2019,4,17,11,0,1000.0,946.4666099294233,106.0,29.0,2.5 -2019,4,17,11,15,1000.0,967.0677589673278,106.0,29.0,2.5 -2019,4,17,11,30,1000.0,984.3807486414283,106.0,29.0,2.5 -2019,4,17,11,45,1000.0,998.3314420720019,106.0,29.0,2.5 -2019,4,17,12,0,997.0,1007.1515199472852,107.0,29.4,5.2 -2019,4,17,12,15,997.0,1014.1918729252953,107.0,29.4,5.2 -2019,4,17,12,30,997.0,1017.7453588075099,107.0,29.4,5.2 -2019,4,17,12,45,997.0,1017.7967610218398,107.0,29.4,5.2 -2019,4,17,13,0,972.0,993.5939572631306,109.0,29.4,5.6 -2019,4,17,13,15,972.0,986.8295118569774,109.0,29.4,5.6 -2019,4,17,13,30,972.0,976.6939568685741,109.0,29.4,5.6 -2019,4,17,13,45,972.0,963.2306943004198,109.0,29.4,5.6 -2019,4,17,14,0,923.0,904.277857988373,109.0,29.3,4.7 -2019,4,17,14,15,923.0,885.3509267459596,109.0,29.3,4.7 -2019,4,17,14,30,923.0,863.46787861831,109.0,29.3,4.7 -2019,4,17,14,45,923.0,838.7224201770537,109.0,29.3,4.7 -2019,4,17,15,0,844.0,745.1171342269208,103.0,28.8,5.8 -2019,4,17,15,15,844.0,717.5562968664602,103.0,28.8,5.8 -2019,4,17,15,30,844.0,687.7006459321549,103.0,28.8,5.8 -2019,4,17,15,45,844.0,655.6780279048282,103.0,28.8,5.8 -2019,4,17,16,0,715.0,524.3569686185056,85.0,27.7,6.3 -2019,4,17,16,15,715.0,493.91314727099405,85.0,27.7,6.3 -2019,4,17,16,30,715.0,462.0036285055191,85.0,27.7,6.3 -2019,4,17,16,45,715.0,428.7650537802727,85.0,27.7,6.3 -2019,4,17,17,0,473.0,255.640146128148,51.0,26.9,6.3 -2019,4,17,17,15,473.0,232.1789446576833,51.0,26.9,6.3 -2019,4,17,17,30,473.0,208.13066486361967,51.0,26.9,6.3 -2019,4,17,17,45,473.0,183.5982851719945,51.0,26.9,6.3 -2019,4,17,18,0,340.0,77.40704308590912,0.0,24.7,3.5 -2019,4,17,18,15,340.0,59.30452149570933,0.0,24.7,3.5 -2019,4,17,18,30,340.0,41.08373093090051,0.0,24.7,3.5 -2019,4,17,18,45,340.0,22.822695613987726,0.0,24.7,3.5 -2019,4,17,19,0,0.0,0.0,0.0,22.5,2.7 -2019,4,17,19,15,0.0,0.0,0.0,22.5,2.7 -2019,4,17,19,30,0.0,0.0,0.0,22.5,2.7 -2019,4,17,19,45,0.0,0.0,0.0,22.5,2.7 -2019,4,17,20,0,0.0,0.0,0.0,20.6,0.0 -2019,4,17,20,15,0.0,0.0,0.0,20.6,0.0 -2019,4,17,20,30,0.0,0.0,0.0,20.6,0.0 -2019,4,17,20,45,0.0,0.0,0.0,20.6,0.0 -2019,4,17,21,0,0.0,0.0,0.0,20.4,0.0 -2019,4,17,21,15,0.0,0.0,0.0,20.4,0.0 -2019,4,17,21,30,0.0,0.0,0.0,20.4,0.0 -2019,4,17,21,45,0.0,0.0,0.0,20.4,0.0 -2019,4,17,22,0,0.0,0.0,0.0,18.7,0.0 -2019,4,17,22,15,0.0,0.0,0.0,18.7,0.0 -2019,4,17,22,30,0.0,0.0,0.0,18.7,0.0 -2019,4,17,22,45,0.0,0.0,0.0,18.7,0.0 -2019,4,17,23,0,0.0,0.0,0.0,17.1,0.0 -2019,4,17,23,15,0.0,0.0,0.0,17.1,0.0 -2019,4,17,23,30,0.0,0.0,0.0,17.1,0.0 -2019,4,17,23,45,0.0,0.0,0.0,17.1,0.0 -2019,4,18,0,0,0.0,0.0,0.0,15.9,0.0 -2019,4,18,0,15,0.0,0.0,0.0,15.9,0.0 -2019,4,18,0,30,0.0,0.0,0.0,15.9,0.0 -2019,4,18,0,45,0.0,0.0,0.0,15.9,0.0 -2019,4,18,1,0,0.0,0.0,0.0,14.3,0.0 -2019,4,18,1,15,0.0,0.0,0.0,14.3,0.0 -2019,4,18,1,30,0.0,0.0,0.0,14.3,0.0 -2019,4,18,1,45,0.0,0.0,0.0,14.3,0.0 -2019,4,18,2,0,0.0,0.0,0.0,13.6,0.0 -2019,4,18,2,15,0.0,0.0,0.0,13.6,0.0 -2019,4,18,2,30,0.0,0.0,0.0,13.6,0.0 -2019,4,18,2,45,0.0,0.0,0.0,13.6,0.0 -2019,4,18,3,0,0.0,0.0,0.0,11.8,0.0 -2019,4,18,3,15,0.0,0.0,0.0,11.8,0.0 -2019,4,18,3,30,0.0,0.0,0.0,11.8,0.0 -2019,4,18,3,45,0.0,0.0,0.0,11.8,0.0 -2019,4,18,4,0,0.0,0.0,0.0,12.8,0.0 -2019,4,18,4,15,0.0,0.0,0.0,12.8,0.0 -2019,4,18,4,30,0.0,0.0,0.0,12.8,0.0 -2019,4,18,4,45,0.0,0.0,0.0,12.8,0.0 -2019,4,18,5,0,336.0,-72.44491633562235,9.0,13.2,0.0 -2019,4,18,5,15,336.0,-55.79754301453818,9.0,13.2,0.0 -2019,4,18,5,30,336.0,-38.73359631233485,9.0,13.2,0.0 -2019,4,18,5,45,336.0,-21.32614666849606,9.0,13.2,0.0 -2019,4,18,6,0,364.0,73.2961199239266,87.0,16.5,0.0 -2019,4,18,6,15,364.0,92.65493957393457,87.0,16.5,0.0 -2019,4,18,6,30,364.0,112.14023595472506,87.0,16.5,0.0 -2019,4,18,6,45,364.0,131.66857003575842,87.0,16.5,0.0 -2019,4,18,7,0,408.0,235.91147787066416,164.0,19.7,0.0 -2019,4,18,7,15,408.0,257.615859813179,164.0,19.7,0.0 -2019,4,18,7,30,408.0,279.08827184455737,164.0,19.7,0.0 -2019,4,18,7,45,408.0,300.23676579997635,164.0,19.7,0.0 -2019,4,18,8,0,522.0,410.8302633910919,210.0,22.0,0.2 -2019,4,18,8,15,522.0,436.71372214807707,210.0,22.0,0.2 -2019,4,18,8,30,522.0,461.8424602768272,210.0,22.0,0.2 -2019,4,18,8,45,522.0,486.1088726628408,210.0,22.0,0.2 -2019,4,18,9,0,629.0,584.7821655919203,224.0,24.2,1.7 -2019,4,18,9,15,629.0,611.5739036204312,224.0,24.2,1.7 -2019,4,18,9,30,629.0,636.9663898668707,224.0,24.2,1.7 -2019,4,18,9,45,629.0,660.8508898068058,224.0,24.2,1.7 -2019,4,18,10,0,897.0,796.7460068858137,142.0,26.2,3.0 -2019,4,18,10,15,897.0,826.0783224939396,142.0,26.2,3.0 -2019,4,18,10,30,897.0,852.852657970097,142.0,26.2,3.0 -2019,4,18,10,45,897.0,876.9543614993056,142.0,26.2,3.0 -2019,4,18,11,0,463.0,731.3653785792993,341.0,27.3,2.5 -2019,4,18,11,15,463.0,740.8931157469269,341.0,27.3,2.5 -2019,4,18,11,30,463.0,748.9001261761597,341.0,27.3,2.5 -2019,4,18,11,45,463.0,755.3521226190811,341.0,27.3,2.5 -2019,4,18,12,0,433.0,742.0580980206449,350.0,28.3,1.8 -2019,4,18,12,15,433.0,745.1123474742437,350.0,28.3,1.8 -2019,4,18,12,30,433.0,746.6539224986814,350.0,28.3,1.8 -2019,4,18,12,45,433.0,746.6762218330359,350.0,28.3,1.8 -2019,4,18,13,0,514.0,761.1041179997718,292.0,28.2,4.3 -2019,4,18,13,15,514.0,757.5310080251782,292.0,28.2,4.3 -2019,4,18,13,30,514.0,752.1772132271358,292.0,28.2,4.3 -2019,4,18,13,45,514.0,745.0656593768992,292.0,28.2,4.3 -2019,4,18,14,0,760.0,820.8333996542397,164.0,26.9,6.1 -2019,4,18,14,15,760.0,805.2662382310236,164.0,26.9,6.1 -2019,4,18,14,30,760.0,787.2677080798837,164.0,26.9,6.1 -2019,4,18,14,45,760.0,766.914881670112,164.0,26.9,6.1 -2019,4,18,15,0,555.0,601.7679956257957,178.0,26.2,5.0 -2019,4,18,15,15,555.0,583.6645901837685,178.0,26.2,5.0 -2019,4,18,15,30,555.0,564.0538306654541,178.0,26.2,5.0 -2019,4,18,15,45,555.0,543.0196933538084,178.0,26.2,5.0 -2019,4,18,16,0,396.0,380.48701056394896,136.0,25.0,4.3 -2019,4,18,16,15,396.0,363.6445460107983,136.0,25.0,4.3 -2019,4,18,16,30,396.0,345.9912122659681,136.0,25.0,4.3 -2019,4,18,16,45,396.0,327.60260361474275,136.0,25.0,4.3 -2019,4,18,17,0,211.0,156.94349664751078,65.0,24.7,3.5 -2019,4,18,17,15,211.0,146.4893425679013,65.0,24.7,3.5 -2019,4,18,17,30,211.0,135.77359032336295,65.0,24.7,3.5 -2019,4,18,17,45,211.0,124.84212641011896,65.0,24.7,3.5 -2019,4,18,18,0,106.0,28.486382320837546,4.0,22.5,3.0 -2019,4,18,18,15,106.0,22.848923851329726,4.0,22.5,3.0 -2019,4,18,18,30,106.0,17.174634245934705,4.0,22.5,3.0 -2019,4,18,18,45,106.0,11.487811683875522,4.0,22.5,3.0 -2019,4,18,19,0,0.0,0.0,0.0,20.4,2.5 -2019,4,18,19,15,0.0,0.0,0.0,20.4,2.5 -2019,4,18,19,30,0.0,0.0,0.0,20.4,2.5 -2019,4,18,19,45,0.0,0.0,0.0,20.4,2.5 -2019,4,18,20,0,0.0,0.0,0.0,18.8,1.5 -2019,4,18,20,15,0.0,0.0,0.0,18.8,1.5 -2019,4,18,20,30,0.0,0.0,0.0,18.8,1.5 -2019,4,18,20,45,0.0,0.0,0.0,18.8,1.5 -2019,4,18,21,0,0.0,0.0,0.0,18.2,1.3 -2019,4,18,21,15,0.0,0.0,0.0,18.2,1.3 -2019,4,18,21,30,0.0,0.0,0.0,18.2,1.3 -2019,4,18,21,45,0.0,0.0,0.0,18.2,1.3 -2019,4,18,22,0,0.0,0.0,0.0,17.7,0.0 -2019,4,18,22,15,0.0,0.0,0.0,17.7,0.0 -2019,4,18,22,30,0.0,0.0,0.0,17.7,0.0 -2019,4,18,22,45,0.0,0.0,0.0,17.7,0.0 -2019,4,18,23,0,0.0,0.0,0.0,16.8,0.0 -2019,4,18,23,15,0.0,0.0,0.0,16.8,0.0 -2019,4,18,23,30,0.0,0.0,0.0,16.8,0.0 -2019,4,18,23,45,0.0,0.0,0.0,16.8,0.0 -2019,4,19,0,0,0.0,0.0,0.0,16.9,0.0 -2019,4,19,0,15,0.0,0.0,0.0,16.9,0.0 -2019,4,19,0,30,0.0,0.0,0.0,16.9,0.0 -2019,4,19,0,45,0.0,0.0,0.0,16.9,0.0 -2019,4,19,1,0,0.0,0.0,0.0,14.4,0.0 -2019,4,19,1,15,0.0,0.0,0.0,14.4,0.0 -2019,4,19,1,30,0.0,0.0,0.0,14.4,0.0 -2019,4,19,1,45,0.0,0.0,0.0,14.4,0.0 -2019,4,19,2,0,0.0,0.0,0.0,14.3,0.0 -2019,4,19,2,15,0.0,0.0,0.0,14.3,0.0 -2019,4,19,2,30,0.0,0.0,0.0,14.3,0.0 -2019,4,19,2,45,0.0,0.0,0.0,14.3,0.0 -2019,4,19,3,0,0.0,0.0,0.0,13.8,0.0 -2019,4,19,3,15,0.0,0.0,0.0,13.8,0.0 -2019,4,19,3,30,0.0,0.0,0.0,13.8,0.0 -2019,4,19,3,45,0.0,0.0,0.0,13.8,0.0 -2019,4,19,4,0,0.0,0.0,0.0,13.2,0.0 -2019,4,19,4,15,0.0,0.0,0.0,13.2,0.0 -2019,4,19,4,30,0.0,0.0,0.0,13.2,0.0 -2019,4,19,4,45,0.0,0.0,0.0,13.2,0.0 -2019,4,19,5,0,163.0,-13.884465020577174,25.0,13.0,0.0 -2019,4,19,5,15,163.0,-5.817739977087584,25.0,13.0,0.0 -2019,4,19,5,30,163.0,2.4508417113580165,25.0,13.0,0.0 -2019,4,19,5,45,163.0,10.885872708553965,25.0,13.0,0.0 -2019,4,19,6,0,325.0,80.93650734944939,92.0,14.7,0.0 -2019,4,19,6,15,325.0,98.20140704497119,92.0,14.7,0.0 -2019,4,19,6,30,325.0,115.57910329060581,92.0,14.7,0.0 -2019,4,19,6,45,325.0,132.9951821231571,92.0,14.7,0.0 -2019,4,19,7,0,424.0,239.15700816302385,163.0,17.0,0.2 -2019,4,19,7,15,424.0,261.6867557002953,163.0,17.0,0.2 -2019,4,19,7,30,424.0,283.97571206700997,163.0,17.0,0.2 -2019,4,19,7,45,424.0,305.9284325301431,163.0,17.0,0.2 -2019,4,19,8,0,619.0,423.08281753182837,183.0,19.7,1.5 -2019,4,19,8,15,619.0,453.74094772548176,183.0,19.7,1.5 -2019,4,19,8,30,619.0,483.50513544036875,183.0,19.7,1.5 -2019,4,19,8,45,619.0,512.247925855213,183.0,19.7,1.5 -2019,4,19,9,0,506.0,561.7030636380696,270.0,22.4,1.7 -2019,4,19,9,15,506.0,583.2310776649729,270.0,22.4,1.7 -2019,4,19,9,30,506.0,603.6347483603779,270.0,22.4,1.7 -2019,4,19,9,45,506.0,622.8267040739383,270.0,22.4,1.7 -2019,4,19,10,0,826.0,776.1752042162765,171.0,24.3,2.7 -2019,4,19,10,15,826.0,803.154907050654,171.0,24.3,2.7 -2019,4,19,10,30,826.0,827.7817938053613,171.0,24.3,2.7 -2019,4,19,10,45,826.0,849.9504083705262,171.0,24.3,2.7 -2019,4,19,11,0,874.0,898.1604453353016,159.0,26.8,2.0 -2019,4,19,11,15,874.0,916.125288004771,159.0,26.8,2.0 -2019,4,19,11,30,874.0,931.2227534452232,159.0,26.8,2.0 -2019,4,19,11,45,874.0,943.3881919918368,159.0,26.8,2.0 -2019,4,19,12,0,38.0,439.5030221464819,405.0,27.9,1.7 -2019,4,19,12,15,38.0,439.7707560768005,405.0,27.9,1.7 -2019,4,19,12,30,38.0,439.90588974759066,405.0,27.9,1.7 -2019,4,19,12,45,38.0,439.907844495728,405.0,27.9,1.7 -2019,4,19,13,0,235.0,603.0658896949994,388.0,28.8,3.3 -2019,4,19,13,15,235.0,601.4341370140323,388.0,28.8,3.3 -2019,4,19,13,30,235.0,598.989188754065,388.0,28.8,3.3 -2019,4,19,13,45,235.0,595.7415145589022,388.0,28.8,3.3 -2019,4,19,14,0,840.0,865.1370980134179,137.0,28.1,5.2 -2019,4,19,14,15,840.0,847.9509585797962,137.0,28.1,5.2 -2019,4,19,14,30,840.0,828.0805891291122,137.0,28.1,5.2 -2019,4,19,14,45,840.0,805.6110776339091,137.0,28.1,5.2 -2019,4,19,15,0,782.0,719.1969262354008,120.0,27.4,5.6 -2019,4,19,15,15,782.0,693.7182267633004,120.0,27.4,5.6 -2019,4,19,15,30,782.0,666.1180799408241,120.0,27.4,5.6 -2019,4,19,15,45,782.0,636.5146738339175,120.0,27.4,5.6 -2019,4,19,16,0,291.0,330.4924801262755,150.0,26.1,5.1 -2019,4,19,16,15,291.0,318.1299701973979,150.0,26.1,5.1 -2019,4,19,16,30,291.0,305.17227549603496,150.0,26.1,5.1 -2019,4,19,16,45,291.0,291.6748828601994,150.0,26.1,5.1 -2019,4,19,17,0,12.0,47.265797533909904,42.0,25.4,4.2 -2019,4,19,17,15,12.0,46.67192820555484,42.0,25.4,4.2 -2019,4,19,17,30,12.0,46.06319826530118,42.0,25.4,4.2 -2019,4,19,17,45,12.0,45.442214388207,42.0,25.4,4.2 -2019,4,19,18,0,6.0,6.405817861284598,5.0,23.6,1.6 -2019,4,19,18,15,6.0,6.087081251521118,5.0,23.6,1.6 -2019,4,19,18,30,6.0,5.766262243909402,5.0,23.6,1.6 -2019,4,19,18,45,6.0,5.444734634693071,5.0,23.6,1.6 -2019,4,19,19,0,0.0,0.0,0.0,21.5,2.5 -2019,4,19,19,15,0.0,0.0,0.0,21.5,2.5 -2019,4,19,19,30,0.0,0.0,0.0,21.5,2.5 -2019,4,19,19,45,0.0,0.0,0.0,21.5,2.5 -2019,4,19,20,0,0.0,0.0,0.0,19.9,1.5 -2019,4,19,20,15,0.0,0.0,0.0,19.9,1.5 -2019,4,19,20,30,0.0,0.0,0.0,19.9,1.5 -2019,4,19,20,45,0.0,0.0,0.0,19.9,1.5 -2019,4,19,21,0,0.0,0.0,0.0,18.8,1.3 -2019,4,19,21,15,0.0,0.0,0.0,18.8,1.3 -2019,4,19,21,30,0.0,0.0,0.0,18.8,1.3 -2019,4,19,21,45,0.0,0.0,0.0,18.8,1.3 -2019,4,19,22,0,0.0,0.0,0.0,18.2,0.0 -2019,4,19,22,15,0.0,0.0,0.0,18.2,0.0 -2019,4,19,22,30,0.0,0.0,0.0,18.2,0.0 -2019,4,19,22,45,0.0,0.0,0.0,18.2,0.0 -2019,4,19,23,0,0.0,0.0,0.0,17.1,0.0 -2019,4,19,23,15,0.0,0.0,0.0,17.1,0.0 -2019,4,19,23,30,0.0,0.0,0.0,17.1,0.0 -2019,4,19,23,45,0.0,0.0,0.0,17.1,0.0 -2019,4,20,0,0,0.0,0.0,0.0,16.5,0.0 -2019,4,20,0,15,0.0,0.0,0.0,16.5,0.0 -2019,4,20,0,30,0.0,0.0,0.0,16.5,0.0 -2019,4,20,0,45,0.0,0.0,0.0,16.5,0.0 -2019,4,20,1,0,0.0,0.0,0.0,14.9,0.0 -2019,4,20,1,15,0.0,0.0,0.0,14.9,0.0 -2019,4,20,1,30,0.0,0.0,0.0,14.9,0.0 -2019,4,20,1,45,0.0,0.0,0.0,14.9,0.0 -2019,4,20,2,0,0.0,0.0,0.0,14.4,0.0 -2019,4,20,2,15,0.0,0.0,0.0,14.4,0.0 -2019,4,20,2,30,0.0,0.0,0.0,14.4,0.0 -2019,4,20,2,45,0.0,0.0,0.0,14.4,0.0 -2019,4,20,3,0,0.0,0.0,0.0,14.3,0.0 -2019,4,20,3,15,0.0,0.0,0.0,14.3,0.0 -2019,4,20,3,30,0.0,0.0,0.0,14.3,0.0 -2019,4,20,3,45,0.0,0.0,0.0,14.3,0.0 -2019,4,20,4,0,0.0,0.0,0.0,13.9,0.0 -2019,4,20,4,15,0.0,0.0,0.0,13.9,0.0 -2019,4,20,4,30,0.0,0.0,0.0,13.9,0.0 -2019,4,20,4,45,0.0,0.0,0.0,13.9,0.0 -2019,4,20,5,0,549.0,-122.87095248409258,6.0,14.3,0.0 -2019,4,20,5,15,549.0,-95.73334010647818,6.0,14.3,0.0 -2019,4,20,5,30,549.0,-67.91665321508906,6.0,14.3,0.0 -2019,4,20,5,45,549.0,-39.540007133689734,6.0,14.3,0.0 -2019,4,20,6,0,594.0,48.904190309191506,67.0,17.6,0.0 -2019,4,20,6,15,594.0,80.42205482089281,67.0,17.6,0.0 -2019,4,20,6,30,594.0,112.14583459688997,67.0,17.6,0.0 -2019,4,20,6,45,594.0,143.939683541859,67.0,17.6,0.0 -2019,4,20,7,0,780.0,235.6946385531292,93.0,21.0,0.0 -2019,4,20,7,15,780.0,277.0921954725519,93.0,21.0,0.0 -2019,4,20,7,30,780.0,318.04730774529924,93.0,21.0,0.0 -2019,4,20,7,45,780.0,358.3845992930763,93.0,21.0,0.0 -2019,4,20,8,0,885.0,451.97978920781003,106.0,24.9,0.0 -2019,4,20,8,15,885.0,495.7610159792368,106.0,24.9,0.0 -2019,4,20,8,30,885.0,538.2656515777426,106.0,24.9,0.0 -2019,4,20,8,45,885.0,579.311684628264,106.0,24.9,0.0 -2019,4,20,9,0,951.0,658.9603452878011,108.0,29.5,0.0 -2019,4,20,9,15,951.0,699.3735795681793,108.0,29.5,0.0 -2019,4,20,9,30,951.0,737.6761523444056,108.0,29.5,0.0 -2019,4,20,9,45,951.0,773.7040461195346,108.0,29.5,0.0 -2019,4,20,10,0,990.0,833.9810242714036,106.0,34.1,0.3 -2019,4,20,10,15,990.0,866.2794942591875,106.0,34.1,0.3 -2019,4,20,10,30,990.0,895.761315005039,106.0,34.1,0.3 -2019,4,20,10,45,990.0,922.3002408263934,106.0,34.1,0.3 -2019,4,20,11,0,1006.0,957.3548724609745,104.0,35.8,2.5 -2019,4,20,11,15,1006.0,978.0086553254171,104.0,35.8,2.5 -2019,4,20,11,30,1006.0,995.3658779155402,104.0,35.8,2.5 -2019,4,20,11,45,1006.0,1009.3522139394836,104.0,35.8,2.5 -2019,4,20,12,0,1002.0,1017.2659913545625,105.0,37.1,2.2 -2019,4,20,12,15,1002.0,1024.3174210310258,105.0,37.1,2.2 -2019,4,20,12,30,1002.0,1027.8764976686612,105.0,37.1,2.2 -2019,4,20,12,45,1002.0,1027.9279807549062,105.0,37.1,2.2 -2019,4,20,13,0,977.0,1003.530740404354,107.0,36.5,3.1 -2019,4,20,13,15,977.0,996.7547828466753,107.0,36.5,3.1 -2019,4,20,13,30,977.0,986.6019785439802,107.0,36.5,3.1 -2019,4,20,13,45,977.0,973.1158033629797,107.0,36.5,3.1 -2019,4,20,14,0,929.0,915.625253497156,108.0,34.9,6.8 -2019,4,20,14,15,929.0,896.6405246079644,108.0,34.9,6.8 -2019,4,20,14,30,929.0,874.6906516649278,108.0,34.9,6.8 -2019,4,20,14,45,929.0,849.8696273937945,108.0,34.9,6.8 -2019,4,20,15,0,850.0,755.5427108142337,102.0,33.9,7.5 -2019,4,20,15,15,850.0,727.8809979087528,102.0,33.9,7.5 -2019,4,20,15,30,850.0,697.9160721719242,102.0,33.9,7.5 -2019,4,20,15,45,850.0,665.7762480160523,102.0,33.9,7.5 -2019,4,20,16,0,722.0,534.847751223423,85.0,32.3,6.0 -2019,4,20,16,15,722.0,504.2111557138113,85.0,32.3,6.0 -2019,4,20,16,30,722.0,472.09958180312924,85.0,32.3,6.0 -2019,4,20,16,45,722.0,438.65053618072056,85.0,32.3,6.0 -2019,4,20,17,0,484.0,265.84973733080824,52.0,30.7,4.5 -2019,4,20,17,15,484.0,241.92513916912264,52.0,30.7,4.5 -2019,4,20,17,30,484.0,217.40186693700556,52.0,30.7,4.5 -2019,4,20,17,45,484.0,192.38493305103592,52.0,30.7,4.5 -2019,4,20,18,0,428.0,101.6778234158495,0.0,27.4,3.9 -2019,4,20,18,15,428.0,78.96798164647548,0.0,27.4,3.9 -2019,4,20,18,30,428.0,56.109769956026405,0.0,27.4,3.9 -2019,4,20,18,45,428.0,33.20107071621703,0.0,27.4,3.9 -2019,4,20,19,0,0.0,0.0,0.0,24.1,2.3 -2019,4,20,19,15,0.0,0.0,0.0,24.1,2.3 -2019,4,20,19,30,0.0,0.0,0.0,24.1,2.3 -2019,4,20,19,45,0.0,0.0,0.0,24.1,2.3 -2019,4,20,20,0,0.0,0.0,0.0,21.9,0.2 -2019,4,20,20,15,0.0,0.0,0.0,21.9,0.2 -2019,4,20,20,30,0.0,0.0,0.0,21.9,0.2 -2019,4,20,20,45,0.0,0.0,0.0,21.9,0.2 -2019,4,20,21,0,0.0,0.0,0.0,19.8,1.3 -2019,4,20,21,15,0.0,0.0,0.0,19.8,1.3 -2019,4,20,21,30,0.0,0.0,0.0,19.8,1.3 -2019,4,20,21,45,0.0,0.0,0.0,19.8,1.3 -2019,4,20,22,0,0.0,0.0,0.0,18.2,0.2 -2019,4,20,22,15,0.0,0.0,0.0,18.2,0.2 -2019,4,20,22,30,0.0,0.0,0.0,18.2,0.2 -2019,4,20,22,45,0.0,0.0,0.0,18.2,0.2 -2019,4,20,23,0,0.0,0.0,0.0,17.1,1.3 -2019,4,20,23,15,0.0,0.0,0.0,17.1,1.3 -2019,4,20,23,30,0.0,0.0,0.0,17.1,1.3 -2019,4,20,23,45,0.0,0.0,0.0,17.1,1.3 -2019,4,21,0,0,0.0,0.0,0.0,16.6,0.0 -2019,4,21,0,15,0.0,0.0,0.0,16.6,0.0 -2019,4,21,0,30,0.0,0.0,0.0,16.6,0.0 -2019,4,21,0,45,0.0,0.0,0.0,16.6,0.0 -2019,4,21,1,0,0.0,0.0,0.0,15.5,0.0 -2019,4,21,1,15,0.0,0.0,0.0,15.5,0.0 -2019,4,21,1,30,0.0,0.0,0.0,15.5,0.0 -2019,4,21,1,45,0.0,0.0,0.0,15.5,0.0 -2019,4,21,2,0,0.0,0.0,0.0,15.0,0.0 -2019,4,21,2,15,0.0,0.0,0.0,15.0,0.0 -2019,4,21,2,30,0.0,0.0,0.0,15.0,0.0 -2019,4,21,2,45,0.0,0.0,0.0,15.0,0.0 -2019,4,21,3,0,0.0,0.0,0.0,14.9,0.0 -2019,4,21,3,15,0.0,0.0,0.0,14.9,0.0 -2019,4,21,3,30,0.0,0.0,0.0,14.9,0.0 -2019,4,21,3,45,0.0,0.0,0.0,14.9,0.0 -2019,4,21,4,0,0.0,0.0,0.0,13.9,0.0 -2019,4,21,4,15,0.0,0.0,0.0,13.9,0.0 -2019,4,21,4,30,0.0,0.0,0.0,13.9,0.0 -2019,4,21,4,45,0.0,0.0,0.0,13.9,0.0 -2019,4,21,5,0,474.0,-100.46791350091095,9.0,14.7,0.0 -2019,4,21,5,15,474.0,-77.06584324121093,9.0,14.7,0.0 -2019,4,21,5,30,474.0,-53.07817432007386,9.0,14.7,0.0 -2019,4,21,5,45,474.0,-28.607625618474053,9.0,14.7,0.0 -2019,4,21,6,0,526.0,60.841296477382826,75.0,17.2,0.2 -2019,4,21,6,15,526.0,88.71744246132138,75.0,17.2,0.2 -2019,4,21,6,30,526.0,116.77571131610657,75.0,17.2,0.2 -2019,4,21,6,45,526.0,144.89595322691872,75.0,17.2,0.2 -2019,4,21,7,0,695.0,240.43087136036945,111.0,21.0,1.5 -2019,4,21,7,15,695.0,277.2727324402566,111.0,21.0,1.5 -2019,4,21,7,30,695.0,313.72083878142615,111.0,21.0,1.5 -2019,4,21,7,45,695.0,349.6191139969103,111.0,21.0,1.5 -2019,4,21,8,0,792.0,445.0295802007743,133.0,24.2,1.5 -2019,4,21,8,15,792.0,484.1628812772285,133.0,24.2,1.5 -2019,4,21,8,30,792.0,522.1551173263758,133.0,24.2,1.5 -2019,4,21,8,45,792.0,558.8435997607794,133.0,24.2,1.5 -2019,4,21,9,0,854.0,639.1651822319208,142.0,27.0,1.6 -2019,4,21,9,15,854.0,675.4126447164987,142.0,27.0,1.6 -2019,4,21,9,30,854.0,709.7670114107568,142.0,27.0,1.6 -2019,4,21,9,45,854.0,742.0811716423324,142.0,27.0,1.6 -2019,4,21,10,0,892.0,803.259182769097,145.0,29.7,2.6 -2019,4,21,10,15,892.0,832.3253826919861,145.0,29.7,2.6 -2019,4,21,10,30,892.0,858.8568096052057,145.0,29.7,2.6 -2019,4,21,10,45,892.0,882.7398518655348,145.0,29.7,2.6 -2019,4,21,11,0,908.0,917.4842967112514,145.0,32.3,2.8 -2019,4,21,11,15,908.0,936.1036298096176,145.0,32.3,2.8 -2019,4,21,11,30,908.0,951.7511221449985,145.0,32.3,2.8 -2019,4,21,11,45,908.0,964.3597687529673,145.0,32.3,2.8 -2019,4,21,12,0,904.0,970.2241432110386,145.0,33.2,4.7 -2019,4,21,12,15,904.0,976.5782503709638,145.0,33.2,4.7 -2019,4,21,12,30,904.0,979.7853665705915,145.0,33.2,4.7 -2019,4,21,12,45,904.0,979.831758445989,145.0,33.2,4.7 -2019,4,21,13,0,880.0,953.6362390035631,144.0,32.1,5.8 -2019,4,21,13,15,880.0,947.5403727153521,144.0,32.1,5.8 -2019,4,21,13,30,880.0,938.4065880136656,144.0,32.1,5.8 -2019,4,21,13,45,880.0,926.2739971668401,144.0,32.1,5.8 -2019,4,21,14,0,833.0,866.2193901231012,140.0,31.0,5.9 -2019,4,21,14,15,833.0,849.2169860294499,140.0,31.0,5.9 -2019,4,21,14,30,833.0,829.55904875997,140.0,31.0,5.9 -2019,4,21,14,45,833.0,807.3297566199911,140.0,31.0,5.9 -2019,4,21,15,0,759.0,711.5364259640218,126.0,30.0,3.6 -2019,4,21,15,15,759.0,686.8658910258315,126.0,30.0,3.6 -2019,4,21,15,30,759.0,660.1411993974896,126.0,30.0,3.6 -2019,4,21,15,45,759.0,631.476790311398,126.0,30.0,3.6 -2019,4,21,16,0,641.0,500.14895556867714,99.0,28.2,3.9 -2019,4,21,16,15,641.0,472.98218710294555,99.0,28.2,3.9 -2019,4,21,16,30,641.0,444.50749273855246,99.0,28.2,3.9 -2019,4,21,16,45,641.0,414.8468054882809,99.0,28.2,3.9 -2019,4,21,17,0,427.0,246.93648593691321,57.0,26.2,4.1 -2019,4,21,17,15,427.0,225.8548741206856,57.0,26.2,4.1 -2019,4,21,17,30,427.0,204.24572933307897,57.0,26.2,4.1 -2019,4,21,17,45,427.0,182.20158524957031,57.0,26.2,4.1 -2019,4,21,18,0,385.0,92.70370664536388,0.0,21.9,3.9 -2019,4,21,18,15,385.0,72.30006367232913,0.0,21.9,3.9 -2019,4,21,18,30,385.0,51.76311783755283,0.0,21.9,3.9 -2019,4,21,18,45,385.0,31.18081149598884,0.0,21.9,3.9 -2019,4,21,19,0,0.0,0.0,0.0,19.1,2.6 -2019,4,21,19,15,0.0,0.0,0.0,19.1,2.6 -2019,4,21,19,30,0.0,0.0,0.0,19.1,2.6 -2019,4,21,19,45,0.0,0.0,0.0,19.1,2.6 -2019,4,21,20,0,0.0,0.0,0.0,17.1,2.7 -2019,4,21,20,15,0.0,0.0,0.0,17.1,2.7 -2019,4,21,20,30,0.0,0.0,0.0,17.1,2.7 -2019,4,21,20,45,0.0,0.0,0.0,17.1,2.7 -2019,4,21,21,0,0.0,0.0,0.0,16.0,3.0 -2019,4,21,21,15,0.0,0.0,0.0,16.0,3.0 -2019,4,21,21,30,0.0,0.0,0.0,16.0,3.0 -2019,4,21,21,45,0.0,0.0,0.0,16.0,3.0 -2019,4,21,22,0,0.0,0.0,0.0,15.5,1.9 -2019,4,21,22,15,0.0,0.0,0.0,15.5,1.9 -2019,4,21,22,30,0.0,0.0,0.0,15.5,1.9 -2019,4,21,22,45,0.0,0.0,0.0,15.5,1.9 -2019,4,21,23,0,0.0,0.0,0.0,14.9,0.2 -2019,4,21,23,15,0.0,0.0,0.0,14.9,0.2 -2019,4,21,23,30,0.0,0.0,0.0,14.9,0.2 -2019,4,21,23,45,0.0,0.0,0.0,14.9,0.2 -2019,4,22,0,0,0.0,0.0,0.0,14.5,1.3 -2019,4,22,0,15,0.0,0.0,0.0,14.5,1.3 -2019,4,22,0,30,0.0,0.0,0.0,14.5,1.3 -2019,4,22,0,45,0.0,0.0,0.0,14.5,1.3 -2019,4,22,1,0,0.0,0.0,0.0,14.9,0.0 -2019,4,22,1,15,0.0,0.0,0.0,14.9,0.0 -2019,4,22,1,30,0.0,0.0,0.0,14.9,0.0 -2019,4,22,1,45,0.0,0.0,0.0,14.9,0.0 -2019,4,22,2,0,0.0,0.0,0.0,14.3,0.0 -2019,4,22,2,15,0.0,0.0,0.0,14.3,0.0 -2019,4,22,2,30,0.0,0.0,0.0,14.3,0.0 -2019,4,22,2,45,0.0,0.0,0.0,14.3,0.0 -2019,4,22,3,0,0.0,0.0,0.0,13.9,0.0 -2019,4,22,3,15,0.0,0.0,0.0,13.9,0.0 -2019,4,22,3,30,0.0,0.0,0.0,13.9,0.0 -2019,4,22,3,45,0.0,0.0,0.0,13.9,0.0 -2019,4,22,4,0,0.0,0.0,0.0,13.1,0.0 -2019,4,22,4,15,0.0,0.0,0.0,13.1,0.0 -2019,4,22,4,30,0.0,0.0,0.0,13.1,0.0 -2019,4,22,4,45,0.0,0.0,0.0,13.1,0.0 -2019,4,22,5,0,1.0,33.772821442217584,34.0,13.1,0.0 -2019,4,22,5,15,1.0,33.82213203005096,34.0,13.1,0.0 -2019,4,22,5,30,1.0,33.87267653496558,34.0,13.1,0.0 -2019,4,22,5,45,1.0,33.924238517631665,34.0,13.1,0.0 -2019,4,22,6,0,2.0,35.95319436344699,36.0,13.9,0.0 -2019,4,22,6,15,2.0,36.05905663880638,36.0,13.9,0.0 -2019,4,22,6,30,2.0,36.16561054282613,36.0,13.9,0.0 -2019,4,22,6,45,2.0,36.27239979533076,36.0,13.9,0.0 -2019,4,22,7,0,2.0,98.37896710834649,98.0,15.4,0.0 -2019,4,22,7,15,2.0,98.48485614427845,98.0,15.4,0.0 -2019,4,22,7,30,2.0,98.5896134700184,98.0,15.4,0.0 -2019,4,22,7,45,2.0,98.69279049861491,98.0,15.4,0.0 -2019,4,22,8,0,419.0,409.3315634351162,243.0,18.6,1.7 -2019,4,22,8,15,419.0,430.00913669436113,243.0,18.6,1.7 -2019,4,22,8,30,419.0,450.083784694385,243.0,18.6,1.7 -2019,4,22,8,45,419.0,469.4695447105355,243.0,18.6,1.7 -2019,4,22,9,0,630.0,594.502492801023,226.0,21.4,3.1 -2019,4,22,9,15,630.0,621.2094573785694,226.0,21.4,3.1 -2019,4,22,9,30,630.0,646.5215976360555,226.0,21.4,3.1 -2019,4,22,9,45,630.0,670.330523102908,226.0,21.4,3.1 -2019,4,22,10,0,829.0,784.8998704331733,171.0,24.2,3.2 -2019,4,22,10,15,829.0,811.8798847100647,171.0,24.2,3.2 -2019,4,22,10,30,829.0,836.5070557473517,171.0,24.2,3.2 -2019,4,22,10,45,829.0,858.6759262178205,171.0,24.2,3.2 -2019,4,22,11,0,822.0,883.3192604768093,182.0,26.2,4.3 -2019,4,22,11,15,822.0,900.1543074735596,182.0,26.2,4.3 -2019,4,22,11,30,822.0,914.3023044751568,182.0,26.2,4.3 -2019,4,22,11,45,822.0,925.7026675864006,182.0,26.2,4.3 -2019,4,22,12,0,734.0,890.7676748995606,219.0,26.6,5.6 -2019,4,22,12,15,734.0,895.920511925668,219.0,26.6,5.6 -2019,4,22,12,30,734.0,898.5213095962986,219.0,26.6,5.6 -2019,4,22,12,45,734.0,898.5589308965446,219.0,26.6,5.6 -2019,4,22,13,0,616.0,820.1913627675112,252.0,26.0,5.2 -2019,4,22,13,15,616.0,815.9295171379747,252.0,26.0,5.2 -2019,4,22,13,30,616.0,809.5437503623333,252.0,26.0,5.2 -2019,4,22,13,45,616.0,801.0614072742809,252.0,26.0,5.2 -2019,4,22,14,0,541.0,713.9523969446627,241.0,24.9,5.5 -2019,4,22,14,15,541.0,702.9236330326844,241.0,24.9,5.5 -2019,4,22,14,30,541.0,690.1723333960332,241.0,24.9,5.5 -2019,4,22,14,45,541.0,675.7531010573684,241.0,24.9,5.5 -2019,4,22,15,0,488.0,574.7063003974558,197.0,23.7,3.7 -2019,4,22,15,15,488.0,558.8639047473491,197.0,23.7,3.7 -2019,4,22,15,30,488.0,541.702414756798,197.0,23.7,3.7 -2019,4,22,15,45,488.0,523.2953185606223,197.0,23.7,3.7 -2019,4,22,16,0,421.0,400.6100931759027,136.0,22.3,4.8 -2019,4,22,16,15,421.0,382.7893303483453,136.0,22.3,4.8 -2019,4,22,16,30,421.0,364.1105988129723,136.0,22.3,4.8 -2019,4,22,16,45,421.0,344.65388376582933,136.0,22.3,4.8 -2019,4,22,17,0,235.0,173.22111148273726,68.0,20.8,5.5 -2019,4,22,17,15,235.0,161.63312334189385,68.0,20.8,5.5 -2019,4,22,17,30,235.0,149.75516468695827,68.0,20.8,5.5 -2019,4,22,17,45,235.0,137.6380987604284,68.0,20.8,5.5 -2019,4,22,18,0,117.0,33.5449195138942,5.0,18.2,3.4 -2019,4,22,18,15,117.0,27.351976405370007,5.0,18.2,3.4 -2019,4,22,18,30,117.0,21.118573020214825,5.0,18.2,3.4 -2019,4,22,18,45,117.0,14.871401748693408,5.0,18.2,3.4 -2019,4,22,19,0,0.0,0.0,0.0,17.2,2.0 -2019,4,22,19,15,0.0,0.0,0.0,17.2,2.0 -2019,4,22,19,30,0.0,0.0,0.0,17.2,2.0 -2019,4,22,19,45,0.0,0.0,0.0,17.2,2.0 -2019,4,22,20,0,0.0,0.0,0.0,17.1,1.6 -2019,4,22,20,15,0.0,0.0,0.0,17.1,1.6 -2019,4,22,20,30,0.0,0.0,0.0,17.1,1.6 -2019,4,22,20,45,0.0,0.0,0.0,17.1,1.6 -2019,4,22,21,0,0.0,0.0,0.0,16.0,2.1 -2019,4,22,21,15,0.0,0.0,0.0,16.0,2.1 -2019,4,22,21,30,0.0,0.0,0.0,16.0,2.1 -2019,4,22,21,45,0.0,0.0,0.0,16.0,2.1 -2019,4,22,22,0,0.0,0.0,0.0,14.9,2.1 -2019,4,22,22,15,0.0,0.0,0.0,14.9,2.1 -2019,4,22,22,30,0.0,0.0,0.0,14.9,2.1 -2019,4,22,22,45,0.0,0.0,0.0,14.9,2.1 -2019,4,22,23,0,0.0,0.0,0.0,14.4,2.6 -2019,4,22,23,15,0.0,0.0,0.0,14.4,2.6 -2019,4,22,23,30,0.0,0.0,0.0,14.4,2.6 -2019,4,22,23,45,0.0,0.0,0.0,14.4,2.6 -2019,4,23,0,0,0.0,0.0,0.0,14.3,2.8 -2019,4,23,0,15,0.0,0.0,0.0,14.3,2.8 -2019,4,23,0,30,0.0,0.0,0.0,14.3,2.8 -2019,4,23,0,45,0.0,0.0,0.0,14.3,2.8 -2019,4,23,1,0,0.0,0.0,0.0,13.9,2.4 -2019,4,23,1,15,0.0,0.0,0.0,13.9,2.4 -2019,4,23,1,30,0.0,0.0,0.0,13.9,2.4 -2019,4,23,1,45,0.0,0.0,0.0,13.9,2.4 -2019,4,23,2,0,0.0,0.0,0.0,14.0,2.1 -2019,4,23,2,15,0.0,0.0,0.0,14.0,2.1 -2019,4,23,2,30,0.0,0.0,0.0,14.0,2.1 -2019,4,23,2,45,0.0,0.0,0.0,14.0,2.1 -2019,4,23,3,0,0.0,0.0,0.0,13.9,1.7 -2019,4,23,3,15,0.0,0.0,0.0,13.9,1.7 -2019,4,23,3,30,0.0,0.0,0.0,13.9,1.7 -2019,4,23,3,45,0.0,0.0,0.0,13.9,1.7 -2019,4,23,4,0,0.0,0.0,0.0,13.9,2.5 -2019,4,23,4,15,0.0,0.0,0.0,13.9,2.5 -2019,4,23,4,30,0.0,0.0,0.0,13.9,2.5 -2019,4,23,4,45,0.0,0.0,0.0,13.9,2.5 -2019,4,23,5,0,1.0,13.776560096612181,14.0,14.0,1.9 -2019,4,23,5,15,1.0,13.825808553068851,14.0,14.0,1.9 -2019,4,23,5,30,1.0,13.876289371870342,14.0,14.0,1.9 -2019,4,23,5,45,1.0,13.927786386400587,14.0,14.0,1.9 -2019,4,23,6,0,1.0,35.9800790785374,36.0,14.3,0.2 -2019,4,23,6,15,1.0,36.03294352294494,36.0,14.3,0.2 -2019,4,23,6,30,1.0,36.08615334595635,36.0,14.3,0.2 -2019,4,23,6,45,1.0,36.139480694940566,36.0,14.3,0.2 -2019,4,23,7,0,0.0,63.0,63.0,14.0,2.0 -2019,4,23,7,15,0.0,63.0,63.0,14.0,2.0 -2019,4,23,7,30,0.0,63.0,63.0,14.0,2.0 -2019,4,23,7,45,0.0,63.0,63.0,14.0,2.0 -2019,4,23,8,0,0.0,87.0,87.0,15.1,1.7 -2019,4,23,8,15,0.0,87.0,87.0,15.1,1.7 -2019,4,23,8,30,0.0,87.0,87.0,15.1,1.7 -2019,4,23,8,45,0.0,87.0,87.0,15.1,1.7 -2019,4,23,9,0,0.0,106.0,106.0,16.3,3.0 -2019,4,23,9,15,0.0,106.0,106.0,16.3,3.0 -2019,4,23,9,30,0.0,106.0,106.0,16.3,3.0 -2019,4,23,9,45,0.0,106.0,106.0,16.3,3.0 -2019,4,23,10,0,0.0,119.0,119.0,17.2,3.1 -2019,4,23,10,15,0.0,119.0,119.0,17.2,3.1 -2019,4,23,10,30,0.0,119.0,119.0,17.2,3.1 -2019,4,23,10,45,0.0,119.0,119.0,17.2,3.1 -2019,4,23,11,0,0.0,124.0,124.0,17.0,3.3 -2019,4,23,11,15,0.0,124.0,124.0,17.0,3.3 -2019,4,23,11,30,0.0,124.0,124.0,17.0,3.3 -2019,4,23,11,45,0.0,124.0,124.0,17.0,3.3 -2019,4,23,12,0,0.0,123.0,123.0,16.1,3.9 -2019,4,23,12,15,0.0,123.0,123.0,16.1,3.9 -2019,4,23,12,30,0.0,123.0,123.0,16.1,3.9 -2019,4,23,12,45,0.0,123.0,123.0,16.1,3.9 -2019,4,23,13,0,0.0,149.0,149.0,16.7,4.2 -2019,4,23,13,15,0.0,149.0,149.0,16.7,4.2 -2019,4,23,13,30,0.0,149.0,149.0,16.7,4.2 -2019,4,23,13,45,0.0,149.0,149.0,16.7,4.2 -2019,4,23,14,0,2.0,189.75313948236914,188.0,16.6,4.8 -2019,4,23,14,15,2.0,189.7124190843603,188.0,16.6,4.8 -2019,4,23,14,30,2.0,189.6653387405903,188.0,16.6,4.8 -2019,4,23,14,45,2.0,189.612100056319,188.0,16.6,4.8 -2019,4,23,15,0,6.0,169.65879302329765,165.0,16.3,2.6 -2019,4,23,15,15,6.0,169.46425489764178,165.0,16.3,2.6 -2019,4,23,15,30,6.0,169.25351883410954,165.0,16.3,2.6 -2019,4,23,15,45,6.0,169.02748723687776,165.0,16.3,2.6 -2019,4,23,16,0,9.0,111.68069201192023,106.0,16.1,2.9 -2019,4,23,16,15,9.0,111.30020560365337,106.0,16.1,2.9 -2019,4,23,16,30,9.0,110.90140093172963,106.0,16.1,2.9 -2019,4,23,16,45,9.0,110.48598573897979,106.0,16.1,2.9 -2019,4,23,17,0,4.0,31.802550620904395,30.0,16.0,3.3 -2019,4,23,17,15,4.0,31.60555679507771,30.0,16.0,3.3 -2019,4,23,17,30,4.0,31.40363351987175,30.0,16.0,3.3 -2019,4,23,17,45,4.0,31.19764546175077,30.0,16.0,3.3 -2019,4,23,18,0,2.0,8.494237346601754,8.0,15.5,4.5 -2019,4,23,18,15,2.0,8.38850845778668,8.0,15.5,4.5 -2019,4,23,18,30,2.0,8.282088811763865,8.0,15.5,4.5 -2019,4,23,18,45,2.0,8.17543411379542,8.0,15.5,4.5 -2019,4,23,19,0,0.0,0.0,0.0,14.9,4.0 -2019,4,23,19,15,0.0,0.0,0.0,14.9,4.0 -2019,4,23,19,30,0.0,0.0,0.0,14.9,4.0 -2019,4,23,19,45,0.0,0.0,0.0,14.9,4.0 -2019,4,23,20,0,0.0,0.0,0.0,14.4,3.0 -2019,4,23,20,15,0.0,0.0,0.0,14.4,3.0 -2019,4,23,20,30,0.0,0.0,0.0,14.4,3.0 -2019,4,23,20,45,0.0,0.0,0.0,14.4,3.0 -2019,4,23,21,0,0.0,0.0,0.0,14.4,1.6 -2019,4,23,21,15,0.0,0.0,0.0,14.4,1.6 -2019,4,23,21,30,0.0,0.0,0.0,14.4,1.6 -2019,4,23,21,45,0.0,0.0,0.0,14.4,1.6 -2019,4,23,22,0,0.0,0.0,0.0,14.1,3.3 -2019,4,23,22,15,0.0,0.0,0.0,14.1,3.3 -2019,4,23,22,30,0.0,0.0,0.0,14.1,3.3 -2019,4,23,22,45,0.0,0.0,0.0,14.1,3.3 -2019,4,23,23,0,0.0,0.0,0.0,14.3,2.5 -2019,4,23,23,15,0.0,0.0,0.0,14.3,2.5 -2019,4,23,23,30,0.0,0.0,0.0,14.3,2.5 -2019,4,23,23,45,0.0,0.0,0.0,14.3,2.5 -2019,4,24,0,0,0.0,0.0,0.0,13.4,2.0 -2019,4,24,0,15,0.0,0.0,0.0,13.4,2.0 -2019,4,24,0,30,0.0,0.0,0.0,13.4,2.0 -2019,4,24,0,45,0.0,0.0,0.0,13.4,2.0 -2019,4,24,1,0,0.0,0.0,0.0,13.9,1.6 -2019,4,24,1,15,0.0,0.0,0.0,13.9,1.6 -2019,4,24,1,30,0.0,0.0,0.0,13.9,1.6 -2019,4,24,1,45,0.0,0.0,0.0,13.9,1.6 -2019,4,24,2,0,0.0,0.0,0.0,13.9,1.9 -2019,4,24,2,15,0.0,0.0,0.0,13.9,1.9 -2019,4,24,2,30,0.0,0.0,0.0,13.9,1.9 -2019,4,24,2,45,0.0,0.0,0.0,13.9,1.9 -2019,4,24,3,0,0.0,0.0,0.0,13.8,0.0 -2019,4,24,3,15,0.0,0.0,0.0,13.8,0.0 -2019,4,24,3,30,0.0,0.0,0.0,13.8,0.0 -2019,4,24,3,45,0.0,0.0,0.0,13.8,0.0 -2019,4,24,4,0,0.0,0.0,0.0,12.9,0.0 -2019,4,24,4,15,0.0,0.0,0.0,12.9,0.0 -2019,4,24,4,30,0.0,0.0,0.0,12.9,0.0 -2019,4,24,4,45,0.0,0.0,0.0,12.9,0.0 -2019,4,24,5,0,2.0,39.56053900329517,40.0,13.5,0.0 -2019,4,24,5,15,2.0,39.65890927790496,40.0,13.5,0.0 -2019,4,24,5,30,2.0,39.759741108287265,40.0,13.5,0.0 -2019,4,24,5,45,2.0,39.86260271706441,40.0,13.5,0.0 -2019,4,24,6,0,4.0,52.93410727007203,53.0,14.6,1.7 -2019,4,24,6,15,4.0,53.14529317467144,53.0,14.6,1.7 -2019,4,24,6,30,4.0,53.357858817461704,53.0,14.6,1.7 -2019,4,24,6,45,4.0,53.57089395972673,53.0,14.6,1.7 -2019,4,24,7,0,4.0,115.78348635228159,115.0,16.1,3.1 -2019,4,24,7,15,4.0,115.99472564186358,115.0,16.1,3.1 -2019,4,24,7,30,4.0,116.20370726940467,115.0,16.1,3.1 -2019,4,24,7,45,4.0,116.40953634349229,115.0,16.1,3.1 -2019,4,24,8,0,1.0,139.40283286810794,139.0,16.4,1.6 -2019,4,24,8,15,1.0,139.4520571346252,139.0,16.4,1.6 -2019,4,24,8,30,1.0,139.49984609955854,139.0,16.4,1.6 -2019,4,24,8,45,1.0,139.5459951232235,139.0,16.4,1.6 -2019,4,24,9,0,395.0,546.1711024242198,313.0,18.0,2.1 -2019,4,24,9,15,395.0,562.873344922225,313.0,18.0,2.1 -2019,4,24,9,30,395.0,578.7032796007429,313.0,18.0,2.1 -2019,4,24,9,45,395.0,593.5931202492243,313.0,18.0,2.1 -2019,4,24,10,0,4.0,290.9820668990793,288.0,20.3,1.5 -2019,4,24,10,15,4.0,291.11191671677267,288.0,20.3,1.5 -2019,4,24,10,30,4.0,291.23044273520526,288.0,20.3,1.5 -2019,4,24,10,45,4.0,291.3371374077697,288.0,20.3,1.5 -2019,4,24,11,0,18.0,394.4419473317415,379.0,22.3,1.6 -2019,4,24,11,15,18.0,394.8096601157716,379.0,22.3,1.6 -2019,4,24,11,30,18.0,395.1186820844605,379.0,22.3,1.6 -2019,4,24,11,45,18.0,395.3676899582964,379.0,22.3,1.6 -2019,4,24,12,0,26.0,415.9136696461509,392.0,23.4,2.2 -2019,4,24,12,15,26.0,416.09573084709217,392.0,23.4,2.2 -2019,4,24,12,30,26.0,416.1876228174614,392.0,23.4,2.2 -2019,4,24,12,45,26.0,416.18895206173386,392.0,23.4,2.2 -2019,4,24,13,0,37.0,406.29574526352366,372.0,24.3,2.9 -2019,4,24,13,15,37.0,406.0404090374861,372.0,24.3,2.9 -2019,4,24,13,30,37.0,405.65782418327456,372.0,24.3,2.9 -2019,4,24,13,45,37.0,405.1496289879703,372.0,24.3,2.9 -2019,4,24,14,0,97.0,426.24989089939595,341.0,23.8,1.8 -2019,4,24,14,15,97.0,424.27749079192415,341.0,23.8,1.8 -2019,4,24,14,30,97.0,421.99702990125076,341.0,23.8,1.8 -2019,4,24,14,45,97.0,419.41827351101244,341.0,23.8,1.8 -2019,4,24,15,0,750.0,714.1669916389438,130.0,23.3,4.1 -2019,4,24,15,15,750.0,689.8809908435717,130.0,23.3,4.1 -2019,4,24,15,30,750.0,663.5728510416548,130.0,23.3,4.1 -2019,4,24,15,45,750.0,635.3552277267239,130.0,23.3,4.1 -2019,4,24,16,0,613.0,494.5185443287164,106.0,22.4,4.1 -2019,4,24,16,15,613.0,468.63651188352827,106.0,22.4,4.1 -2019,4,24,16,30,613.0,441.50840629615686,106.0,22.4,4.1 -2019,4,24,16,45,613.0,413.25039427951,106.0,22.4,4.1 -2019,4,24,17,0,396.0,240.57823567340853,61.0,21.6,4.1 -2019,4,24,17,15,396.0,221.10092130067042,61.0,21.6,4.1 -2019,4,24,17,30,396.0,201.13621888497343,61.0,21.6,4.1 -2019,4,24,17,45,396.0,180.76962034709845,61.0,21.6,4.1 -2019,4,24,18,0,198.0,54.54416929436075,5.0,20.5,3.9 -2019,4,24,18,15,198.0,44.09046701669015,5.0,20.5,3.9 -2019,4,24,18,30,198.0,33.568467698572036,5.0,20.5,3.9 -2019,4,24,18,45,198.0,23.02322815645319,5.0,20.5,3.9 -2019,4,24,19,0,0.0,0.0,0.0,19.3,2.7 -2019,4,24,19,15,0.0,0.0,0.0,19.3,2.7 -2019,4,24,19,30,0.0,0.0,0.0,19.3,2.7 -2019,4,24,19,45,0.0,0.0,0.0,19.3,2.7 -2019,4,24,20,0,0.0,0.0,0.0,18.2,3.6 -2019,4,24,20,15,0.0,0.0,0.0,18.2,3.6 -2019,4,24,20,30,0.0,0.0,0.0,18.2,3.6 -2019,4,24,20,45,0.0,0.0,0.0,18.2,3.6 -2019,4,24,21,0,0.0,0.0,0.0,17.1,3.2 -2019,4,24,21,15,0.0,0.0,0.0,17.1,3.2 -2019,4,24,21,30,0.0,0.0,0.0,17.1,3.2 -2019,4,24,21,45,0.0,0.0,0.0,17.1,3.2 -2019,4,24,22,0,0.0,0.0,0.0,16.0,0.0 -2019,4,24,22,15,0.0,0.0,0.0,16.0,0.0 -2019,4,24,22,30,0.0,0.0,0.0,16.0,0.0 -2019,4,24,22,45,0.0,0.0,0.0,16.0,0.0 -2019,4,24,23,0,0.0,0.0,0.0,15.1,0.0 -2019,4,24,23,15,0.0,0.0,0.0,15.1,0.0 -2019,4,24,23,30,0.0,0.0,0.0,15.1,0.0 -2019,4,24,23,45,0.0,0.0,0.0,15.1,0.0 -2019,4,25,0,0,0.0,0.0,0.0,15.5,0.2 -2019,4,25,0,15,0.0,0.0,0.0,15.5,0.2 -2019,4,25,0,30,0.0,0.0,0.0,15.5,0.2 -2019,4,25,0,45,0.0,0.0,0.0,15.5,0.2 -2019,4,25,1,0,0.0,0.0,0.0,14.9,1.5 -2019,4,25,1,15,0.0,0.0,0.0,14.9,1.5 -2019,4,25,1,30,0.0,0.0,0.0,14.9,1.5 -2019,4,25,1,45,0.0,0.0,0.0,14.9,1.5 -2019,4,25,2,0,0.0,0.0,0.0,14.5,1.5 -2019,4,25,2,15,0.0,0.0,0.0,14.5,1.5 -2019,4,25,2,30,0.0,0.0,0.0,14.5,1.5 -2019,4,25,2,45,0.0,0.0,0.0,14.5,1.5 -2019,4,25,3,0,0.0,0.0,0.0,15.0,1.3 -2019,4,25,3,15,0.0,0.0,0.0,15.0,1.3 -2019,4,25,3,30,0.0,0.0,0.0,15.0,1.3 -2019,4,25,3,45,0.0,0.0,0.0,15.0,1.3 -2019,4,25,4,0,0.0,0.0,0.0,15.0,0.2 -2019,4,25,4,15,0.0,0.0,0.0,15.0,0.2 -2019,4,25,4,30,0.0,0.0,0.0,15.0,0.2 -2019,4,25,4,45,0.0,0.0,0.0,15.0,0.2 -2019,4,25,5,0,4.0,18.135792691302104,19.0,15.1,2.0 -2019,4,25,5,15,4.0,18.332275518949896,19.0,15.1,2.0 -2019,4,25,5,30,4.0,18.533675009080493,19.0,15.1,2.0 -2019,4,25,5,45,4.0,18.739128738157746,19.0,15.1,2.0 -2019,4,25,6,0,7.0,61.90857461310085,62.0,16.2,1.3 -2019,4,25,6,15,7.0,62.27766581852028,62.0,16.2,1.3 -2019,4,25,6,30,7.0,62.64916840282881,62.0,16.2,1.3 -2019,4,25,6,45,7.0,63.02149153492633,62.0,16.2,1.3 -2019,4,25,7,0,2.0,100.39801167714317,100.0,17.0,0.2 -2019,4,25,7,15,2.0,100.5034929647883,100.0,17.0,0.2 -2019,4,25,7,30,2.0,100.60784690013256,100.0,17.0,0.2 -2019,4,25,7,45,2.0,100.71062662360413,100.0,17.0,0.2 -2019,4,25,8,0,4.0,187.62278403329609,186.0,19.4,1.6 -2019,4,25,8,15,4.0,187.819423172763,186.0,19.4,1.6 -2019,4,25,8,30,4.0,188.0103286266253,186.0,19.4,1.6 -2019,4,25,8,45,4.0,188.1946829084211,186.0,19.4,1.6 -2019,4,25,9,0,140.0,456.00938046846306,373.0,23.6,2.2 -2019,4,25,9,15,140.0,461.9214079622306,373.0,23.6,2.2 -2019,4,25,9,30,140.0,467.5246680666818,373.0,23.6,2.2 -2019,4,25,9,45,140.0,472.7951667618213,373.0,23.6,2.2 -2019,4,25,10,0,967.0,838.2492422093759,115.0,26.0,2.7 -2019,4,25,10,15,967.0,869.5993145371912,115.0,26.0,2.7 -2019,4,25,10,30,967.0,898.2154444370818,115.0,26.0,2.7 -2019,4,25,10,45,967.0,923.9750932475881,115.0,26.0,2.7 -2019,4,25,11,0,1079.0,1004.1050905681874,76.0,29.5,0.2 -2019,4,25,11,15,1079.0,1026.1185546161455,76.0,29.5,0.2 -2019,4,25,11,30,1079.0,1044.6184390183334,76.0,29.5,0.2 -2019,4,25,11,45,1079.0,1059.5255244295877,76.0,29.5,0.2 -2019,4,25,12,0,93.0,526.74065413087,441.0,30.7,1.6 -2019,4,25,12,15,93.0,527.3910199734491,441.0,30.7,1.6 -2019,4,25,12,30,93.0,527.7192799125598,441.0,30.7,1.6 -2019,4,25,12,45,93.0,527.7240282887474,441.0,30.7,1.6 -2019,4,25,13,0,95.0,492.2634220755907,404.0,31.2,2.2 -2019,4,25,13,15,95.0,491.6086878611551,404.0,31.2,2.2 -2019,4,25,13,30,95.0,490.62766218428817,404.0,31.2,2.2 -2019,4,25,13,45,95.0,489.324545947548,404.0,31.2,2.2 -2019,4,25,14,0,102.0,431.87265019011875,342.0,31.8,3.1 -2019,4,25,14,15,102.0,429.8012969158863,342.0,31.8,3.1 -2019,4,25,14,30,102.0,427.40642778423233,342.0,31.8,3.1 -2019,4,25,14,45,102.0,424.69829799244553,342.0,31.8,3.1 -2019,4,25,15,0,66.0,300.56314975579966,249.0,30.1,6.8 -2019,4,25,15,15,66.0,298.4287812831261,249.0,30.1,6.8 -2019,4,25,15,30,66.0,296.11669768233,249.0,30.1,6.8 -2019,4,25,15,45,66.0,293.63679965034765,249.0,30.1,6.8 -2019,4,25,16,0,22.0,143.99990216375755,130.0,27.1,7.9 -2019,4,25,16,15,22.0,143.07223688095542,130.0,27.1,7.9 -2019,4,25,16,30,22.0,142.09990977353482,130.0,27.1,7.9 -2019,4,25,16,45,22.0,141.08708449544415,130.0,27.1,7.9 -2019,4,25,17,0,15.0,55.84415780910179,49.0,24.6,8.6 -2019,4,25,17,15,15.0,55.10734720542257,49.0,24.6,8.6 -2019,4,25,17,30,15.0,54.35209911743283,49.0,24.6,8.6 -2019,4,25,17,45,15.0,53.58164763339313,49.0,24.6,8.6 -2019,4,25,18,0,8.0,11.026289037247993,9.0,17.2,6.7 -2019,4,25,18,15,8.0,10.60447051676865,9.0,17.2,6.7 -2019,4,25,18,30,8.0,10.179896134701757,9.0,17.2,6.7 -2019,4,25,18,45,8.0,9.75438398373317,9.0,17.2,6.7 -2019,4,25,19,0,0.0,0.0,0.0,17.1,2.5 -2019,4,25,19,15,0.0,0.0,0.0,17.1,2.5 -2019,4,25,19,30,0.0,0.0,0.0,17.1,2.5 -2019,4,25,19,45,0.0,0.0,0.0,17.1,2.5 -2019,4,25,20,0,0.0,0.0,0.0,16.7,1.5 -2019,4,25,20,15,0.0,0.0,0.0,16.7,1.5 -2019,4,25,20,30,0.0,0.0,0.0,16.7,1.5 -2019,4,25,20,45,0.0,0.0,0.0,16.7,1.5 -2019,4,25,21,0,0.0,0.0,0.0,16.6,1.3 -2019,4,25,21,15,0.0,0.0,0.0,16.6,1.3 -2019,4,25,21,30,0.0,0.0,0.0,16.6,1.3 -2019,4,25,21,45,0.0,0.0,0.0,16.6,1.3 -2019,4,25,22,0,0.0,0.0,0.0,16.0,0.5 -2019,4,25,22,15,0.0,0.0,0.0,16.0,0.5 -2019,4,25,22,30,0.0,0.0,0.0,16.0,0.5 -2019,4,25,22,45,0.0,0.0,0.0,16.0,0.5 -2019,4,25,23,0,0.0,0.0,0.0,15.5,3.9 -2019,4,25,23,15,0.0,0.0,0.0,15.5,3.9 -2019,4,25,23,30,0.0,0.0,0.0,15.5,3.9 -2019,4,25,23,45,0.0,0.0,0.0,15.5,3.9 -2019,4,26,0,0,0.0,0.0,0.0,15.0,1.9 -2019,4,26,0,15,0.0,0.0,0.0,15.0,1.9 -2019,4,26,0,30,0.0,0.0,0.0,15.0,1.9 -2019,4,26,0,45,0.0,0.0,0.0,15.0,1.9 -2019,4,26,1,0,0.0,0.0,0.0,15.0,0.0 -2019,4,26,1,15,0.0,0.0,0.0,15.0,0.0 -2019,4,26,1,30,0.0,0.0,0.0,15.0,0.0 -2019,4,26,1,45,0.0,0.0,0.0,15.0,0.0 -2019,4,26,2,0,0.0,0.0,0.0,15.0,0.0 -2019,4,26,2,15,0.0,0.0,0.0,15.0,0.0 -2019,4,26,2,30,0.0,0.0,0.0,15.0,0.0 -2019,4,26,2,45,0.0,0.0,0.0,15.0,0.0 -2019,4,26,3,0,0.0,0.0,0.0,15.0,0.0 -2019,4,26,3,15,0.0,0.0,0.0,15.0,0.0 -2019,4,26,3,30,0.0,0.0,0.0,15.0,0.0 -2019,4,26,3,45,0.0,0.0,0.0,15.0,0.0 -2019,4,26,4,0,0.0,0.0,0.0,14.7,0.0 -2019,4,26,4,15,0.0,0.0,0.0,14.7,0.0 -2019,4,26,4,30,0.0,0.0,0.0,14.7,0.0 -2019,4,26,4,45,0.0,0.0,0.0,14.7,0.0 -2019,4,26,5,0,1.0,16.787594638412177,17.0,14.0,0.0 -2019,4,26,5,15,1.0,16.836649881469143,17.0,14.0,0.0 -2019,4,26,5,30,1.0,16.886932652020548,17.0,14.0,0.0 -2019,4,26,5,45,1.0,16.93822763152334,17.0,14.0,0.0 -2019,4,26,6,0,2.0,42.980630334000686,43.0,15.1,0.2 -2019,4,26,6,15,2.0,43.08594442325604,43.0,15.1,0.2 -2019,4,26,6,30,2.0,43.191946559714424,43.0,15.1,0.2 -2019,4,26,6,45,2.0,43.2981828259538,43.0,15.1,0.2 -2019,4,26,7,0,0.0,64.0,64.0,15.7,1.5 -2019,4,26,7,15,0.0,64.0,64.0,15.7,1.5 -2019,4,26,7,30,0.0,64.0,64.0,15.7,1.5 -2019,4,26,7,45,0.0,64.0,64.0,15.7,1.5 -2019,4,26,8,0,0.0,103.0,103.0,16.7,1.6 -2019,4,26,8,15,0.0,103.0,103.0,16.7,1.6 -2019,4,26,8,30,0.0,103.0,103.0,16.7,1.6 -2019,4,26,8,45,0.0,103.0,103.0,16.7,1.6 -2019,4,26,9,0,0.0,119.0,119.0,16.8,2.2 -2019,4,26,9,15,0.0,119.0,119.0,16.8,2.2 -2019,4,26,9,30,0.0,119.0,119.0,16.8,2.2 -2019,4,26,9,45,0.0,119.0,119.0,16.8,2.2 -2019,4,26,10,0,0.0,186.0,186.0,17.9,3.0 -2019,4,26,10,15,0.0,186.0,186.0,17.9,3.0 -2019,4,26,10,30,0.0,186.0,186.0,17.9,3.0 -2019,4,26,10,45,0.0,186.0,186.0,17.9,3.0 -2019,4,26,11,0,1.0,226.86236519562303,226.0,18.4,2.1 -2019,4,26,11,15,1.0,226.8827397335245,226.0,18.4,2.1 -2019,4,26,11,30,1.0,226.89986228157528,226.0,18.4,2.1 -2019,4,26,11,45,1.0,226.91365951839592,226.0,18.4,2.1 -2019,4,26,12,0,2.0,263.8481447242003,262.0,19.0,1.9 -2019,4,26,12,15,2.0,263.86211244658523,262.0,19.0,1.9 -2019,4,26,12,30,2.0,263.869162392015,262.0,19.0,1.9 -2019,4,26,12,45,2.0,263.8692643715411,262.0,19.0,1.9 -2019,4,26,13,0,5.0,280.6560448711783,276.0,19.2,0.7 -2019,4,26,13,15,5.0,280.6216311006012,276.0,19.2,0.7 -2019,4,26,13,30,5.0,280.57006698217015,276.0,19.2,0.7 -2019,4,26,13,45,5.0,280.50157332135666,276.0,19.2,0.7 -2019,4,26,14,0,6.0,241.29973210223798,236.0,17.9,5.5 -2019,4,26,14,15,6.0,241.17805017561005,236.0,17.9,5.5 -2019,4,26,14,30,6.0,241.037363266435,236.0,17.9,5.5 -2019,4,26,14,45,6.0,240.87827381765655,236.0,17.9,5.5 -2019,4,26,15,0,16.0,215.53723486591525,203.0,18.4,3.7 -2019,4,26,15,15,16.0,215.02050178230868,203.0,18.4,3.7 -2019,4,26,15,30,16.0,214.4607436599921,203.0,18.4,3.7 -2019,4,26,15,45,16.0,213.86035746918083,203.0,18.4,3.7 -2019,4,26,16,0,23.0,145.6940015988431,131.0,18.6,4.4 -2019,4,26,16,15,23.0,144.72546222083363,131.0,18.6,4.4 -2019,4,26,16,30,23.0,143.71029316222854,131.0,18.6,4.4 -2019,4,26,16,45,23.0,142.6528415327884,131.0,18.6,4.4 -2019,4,26,17,0,12.0,51.50833156664348,46.0,18.2,4.9 -2019,4,26,17,15,12.0,50.91966864995992,46.0,18.2,4.9 -2019,4,26,17,30,12.0,50.31627540334306,46.0,18.2,4.9 -2019,4,26,17,45,12.0,49.70073564930954,46.0,18.2,4.9 -2019,4,26,18,0,6.0,11.537842611792755,10.0,17.6,3.5 -2019,4,26,18,15,6.0,11.221900344026704,10.0,17.6,3.5 -2019,4,26,18,30,6.0,10.90389393465153,10.0,17.6,3.5 -2019,4,26,18,45,6.0,10.585185135933411,10.0,17.6,3.5 -2019,4,26,19,0,0.0,0.0,0.0,16.0,3.0 -2019,4,26,19,15,0.0,0.0,0.0,16.0,3.0 -2019,4,26,19,30,0.0,0.0,0.0,16.0,3.0 -2019,4,26,19,45,0.0,0.0,0.0,16.0,3.0 -2019,4,26,20,0,0.0,0.0,0.0,15.5,2.7 -2019,4,26,20,15,0.0,0.0,0.0,15.5,2.7 -2019,4,26,20,30,0.0,0.0,0.0,15.5,2.7 -2019,4,26,20,45,0.0,0.0,0.0,15.5,2.7 -2019,4,26,21,0,0.0,0.0,0.0,14.9,3.5 -2019,4,26,21,15,0.0,0.0,0.0,14.9,3.5 -2019,4,26,21,30,0.0,0.0,0.0,14.9,3.5 -2019,4,26,21,45,0.0,0.0,0.0,14.9,3.5 -2019,4,26,22,0,0.0,0.0,0.0,14.4,2.7 -2019,4,26,22,15,0.0,0.0,0.0,14.4,2.7 -2019,4,26,22,30,0.0,0.0,0.0,14.4,2.7 -2019,4,26,22,45,0.0,0.0,0.0,14.4,2.7 -2019,4,26,23,0,0.0,0.0,0.0,14.3,0.3 -2019,4,26,23,15,0.0,0.0,0.0,14.3,0.3 -2019,4,26,23,30,0.0,0.0,0.0,14.3,0.3 -2019,4,26,23,45,0.0,0.0,0.0,14.3,0.3 -2019,4,27,0,0,0.0,0.0,0.0,13.9,0.0 -2019,4,27,0,15,0.0,0.0,0.0,13.9,0.0 -2019,4,27,0,30,0.0,0.0,0.0,13.9,0.0 -2019,4,27,0,45,0.0,0.0,0.0,13.9,0.0 -2019,4,27,1,0,0.0,0.0,0.0,14.0,2.0 -2019,4,27,1,15,0.0,0.0,0.0,14.0,2.0 -2019,4,27,1,30,0.0,0.0,0.0,14.0,2.0 -2019,4,27,1,45,0.0,0.0,0.0,14.0,2.0 -2019,4,27,2,0,0.0,0.0,0.0,13.9,1.5 -2019,4,27,2,15,0.0,0.0,0.0,13.9,1.5 -2019,4,27,2,30,0.0,0.0,0.0,13.9,1.5 -2019,4,27,2,45,0.0,0.0,0.0,13.9,1.5 -2019,4,27,3,0,0.0,0.0,0.0,13.9,1.2 -2019,4,27,3,15,0.0,0.0,0.0,13.9,1.2 -2019,4,27,3,30,0.0,0.0,0.0,13.9,1.2 -2019,4,27,3,45,0.0,0.0,0.0,13.9,1.2 -2019,4,27,4,0,0.0,0.0,0.0,13.9,0.9 -2019,4,27,4,15,0.0,0.0,0.0,13.9,0.9 -2019,4,27,4,30,0.0,0.0,0.0,13.9,0.9 -2019,4,27,4,45,0.0,0.0,0.0,13.9,0.9 -2019,4,27,5,0,94.0,17.373499391123556,37.0,14.0,1.6 -2019,4,27,5,15,94.0,21.978448909673084,37.0,14.0,1.6 -2019,4,27,5,30,94.0,26.69862978357374,37.0,14.0,1.6 -2019,4,27,5,45,94.0,31.51382947366812,37.0,14.0,1.6 -2019,4,27,6,0,188.0,110.80685711128078,112.0,14.6,1.4 -2019,4,27,6,15,188.0,120.69297803111311,112.0,14.6,1.4 -2019,4,27,6,30,188.0,130.64368781930972,112.0,14.6,1.4 -2019,4,27,6,45,188.0,140.6163760088967,112.0,14.6,1.4 -2019,4,27,7,0,190.0,245.9786394862881,207.0,16.8,0.0 -2019,4,27,7,15,190.0,255.9724575708552,207.0,16.8,0.0 -2019,4,27,7,30,190.0,265.85946473129036,207.0,16.8,0.0 -2019,4,27,7,45,190.0,275.59732328505186,207.0,16.8,0.0 -2019,4,27,8,0,190.0,375.1443342268292,297.0,17.5,0.2 -2019,4,27,8,15,190.0,384.45961579008576,297.0,17.5,0.2 -2019,4,27,8,30,190.0,393.5032785090598,297.0,17.5,0.2 -2019,4,27,8,45,190.0,402.23659603158023,297.0,17.5,0.2 -2019,4,27,9,0,555.0,589.8963414628688,258.0,19.5,1.3 -2019,4,27,9,15,555.0,613.2703826138725,258.0,19.5,1.3 -2019,4,27,9,30,555.0,635.4236679968124,258.0,19.5,1.3 -2019,4,27,9,45,555.0,656.2613338426447,258.0,19.5,1.3 -2019,4,27,10,0,495.0,688.5380257355757,316.0,20.2,0.2 -2019,4,27,10,15,495.0,704.5428048146198,316.0,20.2,0.2 -2019,4,27,10,30,495.0,719.1518568243216,316.0,20.2,0.2 -2019,4,27,10,45,495.0,732.3026235611535,316.0,20.2,0.2 -2019,4,27,11,0,620.0,811.004142792452,275.0,21.8,2.2 -2019,4,27,11,15,620.0,823.6192528942626,275.0,21.8,2.2 -2019,4,27,11,30,620.0,834.220859170128,275.0,21.8,2.2 -2019,4,27,11,45,620.0,842.7635639143869,275.0,21.8,2.2 -2019,4,27,12,0,647.0,859.2167395356845,260.0,22.9,2.8 -2019,4,27,12,15,647.0,863.7291798211859,260.0,22.9,2.8 -2019,4,27,12,30,647.0,866.0067492696139,260.0,22.9,2.8 -2019,4,27,12,45,647.0,866.0396949789315,260.0,22.9,2.8 -2019,4,27,13,0,721.0,882.8901058773865,210.0,23.2,4.7 -2019,4,27,13,15,721.0,877.9343590951926,210.0,23.2,4.7 -2019,4,27,13,30,721.0,870.5088805816341,210.0,23.2,4.7 -2019,4,27,13,45,721.0,860.6454673756864,210.0,23.2,4.7 -2019,4,27,14,0,723.0,819.157192066282,179.0,22.7,5.0 -2019,4,27,14,15,723.0,804.5143724460991,179.0,22.7,5.0 -2019,4,27,14,30,723.0,787.5845531125291,179.0,22.7,5.0 -2019,4,27,14,45,723.0,768.4402301510721,179.0,22.7,5.0 -2019,4,27,15,0,695.0,691.1598213440639,145.0,22.4,4.2 -2019,4,27,15,15,695.0,668.7446182566628,145.0,22.4,4.2 -2019,4,27,15,30,695.0,644.4630454493326,145.0,22.4,4.2 -2019,4,27,15,45,695.0,618.419080344609,145.0,22.4,4.2 -2019,4,27,16,0,610.0,499.2112097721465,108.0,21.6,4.7 -2019,4,27,16,15,610.0,473.5586404604985,108.0,21.6,4.7 -2019,4,27,16,30,610.0,446.67104535576675,108.0,21.6,4.7 -2019,4,27,16,45,610.0,418.6635612680483,108.0,21.6,4.7 -2019,4,27,17,0,426.0,258.6975530356417,62.0,20.9,5.0 -2019,4,27,17,15,426.0,237.82831372817247,62.0,20.9,5.0 -2019,4,27,17,30,426.0,216.4368557251759,62.0,20.9,5.0 -2019,4,27,17,45,426.0,194.61478053389706,62.0,20.9,5.0 -2019,4,27,18,0,213.0,61.2277668152455,6.0,19.2,4.0 -2019,4,27,18,15,213.0,50.0270021560737,6.0,19.2,4.0 -2019,4,27,18,30,213.0,38.75305968327654,6.0,19.2,4.0 -2019,4,27,18,45,213.0,27.45421614932956,6.0,19.2,4.0 -2019,4,27,19,0,0.0,0.0,0.0,17.7,3.0 -2019,4,27,19,15,0.0,0.0,0.0,17.7,3.0 -2019,4,27,19,30,0.0,0.0,0.0,17.7,3.0 -2019,4,27,19,45,0.0,0.0,0.0,17.7,3.0 -2019,4,27,20,0,0.0,0.0,0.0,16.6,2.5 -2019,4,27,20,15,0.0,0.0,0.0,16.6,2.5 -2019,4,27,20,30,0.0,0.0,0.0,16.6,2.5 -2019,4,27,20,45,0.0,0.0,0.0,16.6,2.5 -2019,4,27,21,0,0.0,0.0,0.0,15.6,1.9 -2019,4,27,21,15,0.0,0.0,0.0,15.6,1.9 -2019,4,27,21,30,0.0,0.0,0.0,15.6,1.9 -2019,4,27,21,45,0.0,0.0,0.0,15.6,1.9 -2019,4,27,22,0,0.0,0.0,0.0,15.6,0.0 -2019,4,27,22,15,0.0,0.0,0.0,15.6,0.0 -2019,4,27,22,30,0.0,0.0,0.0,15.6,0.0 -2019,4,27,22,45,0.0,0.0,0.0,15.6,0.0 -2019,4,27,23,0,0.0,0.0,0.0,15.5,0.0 -2019,4,27,23,15,0.0,0.0,0.0,15.5,0.0 -2019,4,27,23,30,0.0,0.0,0.0,15.5,0.0 -2019,4,27,23,45,0.0,0.0,0.0,15.5,0.0 -2019,4,28,0,0,0.0,0.0,0.0,14.3,0.0 -2019,4,28,0,15,0.0,0.0,0.0,14.3,0.0 -2019,4,28,0,30,0.0,0.0,0.0,14.3,0.0 -2019,4,28,0,45,0.0,0.0,0.0,14.3,0.0 -2019,4,28,1,0,0.0,0.0,0.0,13.2,0.0 -2019,4,28,1,15,0.0,0.0,0.0,13.2,0.0 -2019,4,28,1,30,0.0,0.0,0.0,13.2,0.0 -2019,4,28,1,45,0.0,0.0,0.0,13.2,0.0 -2019,4,28,2,0,0.0,0.0,0.0,12.2,0.0 -2019,4,28,2,15,0.0,0.0,0.0,12.2,0.0 -2019,4,28,2,30,0.0,0.0,0.0,12.2,0.0 -2019,4,28,2,45,0.0,0.0,0.0,12.2,0.0 -2019,4,28,3,0,0.0,0.0,0.0,12.1,0.2 -2019,4,28,3,15,0.0,0.0,0.0,12.1,0.2 -2019,4,28,3,30,0.0,0.0,0.0,12.1,0.2 -2019,4,28,3,45,0.0,0.0,0.0,12.1,0.2 -2019,4,28,4,0,0.0,0.0,0.0,11.2,1.3 -2019,4,28,4,15,0.0,0.0,0.0,11.2,1.3 -2019,4,28,4,30,0.0,0.0,0.0,11.2,1.3 -2019,4,28,4,45,0.0,0.0,0.0,11.2,1.3 -2019,4,28,5,0,346.0,-45.00434327963352,26.0,12.1,0.0 -2019,4,28,5,15,346.0,-28.077493308224007,26.0,12.1,0.0 -2019,4,28,5,30,346.0,-10.727076508085226,26.0,12.1,0.0 -2019,4,28,5,45,346.0,6.972609972360292,26.0,12.1,0.0 -2019,4,28,6,0,584.0,74.22061167990181,76.0,15.3,0.0 -2019,4,28,6,15,584.0,104.88850487287365,76.0,15.3,0.0 -2019,4,28,6,30,584.0,135.75676022330958,76.0,15.3,0.0 -2019,4,28,6,45,584.0,166.6931951228184,76.0,15.3,0.0 -2019,4,28,7,0,751.0,260.328024984233,104.0,17.4,0.0 -2019,4,28,7,15,751.0,299.77564461850375,104.0,17.4,0.0 -2019,4,28,7,30,751.0,338.80165994976596,104.0,17.4,0.0 -2019,4,28,7,45,751.0,377.23895558898846,104.0,17.4,0.0 -2019,4,28,8,0,849.0,470.49610336594094,119.0,19.2,0.2 -2019,4,28,8,15,849.0,512.0635264435084,119.0,19.2,0.2 -2019,4,28,8,30,849.0,552.4189093546609,119.0,19.2,0.2 -2019,4,28,8,45,849.0,591.3894441543016,119.0,19.2,0.2 -2019,4,28,9,0,912.0,670.6385474239722,123.0,22.0,1.6 -2019,4,28,9,15,912.0,708.9950221923536,123.0,22.0,1.6 -2019,4,28,9,30,912.0,745.3482538110549,123.0,22.0,1.6 -2019,4,28,9,45,912.0,779.5425721612348,123.0,22.0,1.6 -2019,4,28,10,0,950.0,839.1161999188657,122.0,24.7,2.2 -2019,4,28,10,15,950.0,869.7902495694397,122.0,24.7,2.2 -2019,4,28,10,30,950.0,897.7893106299053,122.0,24.7,2.2 -2019,4,28,10,45,950.0,922.9934868223077,122.0,24.7,2.2 -2019,4,28,11,0,965.0,956.294242363114,120.0,27.5,2.6 -2019,4,28,11,15,965.0,975.9020796909592,120.0,27.5,2.6 -2019,4,28,11,30,965.0,992.3803006175604,120.0,27.5,2.6 -2019,4,28,11,45,965.0,1005.6583428711273,120.0,27.5,2.6 -2019,4,28,12,0,961.0,1012.9666873270821,121.0,29.6,2.7 -2019,4,28,12,15,961.0,1019.6598842217533,121.0,29.6,2.7 -2019,4,28,12,30,961.0,1023.0381495937288,121.0,29.6,2.7 -2019,4,28,12,45,961.0,1023.0870171920449,121.0,29.6,2.7 -2019,4,28,13,0,936.0,997.4242205844146,122.0,31.0,3.8 -2019,4,28,13,15,936.0,990.9995225878711,122.0,31.0,3.8 -2019,4,28,13,30,936.0,981.373030552232,122.0,31.0,3.8 -2019,4,28,13,45,936.0,968.5859665942796,122.0,31.0,3.8 -2019,4,28,14,0,889.0,910.9809340178999,122.0,30.3,5.8 -2019,4,28,14,15,889.0,893.000871302078,122.0,30.3,5.8 -2019,4,28,14,30,889.0,872.2125790686923,122.0,30.3,5.8 -2019,4,28,14,45,889.0,848.7050759765629,122.0,30.3,5.8 -2019,4,28,15,0,813.0,754.6870046481565,114.0,29.1,6.1 -2019,4,28,15,15,813.0,728.5020729666436,114.0,29.1,6.1 -2019,4,28,15,30,813.0,700.1368905232599,114.0,29.1,6.1 -2019,4,28,15,45,813.0,669.7129213839303,114.0,29.1,6.1 -2019,4,28,16,0,691.0,538.8241918177118,94.0,27.1,5.6 -2019,4,28,16,15,691.0,509.80521415647235,94.0,27.1,5.6 -2019,4,28,16,30,691.0,479.38913722361025,94.0,27.1,5.6 -2019,4,28,16,45,691.0,447.70620733011305,94.0,27.1,5.6 -2019,4,28,17,0,474.0,279.11990352550856,59.0,25.8,4.9 -2019,4,28,17,15,474.0,255.93109749531183,59.0,25.8,4.9 -2019,4,28,17,30,474.0,232.16202939338748,59.0,25.8,4.9 -2019,4,28,17,45,474.0,207.914482018442,59.0,25.8,4.9 -2019,4,28,18,0,237.0,69.14614354544284,7.0,23.0,3.5 -2019,4,28,18,15,237.0,56.70044031473341,7.0,23.0,3.5 -2019,4,28,18,30,237.0,44.17342572902563,7.0,23.0,3.5 -2019,4,28,18,45,237.0,31.618742387957866,7.0,23.0,3.5 -2019,4,28,19,0,0.0,0.0,0.0,21.0,2.3 -2019,4,28,19,15,0.0,0.0,0.0,21.0,2.3 -2019,4,28,19,30,0.0,0.0,0.0,21.0,2.3 -2019,4,28,19,45,0.0,0.0,0.0,21.0,2.3 -2019,4,28,20,0,0.0,0.0,0.0,19.9,0.0 -2019,4,28,20,15,0.0,0.0,0.0,19.9,0.0 -2019,4,28,20,30,0.0,0.0,0.0,19.9,0.0 -2019,4,28,20,45,0.0,0.0,0.0,19.9,0.0 -2019,4,28,21,0,0.0,0.0,0.0,18.6,0.0 -2019,4,28,21,15,0.0,0.0,0.0,18.6,0.0 -2019,4,28,21,30,0.0,0.0,0.0,18.6,0.0 -2019,4,28,21,45,0.0,0.0,0.0,18.6,0.0 -2019,4,28,22,0,0.0,0.0,0.0,16.6,0.0 -2019,4,28,22,15,0.0,0.0,0.0,16.6,0.0 -2019,4,28,22,30,0.0,0.0,0.0,16.6,0.0 -2019,4,28,22,45,0.0,0.0,0.0,16.6,0.0 -2019,4,28,23,0,0.0,0.0,0.0,16.0,0.2 -2019,4,28,23,15,0.0,0.0,0.0,16.0,0.2 -2019,4,28,23,30,0.0,0.0,0.0,16.0,0.2 -2019,4,28,23,45,0.0,0.0,0.0,16.0,0.2 -2019,4,29,0,0,0.0,0.0,0.0,15.6,1.3 -2019,4,29,0,15,0.0,0.0,0.0,15.6,1.3 -2019,4,29,0,30,0.0,0.0,0.0,15.6,1.3 -2019,4,29,0,45,0.0,0.0,0.0,15.6,1.3 -2019,4,29,1,0,0.0,0.0,0.0,15.5,0.2 -2019,4,29,1,15,0.0,0.0,0.0,15.5,0.2 -2019,4,29,1,30,0.0,0.0,0.0,15.5,0.2 -2019,4,29,1,45,0.0,0.0,0.0,15.5,0.2 -2019,4,29,2,0,0.0,0.0,0.0,14.3,1.3 -2019,4,29,2,15,0.0,0.0,0.0,14.3,1.3 -2019,4,29,2,30,0.0,0.0,0.0,14.3,1.3 -2019,4,29,2,45,0.0,0.0,0.0,14.3,1.3 -2019,4,29,3,0,0.0,0.0,0.0,13.2,0.0 -2019,4,29,3,15,0.0,0.0,0.0,13.2,0.0 -2019,4,29,3,30,0.0,0.0,0.0,13.2,0.0 -2019,4,29,3,45,0.0,0.0,0.0,13.2,0.0 -2019,4,29,4,0,0.0,0.0,0.0,12.9,0.0 -2019,4,29,4,15,0.0,0.0,0.0,12.9,0.0 -2019,4,29,4,30,0.0,0.0,0.0,12.9,0.0 -2019,4,29,4,45,0.0,0.0,0.0,12.9,0.0 -2019,4,29,5,0,248.0,-20.015079008573096,30.0,13.5,0.0 -2019,4,29,5,15,248.0,-7.8994246222182625,30.0,13.5,0.0 -2019,4,29,5,30,248.0,4.51940426589417,30.0,13.5,0.0 -2019,4,29,5,45,248.0,17.188228323892154,30.0,13.5,0.0 -2019,4,29,6,0,434.0,95.09239597886061,95.0,15.3,0.2 -2019,4,29,6,15,434.0,117.85154259456814,95.0,15.3,0.2 -2019,4,29,6,30,434.0,140.75938125407777,95.0,15.3,0.2 -2019,4,29,6,45,434.0,163.7178170753741,95.0,15.3,0.2 -2019,4,29,7,0,566.0,264.4971262617073,145.0,17.4,1.3 -2019,4,29,7,15,566.0,294.1859126690374,145.0,17.4,1.3 -2019,4,29,7,30,566.0,323.5573942499552,145.0,17.4,1.3 -2019,4,29,7,45,566.0,352.4857978111394,145.0,17.4,1.3 -2019,4,29,8,0,645.0,450.76585623560925,182.0,19.2,0.2 -2019,4,29,8,15,645.0,482.30139647009037,182.0,19.2,0.2 -2019,4,29,8,30,645.0,512.9174103398395,182.0,19.2,0.2 -2019,4,29,8,45,645.0,542.4827953732106,182.0,19.2,0.2 -2019,4,29,9,0,698.0,624.8246848692495,204.0,21.4,1.9 -2019,4,29,9,15,698.0,654.1399900045858,204.0,21.4,1.9 -2019,4,29,9,30,698.0,681.9242450486985,204.0,21.4,1.9 -2019,4,29,9,45,698.0,708.0584735559721,204.0,21.4,1.9 -2019,4,29,10,0,731.0,767.4138811326608,214.0,24.1,0.4 -2019,4,29,10,15,731.0,790.9839057975121,214.0,24.1,0.4 -2019,4,29,10,30,731.0,812.4984618246945,214.0,24.1,0.4 -2019,4,29,10,45,731.0,831.8654205823251,214.0,24.1,0.4 -2019,4,29,11,0,745.0,865.1633079150506,218.0,25.9,3.8 -2019,4,29,11,15,745.0,880.2798968593953,218.0,25.9,3.8 -2019,4,29,11,30,745.0,892.9837197296407,218.0,25.9,3.8 -2019,4,29,11,45,745.0,903.2203768059298,218.0,25.9,3.8 -2019,4,29,12,0,741.0,906.2255175368679,217.0,27.8,5.6 -2019,4,29,12,15,741.0,911.3792701773144,217.0,27.8,5.6 -2019,4,29,12,30,741.0,913.9805299870789,217.0,27.8,5.6 -2019,4,29,12,45,741.0,914.0181579723028,217.0,27.8,5.6 -2019,4,29,13,0,719.0,884.8727975303688,211.0,27.5,4.8 -2019,4,29,13,15,719.0,879.944454728627,211.0,27.5,4.8 -2019,4,29,13,30,719.0,872.5600371645032,211.0,27.5,4.8 -2019,4,29,13,45,719.0,862.7511660476833,211.0,27.5,4.8 -2019,4,29,14,0,678.0,799.0898116144348,196.0,25.4,6.1 -2019,4,29,14,15,678.0,785.3963173489504,196.0,25.4,6.1 -2019,4,29,14,30,678.0,769.5640944592836,196.0,25.4,6.1 -2019,4,29,14,45,678.0,751.660938954455,196.0,25.4,6.1 -2019,4,29,15,0,615.0,653.9801794400446,168.0,24.4,5.6 -2019,4,29,15,15,615.0,634.1999573077103,168.0,24.4,5.6 -2019,4,29,15,30,615.0,612.7727633635517,168.0,24.4,5.6 -2019,4,29,15,45,615.0,589.7903521416008,168.0,24.4,5.6 -2019,4,29,16,0,518.0,459.67949497383313,125.0,23.0,5.1 -2019,4,29,16,15,518.0,437.9560364214406,125.0,23.0,5.1 -2019,4,29,16,30,518.0,415.1867164856814,125.0,23.0,5.1 -2019,4,29,16,45,518.0,391.46903689013,125.0,23.0,5.1 -2019,4,29,17,0,349.0,231.98203006298556,69.0,21.9,4.6 -2019,4,29,17,15,349.0,214.93217772089756,69.0,21.9,4.6 -2019,4,29,17,30,349.0,197.45568061625545,69.0,21.9,4.6 -2019,4,29,17,45,349.0,179.6273757927019,69.0,21.9,4.6 -2019,4,29,18,0,174.0,55.129248083685894,9.0,19.7,4.5 -2019,4,29,18,15,174.0,46.004613265406796,9.0,19.7,4.5 -2019,4,29,18,30,174.0,36.82036458624859,9.0,19.7,4.5 -2019,4,29,18,45,174.0,27.615830409046815,9.0,19.7,4.5 -2019,4,29,19,0,0.0,0.0,0.0,17.7,3.5 -2019,4,29,19,15,0.0,0.0,0.0,17.7,3.5 -2019,4,29,19,30,0.0,0.0,0.0,17.7,3.5 -2019,4,29,19,45,0.0,0.0,0.0,17.7,3.5 -2019,4,29,20,0,0.0,0.0,0.0,16.6,2.6 -2019,4,29,20,15,0.0,0.0,0.0,16.6,2.6 -2019,4,29,20,30,0.0,0.0,0.0,16.6,2.6 -2019,4,29,20,45,0.0,0.0,0.0,16.6,2.6 -2019,4,29,21,0,0.0,0.0,0.0,16.0,2.5 -2019,4,29,21,15,0.0,0.0,0.0,16.0,2.5 -2019,4,29,21,30,0.0,0.0,0.0,16.0,2.5 -2019,4,29,21,45,0.0,0.0,0.0,16.0,2.5 -2019,4,29,22,0,0.0,0.0,0.0,15.4,2.1 -2019,4,29,22,15,0.0,0.0,0.0,15.4,2.1 -2019,4,29,22,30,0.0,0.0,0.0,15.4,2.1 -2019,4,29,22,45,0.0,0.0,0.0,15.4,2.1 -2019,4,29,23,0,0.0,0.0,0.0,15.6,2.5 -2019,4,29,23,15,0.0,0.0,0.0,15.6,2.5 -2019,4,29,23,30,0.0,0.0,0.0,15.6,2.5 -2019,4,29,23,45,0.0,0.0,0.0,15.6,2.5 -2019,4,30,0,0,0.0,0.0,0.0,15.6,1.9 -2019,4,30,0,15,0.0,0.0,0.0,15.6,1.9 -2019,4,30,0,30,0.0,0.0,0.0,15.6,1.9 -2019,4,30,0,45,0.0,0.0,0.0,15.6,1.9 -2019,4,30,1,0,0.0,0.0,0.0,15.7,0.0 -2019,4,30,1,15,0.0,0.0,0.0,15.7,0.0 -2019,4,30,1,30,0.0,0.0,0.0,15.7,0.0 -2019,4,30,1,45,0.0,0.0,0.0,15.7,0.0 -2019,4,30,2,0,0.0,0.0,0.0,16.0,0.2 -2019,4,30,2,15,0.0,0.0,0.0,16.0,0.2 -2019,4,30,2,30,0.0,0.0,0.0,16.0,0.2 -2019,4,30,2,45,0.0,0.0,0.0,16.0,0.2 -2019,4,30,3,0,0.0,0.0,0.0,15.6,1.3 -2019,4,30,3,15,0.0,0.0,0.0,15.6,1.3 -2019,4,30,3,30,0.0,0.0,0.0,15.6,1.3 -2019,4,30,3,45,0.0,0.0,0.0,15.6,1.3 -2019,4,30,4,0,0.0,0.0,0.0,15.6,0.0 -2019,4,30,4,15,0.0,0.0,0.0,15.6,0.0 -2019,4,30,4,30,0.0,0.0,0.0,15.6,0.0 -2019,4,30,4,45,0.0,0.0,0.0,15.6,0.0 -2019,4,30,5,0,1.0,17.80182950618948,18.0,15.7,0.0 -2019,4,30,5,15,1.0,17.85061415280802,18.0,15.7,0.0 -2019,4,30,5,30,1.0,17.90061955568622,18.0,15.7,0.0 -2019,4,30,5,45,1.0,17.95163158401198,18.0,15.7,0.0 -2019,4,30,6,0,3.0,52.01029538934552,52.0,16.2,0.2 -2019,4,30,6,15,3.0,52.1673951296009,52.0,16.2,0.2 -2019,4,30,6,30,3.0,52.3255212475959,52.0,16.2,0.2 -2019,4,30,6,45,3.0,52.48399662301732,52.0,16.2,0.2 -2019,4,30,7,0,0.0,66.0,66.0,17.0,2.1 -2019,4,30,7,15,0.0,66.0,66.0,17.0,2.1 -2019,4,30,7,30,0.0,66.0,66.0,17.0,2.1 -2019,4,30,7,45,0.0,66.0,66.0,17.0,2.1 -2019,4,30,8,0,372.0,419.98839463952254,264.0,19.2,2.5 -2019,4,30,8,15,372.0,438.150720725631,264.0,19.2,2.5 -2019,4,30,8,30,372.0,455.7834621730474,264.0,19.2,2.5 -2019,4,30,8,45,372.0,472.81111287586623,264.0,19.2,2.5 -2019,4,30,9,0,494.0,582.0038020508196,283.0,21.2,2.1 -2019,4,30,9,15,494.0,602.7220923265006,283.0,21.2,2.1 -2019,4,30,9,30,494.0,622.3583287033687,283.0,21.2,2.1 -2019,4,30,9,45,494.0,640.8284258026483,283.0,21.2,2.1 -2019,4,30,10,0,577.0,721.0683185984396,283.0,22.5,2.4 -2019,4,30,10,15,577.0,739.6466386981244,283.0,22.5,2.4 -2019,4,30,10,30,577.0,756.6048012100057,283.0,22.5,2.4 -2019,4,30,10,45,577.0,771.8701886787433,283.0,22.5,2.4 -2019,4,30,11,0,635.0,821.8763770467469,269.0,24.3,4.6 -2019,4,30,11,15,635.0,834.7428414997893,269.0,24.3,4.6 -2019,4,30,11,30,635.0,845.555683337293,269.0,24.3,4.6 -2019,4,30,11,45,635.0,854.2686003104922,269.0,24.3,4.6 -2019,4,30,12,0,527.0,806.1841524561617,315.0,23.9,4.7 -2019,4,30,12,15,527.0,809.844345115968,315.0,23.9,4.7 -2019,4,30,12,30,527.0,811.6917585884788,315.0,23.9,4.7 -2019,4,30,12,45,527.0,811.7184819655846,315.0,23.9,4.7 -2019,4,30,13,0,551.0,799.4636524636408,282.0,23.7,5.3 -2019,4,30,13,15,551.0,795.6921744073932,282.0,23.7,5.3 -2019,4,30,13,30,551.0,790.041153380321,282.0,23.7,5.3 -2019,4,30,13,45,551.0,782.5347879220227,282.0,23.7,5.3 -2019,4,30,14,0,440.0,671.2509935288332,279.0,22.1,7.1 -2019,4,30,14,15,440.0,662.3768747972035,279.0,22.1,7.1 -2019,4,30,14,30,440.0,652.1167452068576,279.0,22.1,7.1 -2019,4,30,14,45,440.0,640.5145402078651,279.0,22.1,7.1 -2019,4,30,15,0,476.0,582.143392041499,205.0,21.4,6.6 -2019,4,30,15,15,476.0,566.8553816385174,205.0,21.4,6.6 -2019,4,30,15,30,476.0,550.2944369871672,205.0,21.4,6.6 -2019,4,30,15,45,476.0,532.5314745949283,205.0,21.4,6.6 -2019,4,30,16,0,408.0,408.5507641661001,144.0,20.4,5.8 -2019,4,30,16,15,408.0,391.4644911631216,144.0,20.4,5.8 -2019,4,30,16,30,408.0,373.5556109737054,144.0,20.4,5.8 -2019,4,30,16,45,408.0,354.90081217224406,144.0,20.4,5.8 -2019,4,30,17,0,258.0,196.1461622243987,75.0,19.1,4.9 -2019,4,30,17,15,258.0,183.5597233968157,75.0,19.1,4.9 -2019,4,30,17,30,258.0,170.6583294542408,75.0,19.1,4.9 -2019,4,30,17,45,258.0,157.49722614619427,75.0,19.1,4.9 -2019,4,30,18,0,129.0,45.56638566878515,11.0,17.1,3.6 -2019,4,30,18,15,129.0,38.81109683780399,11.0,17.1,3.6 -2019,4,30,18,30,129.0,32.011673764018745,11.0,17.1,3.6 -2019,4,30,18,45,129.0,25.197232620897744,11.0,17.1,3.6 -2019,4,30,19,0,0.0,0.0,0.0,16.0,3.5 -2019,4,30,19,15,0.0,0.0,0.0,16.0,3.5 -2019,4,30,19,30,0.0,0.0,0.0,16.0,3.5 -2019,4,30,19,45,0.0,0.0,0.0,16.0,3.5 -2019,4,30,20,0,0.0,0.0,0.0,15.7,2.2 -2019,4,30,20,15,0.0,0.0,0.0,15.7,2.2 -2019,4,30,20,30,0.0,0.0,0.0,15.7,2.2 -2019,4,30,20,45,0.0,0.0,0.0,15.7,2.2 -2019,4,30,21,0,0.0,0.0,0.0,15.6,1.5 -2019,4,30,21,15,0.0,0.0,0.0,15.6,1.5 -2019,4,30,21,30,0.0,0.0,0.0,15.6,1.5 -2019,4,30,21,45,0.0,0.0,0.0,15.6,1.5 -2019,4,30,22,0,0.0,0.0,0.0,15.6,1.5 -2019,4,30,22,15,0.0,0.0,0.0,15.6,1.5 -2019,4,30,22,30,0.0,0.0,0.0,15.6,1.5 -2019,4,30,22,45,0.0,0.0,0.0,15.6,1.5 -2019,4,30,23,0,0.0,0.0,0.0,15.6,1.6 -2019,4,30,23,15,0.0,0.0,0.0,15.6,1.6 -2019,4,30,23,30,0.0,0.0,0.0,15.6,1.6 -2019,4,30,23,45,0.0,0.0,0.0,15.6,1.6 -2019,5,1,0,0,0.0,0.0,0.0,15.5,2.1 -2019,5,1,0,15,0.0,0.0,0.0,15.5,2.1 -2019,5,1,0,30,0.0,0.0,0.0,15.5,2.1 -2019,5,1,0,45,0.0,0.0,0.0,15.5,2.1 -2019,5,1,1,0,0.0,0.0,0.0,15.0,2.1 -2019,5,1,1,15,0.0,0.0,0.0,15.0,2.1 -2019,5,1,1,30,0.0,0.0,0.0,15.0,2.1 -2019,5,1,1,45,0.0,0.0,0.0,15.0,2.1 -2019,5,1,2,0,0.0,0.0,0.0,15.0,2.4 -2019,5,1,2,15,0.0,0.0,0.0,15.0,2.4 -2019,5,1,2,30,0.0,0.0,0.0,15.0,2.4 -2019,5,1,2,45,0.0,0.0,0.0,15.0,2.4 -2019,5,1,3,0,0.0,0.0,0.0,15.0,2.6 -2019,5,1,3,15,0.0,0.0,0.0,15.0,2.6 -2019,5,1,3,30,0.0,0.0,0.0,15.0,2.6 -2019,5,1,3,45,0.0,0.0,0.0,15.0,2.6 -2019,5,1,4,0,0.0,0.0,0.0,14.3,2.9 -2019,5,1,4,15,0.0,0.0,0.0,14.3,2.9 -2019,5,1,4,30,0.0,0.0,0.0,14.3,2.9 -2019,5,1,4,45,0.0,0.0,0.0,14.3,2.9 -2019,5,1,5,0,1.0,12.805293375584844,13.0,14.5,2.0 -2019,5,1,5,15,1.0,12.854008594335541,13.0,14.5,2.0 -2019,5,1,5,30,1.0,12.903942832026678,13.0,14.5,2.0 -2019,5,1,5,45,1.0,12.954882262586413,13.0,14.5,2.0 -2019,5,1,6,0,2.0,47.01321751110545,47.0,15.1,1.6 -2019,5,1,6,15,2.0,47.11780162028309,47.0,15.1,1.6 -2019,5,1,6,30,2.0,47.22306900749419,47.0,15.1,1.6 -2019,5,1,6,45,2.0,47.328568901625765,47.0,15.1,1.6 -2019,5,1,7,0,0.0,66.0,66.0,15.7,1.6 -2019,5,1,7,15,0.0,66.0,66.0,15.7,1.6 -2019,5,1,7,30,0.0,66.0,66.0,15.7,1.6 -2019,5,1,7,45,0.0,66.0,66.0,15.7,1.6 -2019,5,1,8,0,0.0,89.0,89.0,16.7,2.2 -2019,5,1,8,15,0.0,89.0,89.0,16.7,2.2 -2019,5,1,8,30,0.0,89.0,89.0,16.7,2.2 -2019,5,1,8,45,0.0,89.0,89.0,16.7,2.2 -2019,5,1,9,0,0.0,108.0,108.0,16.6,2.9 -2019,5,1,9,15,0.0,108.0,108.0,16.6,2.9 -2019,5,1,9,30,0.0,108.0,108.0,16.6,2.9 -2019,5,1,9,45,0.0,108.0,108.0,16.6,2.9 -2019,5,1,10,0,0.0,120.0,120.0,16.8,1.7 -2019,5,1,10,15,0.0,120.0,120.0,16.8,1.7 -2019,5,1,10,30,0.0,120.0,120.0,16.8,1.7 -2019,5,1,10,45,0.0,120.0,120.0,16.8,1.7 -2019,5,1,11,0,0.0,126.0,126.0,17.2,2.7 -2019,5,1,11,15,0.0,126.0,126.0,17.2,2.7 -2019,5,1,11,30,0.0,126.0,126.0,17.2,2.7 -2019,5,1,11,45,0.0,126.0,126.0,17.2,2.7 -2019,5,1,12,0,0.0,124.0,124.0,17.3,3.5 -2019,5,1,12,15,0.0,124.0,124.0,17.3,3.5 -2019,5,1,12,30,0.0,124.0,124.0,17.3,3.5 -2019,5,1,12,45,0.0,124.0,124.0,17.3,3.5 -2019,5,1,13,0,0.0,169.0,169.0,17.8,3.2 -2019,5,1,13,15,0.0,169.0,169.0,17.8,3.2 -2019,5,1,13,30,0.0,169.0,169.0,17.8,3.2 -2019,5,1,13,45,0.0,169.0,169.0,17.8,3.2 -2019,5,1,14,0,2.0,195.7867853295096,194.0,17.7,3.7 -2019,5,1,14,15,2.0,195.74650583164635,194.0,17.7,3.7 -2019,5,1,14,30,2.0,195.69993525034025,194.0,17.7,3.7 -2019,5,1,14,45,2.0,195.64727300797014,194.0,17.7,3.7 -2019,5,1,15,0,4.0,163.17748922468542,160.0,17.3,4.6 -2019,5,1,15,15,4.0,163.0492013820669,160.0,17.3,4.6 -2019,5,1,15,30,4.0,162.910231836322,160.0,17.3,4.6 -2019,5,1,15,45,4.0,162.7611756763805,160.0,17.3,4.6 -2019,5,1,16,0,8.0,114.20534236720572,109.0,16.9,4.6 -2019,5,1,16,15,8.0,113.87079419712232,109.0,16.9,4.6 -2019,5,1,16,30,8.0,113.52013942913592,109.0,16.9,4.6 -2019,5,1,16,45,8.0,113.15487962079652,109.0,16.9,4.6 -2019,5,1,17,0,3.0,33.41621707650467,32.0,16.6,4.4 -2019,5,1,17,15,3.0,33.27007142025258,32.0,16.6,4.4 -2019,5,1,17,30,3.0,33.12026870717917,32.0,16.6,4.4 -2019,5,1,17,45,3.0,32.96745041549997,32.0,16.6,4.4 -2019,5,1,18,0,2.0,3.541513957734014,3.0,15.6,3.2 -2019,5,1,18,15,2.0,3.436929848556378,3.0,15.6,3.2 -2019,5,1,18,30,2.0,3.3316624613452817,3.0,15.6,3.2 -2019,5,1,18,45,2.0,3.226162567213705,3.0,15.6,3.2 -2019,5,1,19,0,0.0,0.0,0.0,15.5,3.6 -2019,5,1,19,15,0.0,0.0,0.0,15.5,3.6 -2019,5,1,19,30,0.0,0.0,0.0,15.5,3.6 -2019,5,1,19,45,0.0,0.0,0.0,15.5,3.6 -2019,5,1,20,0,0.0,0.0,0.0,14.9,3.5 -2019,5,1,20,15,0.0,0.0,0.0,14.9,3.5 -2019,5,1,20,30,0.0,0.0,0.0,14.9,3.5 -2019,5,1,20,45,0.0,0.0,0.0,14.9,3.5 -2019,5,1,21,0,0.0,0.0,0.0,14.4,3.0 -2019,5,1,21,15,0.0,0.0,0.0,14.4,3.0 -2019,5,1,21,30,0.0,0.0,0.0,14.4,3.0 -2019,5,1,21,45,0.0,0.0,0.0,14.4,3.0 -2019,5,1,22,0,0.0,0.0,0.0,14.4,2.0 -2019,5,1,22,15,0.0,0.0,0.0,14.4,2.0 -2019,5,1,22,30,0.0,0.0,0.0,14.4,2.0 -2019,5,1,22,45,0.0,0.0,0.0,14.4,2.0 -2019,5,1,23,0,0.0,0.0,0.0,14.2,1.5 -2019,5,1,23,15,0.0,0.0,0.0,14.2,1.5 -2019,5,1,23,30,0.0,0.0,0.0,14.2,1.5 -2019,5,1,23,45,0.0,0.0,0.0,14.2,1.5 -2019,5,2,0,0,0.0,0.0,0.0,13.9,1.9 -2019,5,2,0,15,0.0,0.0,0.0,13.9,1.9 -2019,5,2,0,30,0.0,0.0,0.0,13.9,1.9 -2019,5,2,0,45,0.0,0.0,0.0,13.9,1.9 -2019,5,2,1,0,0.0,0.0,0.0,14.0,0.0 -2019,5,2,1,15,0.0,0.0,0.0,14.0,0.0 -2019,5,2,1,30,0.0,0.0,0.0,14.0,0.0 -2019,5,2,1,45,0.0,0.0,0.0,14.0,0.0 -2019,5,2,2,0,0.0,0.0,0.0,13.2,0.3 -2019,5,2,2,15,0.0,0.0,0.0,13.2,0.3 -2019,5,2,2,30,0.0,0.0,0.0,13.2,0.3 -2019,5,2,2,45,0.0,0.0,0.0,13.2,0.3 -2019,5,2,3,0,0.0,0.0,0.0,13.2,1.1 -2019,5,2,3,15,0.0,0.0,0.0,13.2,1.1 -2019,5,2,3,30,0.0,0.0,0.0,13.2,1.1 -2019,5,2,3,45,0.0,0.0,0.0,13.2,1.1 -2019,5,2,4,0,0.0,0.0,0.0,13.0,0.0 -2019,5,2,4,15,0.0,0.0,0.0,13.0,0.0 -2019,5,2,4,30,0.0,0.0,0.0,13.0,0.0 -2019,5,2,4,45,0.0,0.0,0.0,13.0,0.0 -2019,5,2,5,0,1.0,12.808716525168506,13.0,13.3,0.0 -2019,5,2,5,15,1.0,12.857361769816023,13.0,13.3,0.0 -2019,5,2,5,30,1.0,12.907224282416108,13.0,13.3,0.0 -2019,5,2,5,45,1.0,12.958090544034775,13.0,13.3,0.0 -2019,5,2,6,0,2.0,47.01948547506128,47.0,13.4,0.0 -2019,5,2,6,15,2.0,47.12391936056274,47.0,13.4,0.0 -2019,5,2,6,30,2.0,47.22903554264322,47.0,13.4,0.0 -2019,5,2,6,45,2.0,47.33438389767332,47.0,13.4,0.0 -2019,5,2,7,0,0.0,66.0,66.0,14.0,0.0 -2019,5,2,7,15,0.0,66.0,66.0,14.0,0.0 -2019,5,2,7,30,0.0,66.0,66.0,14.0,0.0 -2019,5,2,7,45,0.0,66.0,66.0,14.0,0.0 -2019,5,2,8,0,0.0,89.0,89.0,14.5,0.0 -2019,5,2,8,15,0.0,89.0,89.0,14.5,0.0 -2019,5,2,8,30,0.0,89.0,89.0,14.5,0.0 -2019,5,2,8,45,0.0,89.0,89.0,14.5,0.0 -2019,5,2,9,0,0.0,108.0,108.0,15.1,0.0 -2019,5,2,9,15,0.0,108.0,108.0,15.1,0.0 -2019,5,2,9,30,0.0,108.0,108.0,15.1,0.0 -2019,5,2,9,45,0.0,108.0,108.0,15.1,0.0 -2019,5,2,10,0,0.0,120.0,120.0,16.7,0.0 -2019,5,2,10,15,0.0,120.0,120.0,16.7,0.0 -2019,5,2,10,30,0.0,120.0,120.0,16.7,0.0 -2019,5,2,10,45,0.0,120.0,120.0,16.7,0.0 -2019,5,2,11,0,0.0,135.0,135.0,17.3,1.8 -2019,5,2,11,15,0.0,135.0,135.0,17.3,1.8 -2019,5,2,11,30,0.0,135.0,135.0,17.3,1.8 -2019,5,2,11,45,0.0,135.0,135.0,17.3,1.8 -2019,5,2,12,0,0.0,181.0,181.0,17.9,3.8 -2019,5,2,12,15,0.0,181.0,181.0,17.9,3.8 -2019,5,2,12,30,0.0,181.0,181.0,17.9,3.8 -2019,5,2,12,45,0.0,181.0,181.0,17.9,3.8 -2019,5,2,13,0,0.0,191.0,191.0,17.8,3.7 -2019,5,2,13,15,0.0,191.0,191.0,17.8,3.7 -2019,5,2,13,30,0.0,191.0,191.0,17.8,3.7 -2019,5,2,13,45,0.0,191.0,191.0,17.8,3.7 -2019,5,2,14,0,3.0,214.6857586348431,212.0,17.8,4.4 -2019,5,2,14,15,3.0,214.62542617371227,212.0,17.8,4.4 -2019,5,2,14,30,3.0,214.55567064210092,212.0,17.8,4.4 -2019,5,2,14,45,3.0,214.47679074390453,212.0,17.8,4.4 -2019,5,2,15,0,6.0,175.77824850991396,171.0,17.8,3.1 -2019,5,2,15,15,6.0,175.58609315324557,171.0,17.8,3.1 -2019,5,2,15,30,6.0,175.37793825654137,171.0,17.8,3.1 -2019,5,2,15,45,6.0,175.15467517102553,171.0,17.8,3.1 -2019,5,2,16,0,9.0,116.87588991525936,111.0,17.5,3.4 -2019,5,2,16,15,9.0,116.50006383365454,111.0,17.5,3.4 -2019,5,2,16,30,9.0,116.10614385670316,111.0,17.5,3.4 -2019,5,2,16,45,9.0,115.6958168102222,111.0,17.5,3.4 -2019,5,2,17,0,3.0,34.42361325920642,33.0,17.1,3.6 -2019,5,2,17,15,3.0,34.27767752526387,33.0,17.1,3.6 -2019,5,2,17,30,3.0,34.12808998746361,33.0,17.1,3.6 -2019,5,2,17,45,3.0,33.975491202607614,33.0,17.1,3.6 -2019,5,2,18,0,2.0,3.5470230814133448,3.0,16.6,3.5 -2019,5,2,18,15,2.0,3.442589195911889,3.0,16.6,3.5 -2019,5,2,18,30,2.0,3.33747301383141,3.0,16.6,3.5 -2019,5,2,18,45,2.0,3.232124658801305,3.0,16.6,3.5 -2019,5,2,19,0,0.0,0.0,0.0,15.8,3.1 -2019,5,2,19,15,0.0,0.0,0.0,15.8,3.1 -2019,5,2,19,30,0.0,0.0,0.0,15.8,3.1 -2019,5,2,19,45,0.0,0.0,0.0,15.8,3.1 -2019,5,2,20,0,0.0,0.0,0.0,15.6,2.5 -2019,5,2,20,15,0.0,0.0,0.0,15.6,2.5 -2019,5,2,20,30,0.0,0.0,0.0,15.6,2.5 -2019,5,2,20,45,0.0,0.0,0.0,15.6,2.5 -2019,5,2,21,0,0.0,0.0,0.0,15.5,2.2 -2019,5,2,21,15,0.0,0.0,0.0,15.5,2.2 -2019,5,2,21,30,0.0,0.0,0.0,15.5,2.2 -2019,5,2,21,45,0.0,0.0,0.0,15.5,2.2 -2019,5,2,22,0,0.0,0.0,0.0,15.0,2.5 -2019,5,2,22,15,0.0,0.0,0.0,15.0,2.5 -2019,5,2,22,30,0.0,0.0,0.0,15.0,2.5 -2019,5,2,22,45,0.0,0.0,0.0,15.0,2.5 -2019,5,2,23,0,0.0,0.0,0.0,15.0,1.6 -2019,5,2,23,15,0.0,0.0,0.0,15.0,1.6 -2019,5,2,23,30,0.0,0.0,0.0,15.0,1.6 -2019,5,2,23,45,0.0,0.0,0.0,15.0,1.6 -2019,5,3,0,0,0.0,0.0,0.0,14.9,2.2 -2019,5,3,0,15,0.0,0.0,0.0,14.9,2.2 -2019,5,3,0,30,0.0,0.0,0.0,14.9,2.2 -2019,5,3,0,45,0.0,0.0,0.0,14.9,2.2 -2019,5,3,1,0,0.0,0.0,0.0,13.9,2.7 -2019,5,3,1,15,0.0,0.0,0.0,13.9,2.7 -2019,5,3,1,30,0.0,0.0,0.0,13.9,2.7 -2019,5,3,1,45,0.0,0.0,0.0,13.9,2.7 -2019,5,3,2,0,0.0,0.0,0.0,13.9,3.0 -2019,5,3,2,15,0.0,0.0,0.0,13.9,3.0 -2019,5,3,2,30,0.0,0.0,0.0,13.9,3.0 -2019,5,3,2,45,0.0,0.0,0.0,13.9,3.0 -2019,5,3,3,0,0.0,0.0,0.0,13.9,2.5 -2019,5,3,3,15,0.0,0.0,0.0,13.9,2.5 -2019,5,3,3,30,0.0,0.0,0.0,13.9,2.5 -2019,5,3,3,45,0.0,0.0,0.0,13.9,2.5 -2019,5,3,4,0,0.0,0.0,0.0,14.0,1.6 -2019,5,3,4,15,0.0,0.0,0.0,14.0,1.6 -2019,5,3,4,30,0.0,0.0,0.0,14.0,1.6 -2019,5,3,4,45,0.0,0.0,0.0,14.0,1.6 -2019,5,3,5,0,5.0,14.060487980217445,15.0,14.4,2.0 -2019,5,3,5,15,5.0,14.303362020174216,15.0,14.4,2.0 -2019,5,3,5,30,5.0,14.552313587081303,15.0,14.4,2.0 -2019,5,3,5,45,5.0,14.806276632109467,15.0,14.4,2.0 -2019,5,3,6,0,6.0,68.07699637581294,68.0,15.0,1.3 -2019,5,3,6,15,6.0,68.38984438219767,68.0,15.0,1.3 -2019,5,3,6,30,6.0,68.70473631449289,68.0,15.0,1.3 -2019,5,3,6,45,6.0,69.02032375710144,68.0,15.0,1.3 -2019,5,3,7,0,0.0,67.0,67.0,15.2,0.0 -2019,5,3,7,15,0.0,67.0,67.0,15.2,0.0 -2019,5,3,7,30,0.0,67.0,67.0,15.2,0.0 -2019,5,3,7,45,0.0,67.0,67.0,15.2,0.0 -2019,5,3,8,0,0.0,91.0,91.0,16.8,0.2 -2019,5,3,8,15,0.0,91.0,91.0,16.8,0.2 -2019,5,3,8,30,0.0,91.0,91.0,16.8,0.2 -2019,5,3,8,45,0.0,91.0,91.0,16.8,0.2 -2019,5,3,9,0,1.0,176.6120830817346,176.0,17.3,1.5 -2019,5,3,9,15,1.0,176.65384254362277,176.0,17.3,1.5 -2019,5,3,9,30,1.0,176.6934210345936,176.0,17.3,1.5 -2019,5,3,9,45,1.0,176.73064907347253,176.0,17.3,1.5 -2019,5,3,10,0,1.0,239.76536724408177,239.0,18.4,1.3 -2019,5,3,10,15,1.0,239.7974268778847,239.0,18.4,1.3 -2019,5,3,10,30,1.0,239.8266906906075,239.0,18.4,1.3 -2019,5,3,10,45,1.0,239.85303337011143,239.0,18.4,1.3 -2019,5,3,11,0,2.0,272.75268422599737,271.0,19.5,0.3 -2019,5,3,11,15,2.0,272.7930342153075,271.0,19.5,0.3 -2019,5,3,11,30,2.0,272.8269439233044,271.0,19.5,0.3 -2019,5,3,11,45,2.0,272.8542681434125,271.0,19.5,0.3 -2019,5,3,12,0,4.0,305.74977973825304,302.0,20.0,2.8 -2019,5,3,12,15,4.0,305.7774415901019,302.0,20.0,2.8 -2019,5,3,12,30,4.0,305.79140339007523,302.0,20.0,2.8 -2019,5,3,12,45,4.0,305.79160535160213,302.0,20.0,2.8 -2019,5,3,13,0,6.0,300.66706991477855,295.0,20.1,4.4 -2019,5,3,13,15,6.0,300.6261778381595,295.0,20.1,4.4 -2019,5,3,13,30,6.0,300.564906903696,295.0,20.1,4.4 -2019,5,3,13,45,6.0,300.48351948293583,295.0,20.1,4.4 -2019,5,3,14,0,22.0,315.73533499413526,296.0,20.5,3.2 -2019,5,3,14,15,22.0,315.2935375810557,296.0,20.5,3.2 -2019,5,3,14,30,22.0,314.7827377092083,296.0,20.5,3.2 -2019,5,3,14,45,22.0,314.20512270206353,296.0,20.5,3.2 -2019,5,3,15,0,68.0,311.28614944143766,257.0,20.4,4.1 -2019,5,3,15,15,68.0,309.11154205580624,257.0,20.4,4.1 -2019,5,3,15,30,68.0,306.7558691067065,257.0,20.4,4.1 -2019,5,3,15,45,68.0,304.22921794735595,257.0,20.4,4.1 -2019,5,3,16,0,216.0,311.487649214091,170.0,20.0,3.8 -2019,5,3,16,15,216.0,302.48088365612,170.0,20.0,3.8 -2019,5,3,16,30,216.0,293.0404933940807,170.0,20.0,3.8 -2019,5,3,16,45,216.0,283.2069036283905,170.0,20.0,3.8 -2019,5,3,17,0,175.0,163.46707906258578,80.0,19.8,3.4 -2019,5,3,17,15,175.0,154.9664876640988,80.0,19.8,3.4 -2019,5,3,17,30,175.0,146.25318282235077,80.0,19.8,3.4 -2019,5,3,17,45,175.0,137.364476246365,80.0,19.8,3.4 -2019,5,3,18,0,7.0,4.933537229692755,3.0,18.2,2.2 -2019,5,3,18,15,7.0,4.56854788891058,3.0,18.2,2.2 -2019,5,3,18,30,7.0,4.201173967899487,3.0,18.2,2.2 -2019,5,3,18,45,7.0,3.832988618189514,3.0,18.2,2.2 -2019,5,3,19,0,0.0,0.0,0.0,17.1,2.5 -2019,5,3,19,15,0.0,0.0,0.0,17.1,2.5 -2019,5,3,19,30,0.0,0.0,0.0,17.1,2.5 -2019,5,3,19,45,0.0,0.0,0.0,17.1,2.5 -2019,5,3,20,0,0.0,0.0,0.0,16.6,2.2 -2019,5,3,20,15,0.0,0.0,0.0,16.6,2.2 -2019,5,3,20,30,0.0,0.0,0.0,16.6,2.2 -2019,5,3,20,45,0.0,0.0,0.0,16.6,2.2 -2019,5,3,21,0,0.0,0.0,0.0,15.5,2.5 -2019,5,3,21,15,0.0,0.0,0.0,15.5,2.5 -2019,5,3,21,30,0.0,0.0,0.0,15.5,2.5 -2019,5,3,21,45,0.0,0.0,0.0,15.5,2.5 -2019,5,3,22,0,0.0,0.0,0.0,14.9,2.0 -2019,5,3,22,15,0.0,0.0,0.0,14.9,2.0 -2019,5,3,22,30,0.0,0.0,0.0,14.9,2.0 -2019,5,3,22,45,0.0,0.0,0.0,14.9,2.0 -2019,5,3,23,0,0.0,0.0,0.0,14.5,1.5 -2019,5,3,23,15,0.0,0.0,0.0,14.5,1.5 -2019,5,3,23,30,0.0,0.0,0.0,14.5,1.5 -2019,5,3,23,45,0.0,0.0,0.0,14.5,1.5 -2019,5,4,0,0,0.0,0.0,0.0,15.1,1.3 -2019,5,4,0,15,0.0,0.0,0.0,15.1,1.3 -2019,5,4,0,30,0.0,0.0,0.0,15.1,1.3 -2019,5,4,0,45,0.0,0.0,0.0,15.1,1.3 -2019,5,4,1,0,0.0,0.0,0.0,15.6,0.0 -2019,5,4,1,15,0.0,0.0,0.0,15.6,0.0 -2019,5,4,1,30,0.0,0.0,0.0,15.6,0.0 -2019,5,4,1,45,0.0,0.0,0.0,15.6,0.0 -2019,5,4,2,0,0.0,0.0,0.0,15.5,0.0 -2019,5,4,2,15,0.0,0.0,0.0,15.5,0.0 -2019,5,4,2,30,0.0,0.0,0.0,15.5,0.0 -2019,5,4,2,45,0.0,0.0,0.0,15.5,0.0 -2019,5,4,3,0,0.0,0.0,0.0,15.0,0.0 -2019,5,4,3,15,0.0,0.0,0.0,15.0,0.0 -2019,5,4,3,30,0.0,0.0,0.0,15.0,0.0 -2019,5,4,3,45,0.0,0.0,0.0,15.0,0.0 -2019,5,4,4,0,0.0,0.0,0.0,15.0,0.0 -2019,5,4,4,15,0.0,0.0,0.0,15.0,0.0 -2019,5,4,4,30,0.0,0.0,0.0,15.0,0.0 -2019,5,4,4,45,0.0,0.0,0.0,15.0,0.0 -2019,5,4,5,0,5.0,14.077176242250871,15.0,15.1,0.0 -2019,5,4,5,15,5.0,14.319696206748212,15.0,15.1,0.0 -2019,5,4,5,30,5.0,14.56828483803466,15.0,15.1,0.0 -2019,5,4,5,45,5.0,14.821877641427026,15.0,15.1,0.0 -2019,5,4,6,0,7.0,71.11114417105247,71.0,15.7,0.2 -2019,5,4,6,15,7.0,71.47560140980947,71.0,15.7,0.2 -2019,5,4,6,30,7.0,71.84243975241998,71.0,15.7,0.2 -2019,5,4,6,45,7.0,72.21008834078287,71.0,15.7,0.2 -2019,5,4,7,0,4.0,122.90112734125736,122.0,16.8,1.5 -2019,5,4,7,15,4.0,123.10944126622336,122.0,16.8,1.5 -2019,5,4,7,30,4.0,123.31552879456626,122.0,16.8,1.5 -2019,5,4,7,45,4.0,123.51850742785061,122.0,16.8,1.5 -2019,5,4,8,0,10.0,228.293769951017,224.0,18.0,1.3 -2019,5,4,8,15,10.0,228.7791957532942,224.0,18.0,1.3 -2019,5,4,8,30,10.0,229.25046730864884,224.0,18.0,1.3 -2019,5,4,8,45,10.0,229.70556655992996,224.0,18.0,1.3 -2019,5,4,9,0,170.0,484.4232599386834,380.0,19.5,0.0 -2019,5,4,9,15,170.0,491.51201897929434,380.0,19.5,0.0 -2019,5,4,9,30,170.0,498.23055348614434,380.0,19.5,0.0 -2019,5,4,9,45,170.0,504.5500936630269,380.0,19.5,0.0 -2019,5,4,10,0,177.0,564.8147844327169,429.0,20.8,0.3 -2019,5,4,10,15,177.0,570.4810669295744,429.0,20.8,0.3 -2019,5,4,10,30,177.0,575.6532105305217,429.0,20.8,0.3 -2019,5,4,10,45,177.0,580.3090673226179,429.0,20.8,0.3 -2019,5,4,11,0,238.0,645.994523449306,437.0,22.3,2.3 -2019,5,4,11,15,238.0,650.7891720631615,437.0,22.3,2.3 -2019,5,4,11,30,238.0,654.8185444923345,437.0,22.3,2.3 -2019,5,4,11,45,238.0,658.0653863454831,437.0,22.3,2.3 -2019,5,4,12,0,369.0,730.5433951275797,384.0,22.9,0.6 -2019,5,4,12,15,369.0,733.0914807943177,384.0,22.9,0.6 -2019,5,4,12,30,369.0,734.3775791578098,384.0,22.9,0.6 -2019,5,4,12,45,369.0,734.3961829474183,384.0,22.9,0.6 -2019,5,4,13,0,692.0,877.7692982363449,223.0,23.3,4.9 -2019,5,4,13,15,692.0,873.0599543034587,223.0,23.3,4.9 -2019,5,4,13,30,692.0,866.0036752554154,223.0,23.3,4.9 -2019,5,4,13,45,692.0,856.6306771623985,223.0,23.3,4.9 -2019,5,4,14,0,638.0,785.4449995044693,212.0,23.2,3.3 -2019,5,4,14,15,638.0,772.651552762817,212.0,23.2,3.3 -2019,5,4,14,30,638.0,757.8599519913862,212.0,23.2,3.3 -2019,5,4,14,45,638.0,741.1335370955281,212.0,23.2,3.3 -2019,5,4,15,0,688.0,700.5552131792763,150.0,22.7,4.6 -2019,5,4,15,15,688.0,678.5853787840017,150.0,22.7,4.6 -2019,5,4,15,30,688.0,654.7862576538571,150.0,22.7,4.6 -2019,5,4,15,45,688.0,629.2597612792295,150.0,22.7,4.6 -2019,5,4,16,0,608.0,511.54366338108747,112.0,21.9,4.6 -2019,5,4,16,15,608.0,486.2282463787221,112.0,21.9,4.6 -2019,5,4,16,30,608.0,459.694035555716,112.0,21.9,4.6 -2019,5,4,16,45,608.0,432.05465447641967,112.0,21.9,4.6 -2019,5,4,17,0,399.0,260.24992635911485,69.0,21.6,4.5 -2019,5,4,17,15,399.0,240.89683319222698,69.0,21.6,4.5 -2019,5,4,17,30,399.0,221.05946041556837,69.0,21.6,4.5 -2019,5,4,17,45,399.0,200.8227547048576,69.0,21.6,4.5 -2019,5,4,18,0,27.0,12.529777102757066,5.0,20.4,3.5 -2019,5,4,18,15,27.0,11.124013467551517,5.0,20.4,3.5 -2019,5,4,18,30,27.0,9.709065574625285,5.0,20.4,3.5 -2019,5,4,18,45,27.0,8.29099244808264,5.0,20.4,3.5 -2019,5,4,19,0,0.0,0.0,0.0,18.7,2.6 -2019,5,4,19,15,0.0,0.0,0.0,18.7,2.6 -2019,5,4,19,30,0.0,0.0,0.0,18.7,2.6 -2019,5,4,19,45,0.0,0.0,0.0,18.7,2.6 -2019,5,4,20,0,0.0,0.0,0.0,17.1,2.5 -2019,5,4,20,15,0.0,0.0,0.0,17.1,2.5 -2019,5,4,20,30,0.0,0.0,0.0,17.1,2.5 -2019,5,4,20,45,0.0,0.0,0.0,17.1,2.5 -2019,5,4,21,0,0.0,0.0,0.0,16.6,2.1 -2019,5,4,21,15,0.0,0.0,0.0,16.6,2.1 -2019,5,4,21,30,0.0,0.0,0.0,16.6,2.1 -2019,5,4,21,45,0.0,0.0,0.0,16.6,2.1 -2019,5,4,22,0,0.0,0.0,0.0,15.6,1.9 -2019,5,4,22,15,0.0,0.0,0.0,15.6,1.9 -2019,5,4,22,30,0.0,0.0,0.0,15.6,1.9 -2019,5,4,22,45,0.0,0.0,0.0,15.6,1.9 -2019,5,4,23,0,0.0,0.0,0.0,15.5,0.0 -2019,5,4,23,15,0.0,0.0,0.0,15.5,0.0 -2019,5,4,23,30,0.0,0.0,0.0,15.5,0.0 -2019,5,4,23,45,0.0,0.0,0.0,15.5,0.0 -2019,5,5,0,0,0.0,0.0,0.0,14.2,0.0 -2019,5,5,0,15,0.0,0.0,0.0,14.2,0.0 -2019,5,5,0,30,0.0,0.0,0.0,14.2,0.0 -2019,5,5,0,45,0.0,0.0,0.0,14.2,0.0 -2019,5,5,1,0,0.0,0.0,0.0,12.8,0.0 -2019,5,5,1,15,0.0,0.0,0.0,12.8,0.0 -2019,5,5,1,30,0.0,0.0,0.0,12.8,0.0 -2019,5,5,1,45,0.0,0.0,0.0,12.8,0.0 -2019,5,5,2,0,0.0,0.0,0.0,12.7,0.0 -2019,5,5,2,15,0.0,0.0,0.0,12.7,0.0 -2019,5,5,2,30,0.0,0.0,0.0,12.7,0.0 -2019,5,5,2,45,0.0,0.0,0.0,12.7,0.0 -2019,5,5,3,0,0.0,0.0,0.0,12.1,0.0 -2019,5,5,3,15,0.0,0.0,0.0,12.1,0.0 -2019,5,5,3,30,0.0,0.0,0.0,12.1,0.0 -2019,5,5,3,45,0.0,0.0,0.0,12.1,0.0 -2019,5,5,4,0,0.0,0.0,0.0,11.7,0.0 -2019,5,5,4,15,0.0,0.0,0.0,11.7,0.0 -2019,5,5,4,30,0.0,0.0,0.0,11.7,0.0 -2019,5,5,4,45,0.0,0.0,0.0,11.7,0.0 -2019,5,5,5,0,256.0,-9.40559041712769,37.0,12.0,0.2 -2019,5,5,5,15,256.0,2.9932278411409428,37.0,12.0,0.2 -2019,5,5,5,30,256.0,15.702306315487373,37.0,12.0,0.2 -2019,5,5,5,45,256.0,28.66722278075124,37.0,12.0,0.2 -2019,5,5,6,0,470.0,105.87209356594745,97.0,14.2,1.3 -2019,5,5,6,15,470.0,130.30691871353633,97.0,14.2,1.3 -2019,5,5,6,30,470.0,154.90138359421746,97.0,14.2,1.3 -2019,5,5,6,45,470.0,179.55017093356105,97.0,14.2,1.3 -2019,5,5,7,0,603.0,279.4682589288034,142.0,16.4,0.2 -2019,5,5,7,15,603.0,310.8255444039304,142.0,16.4,0.2 -2019,5,5,7,30,603.0,341.84769263606165,142.0,16.4,0.2 -2019,5,5,7,45,603.0,372.4018620238602,142.0,16.4,0.2 -2019,5,5,8,0,685.0,467.76234199406906,172.0,18.5,1.5 -2019,5,5,8,15,685.0,500.96526098056097,172.0,18.5,1.5 -2019,5,5,8,30,685.0,533.200035480955,172.0,18.5,1.5 -2019,5,5,8,45,685.0,564.3286312420672,172.0,18.5,1.5 -2019,5,5,9,0,739.0,644.5020698820558,189.0,20.3,1.6 -2019,5,5,9,15,739.0,675.2721458439353,189.0,20.3,1.6 -2019,5,5,9,30,739.0,704.435193416006,189.0,20.3,1.6 -2019,5,5,9,45,739.0,731.8663319513716,189.0,20.3,1.6 -2019,5,5,10,0,773.0,791.6013248457648,197.0,22.4,2.2 -2019,5,5,10,15,773.0,816.3110143139722,197.0,22.4,2.2 -2019,5,5,10,30,773.0,838.865848517044,197.0,22.4,2.2 -2019,5,5,10,45,773.0,859.1692441922413,197.0,22.4,2.2 -2019,5,5,11,0,787.0,891.4523439815395,199.0,24.2,2.8 -2019,5,5,11,15,787.0,907.2836738074471,199.0,24.2,2.8 -2019,5,5,11,30,787.0,920.5881574213911,199.0,24.2,2.8 -2019,5,5,11,45,787.0,931.308822981995,199.0,24.2,2.8 -2019,5,5,12,0,783.0,934.6366129511572,198.0,26.2,4.2 -2019,5,5,12,15,783.0,940.035599655965,198.0,26.2,4.2 -2019,5,5,12,30,783.0,942.7606367519347,198.0,26.2,4.2 -2019,5,5,12,45,783.0,942.800055211866,198.0,26.2,4.2 -2019,5,5,13,0,760.0,914.3535141025478,194.0,27.0,5.2 -2019,5,5,13,15,760.0,909.1889848218967,194.0,27.0,5.2 -2019,5,5,13,30,760.0,901.450675563662,194.0,27.0,5.2 -2019,5,5,13,45,760.0,891.1717229560944,194.0,27.0,5.2 -2019,5,5,14,0,717.0,828.673729695406,183.0,25.5,6.2 -2019,5,5,14,15,717.0,814.3172196331078,183.0,25.5,6.2 -2019,5,5,14,30,717.0,797.7184273294539,183.0,25.5,6.2 -2019,5,5,14,45,717.0,778.9484313613816,183.0,25.5,6.2 -2019,5,5,15,0,651.0,682.1506731301877,160.0,24.9,6.2 -2019,5,5,15,15,651.0,661.3928326179656,160.0,24.9,6.2 -2019,5,5,15,30,651.0,638.906620302371,160.0,24.9,6.2 -2019,5,5,15,45,651.0,614.7883255966857,160.0,24.9,6.2 -2019,5,5,16,0,551.0,486.2209154141205,123.0,23.8,6.2 -2019,5,5,16,15,551.0,463.31245292161066,123.0,23.8,6.2 -2019,5,5,16,30,551.0,439.3010778235672,123.0,23.8,6.2 -2019,5,5,16,45,551.0,414.28961051445333,123.0,23.8,6.2 -2019,5,5,17,0,379.0,253.54260134694593,71.0,23.0,6.0 -2019,5,5,17,15,379.0,235.18653837864983,71.0,23.0,6.0 -2019,5,5,17,30,379.0,216.37114485608228,71.0,23.0,6.0 -2019,5,5,17,45,379.0,197.17699118289858,71.0,23.0,6.0 -2019,5,5,18,0,190.0,68.48388189354833,15.0,20.9,4.0 -2019,5,5,18,15,190.0,58.605973855161366,15.0,20.9,4.0 -2019,5,5,18,30,190.0,48.663530605524286,15.0,20.9,4.0 -2019,5,5,18,45,190.0,38.699127213023694,15.0,20.9,4.0 -2019,5,5,19,0,0.0,0.0,0.0,19.2,3.0 -2019,5,5,19,15,0.0,0.0,0.0,19.2,3.0 -2019,5,5,19,30,0.0,0.0,0.0,19.2,3.0 -2019,5,5,19,45,0.0,0.0,0.0,19.2,3.0 -2019,5,5,20,0,0.0,0.0,0.0,17.7,2.5 -2019,5,5,20,15,0.0,0.0,0.0,17.7,2.5 -2019,5,5,20,30,0.0,0.0,0.0,17.7,2.5 -2019,5,5,20,45,0.0,0.0,0.0,17.7,2.5 -2019,5,5,21,0,0.0,0.0,0.0,17.1,1.9 -2019,5,5,21,15,0.0,0.0,0.0,17.1,1.9 -2019,5,5,21,30,0.0,0.0,0.0,17.1,1.9 -2019,5,5,21,45,0.0,0.0,0.0,17.1,1.9 -2019,5,5,22,0,0.0,0.0,0.0,16.6,0.0 -2019,5,5,22,15,0.0,0.0,0.0,16.6,0.0 -2019,5,5,22,30,0.0,0.0,0.0,16.6,0.0 -2019,5,5,22,45,0.0,0.0,0.0,16.6,0.0 -2019,5,5,23,0,0.0,0.0,0.0,16.0,0.0 -2019,5,5,23,15,0.0,0.0,0.0,16.0,0.0 -2019,5,5,23,30,0.0,0.0,0.0,16.0,0.0 -2019,5,5,23,45,0.0,0.0,0.0,16.0,0.0 -2019,5,6,0,0,0.0,0.0,0.0,15.5,0.0 -2019,5,6,0,15,0.0,0.0,0.0,15.5,0.0 -2019,5,6,0,30,0.0,0.0,0.0,15.5,0.0 -2019,5,6,0,45,0.0,0.0,0.0,15.5,0.0 -2019,5,6,1,0,0.0,0.0,0.0,14.3,0.0 -2019,5,6,1,15,0.0,0.0,0.0,14.3,0.0 -2019,5,6,1,30,0.0,0.0,0.0,14.3,0.0 -2019,5,6,1,45,0.0,0.0,0.0,14.3,0.0 -2019,5,6,2,0,0.0,0.0,0.0,13.3,0.0 -2019,5,6,2,15,0.0,0.0,0.0,13.3,0.0 -2019,5,6,2,30,0.0,0.0,0.0,13.3,0.0 -2019,5,6,2,45,0.0,0.0,0.0,13.3,0.0 -2019,5,6,3,0,0.0,0.0,0.0,13.2,0.0 -2019,5,6,3,15,0.0,0.0,0.0,13.2,0.0 -2019,5,6,3,30,0.0,0.0,0.0,13.2,0.0 -2019,5,6,3,45,0.0,0.0,0.0,13.2,0.0 -2019,5,6,4,0,0.0,0.0,0.0,12.3,0.0 -2019,5,6,4,15,0.0,0.0,0.0,12.3,0.0 -2019,5,6,4,30,0.0,0.0,0.0,12.3,0.0 -2019,5,6,4,45,0.0,0.0,0.0,12.3,0.0 -2019,5,6,5,0,260.0,-9.286489995754465,37.0,13.0,0.0 -2019,5,6,5,15,260.0,3.287517017678951,37.0,13.0,0.0 -2019,5,6,5,30,260.0,16.17616806021983,37.0,13.0,0.0 -2019,5,6,5,45,260.0,29.324271949402153,37.0,13.0,0.0 -2019,5,6,6,0,262.0,124.71918438188386,119.0,14.1,0.2 -2019,5,6,6,15,262.0,138.3202423136362,119.0,14.1,0.2 -2019,5,6,6,30,262.0,152.01015986459524,119.0,14.1,0.2 -2019,5,6,6,45,262.0,165.7303147060935,119.0,14.1,0.2 -2019,5,6,7,0,416.0,278.9371499693021,183.0,15.9,1.6 -2019,5,6,7,15,416.0,300.53818194163654,183.0,15.9,1.6 -2019,5,6,7,30,416.0,321.9083485762549,183.0,15.9,1.6 -2019,5,6,7,45,416.0,342.95613953882025,183.0,15.9,1.6 -2019,5,6,8,0,474.0,444.7700370905591,239.0,18.0,2.2 -2019,5,6,8,15,474.0,467.7116557929088,239.0,18.0,2.2 -2019,5,6,8,30,474.0,489.9843332597642,239.0,18.0,2.2 -2019,5,6,8,45,474.0,511.4926944668482,239.0,18.0,2.2 -2019,5,6,9,0,541.0,602.5806936379995,268.0,19.7,2.7 -2019,5,6,9,15,541.0,625.0733846113784,268.0,19.7,2.7 -2019,5,6,9,30,541.0,646.3913500818953,268.0,19.7,2.7 -2019,5,6,9,45,541.0,666.4433032486122,268.0,19.7,2.7 -2019,5,6,10,0,637.0,749.1651241198869,258.0,22.0,3.7 -2019,5,6,10,15,637.0,769.4974586888025,258.0,22.0,3.7 -2019,5,6,10,30,637.0,788.0566735163833,258.0,22.0,3.7 -2019,5,6,10,45,637.0,804.7632951954753,258.0,22.0,3.7 -2019,5,6,11,0,754.0,879.6868456656669,215.0,24.1,4.1 -2019,5,6,11,15,754.0,894.8320114595962,215.0,24.1,4.1 -2019,5,6,11,30,754.0,907.5598500146397,215.0,24.1,4.1 -2019,5,6,11,45,754.0,917.8158587720912,215.0,24.1,4.1 -2019,5,6,12,0,876.0,982.5267388021996,157.0,25.7,4.2 -2019,5,6,12,15,876.0,988.5580900823654,157.0,25.7,4.2 -2019,5,6,12,30,876.0,991.6023013160475,157.0,25.7,4.2 -2019,5,6,12,45,876.0,991.6463367233872,157.0,25.7,4.2 -2019,5,6,13,0,839.0,957.561548507067,161.0,26.0,4.9 -2019,5,6,13,15,839.0,951.8685753771255,161.0,26.0,4.9 -2019,5,6,13,30,839.0,943.3384685107835,161.0,26.0,4.9 -2019,5,6,13,45,839.0,932.0077551352085,161.0,26.0,4.9 -2019,5,6,14,0,742.0,843.4139650627072,174.0,24.8,7.3 -2019,5,6,14,15,742.0,828.5787566900935,174.0,24.8,7.3 -2019,5,6,14,30,742.0,811.4265002231745,174.0,24.8,7.3 -2019,5,6,14,45,742.0,792.0306442574039,174.0,24.8,7.3 -2019,5,6,15,0,605.0,660.3435554172082,174.0,23.8,7.5 -2019,5,6,15,15,605.0,641.0808812569486,174.0,23.8,7.5 -2019,5,6,15,30,605.0,620.2143281740939,174.0,23.8,7.5 -2019,5,6,15,45,605.0,597.8332499524365,174.0,23.8,7.5 -2019,5,6,16,0,486.0,456.3492133904041,135.0,22.4,6.2 -2019,5,6,16,15,486.0,436.17295485631286,135.0,22.4,6.2 -2019,5,6,16,30,486.0,415.0253238489694,135.0,22.4,6.2 -2019,5,6,16,45,486.0,392.9968777709905,135.0,22.4,6.2 -2019,5,6,17,0,347.0,242.91797365471533,75.0,21.6,4.8 -2019,5,6,17,15,347.0,226.13651044832537,75.0,21.6,4.8 -2019,5,6,17,30,347.0,208.93511848001123,75.0,21.6,4.8 -2019,5,6,17,45,347.0,191.38745675098713,75.0,21.6,4.8 -2019,5,6,18,0,337.0,99.72807145073277,4.0,20.3,2.7 -2019,5,6,18,15,337.0,82.23358090492917,4.0,20.3,2.7 -2019,5,6,18,30,337.0,64.62479382602379,4.0,20.3,2.7 -2019,5,6,18,45,337.0,46.97711374363869,4.0,20.3,2.7 -2019,5,6,19,0,0.0,0.0,0.0,18.0,3.0 -2019,5,6,19,15,0.0,0.0,0.0,18.0,3.0 -2019,5,6,19,30,0.0,0.0,0.0,18.0,3.0 -2019,5,6,19,45,0.0,0.0,0.0,18.0,3.0 -2019,5,6,20,0,0.0,0.0,0.0,16.0,2.5 -2019,5,6,20,15,0.0,0.0,0.0,16.0,2.5 -2019,5,6,20,30,0.0,0.0,0.0,16.0,2.5 -2019,5,6,20,45,0.0,0.0,0.0,16.0,2.5 -2019,5,6,21,0,0.0,0.0,0.0,15.0,2.0 -2019,5,6,21,15,0.0,0.0,0.0,15.0,2.0 -2019,5,6,21,30,0.0,0.0,0.0,15.0,2.0 -2019,5,6,21,45,0.0,0.0,0.0,15.0,2.0 -2019,5,6,22,0,0.0,0.0,0.0,14.9,1.3 -2019,5,6,22,15,0.0,0.0,0.0,14.9,1.3 -2019,5,6,22,30,0.0,0.0,0.0,14.9,1.3 -2019,5,6,22,45,0.0,0.0,0.0,14.9,1.3 -2019,5,6,23,0,0.0,0.0,0.0,14.4,0.0 -2019,5,6,23,15,0.0,0.0,0.0,14.4,0.0 -2019,5,6,23,30,0.0,0.0,0.0,14.4,0.0 -2019,5,6,23,45,0.0,0.0,0.0,14.4,0.0 -2019,5,7,0,0,0.0,0.0,0.0,14.2,0.0 -2019,5,7,0,15,0.0,0.0,0.0,14.2,0.0 -2019,5,7,0,30,0.0,0.0,0.0,14.2,0.0 -2019,5,7,0,45,0.0,0.0,0.0,14.2,0.0 -2019,5,7,1,0,0.0,0.0,0.0,12.8,0.0 -2019,5,7,1,15,0.0,0.0,0.0,12.8,0.0 -2019,5,7,1,30,0.0,0.0,0.0,12.8,0.0 -2019,5,7,1,45,0.0,0.0,0.0,12.8,0.0 -2019,5,7,2,0,0.0,0.0,0.0,12.7,0.0 -2019,5,7,2,15,0.0,0.0,0.0,12.7,0.0 -2019,5,7,2,30,0.0,0.0,0.0,12.7,0.0 -2019,5,7,2,45,0.0,0.0,0.0,12.7,0.0 -2019,5,7,3,0,0.0,0.0,0.0,11.8,0.0 -2019,5,7,3,15,0.0,0.0,0.0,11.8,0.0 -2019,5,7,3,30,0.0,0.0,0.0,11.8,0.0 -2019,5,7,3,45,0.0,0.0,0.0,11.8,0.0 -2019,5,7,4,0,0.0,0.0,0.0,12.8,0.0 -2019,5,7,4,15,0.0,0.0,0.0,12.8,0.0 -2019,5,7,4,30,0.0,0.0,0.0,12.8,0.0 -2019,5,7,4,45,0.0,0.0,0.0,12.8,0.0 -2019,5,7,5,0,1.0,14.825174598118206,15.0,12.2,0.0 -2019,5,7,5,15,1.0,14.873464720669222,15.0,12.2,0.0 -2019,5,7,5,30,1.0,14.922963224821212,15.0,12.2,0.0 -2019,5,7,5,45,1.0,14.973458150380246,15.0,12.2,0.0 -2019,5,7,6,0,2.0,49.04946654064592,49.0,12.3,0.4 -2019,5,7,6,15,2.0,49.15313803342772,49.0,12.3,0.4 -2019,5,7,6,30,2.0,49.25748684185787,49.0,12.3,0.4 -2019,5,7,6,45,2.0,49.36206612831874,49.0,12.3,0.4 -2019,5,7,7,0,132.0,250.78425250452642,220.0,14.7,2.2 -2019,5,7,7,15,132.0,257.6283006750728,220.0,14.7,2.2 -2019,5,7,7,30,132.0,264.39920171569224,220.0,14.7,2.2 -2019,5,7,7,45,132.0,271.0679615886411,220.0,14.7,2.2 -2019,5,7,8,0,479.0,447.04004033122186,238.0,17.3,2.7 -2019,5,7,8,15,479.0,470.18941086419807,238.0,17.3,2.7 -2019,5,7,8,30,479.0,492.6637824476163,238.0,17.3,2.7 -2019,5,7,8,45,479.0,514.3669163720278,238.0,17.3,2.7 -2019,5,7,9,0,992.0,710.5077859585688,95.0,22.9,3.2 -2019,5,7,9,15,992.0,751.6903877784797,95.0,22.9,3.2 -2019,5,7,9,30,992.0,790.7221463449396,95.0,22.9,3.2 -2019,5,7,9,45,992.0,827.4359216755021,95.0,22.9,3.2 -2019,5,7,10,0,1018.0,880.7687910718354,94.0,28.1,3.5 -2019,5,7,10,15,1018.0,913.2142222751824,94.0,28.1,3.5 -2019,5,7,10,30,1018.0,942.83018820548,94.0,28.1,3.5 -2019,5,7,10,45,1018.0,969.4898687498885,94.0,28.1,3.5 -2019,5,7,11,0,1052.0,1013.1072852875716,84.0,30.1,3.2 -2019,5,7,11,15,1052.0,1034.2069902763828,84.0,30.1,3.2 -2019,5,7,11,30,1052.0,1051.9389611448883,84.0,30.1,3.2 -2019,5,7,11,45,1052.0,1066.2272668715668,84.0,30.1,3.2 -2019,5,7,12,0,1102.0,1105.207049864034,65.0,30.6,3.8 -2019,5,7,12,15,1102.0,1112.7832261097462,65.0,30.6,3.8 -2019,5,7,12,30,1102.0,1116.6071587185793,65.0,30.6,3.8 -2019,5,7,12,45,1102.0,1116.6624730240412,65.0,30.6,3.8 -2019,5,7,13,0,824.0,951.5843195111704,168.0,30.4,5.2 -2019,5,7,13,15,824.0,946.0013874601883,168.0,30.4,5.2 -2019,5,7,13,30,824.0,937.6361614288311,168.0,30.4,5.2 -2019,5,7,13,45,824.0,926.5244625992177,168.0,30.4,5.2 -2019,5,7,14,0,668.0,804.7243533313748,201.0,28.6,6.4 -2019,5,7,14,15,668.0,791.3883969857068,201.0,28.6,6.4 -2019,5,7,14,30,668.0,775.9695543427681,201.0,28.6,6.4 -2019,5,7,14,45,668.0,758.5338512539,201.0,28.6,6.4 -2019,5,7,15,0,542.0,628.6474924273452,192.0,27.0,7.6 -2019,5,7,15,15,542.0,611.4161764033554,192.0,27.0,7.6 -2019,5,7,15,30,542.0,592.7501195770492,192.0,27.0,7.6 -2019,5,7,15,45,542.0,572.729252869422,192.0,27.0,7.6 -2019,5,7,16,0,445.0,438.111609545926,143.0,25.4,6.9 -2019,5,7,16,15,445.0,419.66475458112217,143.0,25.4,6.9 -2019,5,7,16,30,445.0,400.32978812128516,143.0,25.4,6.9 -2019,5,7,16,45,445.0,380.1895054611541,143.0,25.4,6.9 -2019,5,7,17,0,324.0,234.50779488565246,77.0,24.3,5.8 -2019,5,7,17,15,324.0,218.86179517912325,77.0,24.3,5.8 -2019,5,7,17,30,324.0,202.82427983387868,77.0,24.3,5.8 -2019,5,7,17,45,324.0,186.46392395275132,77.0,24.3,5.8 -2019,5,7,18,0,162.0,58.425392545655775,12.0,23.1,3.1 -2019,5,7,18,15,162.0,50.02800163032982,12.0,23.1,3.1 -2019,5,7,18,30,162.0,41.575748147488135,12.0,23.1,3.1 -2019,5,7,18,45,162.0,33.10482594415783,12.0,23.1,3.1 -2019,5,7,19,0,0.0,0.0,0.0,21.6,2.9 -2019,5,7,19,15,0.0,0.0,0.0,21.6,2.9 -2019,5,7,19,30,0.0,0.0,0.0,21.6,2.9 -2019,5,7,19,45,0.0,0.0,0.0,21.6,2.9 -2019,5,7,20,0,0.0,0.0,0.0,20.9,1.5 -2019,5,7,20,15,0.0,0.0,0.0,20.9,1.5 -2019,5,7,20,30,0.0,0.0,0.0,20.9,1.5 -2019,5,7,20,45,0.0,0.0,0.0,20.9,1.5 -2019,5,7,21,0,0.0,0.0,0.0,19.4,1.5 -2019,5,7,21,15,0.0,0.0,0.0,19.4,1.5 -2019,5,7,21,30,0.0,0.0,0.0,19.4,1.5 -2019,5,7,21,45,0.0,0.0,0.0,19.4,1.5 -2019,5,7,22,0,0.0,0.0,0.0,19.3,1.3 -2019,5,7,22,15,0.0,0.0,0.0,19.3,1.3 -2019,5,7,22,30,0.0,0.0,0.0,19.3,1.3 -2019,5,7,22,45,0.0,0.0,0.0,19.3,1.3 -2019,5,7,23,0,0.0,0.0,0.0,18.0,0.0 -2019,5,7,23,15,0.0,0.0,0.0,18.0,0.0 -2019,5,7,23,30,0.0,0.0,0.0,18.0,0.0 -2019,5,7,23,45,0.0,0.0,0.0,18.0,0.0 -2019,5,8,0,0,0.0,0.0,0.0,16.0,0.0 -2019,5,8,0,15,0.0,0.0,0.0,16.0,0.0 -2019,5,8,0,30,0.0,0.0,0.0,16.0,0.0 -2019,5,8,0,45,0.0,0.0,0.0,16.0,0.0 -2019,5,8,1,0,0.0,0.0,0.0,14.9,0.0 -2019,5,8,1,15,0.0,0.0,0.0,14.9,0.0 -2019,5,8,1,30,0.0,0.0,0.0,14.9,0.0 -2019,5,8,1,45,0.0,0.0,0.0,14.9,0.0 -2019,5,8,2,0,0.0,0.0,0.0,13.8,0.0 -2019,5,8,2,15,0.0,0.0,0.0,13.8,0.0 -2019,5,8,2,30,0.0,0.0,0.0,13.8,0.0 -2019,5,8,2,45,0.0,0.0,0.0,13.8,0.0 -2019,5,8,3,0,0.0,0.0,0.0,12.7,0.0 -2019,5,8,3,15,0.0,0.0,0.0,12.7,0.0 -2019,5,8,3,30,0.0,0.0,0.0,12.7,0.0 -2019,5,8,3,45,0.0,0.0,0.0,12.7,0.0 -2019,5,8,4,0,0.0,0.0,0.0,12.3,0.0 -2019,5,8,4,15,0.0,0.0,0.0,12.3,0.0 -2019,5,8,4,30,0.0,0.0,0.0,12.3,0.0 -2019,5,8,4,45,0.0,0.0,0.0,12.3,0.0 -2019,5,8,5,0,266.0,-6.665394519531908,39.0,13.6,0.0 -2019,5,8,5,15,266.0,6.160763719963477,39.0,13.6,0.0 -2019,5,8,5,30,266.0,19.307875661976492,39.0,13.6,0.0 -2019,5,8,5,45,266.0,32.719643354790065,39.0,13.6,0.0 -2019,5,8,6,0,475.0,111.10470633952069,98.0,15.7,0.2 -2019,5,8,6,15,475.0,135.6902386296336,98.0,15.7,0.2 -2019,5,8,6,30,475.0,160.4363952659008,98.0,15.7,0.2 -2019,5,8,6,45,475.0,185.23720940650668,98.0,15.7,0.2 -2019,5,8,7,0,505.0,285.05931048356763,166.0,17.0,1.6 -2019,5,8,7,15,505.0,311.20422064874595,166.0,17.0,1.6 -2019,5,8,7,30,505.0,337.0697018717065,166.0,17.0,1.6 -2019,5,8,7,45,505.0,362.5449941909119,166.0,17.0,1.6 -2019,5,8,8,0,610.0,465.5798320417902,198.0,19.9,2.7 -2019,5,8,8,15,610.0,495.01660223332465,198.0,19.9,2.7 -2019,5,8,8,30,610.0,523.5950428677179,198.0,19.9,2.7 -2019,5,8,8,45,610.0,551.1927766747314,198.0,19.9,2.7 -2019,5,8,9,0,911.0,691.0476577284011,124.0,24.6,3.5 -2019,5,8,9,15,911.0,728.8115834808044,124.0,24.6,3.5 -2019,5,8,9,30,911.0,764.6032131339088,124.0,24.6,3.5 -2019,5,8,9,45,911.0,798.2692814347088,124.0,24.6,3.5 -2019,5,8,10,0,1018.0,882.5484153262521,94.0,30.4,2.8 -2019,5,8,10,15,1018.0,914.9458184416537,94.0,30.4,2.8 -2019,5,8,10,30,1018.0,944.5179446643701,94.0,30.4,2.8 -2019,5,8,10,45,1018.0,971.1381616099206,94.0,30.4,2.8 -2019,5,8,11,0,1052.0,1014.7745444484343,84.0,33.4,4.3 -2019,5,8,11,15,1052.0,1035.8430161187403,84.0,33.4,4.3 -2019,5,8,11,30,1052.0,1053.5487388338156,84.0,33.4,4.3 -2019,5,8,11,45,1052.0,1067.8158939707632,84.0,33.4,4.3 -2019,5,8,12,0,1118.0,1115.9812044599857,59.0,34.1,2.1 -2019,5,8,12,15,1118.0,1123.6560019991277,59.0,34.1,2.1 -2019,5,8,12,30,1118.0,1127.5297118527924,59.0,34.1,2.1 -2019,5,8,12,45,1118.0,1127.5857462006834,59.0,34.1,2.1 -2019,5,8,13,0,654.0,861.8933879894537,239.0,32.3,2.4 -2019,5,8,13,15,654.0,857.4688337008059,239.0,32.3,2.4 -2019,5,8,13,30,654.0,850.8392712460671,239.0,32.3,2.4 -2019,5,8,13,45,654.0,842.0330894294572,239.0,32.3,2.4 -2019,5,8,14,0,641.0,792.3186643863775,212.0,32.6,4.7 -2019,5,8,14,15,641.0,779.5406791605192,212.0,32.6,4.7 -2019,5,8,14,30,641.0,764.7669547732687,212.0,32.6,4.7 -2019,5,8,14,45,641.0,748.060754580556,212.0,32.6,4.7 -2019,5,8,15,0,616.0,668.3105587072938,171.0,31.4,5.6 -2019,5,8,15,15,616.0,648.7556171401477,171.0,31.4,5.6 -2019,5,8,15,30,616.0,627.5724614241669,171.0,31.4,5.6 -2019,5,8,15,45,616.0,604.8518010842249,171.0,31.4,5.6 -2019,5,8,16,0,672.0,548.935559428403,102.0,29.9,4.8 -2019,5,8,16,15,672.0,521.1199714484414,102.0,29.9,4.8 -2019,5,8,16,30,672.0,491.965220588236,102.0,29.9,4.8 -2019,5,8,16,45,672.0,461.5961519668888,102.0,29.9,4.8 -2019,5,8,17,0,423.0,276.55417988571367,70.0,28.6,4.2 -2019,5,8,17,15,423.0,256.15769516651596,70.0,28.6,4.2 -2019,5,8,17,30,423.0,235.2508216647434,70.0,28.6,4.2 -2019,5,8,17,45,423.0,213.9230858224121,70.0,28.6,4.2 -2019,5,8,18,0,406.0,121.35206006891032,4.0,26.5,4.4 -2019,5,8,18,15,406.0,100.33789983778225,4.0,26.5,4.4 -2019,5,8,18,30,406.0,79.18644806025709,4.0,26.5,4.4 -2019,5,8,18,45,406.0,57.988278500075936,4.0,26.5,4.4 -2019,5,8,19,0,0.0,0.0,0.0,24.8,2.5 -2019,5,8,19,15,0.0,0.0,0.0,24.8,2.5 -2019,5,8,19,30,0.0,0.0,0.0,24.8,2.5 -2019,5,8,19,45,0.0,0.0,0.0,24.8,2.5 -2019,5,8,20,0,0.0,0.0,0.0,23.1,1.3 -2019,5,8,20,15,0.0,0.0,0.0,23.1,1.3 -2019,5,8,20,30,0.0,0.0,0.0,23.1,1.3 -2019,5,8,20,45,0.0,0.0,0.0,23.1,1.3 -2019,5,8,21,0,0.0,0.0,0.0,21.6,0.0 -2019,5,8,21,15,0.0,0.0,0.0,21.6,0.0 -2019,5,8,21,30,0.0,0.0,0.0,21.6,0.0 -2019,5,8,21,45,0.0,0.0,0.0,21.6,0.0 -2019,5,8,22,0,0.0,0.0,0.0,20.9,0.0 -2019,5,8,22,15,0.0,0.0,0.0,20.9,0.0 -2019,5,8,22,30,0.0,0.0,0.0,20.9,0.0 -2019,5,8,22,45,0.0,0.0,0.0,20.9,0.0 -2019,5,8,23,0,0.0,0.0,0.0,19.2,0.0 -2019,5,8,23,15,0.0,0.0,0.0,19.2,0.0 -2019,5,8,23,30,0.0,0.0,0.0,19.2,0.0 -2019,5,8,23,45,0.0,0.0,0.0,19.2,0.0 -2019,5,9,0,0,0.0,0.0,0.0,17.5,0.0 -2019,5,9,0,15,0.0,0.0,0.0,17.5,0.0 -2019,5,9,0,30,0.0,0.0,0.0,17.5,0.0 -2019,5,9,0,45,0.0,0.0,0.0,17.5,0.0 -2019,5,9,1,0,0.0,0.0,0.0,15.1,0.0 -2019,5,9,1,15,0.0,0.0,0.0,15.1,0.0 -2019,5,9,1,30,0.0,0.0,0.0,15.1,0.0 -2019,5,9,1,45,0.0,0.0,0.0,15.1,0.0 -2019,5,9,2,0,0.0,0.0,0.0,16.0,0.2 -2019,5,9,2,15,0.0,0.0,0.0,16.0,0.2 -2019,5,9,2,30,0.0,0.0,0.0,16.0,0.2 -2019,5,9,2,45,0.0,0.0,0.0,16.0,0.2 -2019,5,9,3,0,0.0,0.0,0.0,15.6,1.9 -2019,5,9,3,15,0.0,0.0,0.0,15.6,1.9 -2019,5,9,3,30,0.0,0.0,0.0,15.6,1.9 -2019,5,9,3,45,0.0,0.0,0.0,15.6,1.9 -2019,5,9,4,0,0.0,0.0,0.0,15.7,0.0 -2019,5,9,4,15,0.0,0.0,0.0,15.7,0.0 -2019,5,9,4,30,0.0,0.0,0.0,15.7,0.0 -2019,5,9,4,45,0.0,0.0,0.0,15.7,0.0 -2019,5,9,5,0,319.0,-15.774862604970515,38.0,16.5,0.0 -2019,5,9,5,15,319.0,-0.4159049964326371,38.0,16.5,0.0 -2019,5,9,5,30,319.0,15.327385490214542,38.0,16.5,0.0 -2019,5,9,5,45,319.0,31.38759366815332,38.0,16.5,0.0 -2019,5,9,6,0,567.0,104.23386237185865,87.0,19.7,0.0 -2019,5,9,6,15,567.0,133.53774501521917,87.0,19.7,0.0 -2019,5,9,6,30,567.0,163.03307834322737,87.0,19.7,0.0 -2019,5,9,6,45,567.0,192.59355881036703,87.0,19.7,0.0 -2019,5,9,7,0,717.0,288.8313880018825,118.0,22.5,0.0 -2019,5,9,7,15,717.0,325.89698787270055,118.0,22.5,0.0 -2019,5,9,7,30,717.0,362.56644175184647,118.0,22.5,0.0 -2019,5,9,7,45,717.0,398.68272540821266,118.0,22.5,0.0 -2019,5,9,8,0,809.0,490.6496057834625,134.0,25.5,0.4 -2019,5,9,8,15,809.0,529.6316801523881,134.0,25.5,0.4 -2019,5,9,8,30,809.0,567.477099025082,134.0,25.5,0.4 -2019,5,9,8,45,809.0,604.0238025077962,134.0,25.5,0.4 -2019,5,9,9,0,869.0,682.5774891875775,140.0,29.2,3.1 -2019,5,9,9,15,869.0,718.5470086821917,140.0,29.2,3.1 -2019,5,9,9,30,869.0,752.637948511704,140.0,29.2,3.1 -2019,5,9,9,45,869.0,784.7043260380283,140.0,29.2,3.1 -2019,5,9,10,0,905.0,842.555799124577,140.0,31.9,3.3 -2019,5,9,10,15,905.0,871.3143569013454,140.0,31.9,3.3 -2019,5,9,10,30,905.0,897.5649701844077,140.0,31.9,3.3 -2019,5,9,10,45,905.0,921.1952298176183,140.0,31.9,3.3 -2019,5,9,11,0,920.0,954.3984879661093,139.0,33.2,4.5 -2019,5,9,11,15,920.0,972.7960900656897,139.0,33.2,4.5 -2019,5,9,11,30,920.0,988.2572419942641,139.0,33.2,4.5 -2019,5,9,11,45,920.0,1000.715736725635,139.0,33.2,4.5 -2019,5,9,12,0,915.0,1005.383886892957,139.0,32.1,4.3 -2019,5,9,12,15,915.0,1011.655833027421,139.0,32.1,4.3 -2019,5,9,12,30,915.0,1014.8214799931968,139.0,32.1,4.3 -2019,5,9,12,45,915.0,1014.8672720039775,139.0,32.1,4.3 -2019,5,9,13,0,891.0,989.9000814835705,140.0,31.6,6.3 -2019,5,9,13,15,891.0,983.881064266554,140.0,31.6,6.3 -2019,5,9,13,30,891.0,974.8624269184393,140.0,31.6,6.3 -2019,5,9,13,45,891.0,962.8827886289171,140.0,31.6,6.3 -2019,5,9,14,0,844.0,903.3720203734655,138.0,30.5,7.1 -2019,5,9,14,15,844.0,886.5722672213815,138.0,30.5,7.1 -2019,5,9,14,30,844.0,867.1486320820587,138.0,30.5,7.1 -2019,5,9,14,45,844.0,845.1842899431343,138.0,30.5,7.1 -2019,5,9,15,0,771.0,751.7182592684111,128.0,29.7,6.1 -2019,5,9,15,15,771.0,727.279098398079,128.0,29.7,6.1 -2019,5,9,15,30,771.0,700.8050458673406,128.0,29.7,6.1 -2019,5,9,15,45,771.0,672.4094676335029,128.0,29.7,6.1 -2019,5,9,16,0,658.0,543.8492662939443,105.0,28.8,5.6 -2019,5,9,16,15,658.0,516.653520881867,105.0,28.8,5.6 -2019,5,9,16,30,658.0,488.14845449542617,105.0,28.8,5.6 -2019,5,9,16,45,658.0,458.45613020506596,105.0,28.8,5.6 -2019,5,9,17,0,463.0,295.06962132546295,68.0,27.5,5.0 -2019,5,9,17,15,463.0,272.77746655194255,68.0,27.5,5.0 -2019,5,9,17,30,463.0,249.92748694279624,68.0,27.5,5.0 -2019,5,9,17,45,463.0,226.61752961870332,68.0,27.5,5.0 -2019,5,9,18,0,232.0,84.61943724355103,17.0,25.4,3.6 -2019,5,9,18,15,232.0,72.62913605614422,17.0,25.4,3.6 -2019,5,9,18,30,232.0,60.560498786130246,17.0,25.4,3.6 -2019,5,9,18,45,232.0,48.465205191110144,17.0,25.4,3.6 -2019,5,9,19,0,0.0,0.0,0.0,23.6,0.2 -2019,5,9,19,15,0.0,0.0,0.0,23.6,0.2 -2019,5,9,19,30,0.0,0.0,0.0,23.6,0.2 -2019,5,9,19,45,0.0,0.0,0.0,23.6,0.2 -2019,5,9,20,0,0.0,0.0,0.0,21.5,1.3 -2019,5,9,20,15,0.0,0.0,0.0,21.5,1.3 -2019,5,9,20,30,0.0,0.0,0.0,21.5,1.3 -2019,5,9,20,45,0.0,0.0,0.0,21.5,1.3 -2019,5,9,21,0,0.0,0.0,0.0,19.9,0.0 -2019,5,9,21,15,0.0,0.0,0.0,19.9,0.0 -2019,5,9,21,30,0.0,0.0,0.0,19.9,0.0 -2019,5,9,21,45,0.0,0.0,0.0,19.9,0.0 -2019,5,9,22,0,0.0,0.0,0.0,18.7,0.0 -2019,5,9,22,15,0.0,0.0,0.0,18.7,0.0 -2019,5,9,22,30,0.0,0.0,0.0,18.7,0.0 -2019,5,9,22,45,0.0,0.0,0.0,18.7,0.0 -2019,5,9,23,0,0.0,0.0,0.0,17.1,0.2 -2019,5,9,23,15,0.0,0.0,0.0,17.1,0.2 -2019,5,9,23,30,0.0,0.0,0.0,17.1,0.2 -2019,5,9,23,45,0.0,0.0,0.0,17.1,0.2 -2019,5,10,0,0,0.0,0.0,0.0,16.5,1.9 -2019,5,10,0,15,0.0,0.0,0.0,16.5,1.9 -2019,5,10,0,30,0.0,0.0,0.0,16.5,1.9 -2019,5,10,0,45,0.0,0.0,0.0,16.5,1.9 -2019,5,10,1,0,0.0,0.0,0.0,14.9,0.0 -2019,5,10,1,15,0.0,0.0,0.0,14.9,0.0 -2019,5,10,1,30,0.0,0.0,0.0,14.9,0.0 -2019,5,10,1,45,0.0,0.0,0.0,14.9,0.0 -2019,5,10,2,0,0.0,0.0,0.0,14.4,0.0 -2019,5,10,2,15,0.0,0.0,0.0,14.4,0.0 -2019,5,10,2,30,0.0,0.0,0.0,14.4,0.0 -2019,5,10,2,45,0.0,0.0,0.0,14.4,0.0 -2019,5,10,3,0,0.0,0.0,0.0,14.3,0.0 -2019,5,10,3,15,0.0,0.0,0.0,14.3,0.0 -2019,5,10,3,30,0.0,0.0,0.0,14.3,0.0 -2019,5,10,3,45,0.0,0.0,0.0,14.3,0.0 -2019,5,10,4,0,0.0,0.0,0.0,13.2,0.5 -2019,5,10,4,15,0.0,0.0,0.0,13.2,0.5 -2019,5,10,4,30,0.0,0.0,0.0,13.2,0.5 -2019,5,10,4,45,0.0,0.0,0.0,13.2,0.5 -2019,5,10,5,0,1.0,15.834476921582253,16.0,13.9,0.2 -2019,5,10,5,15,1.0,15.882552816323775,16.0,13.9,0.2 -2019,5,10,5,30,1.0,15.931831731964541,16.0,13.9,0.2 -2019,5,10,5,45,1.0,15.982102648622343,16.0,13.9,0.2 -2019,5,10,6,0,2.0,50.066300597028636,50.0,14.1,0.5 -2019,5,10,6,15,2.0,50.169512175533306,50.0,14.1,0.5 -2019,5,10,6,30,2.0,50.273398064934206,50.0,14.1,0.5 -2019,5,10,6,45,2.0,50.37751340990407,50.0,14.1,0.5 -2019,5,10,7,0,496.0,288.39026839281235,169.0,17.7,0.0 -2019,5,10,7,15,496.0,313.9932103088796,169.0,17.7,0.0 -2019,5,10,7,30,496.0,339.32251567649183,169.0,17.7,0.0 -2019,5,10,7,45,496.0,364.26972052143924,169.0,17.7,0.0 -2019,5,10,8,0,716.0,481.18799578860813,164.0,21.4,0.4 -2019,5,10,8,15,716.0,515.6377211000943,164.0,21.4,0.4 -2019,5,10,8,30,716.0,549.0829470294183,164.0,21.4,0.4 -2019,5,10,8,45,716.0,581.3804559845463,164.0,21.4,0.4 -2019,5,10,9,0,880.0,687.0962453420128,136.0,23.5,3.1 -2019,5,10,9,15,880.0,723.4671286856831,136.0,23.5,3.1 -2019,5,10,9,30,880.0,757.9384703392998,136.0,23.5,3.1 -2019,5,10,9,45,880.0,790.3626587257656,136.0,23.5,3.1 -2019,5,10,10,0,786.0,802.4730305853981,191.0,25.2,3.1 -2019,5,10,10,15,786.0,827.4130844137622,191.0,25.2,3.1 -2019,5,10,10,30,786.0,850.1781936167006,191.0,25.2,3.1 -2019,5,10,10,45,786.0,870.6708745016429,191.0,25.2,3.1 -2019,5,10,11,0,714.0,866.8824544831346,233.0,26.8,3.0 -2019,5,10,11,15,714.0,881.1394470503272,233.0,26.8,3.0 -2019,5,10,11,30,714.0,893.1208741370098,233.0,26.8,3.0 -2019,5,10,11,45,714.0,902.775429432975,233.0,26.8,3.0 -2019,5,10,12,0,700.0,900.7860496571091,237.0,27.3,2.4 -2019,5,10,12,15,700.0,905.5771534873791,237.0,27.3,2.4 -2019,5,10,12,30,700.0,907.9953731241309,237.0,27.3,2.4 -2019,5,10,12,45,700.0,908.0303533796281,237.0,27.3,2.4 -2019,5,10,13,0,778.0,930.192218274643,187.0,28.2,4.6 -2019,5,10,13,15,778.0,924.9443394854841,187.0,28.2,4.6 -2019,5,10,13,30,778.0,917.081142897097,187.0,28.2,4.6 -2019,5,10,13,45,778.0,906.636299924453,187.0,28.2,4.6 -2019,5,10,14,0,709.0,830.982090906139,187.0,26.9,4.8 -2019,5,10,14,15,709.0,816.8904033291728,187.0,26.9,4.8 -2019,5,10,14,30,709.0,800.5977950084152,187.0,26.9,4.8 -2019,5,10,14,45,709.0,782.1740333939824,187.0,26.9,4.8 -2019,5,10,15,0,639.0,683.9577286030269,166.0,25.8,6.2 -2019,5,10,15,15,639.0,663.7327026666233,166.0,25.8,6.2 -2019,5,10,15,30,639.0,641.8236689679298,166.0,25.8,6.2 -2019,5,10,15,45,639.0,618.3244453527805,166.0,25.8,6.2 -2019,5,10,16,0,437.0,438.24676530298285,146.0,24.1,5.9 -2019,5,10,16,15,437.0,420.2119031459141,146.0,24.1,5.9 -2019,5,10,16,30,437.0,401.3087646120002,146.0,24.1,5.9 -2019,5,10,16,45,437.0,381.61829584250574,146.0,24.1,5.9 -2019,5,10,17,0,254.0,209.09634523958798,84.0,23.0,5.6 -2019,5,10,17,15,254.0,196.88506797524153,84.0,23.0,5.6 -2019,5,10,17,30,254.0,184.36822340248682,84.0,23.0,5.6 -2019,5,10,17,45,254.0,171.59941057140537,84.0,23.0,5.6 -2019,5,10,18,0,212.0,69.29236688879854,7.0,20.2,4.5 -2019,5,10,18,15,212.0,58.35193956730358,7.0,20.2,4.5 -2019,5,10,18,30,212.0,47.34003529080812,7.0,20.2,4.5 -2019,5,10,18,45,212.0,36.303808724002366,7.0,20.2,4.5 -2019,5,10,19,0,0.0,0.0,0.0,17.1,3.4 -2019,5,10,19,15,0.0,0.0,0.0,17.1,3.4 -2019,5,10,19,30,0.0,0.0,0.0,17.1,3.4 -2019,5,10,19,45,0.0,0.0,0.0,17.1,3.4 -2019,5,10,20,0,0.0,0.0,0.0,16.0,1.9 -2019,5,10,20,15,0.0,0.0,0.0,16.0,1.9 -2019,5,10,20,30,0.0,0.0,0.0,16.0,1.9 -2019,5,10,20,45,0.0,0.0,0.0,16.0,1.9 -2019,5,10,21,0,0.0,0.0,0.0,15.0,0.0 -2019,5,10,21,15,0.0,0.0,0.0,15.0,0.0 -2019,5,10,21,30,0.0,0.0,0.0,15.0,0.0 -2019,5,10,21,45,0.0,0.0,0.0,15.0,0.0 -2019,5,10,22,0,0.0,0.0,0.0,14.3,1.9 -2019,5,10,22,15,0.0,0.0,0.0,14.3,1.9 -2019,5,10,22,30,0.0,0.0,0.0,14.3,1.9 -2019,5,10,22,45,0.0,0.0,0.0,14.3,1.9 -2019,5,10,23,0,0.0,0.0,0.0,13.3,0.2 -2019,5,10,23,15,0.0,0.0,0.0,13.3,0.2 -2019,5,10,23,30,0.0,0.0,0.0,13.3,0.2 -2019,5,10,23,45,0.0,0.0,0.0,13.3,0.2 -2019,5,11,0,0,0.0,0.0,0.0,13.2,1.7 -2019,5,11,0,15,0.0,0.0,0.0,13.2,1.7 -2019,5,11,0,30,0.0,0.0,0.0,13.2,1.7 -2019,5,11,0,45,0.0,0.0,0.0,13.2,1.7 -2019,5,11,1,0,0.0,0.0,0.0,13.3,1.5 -2019,5,11,1,15,0.0,0.0,0.0,13.3,1.5 -2019,5,11,1,30,0.0,0.0,0.0,13.3,1.5 -2019,5,11,1,45,0.0,0.0,0.0,13.3,1.5 -2019,5,11,2,0,0.0,0.0,0.0,13.3,2.3 -2019,5,11,2,15,0.0,0.0,0.0,13.3,2.3 -2019,5,11,2,30,0.0,0.0,0.0,13.3,2.3 -2019,5,11,2,45,0.0,0.0,0.0,13.3,2.3 -2019,5,11,3,0,0.0,0.0,0.0,13.4,0.2 -2019,5,11,3,15,0.0,0.0,0.0,13.4,0.2 -2019,5,11,3,30,0.0,0.0,0.0,13.4,0.2 -2019,5,11,3,45,0.0,0.0,0.0,13.4,0.2 -2019,5,11,4,0,0.0,0.0,0.0,13.9,1.5 -2019,5,11,4,15,0.0,0.0,0.0,13.9,1.5 -2019,5,11,4,30,0.0,0.0,0.0,13.9,1.5 -2019,5,11,4,45,0.0,0.0,0.0,13.9,1.5 -2019,5,11,5,0,1.0,15.837474871478598,16.0,13.9,1.0 -2019,5,11,5,15,1.0,15.885479672402647,16.0,13.9,1.0 -2019,5,11,5,30,1.0,15.934685715219047,16.0,13.9,1.0 -2019,5,11,5,45,1.0,15.984882292098206,16.0,13.9,1.0 -2019,5,11,6,0,2.0,50.07170890718322,50.0,14.0,0.0 -2019,5,11,6,15,2.0,50.17476785815672,50.0,14.0,0.0 -2019,5,11,6,30,2.0,50.27850012286694,50.0,14.0,0.0 -2019,5,11,6,45,2.0,50.38246150383112,50.0,14.0,0.0 -2019,5,11,7,0,0.0,69.0,69.0,15.2,0.0 -2019,5,11,7,15,0.0,69.0,69.0,15.2,0.0 -2019,5,11,7,30,0.0,69.0,69.0,15.2,0.0 -2019,5,11,7,45,0.0,69.0,69.0,15.2,0.0 -2019,5,11,8,0,12.0,244.34117684503096,239.0,17.8,2.1 -2019,5,11,8,15,12.0,244.91769273847532,239.0,17.8,2.1 -2019,5,11,8,30,12.0,245.47739834233,239.0,17.8,2.1 -2019,5,11,8,45,12.0,246.01789691127172,239.0,17.8,2.1 -2019,5,11,9,0,2.0,229.25614565790823,228.0,18.0,2.6 -2019,5,11,9,15,2.0,229.33868451858655,228.0,18.0,2.6 -2019,5,11,9,30,2.0,229.41691262317389,228.0,18.0,2.6 -2019,5,11,9,45,2.0,229.49049498691662,228.0,18.0,2.6 -2019,5,11,10,0,472.0,698.951498445441,331.0,20.3,3.1 -2019,5,11,10,15,472.0,713.9060755558157,331.0,20.3,3.1 -2019,5,11,10,30,472.0,727.5565104483926,331.0,20.3,3.1 -2019,5,11,10,45,472.0,739.8443498653083,331.0,20.3,3.1 -2019,5,11,11,0,641.0,837.9969941230727,268.0,22.5,3.0 -2019,5,11,11,15,641.0,850.7774115367858,268.0,22.5,3.0 -2019,5,11,11,30,641.0,861.5179403445333,268.0,22.5,3.0 -2019,5,11,11,45,641.0,870.1725879530441,268.0,22.5,3.0 -2019,5,11,12,0,968.0,1035.2289491886595,116.0,25.1,2.3 -2019,5,11,12,15,968.0,1041.8445637954342,116.0,25.1,2.3 -2019,5,11,12,30,968.0,1045.1836709653126,116.0,25.1,2.3 -2019,5,11,12,45,968.0,1045.2319721287633,116.0,25.1,2.3 -2019,5,11,13,0,1031.0,1072.2550904202749,86.0,26.2,0.5 -2019,5,11,13,15,1031.0,1065.3109233472558,86.0,26.2,0.5 -2019,5,11,13,30,1031.0,1054.906081118324,86.0,26.2,0.5 -2019,5,11,13,45,1031.0,1041.0851188652848,86.0,26.2,0.5 -2019,5,11,14,0,1026.0,1010.3586884502104,77.0,26.6,4.2 -2019,5,11,14,15,1026.0,989.9966417602225,77.0,26.6,4.2 -2019,5,11,14,30,1026.0,966.4543336074911,77.0,26.6,4.2 -2019,5,11,14,45,1026.0,939.8325757698072,77.0,26.6,4.2 -2019,5,11,15,0,876.0,811.425868645536,100.0,26.4,4.6 -2019,5,11,15,15,876.0,783.7405432311302,100.0,26.4,4.6 -2019,5,11,15,30,876.0,753.7500389237044,100.0,26.4,4.6 -2019,5,11,15,45,876.0,721.5827796669294,100.0,26.4,4.6 -2019,5,11,16,0,700.0,567.3647915780189,98.0,25.2,4.6 -2019,5,11,16,15,700.0,538.518716620977,98.0,25.2,4.6 -2019,5,11,16,30,700.0,508.28386667736885,98.0,25.2,4.6 -2019,5,11,16,45,700.0,476.7897120163916,98.0,25.2,4.6 -2019,5,11,17,0,418.0,279.71360893618606,73.0,24.1,4.7 -2019,5,11,17,15,418.0,259.6476021499336,73.0,24.1,4.7 -2019,5,11,17,30,418.0,239.07947625267883,73.0,24.1,4.7 -2019,5,11,17,45,418.0,218.09730711718979,73.0,24.1,4.7 -2019,5,11,18,0,283.0,90.81061493412368,7.0,21.4,5.5 -2019,5,11,18,15,283.0,76.22777337137371,7.0,21.4,5.5 -2019,5,11,18,30,283.0,61.54965791487813,7.0,21.4,5.5 -2019,5,11,18,45,283.0,46.83912250844683,7.0,21.4,5.5 -2019,5,11,19,0,0.0,0.0,0.0,18.8,3.4 -2019,5,11,19,15,0.0,0.0,0.0,18.8,3.4 -2019,5,11,19,30,0.0,0.0,0.0,18.8,3.4 -2019,5,11,19,45,0.0,0.0,0.0,18.8,3.4 -2019,5,11,20,0,0.0,0.0,0.0,17.7,2.0 -2019,5,11,20,15,0.0,0.0,0.0,17.7,2.0 -2019,5,11,20,30,0.0,0.0,0.0,17.7,2.0 -2019,5,11,20,45,0.0,0.0,0.0,17.7,2.0 -2019,5,11,21,0,0.0,0.0,0.0,16.6,1.6 -2019,5,11,21,15,0.0,0.0,0.0,16.6,1.6 -2019,5,11,21,30,0.0,0.0,0.0,16.6,1.6 -2019,5,11,21,45,0.0,0.0,0.0,16.6,1.6 -2019,5,11,22,0,0.0,0.0,0.0,15.5,2.0 -2019,5,11,22,15,0.0,0.0,0.0,15.5,2.0 -2019,5,11,22,30,0.0,0.0,0.0,15.5,2.0 -2019,5,11,22,45,0.0,0.0,0.0,15.5,2.0 -2019,5,11,23,0,0.0,0.0,0.0,15.0,1.3 -2019,5,11,23,15,0.0,0.0,0.0,15.0,1.3 -2019,5,11,23,30,0.0,0.0,0.0,15.0,1.3 -2019,5,11,23,45,0.0,0.0,0.0,15.0,1.3 -2019,5,12,0,0,0.0,0.0,0.0,14.3,0.0 -2019,5,12,0,15,0.0,0.0,0.0,14.3,0.0 -2019,5,12,0,30,0.0,0.0,0.0,14.3,0.0 -2019,5,12,0,45,0.0,0.0,0.0,14.3,0.0 -2019,5,12,1,0,0.0,0.0,0.0,13.8,0.0 -2019,5,12,1,15,0.0,0.0,0.0,13.8,0.0 -2019,5,12,1,30,0.0,0.0,0.0,13.8,0.0 -2019,5,12,1,45,0.0,0.0,0.0,13.8,0.0 -2019,5,12,2,0,0.0,0.0,0.0,13.4,0.0 -2019,5,12,2,15,0.0,0.0,0.0,13.4,0.0 -2019,5,12,2,30,0.0,0.0,0.0,13.4,0.0 -2019,5,12,2,45,0.0,0.0,0.0,13.4,0.0 -2019,5,12,3,0,0.0,0.0,0.0,14.3,0.0 -2019,5,12,3,15,0.0,0.0,0.0,14.3,0.0 -2019,5,12,3,30,0.0,0.0,0.0,14.3,0.0 -2019,5,12,3,45,0.0,0.0,0.0,14.3,0.0 -2019,5,12,4,0,0.0,0.0,0.0,14.5,0.0 -2019,5,12,4,15,0.0,0.0,0.0,14.5,0.0 -2019,5,12,4,30,0.0,0.0,0.0,14.5,0.0 -2019,5,12,4,45,0.0,0.0,0.0,14.5,0.0 -2019,5,12,5,0,1.0,15.840419447521016,16.0,15.1,0.0 -2019,5,12,5,15,1.0,15.888353452533691,16.0,15.1,0.0 -2019,5,12,5,30,1.0,15.937486927886436,16.0,15.1,0.0 -2019,5,12,5,45,1.0,15.987609476494681,16.0,15.1,0.0 -2019,5,12,6,0,2.0,51.07701293182067,51.0,15.8,0.0 -2019,5,12,6,15,2.0,51.17991989482173,51.0,15.8,0.0 -2019,5,12,6,30,2.0,51.283499178578424,51.0,15.8,0.0 -2019,5,12,6,45,2.0,51.38730724069591,51.0,15.8,0.0 -2019,5,12,7,0,1.0,88.24544977955766,88.0,17.2,1.0 -2019,5,12,7,15,1.0,88.29691626781269,88.0,17.2,1.0 -2019,5,12,7,30,1.0,88.34783269770905,88.0,17.2,1.0 -2019,5,12,7,45,1.0,88.39798103727712,88.0,17.2,1.0 -2019,5,12,8,0,548.0,464.03630590810167,219.0,20.3,2.2 -2019,5,12,8,15,548.0,490.3250380183621,219.0,20.3,2.2 -2019,5,12,8,30,548.0,515.847232371824,219.0,20.3,2.2 -2019,5,12,8,45,548.0,540.4935990140277,219.0,20.3,2.2 -2019,5,12,9,0,305.0,546.1046943756676,354.0,22.5,2.5 -2019,5,12,9,15,305.0,558.6733074729827,354.0,22.5,2.5 -2019,5,12,9,30,305.0,570.5854997641571,354.0,22.5,2.5 -2019,5,12,9,45,305.0,581.790261413007,354.0,22.5,2.5 -2019,5,12,10,0,525.0,719.0845778778097,309.0,24.7,2.2 -2019,5,12,10,15,525.0,735.6938455878542,309.0,24.7,2.2 -2019,5,12,10,30,525.0,750.8546706527136,309.0,24.7,2.2 -2019,5,12,10,45,525.0,764.5021320919275,309.0,24.7,2.2 -2019,5,12,11,0,842.0,923.9057117301166,174.0,26.9,2.5 -2019,5,12,11,15,842.0,940.6689587299402,174.0,26.9,2.5 -2019,5,12,11,30,842.0,954.7566157668537,174.0,26.9,2.5 -2019,5,12,11,45,842.0,966.1083573306487,174.0,26.9,2.5 -2019,5,12,12,0,443.0,776.2580511518893,355.0,28.2,2.3 -2019,5,12,12,15,443.0,779.2811866320135,355.0,28.2,2.3 -2019,5,12,12,30,443.0,780.8070574629501,355.0,28.2,2.3 -2019,5,12,12,45,443.0,780.8291296315449,355.0,28.2,2.3 -2019,5,12,13,0,406.0,732.9052083527806,344.0,27.9,4.2 -2019,5,12,13,15,406.0,730.1746807357002,344.0,27.9,4.2 -2019,5,12,13,30,406.0,726.0833752186068,344.0,27.9,4.2 -2019,5,12,13,45,406.0,720.6488113998332,344.0,27.9,4.2 -2019,5,12,14,0,533.0,737.600101153246,252.0,28.1,4.6 -2019,5,12,14,15,533.0,727.0377568267072,252.0,28.1,4.6 -2019,5,12,14,30,533.0,714.8257248666346,252.0,28.1,4.6 -2019,5,12,14,45,533.0,701.016299068706,252.0,28.1,4.6 -2019,5,12,15,0,686.0,711.1551010708731,153.0,27.2,4.6 -2019,5,12,15,15,686.0,689.5065573985639,153.0,27.2,4.6 -2019,5,12,15,30,686.0,666.05547880239,153.0,27.2,4.6 -2019,5,12,15,45,686.0,640.9022864011752,153.0,27.2,4.6 -2019,5,12,16,0,599.0,520.6700573262324,118.0,25.8,4.9 -2019,5,12,16,15,599.0,496.0224620527954,118.0,25.8,4.9 -2019,5,12,16,30,599.0,470.1882247892183,118.0,25.8,4.9 -2019,5,12,16,45,599.0,443.27797170560774,118.0,25.8,4.9 -2019,5,12,17,0,350.0,252.7770080516723,79.0,24.7,5.0 -2019,5,12,17,15,350.0,236.00010629723627,79.0,24.7,5.0 -2019,5,12,17,30,350.0,218.80338992377585,79.0,24.7,5.0 -2019,5,12,17,45,350.0,201.26049791089014,79.0,24.7,5.0 -2019,5,12,18,0,299.0,96.22719695145192,7.0,22.5,4.1 -2019,5,12,18,15,299.0,80.84260598279269,7.0,22.5,4.1 -2019,5,12,18,30,299.0,65.35750306116721,7.0,22.5,4.1 -2019,5,12,18,45,299.0,49.838197774602236,7.0,22.5,4.1 -2019,5,12,19,0,0.0,0.0,0.0,20.4,3.9 -2019,5,12,19,15,0.0,0.0,0.0,20.4,3.9 -2019,5,12,19,30,0.0,0.0,0.0,20.4,3.9 -2019,5,12,19,45,0.0,0.0,0.0,20.4,3.9 -2019,5,12,20,0,0.0,0.0,0.0,18.8,2.2 -2019,5,12,20,15,0.0,0.0,0.0,18.8,2.2 -2019,5,12,20,30,0.0,0.0,0.0,18.8,2.2 -2019,5,12,20,45,0.0,0.0,0.0,18.8,2.2 -2019,5,12,21,0,0.0,0.0,0.0,18.1,2.5 -2019,5,12,21,15,0.0,0.0,0.0,18.1,2.5 -2019,5,12,21,30,0.0,0.0,0.0,18.1,2.5 -2019,5,12,21,45,0.0,0.0,0.0,18.1,2.5 -2019,5,12,22,0,0.0,0.0,0.0,16.6,1.5 -2019,5,12,22,15,0.0,0.0,0.0,16.6,1.5 -2019,5,12,22,30,0.0,0.0,0.0,16.6,1.5 -2019,5,12,22,45,0.0,0.0,0.0,16.6,1.5 -2019,5,12,23,0,0.0,0.0,0.0,16.0,1.3 -2019,5,12,23,15,0.0,0.0,0.0,16.0,1.3 -2019,5,12,23,30,0.0,0.0,0.0,16.0,1.3 -2019,5,12,23,45,0.0,0.0,0.0,16.0,1.3 -2019,5,13,0,0,0.0,0.0,0.0,15.5,0.0 -2019,5,13,0,15,0.0,0.0,0.0,15.5,0.0 -2019,5,13,0,30,0.0,0.0,0.0,15.5,0.0 -2019,5,13,0,45,0.0,0.0,0.0,15.5,0.0 -2019,5,13,1,0,0.0,0.0,0.0,14.3,0.0 -2019,5,13,1,15,0.0,0.0,0.0,14.3,0.0 -2019,5,13,1,30,0.0,0.0,0.0,14.3,0.0 -2019,5,13,1,45,0.0,0.0,0.0,14.3,0.0 -2019,5,13,2,0,0.0,0.0,0.0,13.8,0.0 -2019,5,13,2,15,0.0,0.0,0.0,13.8,0.0 -2019,5,13,2,30,0.0,0.0,0.0,13.8,0.0 -2019,5,13,2,45,0.0,0.0,0.0,13.8,0.0 -2019,5,13,3,0,0.0,0.0,0.0,13.2,0.0 -2019,5,13,3,15,0.0,0.0,0.0,13.2,0.0 -2019,5,13,3,30,0.0,0.0,0.0,13.2,0.0 -2019,5,13,3,45,0.0,0.0,0.0,13.2,0.0 -2019,5,13,4,0,0.0,0.0,0.0,13.2,0.0 -2019,5,13,4,15,0.0,0.0,0.0,13.2,0.0 -2019,5,13,4,30,0.0,0.0,0.0,13.2,0.0 -2019,5,13,4,45,0.0,0.0,0.0,13.2,0.0 -2019,5,13,5,0,1.0,16.84330950861626,17.0,13.1,0.7 -2019,5,13,5,15,1.0,16.8911730990816,17.0,13.1,0.7 -2019,5,13,5,30,1.0,16.94023439787774,17.0,13.1,0.7 -2019,5,13,5,45,1.0,16.99028331699121,17.0,13.1,0.7 -2019,5,13,6,0,2.0,51.08221107853344,51.0,13.4,2.0 -2019,5,13,6,15,2.0,51.184966872292215,51.0,13.4,2.0 -2019,5,13,6,30,2.0,51.28839399917453,51.0,13.4,2.0 -2019,5,13,6,45,2.0,51.392049568344646,51.0,13.4,2.0 -2019,5,13,7,0,0.0,69.0,69.0,13.9,1.5 -2019,5,13,7,15,0.0,69.0,69.0,13.9,1.5 -2019,5,13,7,30,0.0,69.0,69.0,13.9,1.5 -2019,5,13,7,45,0.0,69.0,69.0,13.9,1.5 -2019,5,13,8,0,0.0,126.0,126.0,15.9,2.0 -2019,5,13,8,15,0.0,126.0,126.0,15.9,2.0 -2019,5,13,8,30,0.0,126.0,126.0,15.9,2.0 -2019,5,13,8,45,0.0,126.0,126.0,15.9,2.0 -2019,5,13,9,0,534.0,609.2647083147074,272.0,19.3,1.3 -2019,5,13,9,15,534.0,631.2377577132308,272.0,19.3,1.3 -2019,5,13,9,30,534.0,652.063220923217,272.0,19.3,1.3 -2019,5,13,9,45,534.0,671.6519201140175,272.0,19.3,1.3 -2019,5,13,10,0,825.0,819.6628803584601,174.0,22.7,0.2 -2019,5,13,10,15,825.0,845.724817155932,174.0,22.7,0.2 -2019,5,13,10,30,825.0,869.5139733990419,174.0,22.7,0.2 -2019,5,13,10,45,825.0,890.9284802685789,174.0,22.7,0.2 -2019,5,13,11,0,1050.0,1020.5702659835621,84.0,26.3,2.1 -2019,5,13,11,15,1050.0,1041.4438444459058,84.0,26.3,2.1 -2019,5,13,11,30,1050.0,1058.9857809522223,84.0,26.3,2.1 -2019,5,13,11,45,1050.0,1073.1209582373044,84.0,26.3,2.1 -2019,5,13,12,0,1076.0,1098.545523520851,74.0,27.9,2.2 -2019,5,13,12,15,1076.0,1105.8776122567333,74.0,27.9,2.2 -2019,5,13,12,30,1076.0,1109.5783462812176,74.0,27.9,2.2 -2019,5,13,12,45,1076.0,1109.631878483064,74.0,27.9,2.2 -2019,5,13,13,0,1016.0,1065.4893934044912,91.0,29.0,3.2 -2019,5,13,13,15,1016.0,1058.6663865945166,91.0,29.0,3.2 -2019,5,13,13,30,1016.0,1048.4430857092964,91.0,29.0,3.2 -2019,5,13,13,45,1016.0,1034.863268492731,91.0,29.0,3.2 -2019,5,13,14,0,960.0,973.8914196601138,98.0,29.1,3.8 -2019,5,13,14,15,960.0,954.8952560202304,98.0,29.1,3.8 -2019,5,13,14,30,960.0,932.9321623814288,98.0,29.1,3.8 -2019,5,13,14,45,960.0,908.0961880825067,98.0,29.1,3.8 -2019,5,13,15,0,764.0,753.7345573102301,131.0,27.7,5.2 -2019,5,13,15,15,764.0,729.6599348126974,131.0,27.7,5.2 -2019,5,13,15,30,764.0,703.580773419268,131.0,27.7,5.2 -2019,5,13,15,45,764.0,675.6087481027743,131.0,27.7,5.2 -2019,5,13,16,0,508.0,477.34388586379845,135.0,25.6,5.7 -2019,5,13,16,15,508.0,456.47145645842477,135.0,25.6,5.7 -2019,5,13,16,30,508.0,434.5941378987996,135.0,25.6,5.7 -2019,5,13,16,45,508.0,411.80561222166256,135.0,25.6,5.7 -2019,5,13,17,0,268.0,218.5797798999913,85.0,24.2,6.0 -2019,5,13,17,15,268.0,205.75233765528066,85.0,24.2,6.0 -2019,5,13,17,30,268.0,192.60390957791492,85.0,24.2,6.0 -2019,5,13,17,45,268.0,179.19079925550477,85.0,24.2,6.0 -2019,5,13,18,0,134.0,55.2852218428344,15.0,22.5,4.5 -2019,5,13,18,15,134.0,48.40058366099613,15.0,22.5,4.5 -2019,5,13,18,30,134.0,41.47096615988106,15.0,22.5,4.5 -2019,5,13,18,45,134.0,34.526043025483204,15.0,22.5,4.5 -2019,5,13,19,0,0.0,0.0,0.0,20.4,3.5 -2019,5,13,19,15,0.0,0.0,0.0,20.4,3.5 -2019,5,13,19,30,0.0,0.0,0.0,20.4,3.5 -2019,5,13,19,45,0.0,0.0,0.0,20.4,3.5 -2019,5,13,20,0,0.0,0.0,0.0,18.8,2.3 -2019,5,13,20,15,0.0,0.0,0.0,18.8,2.3 -2019,5,13,20,30,0.0,0.0,0.0,18.8,2.3 -2019,5,13,20,45,0.0,0.0,0.0,18.8,2.3 -2019,5,13,21,0,0.0,0.0,0.0,17.8,0.2 -2019,5,13,21,15,0.0,0.0,0.0,17.8,0.2 -2019,5,13,21,30,0.0,0.0,0.0,17.8,0.2 -2019,5,13,21,45,0.0,0.0,0.0,17.8,0.2 -2019,5,13,22,0,0.0,0.0,0.0,17.7,1.3 -2019,5,13,22,15,0.0,0.0,0.0,17.7,1.3 -2019,5,13,22,30,0.0,0.0,0.0,17.7,1.3 -2019,5,13,22,45,0.0,0.0,0.0,17.7,1.3 -2019,5,13,23,0,0.0,0.0,0.0,17.0,0.2 -2019,5,13,23,15,0.0,0.0,0.0,17.0,0.2 -2019,5,13,23,30,0.0,0.0,0.0,17.0,0.2 -2019,5,13,23,45,0.0,0.0,0.0,17.0,0.2 -2019,5,14,0,0,0.0,0.0,0.0,15.5,1.9 -2019,5,14,0,15,0.0,0.0,0.0,15.5,1.9 -2019,5,14,0,30,0.0,0.0,0.0,15.5,1.9 -2019,5,14,0,45,0.0,0.0,0.0,15.5,1.9 -2019,5,14,1,0,0.0,0.0,0.0,14.9,0.0 -2019,5,14,1,15,0.0,0.0,0.0,14.9,0.0 -2019,5,14,1,30,0.0,0.0,0.0,14.9,0.0 -2019,5,14,1,45,0.0,0.0,0.0,14.9,0.0 -2019,5,14,2,0,0.0,0.0,0.0,14.3,0.2 -2019,5,14,2,15,0.0,0.0,0.0,14.3,0.2 -2019,5,14,2,30,0.0,0.0,0.0,14.3,0.2 -2019,5,14,2,45,0.0,0.0,0.0,14.3,0.2 -2019,5,14,3,0,0.0,0.0,0.0,13.2,1.5 -2019,5,14,3,15,0.0,0.0,0.0,13.2,1.5 -2019,5,14,3,30,0.0,0.0,0.0,13.2,1.5 -2019,5,14,3,45,0.0,0.0,0.0,13.2,1.5 -2019,5,14,4,0,0.0,0.0,0.0,12.9,1.3 -2019,5,14,4,15,0.0,0.0,0.0,12.9,1.3 -2019,5,14,4,30,0.0,0.0,0.0,12.9,1.3 -2019,5,14,4,45,0.0,0.0,0.0,12.9,1.3 -2019,5,14,5,0,320.0,-7.233939794489707,42.0,14.2,0.0 -2019,5,14,5,15,320.0,8.060025060134521,42.0,14.2,0.0 -2019,5,14,5,30,320.0,23.73669645514353,42.0,14.2,0.0 -2019,5,14,5,45,320.0,39.72894447689761,42.0,14.2,0.0 -2019,5,14,6,0,561.0,115.48815466191331,91.0,16.4,0.0 -2019,5,14,6,15,561.0,144.2690314073614,91.0,16.4,0.0 -2019,5,14,6,30,561.0,173.23794188966065,91.0,16.4,0.0 -2019,5,14,6,45,561.0,202.27083678673796,91.0,16.4,0.0 -2019,5,14,7,0,705.0,298.2416968159181,122.0,18.6,0.2 -2019,5,14,7,15,705.0,334.4193211976343,122.0,18.6,0.2 -2019,5,14,7,30,705.0,370.2102900028324,122.0,18.6,0.2 -2019,5,14,7,45,705.0,405.4613408083589,122.0,18.6,0.2 -2019,5,14,8,0,795.0,497.6200155265902,139.0,20.9,1.5 -2019,5,14,8,15,795.0,535.6461871172435,139.0,20.9,1.5 -2019,5,14,8,30,795.0,572.5635758214312,139.0,20.9,1.5 -2019,5,14,8,45,795.0,608.2140957130619,139.0,20.9,1.5 -2019,5,14,9,0,854.0,685.8076770654648,145.0,23.2,1.6 -2019,5,14,9,15,854.0,720.8967408865499,145.0,23.2,1.6 -2019,5,14,9,30,854.0,754.1532085904801,145.0,23.2,1.6 -2019,5,14,9,45,854.0,785.4346708769216,145.0,23.2,1.6 -2019,5,14,10,0,890.0,843.8341761036676,146.0,26.2,2.0 -2019,5,14,10,15,890.0,871.9083884815401,146.0,26.2,2.0 -2019,5,14,10,30,890.0,897.5343360022264,146.0,26.2,2.0 -2019,5,14,10,45,890.0,920.6022844242758,146.0,26.2,2.0 -2019,5,14,11,0,905.0,953.4125563957707,145.0,27.4,1.7 -2019,5,14,11,15,905.0,971.3773000509829,145.0,27.4,1.7 -2019,5,14,11,30,905.0,986.4746822808911,145.0,27.4,1.7 -2019,5,14,11,45,905.0,998.6400537769947,145.0,27.4,1.7 -2019,5,14,12,0,900.0,1003.0543519290575,145.0,29.2,3.4 -2019,5,14,12,15,900.0,1009.1781771357278,145.0,29.2,3.4 -2019,5,14,12,30,900.0,1012.2690628462909,145.0,29.2,3.4 -2019,5,14,12,45,900.0,1012.3137734136128,145.0,29.2,3.4 -2019,5,14,13,0,876.0,987.263794250042,146.0,30.9,5.7 -2019,5,14,13,15,876.0,981.3895630100053,146.0,30.9,5.7 -2019,5,14,13,30,876.0,972.5878667624712,146.0,30.9,5.7 -2019,5,14,13,45,876.0,960.8963957220326,146.0,30.9,5.7 -2019,5,14,14,0,830.0,902.3369042088488,144.0,29.2,5.5 -2019,5,14,14,15,830.0,885.9371402593331,144.0,29.2,5.5 -2019,5,14,14,30,830.0,866.9759669347775,144.0,29.2,5.5 -2019,5,14,14,45,830.0,845.5345788903303,144.0,29.2,5.5 -2019,5,14,15,0,758.0,751.9159420632955,133.0,28.3,4.2 -2019,5,14,15,15,758.0,728.0652948508749,133.0,28.3,4.2 -2019,5,14,15,30,758.0,702.2287577232747,133.0,28.3,4.2 -2019,5,14,15,45,758.0,674.5169666989725,133.0,28.3,4.2 -2019,5,14,16,0,647.0,546.0652195055768,109.0,26.9,4.7 -2019,5,14,16,15,647.0,519.5204838454672,109.0,26.9,4.7 -2019,5,14,16,30,647.0,491.6977696401076,109.0,26.9,4.7 -2019,5,14,16,45,647.0,462.71621802314604,109.0,26.9,4.7 -2019,5,14,17,0,460.0,301.1421467172336,71.0,25.8,5.1 -2019,5,14,17,15,460.0,279.15707223871124,71.0,25.8,5.1 -2019,5,14,17,30,460.0,256.6218571083857,71.0,25.8,5.1 -2019,5,14,17,45,460.0,233.63300057711436,71.0,25.8,5.1 -2019,5,14,18,0,230.0,87.6444722289386,18.0,23.0,5.0 -2019,5,14,18,15,230.0,75.84482579141086,18.0,23.0,5.0 -2019,5,14,18,30,230.0,63.96808887353413,18.0,23.0,5.0 -2019,5,14,18,45,230.0,52.06511948614064,18.0,23.0,5.0 -2019,5,14,19,0,0.0,0.0,0.0,20.9,3.8 -2019,5,14,19,15,0.0,0.0,0.0,20.9,3.8 -2019,5,14,19,30,0.0,0.0,0.0,20.9,3.8 -2019,5,14,19,45,0.0,0.0,0.0,20.9,3.8 -2019,5,14,20,0,0.0,0.0,0.0,19.3,1.5 -2019,5,14,20,15,0.0,0.0,0.0,19.3,1.5 -2019,5,14,20,30,0.0,0.0,0.0,19.3,1.5 -2019,5,14,20,45,0.0,0.0,0.0,19.3,1.5 -2019,5,14,21,0,0.0,0.0,0.0,18.7,1.3 -2019,5,14,21,15,0.0,0.0,0.0,18.7,1.3 -2019,5,14,21,30,0.0,0.0,0.0,18.7,1.3 -2019,5,14,21,45,0.0,0.0,0.0,18.7,1.3 -2019,5,14,22,0,0.0,0.0,0.0,17.1,0.0 -2019,5,14,22,15,0.0,0.0,0.0,17.1,0.0 -2019,5,14,22,30,0.0,0.0,0.0,17.1,0.0 -2019,5,14,22,45,0.0,0.0,0.0,17.1,0.0 -2019,5,14,23,0,0.0,0.0,0.0,16.5,0.0 -2019,5,14,23,15,0.0,0.0,0.0,16.5,0.0 -2019,5,14,23,30,0.0,0.0,0.0,16.5,0.0 -2019,5,14,23,45,0.0,0.0,0.0,16.5,0.0 -2019,5,15,0,0,0.0,0.0,0.0,14.8,0.0 -2019,5,15,0,15,0.0,0.0,0.0,14.8,0.0 -2019,5,15,0,30,0.0,0.0,0.0,14.8,0.0 -2019,5,15,0,45,0.0,0.0,0.0,14.8,0.0 -2019,5,15,1,0,0.0,0.0,0.0,13.2,0.0 -2019,5,15,1,15,0.0,0.0,0.0,13.2,0.0 -2019,5,15,1,30,0.0,0.0,0.0,13.2,0.0 -2019,5,15,1,45,0.0,0.0,0.0,13.2,0.0 -2019,5,15,2,0,0.0,0.0,0.0,12.7,0.0 -2019,5,15,2,15,0.0,0.0,0.0,12.7,0.0 -2019,5,15,2,30,0.0,0.0,0.0,12.7,0.0 -2019,5,15,2,45,0.0,0.0,0.0,12.7,0.0 -2019,5,15,3,0,0.0,0.0,0.0,12.2,0.2 -2019,5,15,3,15,0.0,0.0,0.0,12.2,0.2 -2019,5,15,3,30,0.0,0.0,0.0,12.2,0.2 -2019,5,15,3,45,0.0,0.0,0.0,12.2,0.2 -2019,5,15,4,0,0.0,0.0,0.0,12.3,1.3 -2019,5,15,4,15,0.0,0.0,0.0,12.3,1.3 -2019,5,15,4,30,0.0,0.0,0.0,12.3,1.3 -2019,5,15,4,45,0.0,0.0,0.0,12.3,1.3 -2019,5,15,5,0,341.0,-9.517719285903382,42.0,13.1,0.0 -2019,5,15,5,15,341.0,6.75624531034655,42.0,13.1,0.0 -2019,5,15,5,30,341.0,23.437439343055786,42.0,13.1,0.0 -2019,5,15,5,45,341.0,40.45443137843261,42.0,13.1,0.0 -2019,5,15,6,0,594.0,114.40822614131044,87.0,15.9,0.0 -2019,5,15,6,15,594.0,144.83784282614783,87.0,15.9,0.0 -2019,5,15,6,30,594.0,175.4662649395621,87.0,15.9,0.0 -2019,5,15,6,45,594.0,206.16233687590278,87.0,15.9,0.0 -2019,5,15,7,0,743.0,301.3693564201108,114.0,18.1,0.2 -2019,5,15,7,15,743.0,339.44161315855484,114.0,18.1,0.2 -2019,5,15,7,30,743.0,377.1069650592674,114.0,18.1,0.2 -2019,5,15,7,45,743.0,414.20412330291987,114.0,18.1,0.2 -2019,5,15,8,0,836.0,504.7026353808592,126.0,20.3,1.6 -2019,5,15,8,15,836.0,544.6318373780687,126.0,20.3,1.6 -2019,5,15,8,30,836.0,583.3967671387431,126.0,20.3,1.6 -2019,5,15,8,45,836.0,620.8314272823468,126.0,20.3,1.6 -2019,5,15,9,0,897.0,698.504352406487,129.0,23.1,2.6 -2019,5,15,9,15,897.0,735.3066753560739,129.0,23.1,2.6 -2019,5,15,9,30,897.0,770.1869238244614,129.0,23.1,2.6 -2019,5,15,9,45,897.0,802.9957352327946,129.0,23.1,2.6 -2019,5,15,10,0,933.0,860.8705817841729,128.0,25.2,2.8 -2019,5,15,10,15,933.0,890.2584508622721,128.0,25.2,2.8 -2019,5,15,10,30,933.0,917.0834951628469,128.0,25.2,2.8 -2019,5,15,10,45,933.0,941.230845727946,128.0,25.2,2.8 -2019,5,15,11,0,948.0,974.0150597006718,126.0,26.9,4.5 -2019,5,15,11,15,948.0,992.806049680512,126.0,26.9,4.5 -2019,5,15,11,30,948.0,1008.5978006594755,126.0,26.9,4.5 -2019,5,15,11,45,948.0,1021.3226899354765,126.0,26.9,4.5 -2019,5,15,12,0,943.0,1027.153409923067,127.0,28.3,4.1 -2019,5,15,12,15,943.0,1033.560500264724,127.0,28.3,4.1 -2019,5,15,12,30,943.0,1036.7943587298128,127.0,28.3,4.1 -2019,5,15,12,45,943.0,1036.8411374399147,127.0,28.3,4.1 -2019,5,15,13,0,919.0,1012.6244799139104,129.0,28.2,4.3 -2019,5,15,13,15,919.0,1006.4708507311085,129.0,28.2,4.3 -2019,5,15,13,30,919.0,997.2505165846026,129.0,28.2,4.3 -2019,5,15,13,45,919.0,985.0029603607392,129.0,28.2,4.3 -2019,5,15,14,0,872.0,926.7809658266353,129.0,27.7,5.6 -2019,5,15,14,15,872.0,909.5763544153841,129.0,27.7,5.6 -2019,5,15,14,30,872.0,889.6846279274553,129.0,27.7,5.6 -2019,5,15,14,45,872.0,867.1909657895037,129.0,27.7,5.6 -2019,5,15,15,0,798.0,774.6685413695445,122.0,27.5,4.6 -2019,5,15,15,15,798.0,749.5957473613998,122.0,27.5,4.6 -2019,5,15,15,30,798.0,722.4353031388733,122.0,27.5,4.6 -2019,5,15,15,45,798.0,693.3035138938735,122.0,27.5,4.6 -2019,5,15,16,0,683.0,565.458723490091,103.0,26.6,4.3 -2019,5,15,16,15,683.0,537.4776929031691,103.0,26.6,4.3 -2019,5,15,16,30,683.0,508.149534312339,103.0,26.6,4.3 -2019,5,15,16,45,683.0,477.59983539522756,103.0,26.6,4.3 -2019,5,15,17,0,490.0,315.0470178328107,69.0,25.8,4.1 -2019,5,15,17,15,490.0,291.66214202001754,69.0,25.8,4.1 -2019,5,15,17,30,490.0,267.69209780879305,69.0,25.8,4.1 -2019,5,15,17,45,490.0,243.23952860839822,69.0,25.8,4.1 -2019,5,15,18,0,245.0,92.70457203708771,18.0,23.6,4.1 -2019,5,15,18,15,245.0,80.15363586236525,18.0,23.6,4.1 -2019,5,15,18,30,245.0,67.52070081558661,18.0,23.6,4.1 -2019,5,15,18,45,245.0,54.85986306406561,18.0,23.6,4.1 -2019,5,15,19,0,0.0,0.0,0.0,21.5,3.9 -2019,5,15,19,15,0.0,0.0,0.0,21.5,3.9 -2019,5,15,19,30,0.0,0.0,0.0,21.5,3.9 -2019,5,15,19,45,0.0,0.0,0.0,21.5,3.9 -2019,5,15,20,0,0.0,0.0,0.0,19.9,2.5 -2019,5,15,20,15,0.0,0.0,0.0,19.9,2.5 -2019,5,15,20,30,0.0,0.0,0.0,19.9,2.5 -2019,5,15,20,45,0.0,0.0,0.0,19.9,2.5 -2019,5,15,21,0,0.0,0.0,0.0,19.3,1.3 -2019,5,15,21,15,0.0,0.0,0.0,19.3,1.3 -2019,5,15,21,30,0.0,0.0,0.0,19.3,1.3 -2019,5,15,21,45,0.0,0.0,0.0,19.3,1.3 -2019,5,15,22,0,0.0,0.0,0.0,18.8,0.2 -2019,5,15,22,15,0.0,0.0,0.0,18.8,0.2 -2019,5,15,22,30,0.0,0.0,0.0,18.8,0.2 -2019,5,15,22,45,0.0,0.0,0.0,18.8,0.2 -2019,5,15,23,0,0.0,0.0,0.0,17.8,1.3 -2019,5,15,23,15,0.0,0.0,0.0,17.8,1.3 -2019,5,15,23,30,0.0,0.0,0.0,17.8,1.3 -2019,5,15,23,45,0.0,0.0,0.0,17.8,1.3 -2019,5,16,0,0,0.0,0.0,0.0,17.6,0.0 -2019,5,16,0,15,0.0,0.0,0.0,17.6,0.0 -2019,5,16,0,30,0.0,0.0,0.0,17.6,0.0 -2019,5,16,0,45,0.0,0.0,0.0,17.6,0.0 -2019,5,16,1,0,0.0,0.0,0.0,16.0,0.0 -2019,5,16,1,15,0.0,0.0,0.0,16.0,0.0 -2019,5,16,1,30,0.0,0.0,0.0,16.0,0.0 -2019,5,16,1,45,0.0,0.0,0.0,16.0,0.0 -2019,5,16,2,0,0.0,0.0,0.0,15.0,0.0 -2019,5,16,2,15,0.0,0.0,0.0,15.0,0.0 -2019,5,16,2,30,0.0,0.0,0.0,15.0,0.0 -2019,5,16,2,45,0.0,0.0,0.0,15.0,0.0 -2019,5,16,3,0,0.0,0.0,0.0,14.9,0.0 -2019,5,16,3,15,0.0,0.0,0.0,14.9,0.0 -2019,5,16,3,30,0.0,0.0,0.0,14.9,0.0 -2019,5,16,3,45,0.0,0.0,0.0,14.9,0.0 -2019,5,16,4,0,0.0,0.0,0.0,14.1,0.0 -2019,5,16,4,15,0.0,0.0,0.0,14.1,0.0 -2019,5,16,4,30,0.0,0.0,0.0,14.1,0.0 -2019,5,16,4,45,0.0,0.0,0.0,14.1,0.0 -2019,5,16,5,0,350.0,-9.925453798332974,42.0,15.9,0.0 -2019,5,16,5,15,350.0,6.753957368293058,42.0,15.9,0.0 -2019,5,16,5,30,350.0,23.850743610899183,42.0,15.9,0.0 -2019,5,16,5,45,350.0,41.291693866048135,42.0,15.9,0.0 -2019,5,16,6,0,606.0,115.43796206897551,86.0,18.6,0.0 -2019,5,16,6,15,606.0,146.4375801508396,86.0,18.6,0.0 -2019,5,16,6,30,606.0,177.63972764417525,86.0,18.6,0.0 -2019,5,16,6,45,606.0,208.91079216317524,86.0,18.6,0.0 -2019,5,16,7,0,757.0,302.5189236303999,110.0,21.4,0.0 -2019,5,16,7,15,757.0,341.25265788747083,110.0,21.4,0.0 -2019,5,16,7,30,757.0,379.5724176338927,110.0,21.4,0.0 -2019,5,16,7,45,757.0,417.31411177547477,110.0,21.4,0.0 -2019,5,16,8,0,851.0,509.0713633034641,122.0,24.2,0.0 -2019,5,16,8,15,851.0,549.6584235177684,122.0,24.2,0.0 -2019,5,16,8,30,851.0,589.0620293927298,122.0,24.2,0.0 -2019,5,16,8,45,851.0,627.1134486386402,122.0,24.2,0.0 -2019,5,16,9,0,912.0,703.4753962205803,123.0,26.9,0.3 -2019,5,16,9,15,912.0,740.8392195405185,123.0,26.9,0.3 -2019,5,16,9,30,912.0,776.2516429061202,123.0,26.9,0.3 -2019,5,16,9,45,912.0,809.5610248839199,123.0,26.9,0.3 -2019,5,16,10,0,948.0,866.9520215439024,121.0,28.6,2.7 -2019,5,16,10,15,948.0,896.7693323612489,121.0,28.6,2.7 -2019,5,16,10,30,948.0,923.9863681209254,121.0,28.6,2.7 -2019,5,16,10,45,948.0,948.4865812973736,121.0,28.6,2.7 -2019,5,16,11,0,963.0,981.6012142008685,119.0,31.2,3.1 -2019,5,16,11,15,963.0,1000.6620216078629,119.0,31.2,3.1 -2019,5,16,11,30,963.0,1016.6805243239075,119.0,31.2,3.1 -2019,5,16,11,45,963.0,1029.588128661167,119.0,31.2,3.1 -2019,5,16,12,0,958.0,1035.5511117971491,120.0,32.3,3.1 -2019,5,16,12,15,958.0,1042.0507374859826,120.0,32.3,3.1 -2019,5,16,12,30,958.0,1045.3313014288829,120.0,32.3,3.1 -2019,5,16,12,45,958.0,1045.3787557474043,120.0,32.3,3.1 -2019,5,16,13,0,934.0,1021.089943650698,122.0,32.7,3.4 -2019,5,16,13,15,934.0,1014.8448871853675,122.0,32.7,3.4 -2019,5,16,13,30,934.0,1005.4875623184295,122.0,32.7,3.4 -2019,5,16,13,45,934.0,993.058038551527,122.0,32.7,3.4 -2019,5,16,14,0,887.0,936.5542429112456,124.0,32.0,5.6 -2019,5,16,14,15,887.0,919.0789008518052,124.0,32.0,5.6 -2019,5,16,14,30,887.0,898.8741594472965,124.0,32.0,5.6 -2019,5,16,14,45,887.0,876.0265385023024,124.0,32.0,5.6 -2019,5,16,15,0,812.0,783.1935812066739,118.0,31.4,5.0 -2019,5,16,15,15,812.0,757.7176801810631,118.0,31.4,5.0 -2019,5,16,15,30,812.0,730.1205648137076,118.0,31.4,5.0 -2019,5,16,15,45,812.0,700.5204101893968,118.0,31.4,5.0 -2019,5,16,16,0,697.0,574.0020273325463,101.0,30.3,4.3 -2019,5,16,16,15,697.0,545.48859736289,101.0,30.3,4.3 -2019,5,16,16,30,697.0,515.6024073771122,101.0,30.3,4.3 -2019,5,16,16,45,697.0,484.47143462894354,101.0,30.3,4.3 -2019,5,16,17,0,501.0,321.4615815612992,69.0,29.7,3.6 -2019,5,16,17,15,501.0,297.586195862786,69.0,29.7,3.6 -2019,5,16,17,30,501.0,273.1133675555128,69.0,29.7,3.6 -2019,5,16,17,45,501.0,248.14789304742803,69.0,29.7,3.6 -2019,5,16,18,0,250.0,95.7448494676372,19.0,27.5,3.5 -2019,5,16,18,15,250.0,82.95622814673615,19.0,27.5,3.5 -2019,5,16,18,30,250.0,70.08405508842935,19.0,27.5,3.5 -2019,5,16,18,45,250.0,57.18345091392444,19.0,27.5,3.5 -2019,5,16,19,0,0.0,0.0,0.0,25.3,3.1 -2019,5,16,19,15,0.0,0.0,0.0,25.3,3.1 -2019,5,16,19,30,0.0,0.0,0.0,25.3,3.1 -2019,5,16,19,45,0.0,0.0,0.0,25.3,3.1 -2019,5,16,20,0,0.0,0.0,0.0,23.2,2.7 -2019,5,16,20,15,0.0,0.0,0.0,23.2,2.7 -2019,5,16,20,30,0.0,0.0,0.0,23.2,2.7 -2019,5,16,20,45,0.0,0.0,0.0,23.2,2.7 -2019,5,16,21,0,0.0,0.0,0.0,22.5,0.2 -2019,5,16,21,15,0.0,0.0,0.0,22.5,0.2 -2019,5,16,21,30,0.0,0.0,0.0,22.5,0.2 -2019,5,16,21,45,0.0,0.0,0.0,22.5,0.2 -2019,5,16,22,0,0.0,0.0,0.0,20.6,1.3 -2019,5,16,22,15,0.0,0.0,0.0,20.6,1.3 -2019,5,16,22,30,0.0,0.0,0.0,20.6,1.3 -2019,5,16,22,45,0.0,0.0,0.0,20.6,1.3 -2019,5,16,23,0,0.0,0.0,0.0,20.5,0.0 -2019,5,16,23,15,0.0,0.0,0.0,20.5,0.0 -2019,5,16,23,30,0.0,0.0,0.0,20.5,0.0 -2019,5,16,23,45,0.0,0.0,0.0,20.5,0.0 -2019,5,17,0,0,0.0,0.0,0.0,19.2,0.0 -2019,5,17,0,15,0.0,0.0,0.0,19.2,0.0 -2019,5,17,0,30,0.0,0.0,0.0,19.2,0.0 -2019,5,17,0,45,0.0,0.0,0.0,19.2,0.0 -2019,5,17,1,0,0.0,0.0,0.0,17.7,0.0 -2019,5,17,1,15,0.0,0.0,0.0,17.7,0.0 -2019,5,17,1,30,0.0,0.0,0.0,17.7,0.0 -2019,5,17,1,45,0.0,0.0,0.0,17.7,0.0 -2019,5,17,2,0,0.0,0.0,0.0,17.1,0.0 -2019,5,17,2,15,0.0,0.0,0.0,17.1,0.0 -2019,5,17,2,30,0.0,0.0,0.0,17.1,0.0 -2019,5,17,2,45,0.0,0.0,0.0,17.1,0.0 -2019,5,17,3,0,0.0,0.0,0.0,16.1,0.0 -2019,5,17,3,15,0.0,0.0,0.0,16.1,0.0 -2019,5,17,3,30,0.0,0.0,0.0,16.1,0.0 -2019,5,17,3,45,0.0,0.0,0.0,16.1,0.0 -2019,5,17,4,0,0.0,0.0,0.0,16.1,0.2 -2019,5,17,4,15,0.0,0.0,0.0,16.1,0.2 -2019,5,17,4,30,0.0,0.0,0.0,16.1,0.2 -2019,5,17,4,45,0.0,0.0,0.0,16.1,0.2 -2019,5,17,5,0,79.0,33.48990902103012,45.0,16.4,1.9 -2019,5,17,5,15,79.0,37.24931308021338,45.0,16.4,1.9 -2019,5,17,5,30,79.0,41.102790097918174,45.0,16.4,1.9 -2019,5,17,5,45,79.0,45.03383889395813,45.0,16.4,1.9 -2019,5,17,6,0,257.0,142.09602419326495,129.0,19.2,0.0 -2019,5,17,6,15,257.0,155.22394919215947,129.0,19.2,0.0 -2019,5,17,6,30,257.0,168.43764269687392,129.0,19.2,0.0 -2019,5,17,6,45,257.0,181.68052164321793,129.0,19.2,0.0 -2019,5,17,7,0,469.0,299.2535672277259,179.0,22.0,0.3 -2019,5,17,7,15,469.0,323.21680937261124,179.0,22.0,0.3 -2019,5,17,7,30,469.0,346.9239395873983,179.0,22.0,0.3 -2019,5,17,7,45,469.0,370.2734403009225,179.0,22.0,0.3 -2019,5,17,8,0,734.0,495.17558383576306,160.0,24.2,2.5 -2019,5,17,8,15,734.0,530.1325182767387,160.0,24.2,2.5 -2019,5,17,8,30,734.0,564.0701639213377,160.0,24.2,2.5 -2019,5,17,8,45,734.0,596.8431945607081,160.0,24.2,2.5 -2019,5,17,9,0,807.0,678.8871876489366,164.0,26.3,1.3 -2019,5,17,9,15,807.0,711.902031730789,164.0,26.3,1.3 -2019,5,17,9,30,807.0,743.1926099450375,164.0,26.3,1.3 -2019,5,17,9,45,807.0,772.6249312319517,164.0,26.3,1.3 -2019,5,17,10,0,752.0,799.7222643478104,207.0,28.1,0.3 -2019,5,17,10,15,752.0,823.3410312530905,207.0,28.1,0.3 -2019,5,17,10,30,752.0,844.9000788613174,207.0,28.1,0.3 -2019,5,17,10,45,752.0,864.3070880208277,207.0,28.1,0.3 -2019,5,17,11,0,845.0,929.8919108024464,172.0,30.7,2.7 -2019,5,17,11,15,845.0,946.5932370390058,172.0,30.7,2.7 -2019,5,17,11,30,845.0,960.6288565156341,172.0,30.7,2.7 -2019,5,17,11,45,845.0,971.9386665549449,172.0,30.7,2.7 -2019,5,17,12,0,809.0,960.0303640030245,186.0,31.0,3.2 -2019,5,17,12,15,809.0,965.5112479130885,186.0,31.0,3.2 -2019,5,17,12,30,809.0,968.2776210846185,186.0,31.0,3.2 -2019,5,17,12,45,809.0,968.3176374829927,186.0,31.0,3.2 -2019,5,17,13,0,694.0,892.8059348229714,224.0,29.9,3.6 -2019,5,17,13,15,694.0,888.1722316725876,224.0,29.9,3.6 -2019,5,17,13,30,694.0,881.2292895301422,224.0,29.9,3.6 -2019,5,17,13,45,694.0,872.006839139789,224.0,29.9,3.6 -2019,5,17,14,0,461.0,701.834230114452,279.0,28.6,3.8 -2019,5,17,14,15,461.0,692.7647532921783,279.0,28.6,3.8 -2019,5,17,14,30,461.0,682.2787534619644,279.0,28.6,3.8 -2019,5,17,14,45,461.0,670.4211332849231,279.0,28.6,3.8 -2019,5,17,15,0,450.0,590.2173557700228,221.0,27.0,5.8 -2019,5,17,15,15,450.0,576.1191033549212,221.0,27.0,5.8 -2019,5,17,15,30,450.0,560.846980183045,221.0,27.0,5.8 -2019,5,17,15,45,450.0,544.4663838304353,221.0,27.0,5.8 -2019,5,17,16,0,399.0,428.3620798925823,157.0,25.2,6.5 -2019,5,17,16,15,399.0,412.0627847053795,157.0,25.2,6.5 -2019,5,17,16,30,399.0,394.9787708523492,157.0,25.2,6.5 -2019,5,17,16,45,399.0,377.18319470359575,157.0,25.2,6.5 -2019,5,17,17,0,257.0,218.95070358293515,89.0,24.0,7.1 -2019,5,17,17,15,257.0,206.720743542301,89.0,24.0,7.1 -2019,5,17,17,30,257.0,194.18474868723604,89.0,24.0,7.1 -2019,5,17,17,45,257.0,181.39640007227067,89.0,24.0,7.1 -2019,5,17,18,0,130.0,52.16871485615572,12.0,20.9,5.8 -2019,5,17,18,15,130.0,45.52813022636471,12.0,20.9,5.8 -2019,5,17,18,30,130.0,38.84416074927181,12.0,20.9,5.8 -2019,5,17,18,45,130.0,32.145428208319586,12.0,20.9,5.8 -2019,5,17,19,0,0.0,0.0,0.0,19.2,2.5 -2019,5,17,19,15,0.0,0.0,0.0,19.2,2.5 -2019,5,17,19,30,0.0,0.0,0.0,19.2,2.5 -2019,5,17,19,45,0.0,0.0,0.0,19.2,2.5 -2019,5,17,20,0,0.0,0.0,0.0,17.7,2.0 -2019,5,17,20,15,0.0,0.0,0.0,17.7,2.0 -2019,5,17,20,30,0.0,0.0,0.0,17.7,2.0 -2019,5,17,20,45,0.0,0.0,0.0,17.7,2.0 -2019,5,17,21,0,0.0,0.0,0.0,16.6,1.6 -2019,5,17,21,15,0.0,0.0,0.0,16.6,1.6 -2019,5,17,21,30,0.0,0.0,0.0,16.6,1.6 -2019,5,17,21,45,0.0,0.0,0.0,16.6,1.6 -2019,5,17,22,0,0.0,0.0,0.0,15.7,2.2 -2019,5,17,22,15,0.0,0.0,0.0,15.7,2.2 -2019,5,17,22,30,0.0,0.0,0.0,15.7,2.2 -2019,5,17,22,45,0.0,0.0,0.0,15.7,2.2 -2019,5,17,23,0,0.0,0.0,0.0,15.6,0.2 -2019,5,17,23,15,0.0,0.0,0.0,15.6,0.2 -2019,5,17,23,30,0.0,0.0,0.0,15.6,0.2 -2019,5,17,23,45,0.0,0.0,0.0,15.6,0.2 -2019,5,18,0,0,0.0,0.0,0.0,15.4,1.7 -2019,5,18,0,15,0.0,0.0,0.0,15.4,1.7 -2019,5,18,0,30,0.0,0.0,0.0,15.4,1.7 -2019,5,18,0,45,0.0,0.0,0.0,15.4,1.7 -2019,5,18,1,0,0.0,0.0,0.0,15.0,1.3 -2019,5,18,1,15,0.0,0.0,0.0,15.0,1.3 -2019,5,18,1,30,0.0,0.0,0.0,15.0,1.3 -2019,5,18,1,45,0.0,0.0,0.0,15.0,1.3 -2019,5,18,2,0,0.0,0.0,0.0,15.8,0.0 -2019,5,18,2,15,0.0,0.0,0.0,15.8,0.0 -2019,5,18,2,30,0.0,0.0,0.0,15.8,0.0 -2019,5,18,2,45,0.0,0.0,0.0,15.8,0.0 -2019,5,18,3,0,0.0,0.0,0.0,15.7,1.5 -2019,5,18,3,15,0.0,0.0,0.0,15.7,1.5 -2019,5,18,3,30,0.0,0.0,0.0,15.7,1.5 -2019,5,18,3,45,0.0,0.0,0.0,15.7,1.5 -2019,5,18,4,0,0.0,0.0,0.0,15.7,1.7 -2019,5,18,4,15,0.0,0.0,0.0,15.7,1.7 -2019,5,18,4,30,0.0,0.0,0.0,15.7,1.7 -2019,5,18,4,45,0.0,0.0,0.0,15.7,1.7 -2019,5,18,5,0,3.0,17.57071165454097,18.0,15.7,2.0 -2019,5,18,5,15,3.0,17.713271996712987,18.0,15.7,2.0 -2019,5,18,5,30,3.0,17.859399679065746,18.0,15.7,2.0 -2019,5,18,5,45,3.0,18.00846896042948,18.0,15.7,2.0 -2019,5,18,6,0,4.0,66.21312200434114,66.0,15.7,1.8 -2019,5,18,6,15,4.0,66.41715880943647,66.0,15.7,1.8 -2019,5,18,6,30,4.0,66.6225286456016,66.0,15.7,1.8 -2019,5,18,6,45,4.0,66.82835208766909,66.0,15.7,1.8 -2019,5,18,7,0,0.0,73.0,73.0,16.8,3.5 -2019,5,18,7,15,0.0,73.0,73.0,16.8,3.5 -2019,5,18,7,30,0.0,73.0,73.0,16.8,3.5 -2019,5,18,7,45,0.0,73.0,73.0,16.8,3.5 -2019,5,18,8,0,26.0,285.9181955158467,274.0,18.5,1.9 -2019,5,18,8,15,26.0,287.15470140103923,274.0,18.5,1.9 -2019,5,18,8,30,26.0,288.35515273466467,274.0,18.5,1.9 -2019,5,18,8,45,26.0,289.5144089998157,274.0,18.5,1.9 -2019,5,18,9,0,18.0,337.51135036528734,326.0,20.1,3.4 -2019,5,18,9,15,18.0,338.24669982998404,326.0,20.1,3.4 -2019,5,18,9,30,18.0,338.94364420696945,326.0,20.1,3.4 -2019,5,18,9,45,18.0,339.5991990734245,326.0,20.1,3.4 -2019,5,18,10,0,466.0,702.8955375072264,335.0,21.2,2.3 -2019,5,18,10,15,466.0,717.510942556977,335.0,21.2,2.3 -2019,5,18,10,30,466.0,730.8517835307985,335.0,21.2,2.3 -2019,5,18,10,45,466.0,742.8609328995174,335.0,21.2,2.3 -2019,5,18,11,0,570.0,813.8831983172952,302.0,22.3,3.5 -2019,5,18,11,15,570.0,825.1332538389287,302.0,22.3,3.5 -2019,5,18,11,30,570.0,834.5876825565082,302.0,22.3,3.5 -2019,5,18,11,45,570.0,842.2059991547945,302.0,22.3,3.5 -2019,5,18,12,0,625.0,870.6355052988255,272.0,23.4,3.0 -2019,5,18,12,15,625.0,874.8638234630209,272.0,23.4,3.0 -2019,5,18,12,30,625.0,876.9979876091809,272.0,23.4,3.0 -2019,5,18,12,45,625.0,877.0288589187885,272.0,23.4,3.0 -2019,5,18,13,0,612.0,849.4148140480768,259.0,23.9,2.7 -2019,5,18,13,15,612.0,845.3343860446726,259.0,23.9,2.7 -2019,5,18,13,30,612.0,839.2204476622143,259.0,23.9,2.7 -2019,5,18,13,45,612.0,831.0991797234844,259.0,23.9,2.7 -2019,5,18,14,0,771.0,873.016554889026,165.0,23.9,3.3 -2019,5,18,14,15,771.0,857.8697424523026,165.0,23.9,3.3 -2019,5,18,14,30,771.0,840.3572138079053,165.0,23.9,3.3 -2019,5,18,14,45,771.0,820.5539602920619,165.0,23.9,3.3 -2019,5,18,15,0,582.0,663.2400303519694,185.0,24.0,4.6 -2019,5,18,15,15,582.0,645.0320694385812,185.0,24.0,4.6 -2019,5,18,15,30,582.0,625.3080487876167,185.0,24.0,4.6 -2019,5,18,15,45,582.0,604.1524296835903,185.0,24.0,4.6 -2019,5,18,16,0,523.0,491.4449920164969,135.0,23.6,4.6 -2019,5,18,16,15,523.0,470.1104571964615,135.0,23.6,4.6 -2019,5,18,16,30,523.0,447.7487854660418,135.0,23.6,4.6 -2019,5,18,16,45,523.0,424.45573293661363,135.0,23.6,4.6 -2019,5,18,17,0,395.0,280.3934271393371,80.0,23.0,4.7 -2019,5,18,17,15,395.0,261.62298208668824,80.0,23.0,4.7 -2019,5,18,17,30,395.0,242.38283724357515,80.0,23.0,4.7 -2019,5,18,17,45,395.0,222.75538186401687,80.0,23.0,4.7 -2019,5,18,18,0,361.0,121.25241418936952,9.0,20.9,5.0 -2019,5,18,18,15,361.0,102.83809252951532,9.0,20.9,5.0 -2019,5,18,18,30,361.0,84.30346481561322,9.0,20.9,5.0 -2019,5,18,18,45,361.0,65.72789916902195,9.0,20.9,5.0 -2019,5,18,19,0,0.0,0.0,0.0,19.2,4.0 -2019,5,18,19,15,0.0,0.0,0.0,19.2,4.0 -2019,5,18,19,30,0.0,0.0,0.0,19.2,4.0 -2019,5,18,19,45,0.0,0.0,0.0,19.2,4.0 -2019,5,18,20,0,0.0,0.0,0.0,17.6,3.0 -2019,5,18,20,15,0.0,0.0,0.0,17.6,3.0 -2019,5,18,20,30,0.0,0.0,0.0,17.6,3.0 -2019,5,18,20,45,0.0,0.0,0.0,17.6,3.0 -2019,5,18,21,0,0.0,0.0,0.0,16.1,2.3 -2019,5,18,21,15,0.0,0.0,0.0,16.1,2.3 -2019,5,18,21,30,0.0,0.0,0.0,16.1,2.3 -2019,5,18,21,45,0.0,0.0,0.0,16.1,2.3 -2019,5,18,22,0,0.0,0.0,0.0,16.0,0.2 -2019,5,18,22,15,0.0,0.0,0.0,16.0,0.2 -2019,5,18,22,30,0.0,0.0,0.0,16.0,0.2 -2019,5,18,22,45,0.0,0.0,0.0,16.0,0.2 -2019,5,18,23,0,0.0,0.0,0.0,15.5,1.3 -2019,5,18,23,15,0.0,0.0,0.0,15.5,1.3 -2019,5,18,23,30,0.0,0.0,0.0,15.5,1.3 -2019,5,18,23,45,0.0,0.0,0.0,15.5,1.3 -2019,5,19,0,0,0.0,0.0,0.0,14.9,0.0 -2019,5,19,0,15,0.0,0.0,0.0,14.9,0.0 -2019,5,19,0,30,0.0,0.0,0.0,14.9,0.0 -2019,5,19,0,45,0.0,0.0,0.0,14.9,0.0 -2019,5,19,1,0,0.0,0.0,0.0,14.3,0.0 -2019,5,19,1,15,0.0,0.0,0.0,14.3,0.0 -2019,5,19,1,30,0.0,0.0,0.0,14.3,0.0 -2019,5,19,1,45,0.0,0.0,0.0,14.3,0.0 -2019,5,19,2,0,0.0,0.0,0.0,13.9,0.0 -2019,5,19,2,15,0.0,0.0,0.0,13.9,0.0 -2019,5,19,2,30,0.0,0.0,0.0,13.9,0.0 -2019,5,19,2,45,0.0,0.0,0.0,13.9,0.0 -2019,5,19,3,0,0.0,0.0,0.0,13.8,0.0 -2019,5,19,3,15,0.0,0.0,0.0,13.8,0.0 -2019,5,19,3,30,0.0,0.0,0.0,13.8,0.0 -2019,5,19,3,45,0.0,0.0,0.0,13.8,0.0 -2019,5,19,4,0,0.0,0.0,0.0,13.3,0.0 -2019,5,19,4,15,0.0,0.0,0.0,13.3,0.0 -2019,5,19,4,30,0.0,0.0,0.0,13.3,0.0 -2019,5,19,4,45,0.0,0.0,0.0,13.3,0.0 -2019,5,19,5,0,3.0,17.57833286531294,18.0,13.5,0.2 -2019,5,19,5,15,3.0,17.720693970782314,18.0,13.5,0.2 -2019,5,19,5,30,3.0,17.86661743085871,18.0,13.5,0.2 -2019,5,19,5,45,3.0,18.015478378883508,18.0,13.5,0.2 -2019,5,19,6,0,14.0,95.77765039064401,95.0,15.2,1.3 -2019,5,19,6,15,14.0,96.49078117025219,95.0,15.2,1.3 -2019,5,19,6,30,14.0,97.20857103813412,95.0,15.2,1.3 -2019,5,19,6,45,14.0,97.92794630787846,95.0,15.2,1.3 -2019,5,19,7,0,1.0,103.26041617886712,103.0,17.0,0.0 -2019,5,19,7,15,1.0,103.31136696812187,103.0,17.0,0.0 -2019,5,19,7,30,1.0,103.36177321065391,103.0,17.0,0.0 -2019,5,19,7,45,1.0,103.41141905919417,103.0,17.0,0.0 -2019,5,19,8,0,319.0,436.7693233085872,290.0,19.2,1.6 -2019,5,19,8,15,319.0,451.91909700469495,290.0,19.2,1.6 -2019,5,19,8,30,319.0,466.62712731446106,290.0,19.2,1.6 -2019,5,19,8,45,319.0,480.83043219408125,290.0,19.2,1.6 -2019,5,19,9,0,640.0,641.2183140544798,231.0,21.4,2.1 -2019,5,19,9,15,640.0,667.3275325196676,231.0,21.4,2.1 -2019,5,19,9,30,640.0,692.0731451438668,231.0,21.4,2.1 -2019,5,19,9,45,640.0,715.3491874148053,231.0,21.4,2.1 -2019,5,19,10,0,761.0,803.7321979293181,202.0,24.2,2.2 -2019,5,19,10,15,761.0,827.5664878934001,202.0,24.2,2.2 -2019,5,19,10,30,761.0,849.32226346393,202.0,24.2,2.2 -2019,5,19,10,45,761.0,868.9063630699071,202.0,24.2,2.2 -2019,5,19,11,0,835.0,926.770252342744,176.0,26.3,2.7 -2019,5,19,11,15,835.0,943.2275645565238,176.0,26.3,2.7 -2019,5,19,11,30,835.0,957.058117206591,176.0,26.3,2.7 -2019,5,19,11,45,835.0,968.2026857431928,176.0,26.3,2.7 -2019,5,19,12,0,895.0,1006.1426645922812,148.0,27.9,3.6 -2019,5,19,12,15,895.0,1012.1891540422266,148.0,27.9,3.6 -2019,5,19,12,30,895.0,1015.2410059826691,148.0,27.9,3.6 -2019,5,19,12,45,895.0,1015.2851519150706,148.0,27.9,3.6 -2019,5,19,13,0,928.0,1021.1902366460201,125.0,29.0,3.8 -2019,5,19,13,15,928.0,1015.0115681286832,125.0,29.0,3.8 -2019,5,19,13,30,928.0,1005.7537161168065,125.0,29.0,3.8 -2019,5,19,13,45,928.0,993.4563241539964,125.0,29.0,3.8 -2019,5,19,14,0,989.0,998.2534040877171,89.0,29.8,5.1 -2019,5,19,14,15,989.0,978.8509893436732,89.0,29.8,5.1 -2019,5,19,14,30,989.0,956.4181939687378,89.0,29.8,5.1 -2019,5,19,14,45,989.0,931.0510786366519,89.0,29.8,5.1 -2019,5,19,15,0,849.0,806.6508297027434,108.0,28.9,5.1 -2019,5,19,15,15,849.0,780.1268528224564,108.0,28.9,5.1 -2019,5,19,15,30,849.0,751.3943950683426,108.0,28.9,5.1 -2019,5,19,15,45,849.0,720.5764932355922,108.0,28.9,5.1 -2019,5,19,16,0,627.0,544.195296434702,116.0,27.1,5.1 -2019,5,19,16,15,627.0,518.6540755740359,116.0,27.1,5.1 -2019,5,19,16,30,627.0,491.88318971698885,116.0,27.1,5.1 -2019,5,19,16,45,627.0,463.99727590674195,116.0,27.1,5.1 -2019,5,19,17,0,335.0,256.50043840345046,86.0,25.8,5.1 -2019,5,19,17,15,335.0,240.6034482927039,86.0,25.8,5.1 -2019,5,19,17,30,335.0,224.3086619175062,86.0,25.8,5.1 -2019,5,19,17,45,335.0,207.68585605473712,86.0,25.8,5.1 -2019,5,19,18,0,280.0,98.5992220629927,11.0,23.6,4.9 -2019,5,19,18,15,280.0,84.33660647082918,11.0,23.6,4.9 -2019,5,19,18,30,280.0,69.98080911319036,11.0,23.6,4.9 -2019,5,19,18,45,280.0,55.59330371830381,11.0,23.6,4.9 -2019,5,19,19,0,0.0,0.0,0.0,20.9,3.5 -2019,5,19,19,15,0.0,0.0,0.0,20.9,3.5 -2019,5,19,19,30,0.0,0.0,0.0,20.9,3.5 -2019,5,19,19,45,0.0,0.0,0.0,20.9,3.5 -2019,5,19,20,0,0.0,0.0,0.0,19.2,2.9 -2019,5,19,20,15,0.0,0.0,0.0,19.2,2.9 -2019,5,19,20,30,0.0,0.0,0.0,19.2,2.9 -2019,5,19,20,45,0.0,0.0,0.0,19.2,2.9 -2019,5,19,21,0,0.0,0.0,0.0,17.7,1.5 -2019,5,19,21,15,0.0,0.0,0.0,17.7,1.5 -2019,5,19,21,30,0.0,0.0,0.0,17.7,1.5 -2019,5,19,21,45,0.0,0.0,0.0,17.7,1.5 -2019,5,19,22,0,0.0,0.0,0.0,17.2,1.5 -2019,5,19,22,15,0.0,0.0,0.0,17.2,1.5 -2019,5,19,22,30,0.0,0.0,0.0,17.2,1.5 -2019,5,19,22,45,0.0,0.0,0.0,17.2,1.5 -2019,5,19,23,0,0.0,0.0,0.0,17.1,1.3 -2019,5,19,23,15,0.0,0.0,0.0,17.1,1.3 -2019,5,19,23,30,0.0,0.0,0.0,17.1,1.3 -2019,5,19,23,45,0.0,0.0,0.0,17.1,1.3 -2019,5,20,0,0,0.0,0.0,0.0,16.0,0.0 -2019,5,20,0,15,0.0,0.0,0.0,16.0,0.0 -2019,5,20,0,30,0.0,0.0,0.0,16.0,0.0 -2019,5,20,0,45,0.0,0.0,0.0,16.0,0.0 -2019,5,20,1,0,0.0,0.0,0.0,15.0,0.0 -2019,5,20,1,15,0.0,0.0,0.0,15.0,0.0 -2019,5,20,1,30,0.0,0.0,0.0,15.0,0.0 -2019,5,20,1,45,0.0,0.0,0.0,15.0,0.0 -2019,5,20,2,0,0.0,0.0,0.0,14.9,0.0 -2019,5,20,2,15,0.0,0.0,0.0,14.9,0.0 -2019,5,20,2,30,0.0,0.0,0.0,14.9,0.0 -2019,5,20,2,45,0.0,0.0,0.0,14.9,0.0 -2019,5,20,3,0,0.0,0.0,0.0,14.3,0.0 -2019,5,20,3,15,0.0,0.0,0.0,14.3,0.0 -2019,5,20,3,30,0.0,0.0,0.0,14.3,0.0 -2019,5,20,3,45,0.0,0.0,0.0,14.3,0.0 -2019,5,20,4,0,231.0,-72.0275714850195,0.0,14.0,0.0 -2019,5,20,4,15,231.0,-62.63063008469596,0.0,14.0,0.0 -2019,5,20,4,30,231.0,-52.78127922532339,0.0,14.0,0.0 -2019,5,20,4,45,231.0,-42.52169533938175,0.0,14.0,0.0 -2019,5,20,5,0,370.0,-7.08852930673433,44.0,15.3,0.0 -2019,5,20,5,15,370.0,10.445117261696886,44.0,15.3,0.0 -2019,5,20,5,30,370.0,28.417514754582193,44.0,15.3,0.0 -2019,5,20,5,45,370.0,46.75170260668437,44.0,15.3,0.0 -2019,5,20,6,0,629.0,120.32759071853854,84.0,18.0,0.0 -2019,5,20,6,15,629.0,152.32333508586362,84.0,18.0,0.0 -2019,5,20,6,30,629.0,184.52811684388166,84.0,18.0,0.0 -2019,5,20,6,45,629.0,216.8040301729368,84.0,18.0,0.0 -2019,5,20,7,0,782.0,310.15112903310865,105.0,19.9,0.0 -2019,5,20,7,15,782.0,349.93967750329693,105.0,19.9,0.0 -2019,5,20,7,30,782.0,389.30297792554165,105.0,19.9,0.0 -2019,5,20,7,45,782.0,428.072470604271,105.0,19.9,0.0 -2019,5,20,8,0,877.0,518.9476158178959,114.0,23.6,0.2 -2019,5,20,8,15,877.0,560.540159633772,114.0,23.6,0.2 -2019,5,20,8,30,877.0,600.9199308023242,114.0,23.6,0.2 -2019,5,20,8,45,877.0,639.914016944193,114.0,23.6,0.2 -2019,5,20,9,0,939.0,716.1821637319043,113.0,26.4,1.6 -2019,5,20,9,15,939.0,754.4364336103102,113.0,26.4,1.6 -2019,5,20,9,30,939.0,790.6927981926041,113.0,26.4,1.6 -2019,5,20,9,45,939.0,824.7960021594665,113.0,26.4,1.6 -2019,5,20,10,0,975.0,882.1086369510058,110.0,29.2,2.4 -2019,5,20,10,15,975.0,912.6032133202758,110.0,29.2,2.4 -2019,5,20,10,30,975.0,940.4384524068194,110.0,29.2,2.4 -2019,5,20,10,45,975.0,965.4951594435239,110.0,29.2,2.4 -2019,5,20,11,0,990.0,998.1685921912224,107.0,31.9,4.5 -2019,5,20,11,15,990.0,1017.6539351601577,107.0,31.9,4.5 -2019,5,20,11,30,990.0,1034.0292131117317,107.0,31.9,4.5 -2019,5,20,11,45,990.0,1047.2243045917767,107.0,31.9,4.5 -2019,5,20,12,0,986.0,1054.3435841476053,108.0,33.4,4.3 -2019,5,20,12,15,986.0,1060.9956663305502,108.0,33.4,4.3 -2019,5,20,12,30,986.0,1064.3531798242993,108.0,33.4,4.3 -2019,5,20,12,45,986.0,1064.4017472406172,108.0,33.4,4.3 -2019,5,20,13,0,961.0,1039.974295479435,111.0,34.5,5.6 -2019,5,20,13,15,961.0,1033.5847386878236,111.0,34.5,5.6 -2019,5,20,13,30,961.0,1024.0109007270657,111.0,34.5,5.6 -2019,5,20,13,45,961.0,1011.293778241112,111.0,34.5,5.6 -2019,5,20,14,0,914.0,955.2298383989023,114.0,35.4,4.8 -2019,5,20,14,15,914.0,937.323527737633,114.0,35.4,4.8 -2019,5,20,14,30,914.0,916.6205065784965,114.0,35.4,4.8 -2019,5,20,14,45,914.0,893.2094284364822,114.0,35.4,4.8 -2019,5,20,15,0,838.0,801.5620078263357,111.0,34.4,6.2 -2019,5,20,15,15,838.0,775.4178054847528,111.0,34.4,6.2 -2019,5,20,15,30,838.0,747.096743651343,111.0,34.4,6.2 -2019,5,20,15,45,838.0,716.7200974608061,111.0,34.4,6.2 -2019,5,20,16,0,722.0,591.0426680658827,97.0,32.3,5.9 -2019,5,20,16,15,722.0,561.672141264871,97.0,32.3,5.9 -2019,5,20,16,30,722.0,530.8875900940185,97.0,32.3,5.9 -2019,5,20,16,45,722.0,498.8208387275686,97.0,32.3,5.9 -2019,5,20,17,0,525.0,337.03300693472454,69.0,30.6,5.5 -2019,5,20,17,15,525.0,312.1541841011398,69.0,30.6,5.5 -2019,5,20,17,30,525.0,286.6528092801539,69.0,30.6,5.5 -2019,5,20,17,45,525.0,260.63808327379274,69.0,30.6,5.5 -2019,5,20,18,0,506.0,166.2419638040579,7.0,26.9,3.4 -2019,5,20,18,15,506.0,140.50293892350703,7.0,26.9,3.4 -2019,5,20,18,30,506.0,114.59575359829708,7.0,26.9,3.4 -2019,5,20,18,45,506.0,88.63134637333371,7.0,26.9,3.4 -2019,5,20,19,0,0.0,0.0,0.0,24.2,1.9 -2019,5,20,19,15,0.0,0.0,0.0,24.2,1.9 -2019,5,20,19,30,0.0,0.0,0.0,24.2,1.9 -2019,5,20,19,45,0.0,0.0,0.0,24.2,1.9 -2019,5,20,20,0,0.0,0.0,0.0,22.6,0.2 -2019,5,20,20,15,0.0,0.0,0.0,22.6,0.2 -2019,5,20,20,30,0.0,0.0,0.0,22.6,0.2 -2019,5,20,20,45,0.0,0.0,0.0,22.6,0.2 -2019,5,20,21,0,0.0,0.0,0.0,20.9,1.6 -2019,5,20,21,15,0.0,0.0,0.0,20.9,1.6 -2019,5,20,21,30,0.0,0.0,0.0,20.9,1.6 -2019,5,20,21,45,0.0,0.0,0.0,20.9,1.6 -2019,5,20,22,0,0.0,0.0,0.0,19.3,2.0 -2019,5,20,22,15,0.0,0.0,0.0,19.3,2.0 -2019,5,20,22,30,0.0,0.0,0.0,19.3,2.0 -2019,5,20,22,45,0.0,0.0,0.0,19.3,2.0 -2019,5,20,23,0,0.0,0.0,0.0,18.9,1.3 -2019,5,20,23,15,0.0,0.0,0.0,18.9,1.3 -2019,5,20,23,30,0.0,0.0,0.0,18.9,1.3 -2019,5,20,23,45,0.0,0.0,0.0,18.9,1.3 -2019,5,21,0,0,0.0,0.0,0.0,18.7,0.0 -2019,5,21,0,15,0.0,0.0,0.0,18.7,0.0 -2019,5,21,0,30,0.0,0.0,0.0,18.7,0.0 -2019,5,21,0,45,0.0,0.0,0.0,18.7,0.0 -2019,5,21,1,0,0.0,0.0,0.0,17.1,0.0 -2019,5,21,1,15,0.0,0.0,0.0,17.1,0.0 -2019,5,21,1,30,0.0,0.0,0.0,17.1,0.0 -2019,5,21,1,45,0.0,0.0,0.0,17.1,0.0 -2019,5,21,2,0,0.0,0.0,0.0,16.6,0.0 -2019,5,21,2,15,0.0,0.0,0.0,16.6,0.0 -2019,5,21,2,30,0.0,0.0,0.0,16.6,0.0 -2019,5,21,2,45,0.0,0.0,0.0,16.6,0.0 -2019,5,21,3,0,0.0,0.0,0.0,16.1,0.0 -2019,5,21,3,15,0.0,0.0,0.0,16.1,0.0 -2019,5,21,3,30,0.0,0.0,0.0,16.1,0.0 -2019,5,21,3,45,0.0,0.0,0.0,16.1,0.0 -2019,5,21,4,0,197.0,-60.903638914019645,0.0,16.2,0.0 -2019,5,21,4,15,197.0,-52.900695797541374,0.0,16.2,0.0 -2019,5,21,4,30,197.0,-44.512456337084494,0.0,16.2,0.0 -2019,5,21,4,45,197.0,-35.774840261804854,0.0,16.2,0.0 -2019,5,21,5,0,348.0,-1.2101099392669425,46.0,17.4,0.0 -2019,5,21,5,15,348.0,15.258567868737423,46.0,17.4,0.0 -2019,5,21,5,30,348.0,32.139347493930714,46.0,17.4,0.0 -2019,5,21,5,45,348.0,49.359942846373414,46.0,17.4,0.0 -2019,5,21,6,0,595.0,124.64291538029433,89.0,19.2,0.2 -2019,5,21,6,15,595.0,154.86799849204743,89.0,19.2,0.2 -2019,5,21,6,30,595.0,185.29055075577963,89.0,19.2,0.2 -2019,5,21,6,45,595.0,215.78029813214266,89.0,19.2,0.2 -2019,5,21,7,0,742.0,311.0459759676701,115.0,22.1,2.0 -2019,5,21,7,15,742.0,348.74796070485706,115.0,22.1,2.0 -2019,5,21,7,30,742.0,386.0469979601799,115.0,22.1,2.0 -2019,5,21,7,45,742.0,422.78336752985933,115.0,22.1,2.0 -2019,5,21,8,0,835.0,513.8905639676627,127.0,25.3,1.6 -2019,5,21,8,15,835.0,553.4373623767551,127.0,25.3,1.6 -2019,5,21,8,30,835.0,591.8310388317757,127.0,25.3,1.6 -2019,5,21,8,45,835.0,628.9071857158393,127.0,25.3,1.6 -2019,5,21,9,0,895.0,705.1302974394966,129.0,28.2,2.0 -2019,5,21,9,15,895.0,741.54244764875,129.0,28.2,2.0 -2019,5,21,9,30,895.0,776.0529009238537,129.0,28.2,2.0 -2019,5,21,9,45,895.0,808.513878205743,129.0,28.2,2.0 -2019,5,21,10,0,931.0,865.3364431512503,127.0,31.4,1.6 -2019,5,21,10,15,931.0,894.4152534965548,127.0,31.4,1.6 -2019,5,21,10,30,931.0,920.9581911164216,127.0,31.4,1.6 -2019,5,21,10,45,931.0,944.8515950770167,127.0,31.4,1.6 -2019,5,21,11,0,946.0,978.5107626703125,126.0,33.4,3.0 -2019,5,21,11,15,946.0,997.1047684381934,126.0,33.4,3.0 -2019,5,21,11,30,946.0,1012.7309759505602,126.0,33.4,3.0 -2019,5,21,11,45,946.0,1025.3224713878656,126.0,33.4,3.0 -2019,5,21,12,0,942.0,1030.9825227733816,126.0,33.8,6.2 -2019,5,21,12,15,942.0,1037.3291144682087,126.0,33.8,6.2 -2019,5,21,12,30,942.0,1040.5324373780386,126.0,33.8,6.2 -2019,5,21,12,45,942.0,1040.5787743823878,126.0,33.8,6.2 -2019,5,21,13,0,917.0,1015.2782262348045,128.0,33.3,6.1 -2019,5,21,13,15,917.0,1009.1895112119437,128.0,33.3,6.1 -2019,5,21,13,30,917.0,1000.0664416596657,128.0,33.3,6.1 -2019,5,21,13,45,917.0,987.9480839623925,128.0,33.3,6.1 -2019,5,21,14,0,871.0,931.5038103779135,129.0,33.2,5.8 -2019,5,21,14,15,871.0,914.4631257377395,129.0,33.2,5.8 -2019,5,21,14,30,871.0,894.7609290460014,129.0,33.2,5.8 -2019,5,21,14,45,871.0,872.4815881336698,129.0,33.2,5.8 -2019,5,21,15,0,797.0,780.6581443484012,123.0,32.6,6.6 -2019,5,21,15,15,797.0,755.8268896834991,123.0,32.6,6.6 -2019,5,21,15,30,797.0,728.9280962310286,123.0,32.6,6.6 -2019,5,21,15,45,797.0,700.0769487541312,123.0,32.6,6.6 -2019,5,21,16,0,684.0,573.9279080680029,105.0,31.6,5.8 -2019,5,21,16,15,684.0,546.1410395823625,105.0,31.6,5.8 -2019,5,21,16,30,684.0,517.0163908973245,105.0,31.6,5.8 -2019,5,21,16,45,684.0,486.6786782298559,105.0,31.6,5.8 -2019,5,21,17,0,497.0,326.5001940418057,72.0,30.8,5.0 -2019,5,21,17,15,497.0,302.9802719999143,72.0,30.8,5.0 -2019,5,21,17,30,497.0,278.8718022478422,72.0,30.8,5.0 -2019,5,21,17,45,497.0,254.27802095426745,72.0,30.8,5.0 -2019,5,21,18,0,466.0,155.4925090328774,8.0,28.6,4.4 -2019,5,21,18,15,466.0,131.8204271335884,8.0,28.6,4.4 -2019,5,21,18,30,466.0,107.9936887219931,8.0,28.6,4.4 -2019,5,21,18,45,466.0,84.11432354991729,8.0,28.6,4.4 -2019,5,21,19,0,0.0,0.0,0.0,25.7,2.5 -2019,5,21,19,15,0.0,0.0,0.0,25.7,2.5 -2019,5,21,19,30,0.0,0.0,0.0,25.7,2.5 -2019,5,21,19,45,0.0,0.0,0.0,25.7,2.5 -2019,5,21,20,0,0.0,0.0,0.0,22.7,1.5 -2019,5,21,20,15,0.0,0.0,0.0,22.7,1.5 -2019,5,21,20,30,0.0,0.0,0.0,22.7,1.5 -2019,5,21,20,45,0.0,0.0,0.0,22.7,1.5 -2019,5,21,21,0,0.0,0.0,0.0,21.4,1.6 -2019,5,21,21,15,0.0,0.0,0.0,21.4,1.6 -2019,5,21,21,30,0.0,0.0,0.0,21.4,1.6 -2019,5,21,21,45,0.0,0.0,0.0,21.4,1.6 -2019,5,21,22,0,0.0,0.0,0.0,19.3,1.9 -2019,5,21,22,15,0.0,0.0,0.0,19.3,1.9 -2019,5,21,22,30,0.0,0.0,0.0,19.3,1.9 -2019,5,21,22,45,0.0,0.0,0.0,19.3,1.9 -2019,5,21,23,0,0.0,0.0,0.0,18.9,0.0 -2019,5,21,23,15,0.0,0.0,0.0,18.9,0.0 -2019,5,21,23,30,0.0,0.0,0.0,18.9,0.0 -2019,5,21,23,45,0.0,0.0,0.0,18.9,0.0 -2019,5,22,0,0,0.0,0.0,0.0,18.8,0.0 -2019,5,22,0,15,0.0,0.0,0.0,18.8,0.0 -2019,5,22,0,30,0.0,0.0,0.0,18.8,0.0 -2019,5,22,0,45,0.0,0.0,0.0,18.8,0.0 -2019,5,22,1,0,0.0,0.0,0.0,17.7,0.2 -2019,5,22,1,15,0.0,0.0,0.0,17.7,0.2 -2019,5,22,1,30,0.0,0.0,0.0,17.7,0.2 -2019,5,22,1,45,0.0,0.0,0.0,17.7,0.2 -2019,5,22,2,0,0.0,0.0,0.0,16.7,1.3 -2019,5,22,2,15,0.0,0.0,0.0,16.7,1.3 -2019,5,22,2,30,0.0,0.0,0.0,16.7,1.3 -2019,5,22,2,45,0.0,0.0,0.0,16.7,1.3 -2019,5,22,3,0,0.0,0.0,0.0,16.6,0.0 -2019,5,22,3,15,0.0,0.0,0.0,16.6,0.0 -2019,5,22,3,30,0.0,0.0,0.0,16.6,0.0 -2019,5,22,3,45,0.0,0.0,0.0,16.6,0.0 -2019,5,22,4,0,164.0,-50.27765175336949,0.0,15.7,0.0 -2019,5,22,4,15,164.0,-43.62422192859014,0.0,15.7,0.0 -2019,5,22,4,30,164.0,-36.65046717470723,0.0,15.7,0.0 -2019,5,22,4,45,164.0,-29.38625018020736,0.0,15.7,0.0 -2019,5,22,5,0,305.0,7.340752326630941,48.0,17.0,0.0 -2019,5,22,5,15,305.0,21.75518510842397,48.0,17.0,0.0 -2019,5,22,5,30,305.0,36.53031557417049,48.0,17.0,0.0 -2019,5,22,5,45,305.0,51.602874346896904,48.0,17.0,0.0 -2019,5,22,6,0,559.0,129.65491801481988,95.0,19.7,0.2 -2019,5,22,6,15,559.0,158.01324296309235,95.0,19.7,0.2 -2019,5,22,6,30,559.0,186.55684099592102,95.0,19.7,0.2 -2019,5,22,6,45,559.0,215.1634840444366,95.0,19.7,0.2 -2019,5,22,7,0,710.0,311.8811781585811,123.0,21.9,1.6 -2019,5,22,7,15,710.0,347.908907002958,123.0,21.9,1.6 -2019,5,22,7,30,710.0,383.55158230927003,123.0,21.9,1.6 -2019,5,22,7,45,710.0,418.6565766698926,123.0,21.9,1.6 -2019,5,22,8,0,694.0,495.63528758596124,173.0,23.6,2.2 -2019,5,22,8,15,694.0,528.4601227425076,173.0,23.6,2.2 -2019,5,22,8,30,694.0,560.3278377381181,173.0,23.6,2.2 -2019,5,22,8,45,694.0,591.1019701247609,173.0,23.6,2.2 -2019,5,22,9,0,790.0,680.5736093241935,171.0,26.5,2.5 -2019,5,22,9,15,790.0,712.6709173742336,171.0,26.5,2.5 -2019,5,22,9,30,790.0,743.0918797000461,171.0,26.5,2.5 -2019,5,22,9,45,790.0,771.7062290706409,171.0,26.5,2.5 -2019,5,22,10,0,646.0,768.0314767773309,255.0,29.4,2.2 -2019,5,22,10,15,646.0,788.1815997406908,255.0,29.4,2.2 -2019,5,22,10,30,646.0,806.5744930708496,255.0,29.4,2.2 -2019,5,22,10,45,646.0,823.1313955748394,255.0,29.4,2.2 -2019,5,22,11,0,835.0,929.2855661382672,176.0,29.5,2.7 -2019,5,22,11,15,835.0,945.6758520387322,176.0,29.5,2.7 -2019,5,22,11,30,835.0,959.450076477777,176.0,29.5,2.7 -2019,5,22,11,45,835.0,970.5492561116961,176.0,29.5,2.7 -2019,5,22,12,0,814.0,965.7325175031692,183.0,30.7,3.9 -2019,5,22,12,15,814.0,971.2093857041536,183.0,30.7,3.9 -2019,5,22,12,30,814.0,973.9737320219783,183.0,30.7,3.9 -2019,5,22,12,45,814.0,974.0137191013199,183.0,30.7,3.9 -2019,5,22,13,0,758.0,930.0952275051784,196.0,31.0,6.0 -2019,5,22,13,15,758.0,925.0689814362657,196.0,31.0,6.0 -2019,5,22,13,30,758.0,917.5378698139635,196.0,31.0,6.0 -2019,5,22,13,45,758.0,907.5341420144356,196.0,31.0,6.0 -2019,5,22,14,0,795.0,890.225600595061,157.0,29.9,4.2 -2019,5,22,14,15,795.0,874.6926399561705,157.0,29.9,4.2 -2019,5,22,14,30,795.0,856.7336522643873,157.0,29.9,4.2 -2019,5,22,14,45,795.0,836.4255406621215,157.0,29.9,4.2 -2019,5,22,15,0,744.0,753.7173825096264,139.0,29.5,4.6 -2019,5,22,15,15,744.0,730.5684213167126,139.0,29.5,4.6 -2019,5,22,15,30,744.0,705.4919950881349,139.0,29.5,4.6 -2019,5,22,15,45,744.0,678.5954849308073,139.0,29.5,4.6 -2019,5,22,16,0,688.0,577.5321468969756,105.0,28.8,4.9 -2019,5,22,16,15,688.0,549.6201973881448,105.0,28.8,4.9 -2019,5,22,16,30,688.0,520.3644457377094,105.0,28.8,4.9 -2019,5,22,16,45,688.0,489.89016956566104,105.0,28.8,4.9 -2019,5,22,17,0,549.0,348.9433104014305,67.0,28.1,5.0 -2019,5,22,17,15,549.0,322.9973313942032,67.0,28.1,5.0 -2019,5,22,17,30,549.0,296.40209655585943,67.0,28.1,5.0 -2019,5,22,17,45,549.0,269.27149076495186,67.0,28.1,5.0 -2019,5,22,18,0,500.0,167.12722353428353,8.0,26.4,3.8 -2019,5,22,18,15,500.0,141.76199549468387,8.0,26.4,3.8 -2019,5,22,18,30,500.0,116.23104913258308,8.0,26.4,3.8 -2019,5,22,18,45,500.0,90.64371187988574,8.0,26.4,3.8 -2019,5,22,19,0,0.0,0.0,0.0,24.1,1.7 -2019,5,22,19,15,0.0,0.0,0.0,24.1,1.7 -2019,5,22,19,30,0.0,0.0,0.0,24.1,1.7 -2019,5,22,19,45,0.0,0.0,0.0,24.1,1.7 -2019,5,22,20,0,0.0,0.0,0.0,22.1,3.2 -2019,5,22,20,15,0.0,0.0,0.0,22.1,3.2 -2019,5,22,20,30,0.0,0.0,0.0,22.1,3.2 -2019,5,22,20,45,0.0,0.0,0.0,22.1,3.2 -2019,5,22,21,0,0.0,0.0,0.0,20.9,3.2 -2019,5,22,21,15,0.0,0.0,0.0,20.9,3.2 -2019,5,22,21,30,0.0,0.0,0.0,20.9,3.2 -2019,5,22,21,45,0.0,0.0,0.0,20.9,3.2 -2019,5,22,22,0,0.0,0.0,0.0,19.3,0.2 -2019,5,22,22,15,0.0,0.0,0.0,19.3,0.2 -2019,5,22,22,30,0.0,0.0,0.0,19.3,0.2 -2019,5,22,22,45,0.0,0.0,0.0,19.3,0.2 -2019,5,22,23,0,0.0,0.0,0.0,18.2,1.3 -2019,5,22,23,15,0.0,0.0,0.0,18.2,1.3 -2019,5,22,23,30,0.0,0.0,0.0,18.2,1.3 -2019,5,22,23,45,0.0,0.0,0.0,18.2,1.3 -2019,5,23,0,0,0.0,0.0,0.0,17.6,0.0 -2019,5,23,0,15,0.0,0.0,0.0,17.6,0.0 -2019,5,23,0,30,0.0,0.0,0.0,17.6,0.0 -2019,5,23,0,45,0.0,0.0,0.0,17.6,0.0 -2019,5,23,1,0,0.0,0.0,0.0,16.1,1.5 -2019,5,23,1,15,0.0,0.0,0.0,16.1,1.5 -2019,5,23,1,30,0.0,0.0,0.0,16.1,1.5 -2019,5,23,1,45,0.0,0.0,0.0,16.1,1.5 -2019,5,23,2,0,0.0,0.0,0.0,15.8,1.8 -2019,5,23,2,15,0.0,0.0,0.0,15.8,1.8 -2019,5,23,2,30,0.0,0.0,0.0,15.8,1.8 -2019,5,23,2,45,0.0,0.0,0.0,15.8,1.8 -2019,5,23,3,0,0.0,0.0,0.0,15.6,1.6 -2019,5,23,3,15,0.0,0.0,0.0,15.6,1.6 -2019,5,23,3,30,0.0,0.0,0.0,15.6,1.6 -2019,5,23,3,45,0.0,0.0,0.0,15.6,1.6 -2019,5,23,4,0,1.0,0.6959446192593839,1.0,15.6,2.1 -2019,5,23,4,15,1.0,0.7364609344409183,1.0,15.6,2.1 -2019,5,23,4,30,1.0,0.7789278805195768,1.0,15.6,2.1 -2019,5,23,4,45,1.0,0.8231636075126059,1.0,15.6,2.1 -2019,5,23,5,0,3.0,18.60693607373749,19.0,15.7,2.1 -2019,5,23,5,15,3.0,18.748530833491127,19.0,15.7,2.1 -2019,5,23,5,30,3.0,18.893668771299442,19.0,15.7,2.1 -2019,5,23,5,45,3.0,19.041728384230762,19.0,15.7,2.1 -2019,5,23,6,0,2.0,53.12805043886132,53.0,16.1,1.6 -2019,5,23,6,15,2.0,53.22937785558257,53.0,16.1,1.6 -2019,5,23,6,30,2.0,53.33136727342977,53.0,16.1,1.6 -2019,5,23,6,45,2.0,53.43358195805801,53.0,16.1,1.6 -2019,5,23,7,0,0.0,71.0,71.0,16.9,0.0 -2019,5,23,7,15,0.0,71.0,71.0,16.9,0.0 -2019,5,23,7,30,0.0,71.0,71.0,16.9,0.0 -2019,5,23,7,45,0.0,71.0,71.0,16.9,0.0 -2019,5,23,8,0,1.0,137.46639297216925,137.0,18.0,0.2 -2019,5,23,8,15,1.0,137.51362877396815,137.0,18.0,0.2 -2019,5,23,8,30,1.0,137.55948725466237,137.0,18.0,0.2 -2019,5,23,8,45,1.0,137.6037720411972,137.0,18.0,0.2 -2019,5,23,9,0,316.0,558.2287457844942,354.0,19.8,1.6 -2019,5,23,9,15,316.0,571.050776413744,354.0,19.8,1.6 -2019,5,23,9,30,316.0,583.203151002439,354.0,19.8,1.6 -2019,5,23,9,45,316.0,594.6338312169239,354.0,19.8,1.6 -2019,5,23,10,0,637.0,764.5639070746435,258.0,23.1,1.9 -2019,5,23,10,15,637.0,784.4071579602341,258.0,23.1,1.9 -2019,5,23,10,30,637.0,802.519940573318,258.0,23.1,1.9 -2019,5,23,10,45,637.0,818.8246931980212,258.0,23.1,1.9 -2019,5,23,11,0,718.0,879.3997585575598,231.0,25.1,0.4 -2019,5,23,11,15,718.0,893.474898004308,231.0,25.1,0.4 -2019,5,23,11,30,718.0,905.3034976350725,231.0,25.1,0.4 -2019,5,23,11,45,718.0,914.8349055702741,231.0,25.1,0.4 -2019,5,23,12,0,829.0,973.85858828016,176.0,25.8,3.8 -2019,5,23,12,15,829.0,979.4290426859675,176.0,25.8,3.8 -2019,5,23,12,30,829.0,982.2406248822557,176.0,25.8,3.8 -2019,5,23,12,45,829.0,982.2812952424175,176.0,25.8,3.8 -2019,5,23,13,0,810.0,958.1341525740402,173.0,27.0,5.5 -2019,5,23,13,15,810.0,952.7701649395844,173.0,27.0,5.5 -2019,5,23,13,30,810.0,944.7329958352725,173.0,27.0,5.5 -2019,5,23,13,45,810.0,934.0570616530974,173.0,27.0,5.5 -2019,5,23,14,0,674.0,824.2335368266924,202.0,25.5,3.8 -2019,5,23,14,15,674.0,811.082038988004,202.0,25.5,3.8 -2019,5,23,14,30,674.0,795.8764646416578,202.0,25.5,3.8 -2019,5,23,14,45,674.0,778.6819263914072,202.0,25.5,3.8 -2019,5,23,15,0,646.0,702.4088231644012,168.0,25.1,5.1 -2019,5,23,15,15,646.0,682.3354990205579,168.0,25.1,5.1 -2019,5,23,15,30,646.0,660.5907983464948,168.0,25.1,5.1 -2019,5,23,15,45,646.0,637.2678352888056,168.0,25.1,5.1 -2019,5,23,16,0,526.0,498.90304910094164,137.0,24.4,5.1 -2019,5,23,16,15,526.0,477.59146731545434,137.0,24.4,5.1 -2019,5,23,16,30,526.0,455.25385367808,137.0,24.4,5.1 -2019,5,23,16,45,526.0,431.9858612797467,137.0,24.4,5.1 -2019,5,23,17,0,427.0,299.90266792738095,80.0,23.7,5.0 -2019,5,23,17,15,427.0,279.7490137891132,80.0,23.7,5.0 -2019,5,23,17,30,427.0,259.09104730772947,80.0,23.7,5.0 -2019,5,23,17,45,427.0,238.01722906717177,80.0,23.7,5.0 -2019,5,23,18,0,371.0,130.7007118163976,12.0,22.0,4.5 -2019,5,23,18,15,371.0,111.90447601460689,12.0,22.0,4.5 -2019,5,23,18,30,371.0,92.98543900395089,12.0,22.0,4.5 -2019,5,23,18,45,371.0,74.02461500541241,12.0,22.0,4.5 -2019,5,23,19,0,0.0,0.0,0.0,20.4,3.9 -2019,5,23,19,15,0.0,0.0,0.0,20.4,3.9 -2019,5,23,19,30,0.0,0.0,0.0,20.4,3.9 -2019,5,23,19,45,0.0,0.0,0.0,20.4,3.9 -2019,5,23,20,0,0.0,0.0,0.0,18.8,2.5 -2019,5,23,20,15,0.0,0.0,0.0,18.8,2.5 -2019,5,23,20,30,0.0,0.0,0.0,18.8,2.5 -2019,5,23,20,45,0.0,0.0,0.0,18.8,2.5 -2019,5,23,21,0,0.0,0.0,0.0,18.1,1.5 -2019,5,23,21,15,0.0,0.0,0.0,18.1,1.5 -2019,5,23,21,30,0.0,0.0,0.0,18.1,1.5 -2019,5,23,21,45,0.0,0.0,0.0,18.1,1.5 -2019,5,23,22,0,0.0,0.0,0.0,16.6,1.5 -2019,5,23,22,15,0.0,0.0,0.0,16.6,1.5 -2019,5,23,22,30,0.0,0.0,0.0,16.6,1.5 -2019,5,23,22,45,0.0,0.0,0.0,16.6,1.5 -2019,5,23,23,0,0.0,0.0,0.0,16.0,1.5 -2019,5,23,23,15,0.0,0.0,0.0,16.0,1.5 -2019,5,23,23,30,0.0,0.0,0.0,16.0,1.5 -2019,5,23,23,45,0.0,0.0,0.0,16.0,1.5 -2019,5,24,0,0,0.0,0.0,0.0,15.7,1.6 -2019,5,24,0,15,0.0,0.0,0.0,15.7,1.6 -2019,5,24,0,30,0.0,0.0,0.0,15.7,1.6 -2019,5,24,0,45,0.0,0.0,0.0,15.7,1.6 -2019,5,24,1,0,0.0,0.0,0.0,15.7,0.0 -2019,5,24,1,15,0.0,0.0,0.0,15.7,0.0 -2019,5,24,1,30,0.0,0.0,0.0,15.7,0.0 -2019,5,24,1,45,0.0,0.0,0.0,15.7,0.0 -2019,5,24,2,0,0.0,0.0,0.0,16.1,0.2 -2019,5,24,2,15,0.0,0.0,0.0,16.1,0.2 -2019,5,24,2,30,0.0,0.0,0.0,16.1,0.2 -2019,5,24,2,45,0.0,0.0,0.0,16.1,0.2 -2019,5,24,3,0,0.0,0.0,0.0,16.1,1.6 -2019,5,24,3,15,0.0,0.0,0.0,16.1,1.6 -2019,5,24,3,30,0.0,0.0,0.0,16.1,1.6 -2019,5,24,3,45,0.0,0.0,0.0,16.1,1.6 -2019,5,24,4,0,2.0,0.3967807039209217,1.0,16.1,1.9 -2019,5,24,4,15,2.0,0.4777087080989071,1.0,16.1,1.9 -2019,5,24,4,30,2.0,0.562532936913434,1.0,16.1,1.9 -2019,5,24,4,45,2.0,0.6508901599942638,1.0,16.1,1.9 -2019,5,24,5,0,4.0,20.48480403629464,21.0,16.2,1.6 -2019,5,24,5,15,4.0,20.673353287093665,21.0,16.2,1.6 -2019,5,24,5,30,4.0,20.866620675547075,21.0,16.2,1.6 -2019,5,24,5,45,4.0,21.063778601026563,21.0,16.2,1.6 -2019,5,24,6,0,4.0,71.26398280302699,71.0,16.8,1.9 -2019,5,24,6,15,4.0,71.46637597641949,71.0,16.8,1.9 -2019,5,24,6,30,4.0,71.67009144256362,71.0,16.8,1.9 -2019,5,24,6,45,4.0,71.87425686055838,71.0,16.8,1.9 -2019,5,24,7,0,1.0,107.26949949068496,107.0,17.4,0.3 -2019,5,24,7,15,1.0,107.32011057460743,107.0,17.4,0.3 -2019,5,24,7,30,1.0,107.37018074247563,107.0,17.4,0.3 -2019,5,24,7,45,1.0,107.41949558614388,107.0,17.4,0.3 -2019,5,24,8,0,1.0,166.46784393188062,166.0,19.0,2.6 -2019,5,24,8,15,1.0,166.51501874464685,166.0,19.0,2.6 -2019,5,24,8,30,1.0,166.56081801465191,166.0,19.0,2.6 -2019,5,24,8,45,1.0,166.60504562239035,166.0,19.0,2.6 -2019,5,24,9,0,2.0,239.29502435691188,238.0,20.7,3.6 -2019,5,24,9,15,2.0,239.376071669072,238.0,20.7,3.6 -2019,5,24,9,30,2.0,239.45288612422777,238.0,20.7,3.6 -2019,5,24,9,45,2.0,239.5251387910895,238.0,20.7,3.6 -2019,5,24,10,0,86.0,506.4783717237434,438.0,21.7,3.4 -2019,5,24,10,15,86.0,509.15390733498964,438.0,21.7,3.4 -2019,5,24,10,30,86.0,511.59611779634406,438.0,21.7,3.4 -2019,5,24,10,45,86.0,513.794545187676,438.0,21.7,3.4 -2019,5,24,11,0,121.0,574.3780562343238,465.0,21.9,3.2 -2019,5,24,11,15,121.0,576.7469878596396,465.0,21.9,3.2 -2019,5,24,11,30,121.0,578.7378131622614,465.0,21.9,3.2 -2019,5,24,11,45,121.0,580.3420071226063,465.0,21.9,3.2 -2019,5,24,12,0,267.0,685.1865371047395,428.0,23.3,4.4 -2019,5,24,12,15,267.0,686.9783235555622,428.0,23.3,4.4 -2019,5,24,12,30,267.0,687.8826941001682,428.0,23.3,4.4 -2019,5,24,12,45,267.0,687.895776085044,428.0,23.3,4.4 -2019,5,24,13,0,557.0,824.3473970582584,284.0,23.2,6.6 -2019,5,24,13,15,557.0,820.663590321087,284.0,23.2,6.6 -2019,5,24,13,30,557.0,815.1439322398364,284.0,23.2,6.6 -2019,5,24,13,45,557.0,807.8120588378041,284.0,23.2,6.6 -2019,5,24,14,0,562.0,763.3196478873411,244.0,22.7,6.1 -2019,5,24,14,15,562.0,752.3677211363981,244.0,22.7,6.1 -2019,5,24,14,30,562.0,739.7052595301384,244.0,22.7,6.1 -2019,5,24,14,45,562.0,725.3864856731361,244.0,22.7,6.1 -2019,5,24,15,0,557.0,655.3314984298775,194.0,22.2,5.7 -2019,5,24,15,15,557.0,638.0460413404526,194.0,22.2,5.7 -2019,5,24,15,30,557.0,619.3213354705885,194.0,22.2,5.7 -2019,5,24,15,45,557.0,599.2375628854891,194.0,22.2,5.7 -2019,5,24,16,0,503.0,488.66428162924313,142.0,21.4,5.7 -2019,5,24,16,15,503.0,468.3108885784796,142.0,21.4,5.7 -2019,5,24,16,30,503.0,446.9775950316262,142.0,21.4,5.7 -2019,5,24,16,45,503.0,424.75575342679736,142.0,21.4,5.7 -2019,5,24,17,0,356.0,270.8322574792528,87.0,20.9,5.6 -2019,5,24,17,15,356.0,254.05137415813962,87.0,20.9,5.6 -2019,5,24,17,30,356.0,236.85057658578623,87.0,20.9,5.6 -2019,5,24,17,45,356.0,219.30352121811174,87.0,20.9,5.6 -2019,5,24,18,0,194.0,77.38808248475922,15.0,19.2,5.0 -2019,5,24,18,15,194.0,67.57201357522328,15.0,19.2,5.0 -2019,5,24,18,30,194.0,57.69181346723306,15.0,19.2,5.0 -2019,5,24,18,45,194.0,47.78979069448698,15.0,19.2,5.0 -2019,5,24,19,0,0.0,0.0,0.0,17.7,4.2 -2019,5,24,19,15,0.0,0.0,0.0,17.7,4.2 -2019,5,24,19,30,0.0,0.0,0.0,17.7,4.2 -2019,5,24,19,45,0.0,0.0,0.0,17.7,4.2 -2019,5,24,20,0,0.0,0.0,0.0,16.6,1.6 -2019,5,24,20,15,0.0,0.0,0.0,16.6,1.6 -2019,5,24,20,30,0.0,0.0,0.0,16.6,1.6 -2019,5,24,20,45,0.0,0.0,0.0,16.6,1.6 -2019,5,24,21,0,0.0,0.0,0.0,16.1,2.0 -2019,5,24,21,15,0.0,0.0,0.0,16.1,2.0 -2019,5,24,21,30,0.0,0.0,0.0,16.1,2.0 -2019,5,24,21,45,0.0,0.0,0.0,16.1,2.0 -2019,5,24,22,0,0.0,0.0,0.0,16.3,1.6 -2019,5,24,22,15,0.0,0.0,0.0,16.3,1.6 -2019,5,24,22,30,0.0,0.0,0.0,16.3,1.6 -2019,5,24,22,45,0.0,0.0,0.0,16.3,1.6 -2019,5,24,23,0,0.0,0.0,0.0,16.6,0.2 -2019,5,24,23,15,0.0,0.0,0.0,16.6,0.2 -2019,5,24,23,30,0.0,0.0,0.0,16.6,0.2 -2019,5,24,23,45,0.0,0.0,0.0,16.6,0.2 -2019,5,25,0,0,0.0,0.0,0.0,16.0,1.3 -2019,5,25,0,15,0.0,0.0,0.0,16.0,1.3 -2019,5,25,0,30,0.0,0.0,0.0,16.0,1.3 -2019,5,25,0,45,0.0,0.0,0.0,16.0,1.3 -2019,5,25,1,0,0.0,0.0,0.0,15.6,0.0 -2019,5,25,1,15,0.0,0.0,0.0,15.6,0.0 -2019,5,25,1,30,0.0,0.0,0.0,15.6,0.0 -2019,5,25,1,45,0.0,0.0,0.0,15.6,0.0 -2019,5,25,2,0,0.0,0.0,0.0,15.7,0.0 -2019,5,25,2,15,0.0,0.0,0.0,15.7,0.0 -2019,5,25,2,30,0.0,0.0,0.0,15.7,0.0 -2019,5,25,2,45,0.0,0.0,0.0,15.7,0.0 -2019,5,25,3,0,0.0,0.0,0.0,15.1,0.0 -2019,5,25,3,15,0.0,0.0,0.0,15.1,0.0 -2019,5,25,3,30,0.0,0.0,0.0,15.1,0.0 -2019,5,25,3,45,0.0,0.0,0.0,15.1,0.0 -2019,5,25,4,0,2.0,0.4015301270309858,1.0,15.7,0.0 -2019,5,25,4,15,2.0,0.48235575789511964,1.0,15.7,0.0 -2019,5,25,4,30,2.0,0.5670726847010673,1.0,15.7,0.0 -2019,5,25,4,45,2.0,0.6553181365622642,1.0,15.7,0.0 -2019,5,25,5,0,4.0,20.493428465812308,21.0,15.7,1.6 -2019,5,25,5,15,4.0,20.681739203233615,21.0,15.7,1.6 -2019,5,25,5,30,4.0,20.87476210990082,21.0,15.7,1.6 -2019,5,25,5,45,4.0,21.07167063209416,21.0,15.7,1.6 -2019,5,25,6,0,9.0,87.61114854890623,87.0,16.7,2.4 -2019,5,25,6,15,9.0,88.06595713091014,87.0,16.7,2.4 -2019,5,25,6,30,9.0,88.52373710805195,87.0,16.7,2.4 -2019,5,25,6,45,9.0,88.98252819618989,87.0,16.7,2.4 -2019,5,25,7,0,1.0,92.27115175349441,92.0,18.0,0.0 -2019,5,25,7,15,1.0,92.32169881477807,92.0,18.0,0.0 -2019,5,25,7,30,1.0,92.37170564426224,92.0,18.0,0.0 -2019,5,25,7,45,1.0,92.42095810502583,92.0,18.0,0.0 -2019,5,25,8,0,1.0,154.4692452904705,154.0,17.9,2.4 -2019,5,25,8,15,1.0,154.516360427455,154.0,17.9,2.4 -2019,5,25,8,30,1.0,154.5621017617295,154.0,17.9,2.4 -2019,5,25,8,45,1.0,154.60627342187834,154.0,17.9,2.4 -2019,5,25,9,0,1.0,205.64868625807134,205.0,19.0,4.7 -2019,5,25,9,15,1.0,205.68915865203263,205.0,19.0,4.7 -2019,5,25,9,30,1.0,205.7275172947578,205.0,19.0,4.7 -2019,5,25,9,45,1.0,205.76359792864983,205.0,19.0,4.7 -2019,5,25,10,0,1.0,247.79724605089513,247.0,20.1,4.9 -2019,5,25,10,15,1.0,247.82831757506852,247.0,20.1,4.9 -2019,5,25,10,30,1.0,247.85667944813332,247.0,20.1,4.9 -2019,5,25,10,45,1.0,247.88221022019485,247.0,20.1,4.9 -2019,5,25,11,0,3.0,304.7144016937028,302.0,20.6,3.9 -2019,5,25,11,15,3.0,304.77306123778646,302.0,20.6,3.9 -2019,5,25,11,30,3.0,304.8223581036622,302.0,20.6,3.9 -2019,5,25,11,45,3.0,304.8620811945822,302.0,20.6,3.9 -2019,5,25,12,0,0.0,221.0,221.0,20.6,6.0 -2019,5,25,12,15,0.0,221.0,221.0,20.6,6.0 -2019,5,25,12,30,0.0,221.0,221.0,20.6,6.0 -2019,5,25,12,45,0.0,221.0,221.0,20.6,6.0 -2019,5,25,13,0,7.0,319.7960833597122,313.0,20.8,4.8 -2019,5,25,13,15,7.0,319.7498463269539,313.0,20.8,4.8 -2019,5,25,13,30,7.0,319.68056673936263,313.0,20.8,4.8 -2019,5,25,13,45,7.0,319.58854126276833,313.0,20.8,4.8 -2019,5,25,14,0,112.0,466.5866234302381,363.0,22.1,9.6 -2019,5,25,14,15,112.0,464.40679400605484,363.0,22.1,9.6 -2019,5,25,14,30,112.0,461.8865062959915,363.0,22.1,9.6 -2019,5,25,14,45,112.0,459.0365525589442,363.0,22.1,9.6 -2019,5,25,15,0,428.0,585.8927725205431,231.0,21.1,8.2 -2019,5,25,15,15,428.0,572.6273919137354,231.0,21.1,8.2 -2019,5,25,15,30,428.0,558.2574884261248,231.0,21.1,8.2 -2019,5,25,15,45,428.0,542.8445961905528,231.0,21.1,8.2 -2019,5,25,16,0,305.0,387.5460005869853,177.0,19.5,7.9 -2019,5,25,16,15,305.0,375.22009188020473,177.0,19.5,7.9 -2019,5,25,16,30,305.0,362.30076054229784,177.0,19.5,7.9 -2019,5,25,16,45,305.0,348.8433291334652,177.0,19.5,7.9 -2019,5,25,17,0,140.0,171.48117843194456,99.0,18.1,7.8 -2019,5,25,17,15,140.0,164.89030262219882,99.0,18.1,7.8 -2019,5,25,17,30,140.0,158.13450088884662,99.0,18.1,7.8 -2019,5,25,17,45,140.0,151.2427026120797,99.0,18.1,7.8 -2019,5,25,18,0,70.0,51.62220976508364,29.0,16.4,8.4 -2019,5,25,18,15,70.0,48.08480968283106,29.0,16.4,8.4 -2019,5,25,18,30,70.0,44.524298749505846,29.0,16.4,8.4 -2019,5,25,18,45,70.0,40.955923619544095,29.0,16.4,8.4 -2019,5,25,19,0,0.0,0.0,0.0,14.3,5.0 -2019,5,25,19,15,0.0,0.0,0.0,14.3,5.0 -2019,5,25,19,30,0.0,0.0,0.0,14.3,5.0 -2019,5,25,19,45,0.0,0.0,0.0,14.3,5.0 -2019,5,25,20,0,0.0,0.0,0.0,13.8,4.5 -2019,5,25,20,15,0.0,0.0,0.0,13.8,4.5 -2019,5,25,20,30,0.0,0.0,0.0,13.8,4.5 -2019,5,25,20,45,0.0,0.0,0.0,13.8,4.5 -2019,5,25,21,0,0.0,0.0,0.0,12.8,3.4 -2019,5,25,21,15,0.0,0.0,0.0,12.8,3.4 -2019,5,25,21,30,0.0,0.0,0.0,12.8,3.4 -2019,5,25,21,45,0.0,0.0,0.0,12.8,3.4 -2019,5,25,22,0,0.0,0.0,0.0,12.8,1.3 -2019,5,25,22,15,0.0,0.0,0.0,12.8,1.3 -2019,5,25,22,30,0.0,0.0,0.0,12.8,1.3 -2019,5,25,22,45,0.0,0.0,0.0,12.8,1.3 -2019,5,25,23,0,0.0,0.0,0.0,12.7,0.0 -2019,5,25,23,15,0.0,0.0,0.0,12.7,0.0 -2019,5,25,23,30,0.0,0.0,0.0,12.7,0.0 -2019,5,25,23,45,0.0,0.0,0.0,12.7,0.0 -2019,5,26,0,0,0.0,0.0,0.0,12.3,0.0 -2019,5,26,0,15,0.0,0.0,0.0,12.3,0.0 -2019,5,26,0,30,0.0,0.0,0.0,12.3,0.0 -2019,5,26,0,45,0.0,0.0,0.0,12.3,0.0 -2019,5,26,1,0,0.0,0.0,0.0,12.7,0.0 -2019,5,26,1,15,0.0,0.0,0.0,12.7,0.0 -2019,5,26,1,30,0.0,0.0,0.0,12.7,0.0 -2019,5,26,1,45,0.0,0.0,0.0,12.7,0.0 -2019,5,26,2,0,0.0,0.0,0.0,12.2,0.0 -2019,5,26,2,15,0.0,0.0,0.0,12.2,0.0 -2019,5,26,2,30,0.0,0.0,0.0,12.2,0.0 -2019,5,26,2,45,0.0,0.0,0.0,12.2,0.0 -2019,5,26,3,0,0.0,0.0,0.0,12.2,0.0 -2019,5,26,3,15,0.0,0.0,0.0,12.2,0.0 -2019,5,26,3,30,0.0,0.0,0.0,12.2,0.0 -2019,5,26,3,45,0.0,0.0,0.0,12.2,0.0 -2019,5,26,4,0,3.0,1.1092030996089772,2.0,12.2,0.0 -2019,5,26,4,15,3.0,1.230291543066874,2.0,12.2,0.0 -2019,5,26,4,30,3.0,1.3572097086511639,2.0,12.2,0.0 -2019,5,26,4,45,3.0,1.489414113291979,2.0,12.2,0.0 -2019,5,26,5,0,6.0,25.25267727486452,26.0,12.0,0.0 -2019,5,26,5,15,6.0,25.534793898477208,26.0,12.0,0.0 -2019,5,26,5,30,6.0,25.82397003072838,26.0,12.0,0.0 -2019,5,26,5,45,6.0,26.1189673750246,26.0,12.0,0.0 -2019,5,26,6,0,16.0,102.11606055319677,101.0,14.0,2.1 -2019,5,26,6,15,16.0,102.92360876287714,101.0,14.0,2.1 -2019,5,26,6,30,16.0,103.73643291702913,101.0,14.0,2.1 -2019,5,26,6,45,16.0,104.55105237783764,101.0,14.0,2.1 -2019,5,26,7,0,18.0,187.90947617217242,183.0,15.7,2.5 -2019,5,26,7,15,18.0,188.81819756266782,183.0,15.7,2.5 -2019,5,26,7,30,18.0,189.71720681205002,183.0,15.7,2.5 -2019,5,26,7,45,18.0,190.60265422469473,183.0,15.7,2.5 -2019,5,26,8,0,11.0,246.17656833151617,241.0,16.2,1.3 -2019,5,26,8,15,11.0,246.69419361067082,241.0,16.2,1.3 -2019,5,26,8,30,11.0,247.19672575719812,241.0,16.2,1.3 -2019,5,26,8,45,11.0,247.6820128512965,241.0,16.2,1.3 -2019,5,26,9,0,4.0,259.5992642978641,257.0,16.8,0.0 -2019,5,26,9,15,4.0,259.7609535750696,257.0,16.8,0.0 -2019,5,26,9,30,4.0,259.91419830832535,257.0,16.8,0.0 -2019,5,26,9,45,4.0,260.058342280157,257.0,16.8,0.0 -2019,5,26,10,0,2.0,274.59638412197387,273.0,17.9,0.4 -2019,5,26,10,15,2.0,274.65845028354164,273.0,17.9,0.4 -2019,5,26,10,30,2.0,274.7151038479493,273.0,17.9,0.4 -2019,5,26,10,45,2.0,274.7661022159366,273.0,17.9,0.4 -2019,5,26,11,0,2.0,298.81122700466227,297.0,18.4,3.2 -2019,5,26,11,15,2.0,298.8502849828534,297.0,18.4,3.2 -2019,5,26,11,30,2.0,298.883108898251,297.0,18.4,3.2 -2019,5,26,11,45,2.0,298.9095581938102,297.0,18.4,3.2 -2019,5,26,12,0,6.0,339.7885588287603,334.0,19.0,3.7 -2019,5,26,12,15,6.0,339.8287230032016,334.0,19.0,3.7 -2019,5,26,12,30,6.0,339.84899511559337,334.0,19.0,3.7 -2019,5,26,12,45,6.0,339.8492883576381,334.0,19.0,3.7 -2019,5,26,13,0,328.0,695.6848805583513,377.0,20.0,4.7 -2019,5,26,13,15,328.0,693.52102586504,377.0,20.0,4.7 -2019,5,26,13,30,328.0,690.2787987622796,377.0,20.0,4.7 -2019,5,26,13,45,328.0,685.9720829642803,377.0,20.0,4.7 -2019,5,26,14,0,187.0,533.1000394252837,360.0,20.0,5.1 -2019,5,26,14,15,187.0,529.4650058312293,360.0,20.0,5.1 -2019,5,26,14,30,187.0,525.262231801699,360.0,20.0,5.1 -2019,5,26,14,45,187.0,520.5097142603091,360.0,20.0,5.1 -2019,5,26,15,0,809.0,792.5470246598101,121.0,19.9,5.1 -2019,5,26,15,15,809.0,767.5039987875126,121.0,19.9,5.1 -2019,5,26,15,30,809.0,740.3758013019484,121.0,19.9,5.1 -2019,5,26,15,45,809.0,711.2785993095473,121.0,19.9,5.1 -2019,5,26,16,0,705.0,590.4321124906163,103.0,19.4,5.4 -2019,5,26,16,15,705.0,561.9763282780101,103.0,19.4,5.4 -2019,5,26,16,30,705.0,532.1505593657023,103.0,19.4,5.4 -2019,5,26,16,45,705.0,501.0825242751106,103.0,19.4,5.4 -2019,5,26,17,0,510.0,338.6974229249554,74.0,18.8,5.6 -2019,5,26,17,15,510.0,314.7175099178771,74.0,18.8,5.6 -2019,5,26,17,30,510.0,290.1375386765277,74.0,18.8,5.6 -2019,5,26,17,45,510.0,265.0627644113488,74.0,18.8,5.6 -2019,5,26,18,0,416.0,153.0781047854938,18.0,17.6,5.0 -2019,5,26,18,15,416.0,132.08185133380417,18.0,17.6,5.0 -2019,5,26,18,30,416.0,110.94842332585236,18.0,17.6,5.0 -2019,5,26,18,45,416.0,89.7683173448312,18.0,17.6,5.0 -2019,5,26,19,0,0.0,0.0,0.0,15.9,3.9 -2019,5,26,19,15,0.0,0.0,0.0,15.9,3.9 -2019,5,26,19,30,0.0,0.0,0.0,15.9,3.9 -2019,5,26,19,45,0.0,0.0,0.0,15.9,3.9 -2019,5,26,20,0,0.0,0.0,0.0,14.3,2.6 -2019,5,26,20,15,0.0,0.0,0.0,14.3,2.6 -2019,5,26,20,30,0.0,0.0,0.0,14.3,2.6 -2019,5,26,20,45,0.0,0.0,0.0,14.3,2.6 -2019,5,26,21,0,0.0,0.0,0.0,13.8,2.5 -2019,5,26,21,15,0.0,0.0,0.0,13.8,2.5 -2019,5,26,21,30,0.0,0.0,0.0,13.8,2.5 -2019,5,26,21,45,0.0,0.0,0.0,13.8,2.5 -2019,5,26,22,0,0.0,0.0,0.0,13.2,1.3 -2019,5,26,22,15,0.0,0.0,0.0,13.2,1.3 -2019,5,26,22,30,0.0,0.0,0.0,13.2,1.3 -2019,5,26,22,45,0.0,0.0,0.0,13.2,1.3 -2019,5,26,23,0,0.0,0.0,0.0,12.7,0.0 -2019,5,26,23,15,0.0,0.0,0.0,12.7,0.0 -2019,5,26,23,30,0.0,0.0,0.0,12.7,0.0 -2019,5,26,23,45,0.0,0.0,0.0,12.7,0.0 -2019,5,27,0,0,0.0,0.0,0.0,12.1,0.2 -2019,5,27,0,15,0.0,0.0,0.0,12.1,0.2 -2019,5,27,0,30,0.0,0.0,0.0,12.1,0.2 -2019,5,27,0,45,0.0,0.0,0.0,12.1,0.2 -2019,5,27,1,0,0.0,0.0,0.0,11.0,1.9 -2019,5,27,1,15,0.0,0.0,0.0,11.0,1.9 -2019,5,27,1,30,0.0,0.0,0.0,11.0,1.9 -2019,5,27,1,45,0.0,0.0,0.0,11.0,1.9 -2019,5,27,2,0,0.0,0.0,0.0,10.5,0.2 -2019,5,27,2,15,0.0,0.0,0.0,10.5,0.2 -2019,5,27,2,30,0.0,0.0,0.0,10.5,0.2 -2019,5,27,2,45,0.0,0.0,0.0,10.5,0.2 -2019,5,27,3,0,0.0,0.0,0.0,9.9,1.5 -2019,5,27,3,15,0.0,0.0,0.0,9.9,1.5 -2019,5,27,3,30,0.0,0.0,0.0,9.9,1.5 -2019,5,27,3,45,0.0,0.0,0.0,9.9,1.5 -2019,5,27,4,0,293.0,-86.34790850381829,0.0,9.6,1.3 -2019,5,27,4,15,293.0,-74.53588977900377,0.0,9.6,1.3 -2019,5,27,4,30,293.0,-62.15518931255507,0.0,9.6,1.3 -2019,5,27,4,45,293.0,-49.2588231645896,0.0,9.6,1.3 -2019,5,27,5,0,328.0,8.809347774788002,49.0,11.4,0.0 -2019,5,27,5,15,328.0,24.213093303848613,49.0,11.4,0.0 -2019,5,27,5,30,328.0,40.00229245572257,49.0,11.4,0.0 -2019,5,27,5,45,328.0,56.10933345563955,49.0,11.4,0.0 -2019,5,27,6,0,552.0,136.49028780989195,97.0,13.4,0.0 -2019,5,27,6,15,552.0,164.31704626879227,97.0,13.4,0.0 -2019,5,27,6,30,552.0,192.3256049356487,97.0,13.4,0.0 -2019,5,27,6,45,552.0,220.39602686229765,97.0,13.4,0.0 -2019,5,27,7,0,687.0,317.43726757665945,129.0,14.7,0.2 -2019,5,27,7,15,687.0,352.0782378300014,129.0,14.7,0.2 -2019,5,27,7,30,687.0,386.3489758043211,129.0,14.7,0.2 -2019,5,27,7,45,687.0,420.10272893827334,129.0,14.7,0.2 -2019,5,27,8,0,773.0,511.778315726699,147.0,17.0,1.5 -2019,5,27,8,15,773.0,548.1093156593367,147.0,17.0,1.5 -2019,5,27,8,30,773.0,583.3809612239586,147.0,17.0,1.5 -2019,5,27,8,45,773.0,617.4422138192554,147.0,17.0,1.5 -2019,5,27,9,0,830.0,694.2486298627704,154.0,19.0,1.5 -2019,5,27,9,15,830.0,727.7586265761781,154.0,19.0,1.5 -2019,5,27,9,30,830.0,759.5184970914066,154.0,19.0,1.5 -2019,5,27,9,45,830.0,789.392240767046,154.0,19.0,1.5 -2019,5,27,10,0,865.0,846.2203886796572,155.0,20.3,1.5 -2019,5,27,10,15,865.0,873.031577053003,155.0,20.3,1.5 -2019,5,27,10,30,865.0,897.5046449693848,155.0,20.3,1.5 -2019,5,27,10,45,865.0,919.5347949948106,155.0,20.3,1.5 -2019,5,27,11,0,880.0,952.6235465518757,155.0,23.0,1.7 -2019,5,27,11,15,880.0,969.7882972320375,155.0,23.0,1.7 -2019,5,27,11,30,880.0,984.213373752642,155.0,23.0,1.7 -2019,5,27,11,45,880.0,995.83700572145,155.0,23.0,1.7 -2019,5,27,12,0,876.0,1000.7475579665975,155.0,24.6,3.7 -2019,5,27,12,15,876.0,1006.6044438870595,155.0,24.6,3.7 -2019,5,27,12,30,876.0,1009.5605970085163,155.0,24.6,3.7 -2019,5,27,12,45,876.0,1009.603358629465,155.0,24.6,3.7 -2019,5,27,13,0,852.0,983.39740740142,155.0,26.2,4.2 -2019,5,27,13,15,852.0,977.7834526306721,155.0,26.2,4.2 -2019,5,27,13,30,852.0,969.3717434860371,155.0,26.2,4.2 -2019,5,27,13,45,852.0,958.1983001974612,155.0,26.2,4.2 -2019,5,27,14,0,808.0,900.5484308508258,152.0,27.1,4.7 -2019,5,27,14,15,808.0,884.8609485927872,152.0,27.1,4.7 -2019,5,27,14,30,808.0,866.7233052074172,152.0,27.1,4.7 -2019,5,27,14,45,808.0,846.213168868234,152.0,27.1,4.7 -2019,5,27,15,0,739.0,755.0818976577418,141.0,26.6,5.2 -2019,5,27,15,15,739.0,732.2333929467289,141.0,26.6,5.2 -2019,5,27,15,30,739.0,707.4824402778717,141.0,26.6,5.2 -2019,5,27,15,45,739.0,680.9350270303335,141.0,26.6,5.2 -2019,5,27,16,0,636.0,557.3846738577561,117.0,25.2,5.7 -2019,5,27,16,15,636.0,531.744933554063,117.0,25.2,5.7 -2019,5,27,16,30,636.0,504.87078510129396,117.0,25.2,5.7 -2019,5,27,16,45,636.0,476.8773077289182,117.0,25.2,5.7 -2019,5,27,17,0,467.0,321.96069585972634,79.0,24.3,6.0 -2019,5,27,17,15,467.0,300.0291435363383,79.0,24.3,6.0 -2019,5,27,17,30,467.0,277.54878986583486,79.0,24.3,6.0 -2019,5,27,17,45,467.0,254.61589917387982,79.0,24.3,6.0 -2019,5,27,18,0,303.0,119.83423577430128,21.0,23.1,4.4 -2019,5,27,18,15,303.0,104.55976509849185,21.0,23.1,4.4 -2019,5,27,18,30,303.0,89.18550191722825,21.0,23.1,4.4 -2019,5,27,18,45,303.0,73.77728118575244,21.0,23.1,4.4 -2019,5,27,19,0,0.0,0.0,0.0,21.5,2.5 -2019,5,27,19,15,0.0,0.0,0.0,21.5,2.5 -2019,5,27,19,30,0.0,0.0,0.0,21.5,2.5 -2019,5,27,19,45,0.0,0.0,0.0,21.5,2.5 -2019,5,27,20,0,0.0,0.0,0.0,19.9,2.0 -2019,5,27,20,15,0.0,0.0,0.0,19.9,2.0 -2019,5,27,20,30,0.0,0.0,0.0,19.9,2.0 -2019,5,27,20,45,0.0,0.0,0.0,19.9,2.0 -2019,5,27,21,0,0.0,0.0,0.0,19.3,1.3 -2019,5,27,21,15,0.0,0.0,0.0,19.3,1.3 -2019,5,27,21,30,0.0,0.0,0.0,19.3,1.3 -2019,5,27,21,45,0.0,0.0,0.0,19.3,1.3 -2019,5,27,22,0,0.0,0.0,0.0,18.7,0.0 -2019,5,27,22,15,0.0,0.0,0.0,18.7,0.0 -2019,5,27,22,30,0.0,0.0,0.0,18.7,0.0 -2019,5,27,22,45,0.0,0.0,0.0,18.7,0.0 -2019,5,27,23,0,0.0,0.0,0.0,17.1,0.0 -2019,5,27,23,15,0.0,0.0,0.0,17.1,0.0 -2019,5,27,23,30,0.0,0.0,0.0,17.1,0.0 -2019,5,27,23,45,0.0,0.0,0.0,17.1,0.0 -2019,5,28,0,0,0.0,0.0,0.0,15.9,0.0 -2019,5,28,0,15,0.0,0.0,0.0,15.9,0.0 -2019,5,28,0,30,0.0,0.0,0.0,15.9,0.0 -2019,5,28,0,45,0.0,0.0,0.0,15.9,0.0 -2019,5,28,1,0,0.0,0.0,0.0,14.3,0.0 -2019,5,28,1,15,0.0,0.0,0.0,14.3,0.0 -2019,5,28,1,30,0.0,0.0,0.0,14.3,0.0 -2019,5,28,1,45,0.0,0.0,0.0,14.3,0.0 -2019,5,28,2,0,0.0,0.0,0.0,13.9,0.0 -2019,5,28,2,15,0.0,0.0,0.0,13.9,0.0 -2019,5,28,2,30,0.0,0.0,0.0,13.9,0.0 -2019,5,28,2,45,0.0,0.0,0.0,13.9,0.0 -2019,5,28,3,0,0.0,0.0,0.0,13.8,0.0 -2019,5,28,3,15,0.0,0.0,0.0,13.8,0.0 -2019,5,28,3,30,0.0,0.0,0.0,13.8,0.0 -2019,5,28,3,45,0.0,0.0,0.0,13.8,0.0 -2019,5,28,4,0,272.0,-79.57286579733633,0.0,13.5,0.2 -2019,5,28,4,15,272.0,-68.62035072185775,0.0,13.5,0.2 -2019,5,28,4,30,272.0,-57.140534133106655,0.0,13.5,0.2 -2019,5,28,4,45,272.0,-45.182574368129885,0.0,13.5,0.2 -2019,5,28,5,0,371.0,2.264932873394315,47.0,15.4,1.3 -2019,5,28,5,15,371.0,19.66756142497958,47.0,15.4,1.3 -2019,5,28,5,30,371.0,37.50566238871476,47.0,15.4,1.3 -2019,5,28,5,45,371.0,55.702850277718106,47.0,15.4,1.3 -2019,5,28,6,0,615.0,133.05778758209152,88.0,18.7,0.0 -2019,5,28,6,15,615.0,164.0239299063572,88.0,18.7,0.0 -2019,5,28,6,30,615.0,195.1923829353522,88.0,18.7,0.0 -2019,5,28,6,45,615.0,226.42967856813837,88.0,18.7,0.0 -2019,5,28,7,0,759.0,321.3137543366943,112.0,22.1,0.0 -2019,5,28,7,15,759.0,359.5401662808946,112.0,22.1,0.0 -2019,5,28,7,30,759.0,397.3580258228544,112.0,22.1,0.0 -2019,5,28,7,45,759.0,434.6053910821115,112.0,22.1,0.0 -2019,5,28,8,0,851.0,524.6527950159199,122.0,25.1,0.2 -2019,5,28,8,15,851.0,564.6027106410379,122.0,25.1,0.2 -2019,5,28,8,30,851.0,603.3877500530648,122.0,25.1,0.2 -2019,5,28,8,45,851.0,640.8418297588513,122.0,25.1,0.2 -2019,5,28,9,0,911.0,716.9212212657665,123.0,26.4,2.2 -2019,5,28,9,15,911.0,753.6581731149951,123.0,26.4,2.2 -2019,5,28,9,30,911.0,788.476464618702,123.0,26.4,2.2 -2019,5,28,9,45,911.0,821.226998507267,123.0,26.4,2.2 -2019,5,28,10,0,947.0,877.5683279609159,120.0,29.0,2.8 -2019,5,28,10,15,947.0,906.886600975867,120.0,29.0,2.8 -2019,5,28,10,30,947.0,933.6481184697809,120.0,29.0,2.8 -2019,5,28,10,45,947.0,957.7382835162457,120.0,29.0,2.8 -2019,5,28,11,0,962.0,990.660917289966,118.0,30.1,4.2 -2019,5,28,11,15,962.0,1009.403021517346,118.0,30.1,4.2 -2019,5,28,11,30,962.0,1025.1536894224482,118.0,30.1,4.2 -2019,5,28,11,45,962.0,1037.845474227216,118.0,30.1,4.2 -2019,5,28,12,0,957.0,1043.5933415456652,119.0,30.7,5.3 -2019,5,28,12,15,957.0,1049.9842566101456,119.0,30.7,5.3 -2019,5,28,12,30,957.0,1053.2099509080017,119.0,30.7,5.3 -2019,5,28,12,45,957.0,1053.256611521033,119.0,30.7,5.3 -2019,5,28,13,0,934.0,1030.745926949846,122.0,31.0,6.6 -2019,5,28,13,15,934.0,1024.5989067530957,122.0,31.0,6.6 -2019,5,28,13,30,934.0,1015.3884752279456,122.0,31.0,6.6 -2019,5,28,13,45,934.0,1003.1540728561979,122.0,31.0,6.6 -2019,5,28,14,0,888.0,946.299682262994,123.0,30.4,6.3 -2019,5,28,14,15,888.0,929.0792796176295,123.0,30.4,6.3 -2019,5,28,14,30,888.0,909.1692955298989,123.0,30.4,6.3 -2019,5,28,14,45,888.0,886.6549876083028,123.0,30.4,6.3 -2019,5,28,15,0,816.0,797.7436224210242,119.0,29.5,6.7 -2019,5,28,15,15,816.0,772.5441207182431,119.0,29.5,6.7 -2019,5,28,15,30,816.0,745.2464186667083,119.0,29.5,6.7 -2019,5,28,15,45,816.0,715.9674092174238,119.0,29.5,6.7 -2019,5,28,16,0,706.0,592.5560337330828,103.0,28.3,6.7 -2019,5,28,16,15,706.0,564.1278144562889,103.0,28.3,6.7 -2019,5,28,16,30,706.0,534.3309375751926,103.0,28.3,6.7 -2019,5,28,16,45,706.0,503.29299789109837,103.0,28.3,6.7 -2019,5,28,17,0,524.0,346.2421785048508,73.0,27.7,6.5 -2019,5,28,17,15,524.0,321.66272470153365,73.0,27.7,6.5 -2019,5,28,17,30,524.0,296.4682101328079,73.0,27.7,6.5 -2019,5,28,17,45,524.0,270.76652157798924,73.0,27.7,6.5 -2019,5,28,18,0,337.0,131.40461991540076,21.0,26.4,5.0 -2019,5,28,18,15,337.0,114.43618095072186,21.0,26.4,5.0 -2019,5,28,18,30,337.0,97.3568822990612,21.0,26.4,5.0 -2019,5,28,18,45,337.0,80.2398601393069,21.0,26.4,5.0 -2019,5,28,19,0,0.0,0.0,0.0,24.2,3.9 -2019,5,28,19,15,0.0,0.0,0.0,24.2,3.9 -2019,5,28,19,30,0.0,0.0,0.0,24.2,3.9 -2019,5,28,19,45,0.0,0.0,0.0,24.2,3.9 -2019,5,28,20,0,0.0,0.0,0.0,22.7,2.1 -2019,5,28,20,15,0.0,0.0,0.0,22.7,2.1 -2019,5,28,20,30,0.0,0.0,0.0,22.7,2.1 -2019,5,28,20,45,0.0,0.0,0.0,22.7,2.1 -2019,5,28,21,0,0.0,0.0,0.0,21.6,1.9 -2019,5,28,21,15,0.0,0.0,0.0,21.6,1.9 -2019,5,28,21,30,0.0,0.0,0.0,21.6,1.9 -2019,5,28,21,45,0.0,0.0,0.0,21.6,1.9 -2019,5,28,22,0,0.0,0.0,0.0,20.5,0.0 -2019,5,28,22,15,0.0,0.0,0.0,20.5,0.0 -2019,5,28,22,30,0.0,0.0,0.0,20.5,0.0 -2019,5,28,22,45,0.0,0.0,0.0,20.5,0.0 -2019,5,28,23,0,0.0,0.0,0.0,19.3,0.0 -2019,5,28,23,15,0.0,0.0,0.0,19.3,0.0 -2019,5,28,23,30,0.0,0.0,0.0,19.3,0.0 -2019,5,28,23,45,0.0,0.0,0.0,19.3,0.0 -2019,5,29,0,0,0.0,0.0,0.0,18.0,0.0 -2019,5,29,0,15,0.0,0.0,0.0,18.0,0.0 -2019,5,29,0,30,0.0,0.0,0.0,18.0,0.0 -2019,5,29,0,45,0.0,0.0,0.0,18.0,0.0 -2019,5,29,1,0,0.0,0.0,0.0,15.6,0.0 -2019,5,29,1,15,0.0,0.0,0.0,15.6,0.0 -2019,5,29,1,30,0.0,0.0,0.0,15.6,0.0 -2019,5,29,1,45,0.0,0.0,0.0,15.6,0.0 -2019,5,29,2,0,0.0,0.0,0.0,15.5,0.0 -2019,5,29,2,15,0.0,0.0,0.0,15.5,0.0 -2019,5,29,2,30,0.0,0.0,0.0,15.5,0.0 -2019,5,29,2,45,0.0,0.0,0.0,15.5,0.0 -2019,5,29,3,0,0.0,0.0,0.0,14.4,0.0 -2019,5,29,3,15,0.0,0.0,0.0,14.4,0.0 -2019,5,29,3,30,0.0,0.0,0.0,14.4,0.0 -2019,5,29,3,45,0.0,0.0,0.0,14.4,0.0 -2019,5,29,4,0,250.0,-72.61671905795399,0.0,14.5,0.0 -2019,5,29,4,15,250.0,-62.561594901279506,0.0,14.5,0.0 -2019,5,29,4,30,250.0,-52.02237351694382,0.0,14.5,0.0 -2019,5,29,4,45,250.0,-41.04418546892552,0.0,14.5,0.0 -2019,5,29,5,0,373.0,3.7263307625785487,48.0,15.9,0.0 -2019,5,29,5,15,373.0,21.20274161299115,48.0,15.9,0.0 -2019,5,29,5,30,373.0,39.11647115731216,48.0,15.9,0.0 -2019,5,29,5,45,373.0,57.39081005546703,48.0,15.9,0.0 -2019,5,29,6,0,617.0,134.22951863529977,88.0,18.6,0.2 -2019,5,29,6,15,617.0,165.26079412977742,88.0,18.6,0.2 -2019,5,29,6,30,617.0,196.49480586269868,88.0,18.6,0.2 -2019,5,29,6,45,617.0,227.79780500069072,88.0,18.6,0.2 -2019,5,29,7,0,761.0,321.95332851222605,111.0,21.0,1.5 -2019,5,29,7,15,761.0,360.2365864672182,111.0,21.0,1.5 -2019,5,29,7,30,761.0,398.11068446689103,111.0,21.0,1.5 -2019,5,29,7,45,761.0,435.4134398090728,111.0,21.0,1.5 -2019,5,29,8,0,852.0,525.1515363285383,121.0,24.1,1.6 -2019,5,29,8,15,852.0,565.1026025456175,121.0,24.1,1.6 -2019,5,29,8,30,852.0,603.888759000168,121.0,24.1,1.6 -2019,5,29,8,45,852.0,641.3439174156924,121.0,24.1,1.6 -2019,5,29,9,0,912.0,717.484286874314,122.0,25.9,2.6 -2019,5,29,9,15,912.0,754.2194568410758,122.0,25.9,2.6 -2019,5,29,9,30,912.0,789.0360595246702,122.0,25.9,2.6 -2019,5,29,9,45,912.0,821.7850048872641,122.0,25.9,2.6 -2019,5,29,10,0,948.0,879.1547170585696,120.0,28.1,2.7 -2019,5,29,10,15,948.0,908.4703460146267,120.0,28.1,2.7 -2019,5,29,10,30,948.0,935.2294500298099,120.0,28.1,2.7 -2019,5,29,10,45,948.0,959.3174425125934,120.0,28.1,2.7 -2019,5,29,11,0,963.0,992.2487568637231,118.0,30.0,3.2 -2019,5,29,11,15,963.0,1010.9888626019388,118.0,30.0,3.2 -2019,5,29,11,30,963.0,1026.7378509976988,118.0,30.0,3.2 -2019,5,29,11,45,963.0,1039.4282824648637,118.0,30.0,3.2 -2019,5,29,12,0,959.0,1045.138708440175,118.0,30.1,4.2 -2019,5,29,12,15,959.0,1051.5356471307805,118.0,30.1,4.2 -2019,5,29,12,30,959.0,1054.7643817407436,118.0,30.1,4.2 -2019,5,29,12,45,959.0,1054.8110863327802,118.0,30.1,4.2 -2019,5,29,13,0,935.0,1031.3093320661774,121.0,30.5,5.3 -2019,5,29,13,15,935.0,1025.1627759934213,121.0,30.5,5.3 -2019,5,29,13,30,935.0,1015.9530398917667,121.0,30.5,5.3 -2019,5,29,13,45,935.0,1003.7195612651051,121.0,30.5,5.3 -2019,5,29,14,0,890.0,948.762680122845,123.0,29.3,6.8 -2019,5,29,14,15,890.0,931.5232535529426,123.0,29.3,6.8 -2019,5,29,14,30,890.0,911.591274274819,123.0,29.3,6.8 -2019,5,29,14,45,890.0,889.0520940837563,123.0,29.3,6.8 -2019,5,29,15,0,818.0,800.0559814533273,119.0,29.1,4.1 -2019,5,29,15,15,818.0,774.82363894601,119.0,29.1,4.1 -2019,5,29,15,30,818.0,747.4903616474746,119.0,29.1,4.1 -2019,5,29,15,45,818.0,718.1731948473948,119.0,29.1,4.1 -2019,5,29,16,0,708.0,594.6165731560416,103.0,28.3,4.4 -2019,5,29,16,15,708.0,566.1404615443391,103.0,28.3,4.4 -2019,5,29,16,30,708.0,536.2933865839007,103.0,28.3,4.4 -2019,5,29,16,45,708.0,505.20315803191284,103.0,28.3,4.4 -2019,5,29,17,0,527.0,348.4117698497025,73.0,27.6,4.6 -2019,5,29,17,15,527.0,323.71989714684076,73.0,27.6,4.6 -2019,5,29,17,30,527.0,298.4101505788591,73.0,27.6,4.6 -2019,5,29,17,45,527.0,272.5909103661845,73.0,27.6,4.6 -2019,5,29,18,0,333.0,130.55051595242907,21.0,25.8,4.5 -2019,5,29,18,15,333.0,113.80268006967212,21.0,25.8,4.5 -2019,5,29,18,30,333.0,96.94542576324939,21.0,25.8,4.5 -2019,5,29,18,45,333.0,80.05093838407383,21.0,25.8,4.5 -2019,5,29,19,0,0.0,0.0,0.0,23.0,3.8 -2019,5,29,19,15,0.0,0.0,0.0,23.0,3.8 -2019,5,29,19,30,0.0,0.0,0.0,23.0,3.8 -2019,5,29,19,45,0.0,0.0,0.0,23.0,3.8 -2019,5,29,20,0,0.0,0.0,0.0,21.0,1.3 -2019,5,29,20,15,0.0,0.0,0.0,21.0,1.3 -2019,5,29,20,30,0.0,0.0,0.0,21.0,1.3 -2019,5,29,20,45,0.0,0.0,0.0,21.0,1.3 -2019,5,29,21,0,0.0,0.0,0.0,19.9,0.2 -2019,5,29,21,15,0.0,0.0,0.0,19.9,0.2 -2019,5,29,21,30,0.0,0.0,0.0,19.9,0.2 -2019,5,29,21,45,0.0,0.0,0.0,19.9,0.2 -2019,5,29,22,0,0.0,0.0,0.0,19.3,1.5 -2019,5,29,22,15,0.0,0.0,0.0,19.3,1.5 -2019,5,29,22,30,0.0,0.0,0.0,19.3,1.5 -2019,5,29,22,45,0.0,0.0,0.0,19.3,1.5 -2019,5,29,23,0,0.0,0.0,0.0,18.2,1.5 -2019,5,29,23,15,0.0,0.0,0.0,18.2,1.5 -2019,5,29,23,30,0.0,0.0,0.0,18.2,1.5 -2019,5,29,23,45,0.0,0.0,0.0,18.2,1.5 -2019,5,30,0,0,0.0,0.0,0.0,17.5,1.3 -2019,5,30,0,15,0.0,0.0,0.0,17.5,1.3 -2019,5,30,0,30,0.0,0.0,0.0,17.5,1.3 -2019,5,30,0,45,0.0,0.0,0.0,17.5,1.3 -2019,5,30,1,0,0.0,0.0,0.0,15.0,0.0 -2019,5,30,1,15,0.0,0.0,0.0,15.0,0.0 -2019,5,30,1,30,0.0,0.0,0.0,15.0,0.0 -2019,5,30,1,45,0.0,0.0,0.0,15.0,0.0 -2019,5,30,2,0,0.0,0.0,0.0,14.9,0.0 -2019,5,30,2,15,0.0,0.0,0.0,14.9,0.0 -2019,5,30,2,30,0.0,0.0,0.0,14.9,0.0 -2019,5,30,2,45,0.0,0.0,0.0,14.9,0.0 -2019,5,30,3,0,0.0,0.0,0.0,14.3,0.0 -2019,5,30,3,15,0.0,0.0,0.0,14.3,0.0 -2019,5,30,3,30,0.0,0.0,0.0,14.3,0.0 -2019,5,30,3,45,0.0,0.0,0.0,14.3,0.0 -2019,5,30,4,0,230.0,-66.34635278596414,0.0,14.0,0.0 -2019,5,30,4,15,230.0,-57.10591844817787,0.0,14.0,0.0 -2019,5,30,4,30,230.0,-47.420609579196594,0.0,14.0,0.0 -2019,5,30,4,45,230.0,-37.33190015851321,0.0,14.0,0.0 -2019,5,30,5,0,315.0,14.181989780674726,51.0,15.2,0.2 -2019,5,30,5,15,315.0,28.92448814939777,51.0,15.2,0.2 -2019,5,30,5,30,315.0,44.035893508620276,51.0,15.2,0.2 -2019,5,30,5,45,315.0,59.45149650064877,51.0,15.2,0.2 -2019,5,30,6,0,527.0,142.32852467421216,102.0,16.9,1.5 -2019,5,30,6,15,527.0,168.80390445568943,102.0,16.9,1.5 -2019,5,30,6,30,527.0,195.45225549995672,102.0,16.9,1.5 -2019,5,30,6,45,527.0,222.1594654767134,102.0,16.9,1.5 -2019,5,30,7,0,655.0,319.46929100246894,137.0,18.6,1.6 -2019,5,30,7,15,655.0,352.38344171418817,137.0,18.6,1.6 -2019,5,30,7,30,655.0,384.9458158751654,137.0,18.6,1.6 -2019,5,30,7,45,655.0,417.01697640017653,137.0,18.6,1.6 -2019,5,30,8,0,738.0,509.92698804011513,159.0,20.9,2.3 -2019,5,30,8,15,738.0,544.4940335832555,159.0,20.9,2.3 -2019,5,30,8,30,738.0,578.0531588722488,159.0,20.9,2.3 -2019,5,30,8,45,738.0,610.4606585805167,159.0,20.9,2.3 -2019,5,30,9,0,793.0,687.5422259396772,169.0,23.6,0.3 -2019,5,30,9,15,793.0,719.4486051899291,169.0,23.6,0.3 -2019,5,30,9,30,793.0,749.6886103521,169.0,23.6,0.3 -2019,5,30,9,45,793.0,778.1327490815554,169.0,23.6,0.3 -2019,5,30,10,0,827.0,833.9132084315262,171.0,26.3,2.7 -2019,5,30,10,15,827.0,859.4586555777702,171.0,26.3,2.7 -2019,5,30,10,30,827.0,882.7763636278124,171.0,26.3,2.7 -2019,5,30,10,45,827.0,903.766482575983,171.0,26.3,2.7 -2019,5,30,11,0,842.0,936.9668041690782,172.0,27.9,3.1 -2019,5,30,11,15,842.0,953.3340257459474,172.0,27.9,3.1 -2019,5,30,11,30,842.0,967.0888671692428,172.0,27.9,3.1 -2019,5,30,11,45,842.0,978.1724280963083,172.0,27.9,3.1 -2019,5,30,12,0,838.0,982.6677114023889,172.0,28.3,3.2 -2019,5,30,12,15,838.0,988.2513168247231,172.0,28.3,3.2 -2019,5,30,12,30,838.0,991.0695367495042,172.0,28.3,3.2 -2019,5,30,12,45,838.0,991.1103031263534,172.0,28.3,3.2 -2019,5,30,13,0,815.0,964.9670104185204,171.0,28.2,4.2 -2019,5,30,13,15,815.0,959.6152709113528,171.0,28.2,4.2 -2019,5,30,13,30,815.0,951.5964538758622,171.0,28.2,4.2 -2019,5,30,13,45,815.0,940.9448971176658,171.0,28.2,4.2 -2019,5,30,14,0,772.0,882.7818353960511,166.0,27.7,5.2 -2019,5,30,14,15,772.0,867.8447030105536,166.0,27.7,5.2 -2019,5,30,14,30,772.0,850.5746034527114,166.0,27.7,5.2 -2019,5,30,14,45,772.0,831.0454899401848,166.0,27.7,5.2 -2019,5,30,15,0,706.0,740.3403346236403,152.0,27.3,5.7 -2019,5,30,15,15,706.0,718.586987549079,152.0,27.3,5.7 -2019,5,30,15,30,706.0,695.0223792457541,152.0,27.3,5.7 -2019,5,30,15,45,706.0,669.7474169841249,152.0,27.3,5.7 -2019,5,30,16,0,608.0,546.7325239036688,124.0,26.6,5.7 -2019,5,30,16,15,608.0,522.3056366107379,124.0,26.6,5.7 -2019,5,30,16,30,608.0,496.7027331657789,124.0,26.6,5.7 -2019,5,30,16,45,608.0,470.0334491319723,124.0,26.6,5.7 -2019,5,30,17,0,449.0,317.1430623825234,82.0,25.9,5.5 -2019,5,30,17,15,449.0,296.12915200932764,82.0,25.9,5.5 -2019,5,30,17,30,449.0,274.5894027830074,82.0,25.9,5.5 -2019,5,30,17,45,449.0,252.61605121659213,82.0,25.9,5.5 -2019,5,30,18,0,278.0,114.82246543390215,23.0,24.2,4.0 -2019,5,30,18,15,278.0,100.85632581483068,23.0,24.2,4.0 -2019,5,30,18,30,278.0,86.79894139299705,23.0,24.2,4.0 -2019,5,30,18,45,278.0,72.71050804662448,23.0,24.2,4.0 -2019,5,30,19,0,0.0,0.0,0.0,22.5,3.0 -2019,5,30,19,15,0.0,0.0,0.0,22.5,3.0 -2019,5,30,19,30,0.0,0.0,0.0,22.5,3.0 -2019,5,30,19,45,0.0,0.0,0.0,22.5,3.0 -2019,5,30,20,0,0.0,0.0,0.0,20.5,2.1 -2019,5,30,20,15,0.0,0.0,0.0,20.5,2.1 -2019,5,30,20,30,0.0,0.0,0.0,20.5,2.1 -2019,5,30,20,45,0.0,0.0,0.0,20.5,2.1 -2019,5,30,21,0,0.0,0.0,0.0,19.3,2.0 -2019,5,30,21,15,0.0,0.0,0.0,19.3,2.0 -2019,5,30,21,30,0.0,0.0,0.0,19.3,2.0 -2019,5,30,21,45,0.0,0.0,0.0,19.3,2.0 -2019,5,30,22,0,0.0,0.0,0.0,18.8,1.5 -2019,5,30,22,15,0.0,0.0,0.0,18.8,1.5 -2019,5,30,22,30,0.0,0.0,0.0,18.8,1.5 -2019,5,30,22,45,0.0,0.0,0.0,18.8,1.5 -2019,5,30,23,0,0.0,0.0,0.0,17.7,1.3 -2019,5,30,23,15,0.0,0.0,0.0,17.7,1.3 -2019,5,30,23,30,0.0,0.0,0.0,17.7,1.3 -2019,5,30,23,45,0.0,0.0,0.0,17.7,1.3 -2019,5,31,0,0,0.0,0.0,0.0,17.1,0.0 -2019,5,31,0,15,0.0,0.0,0.0,17.1,0.0 -2019,5,31,0,30,0.0,0.0,0.0,17.1,0.0 -2019,5,31,0,45,0.0,0.0,0.0,17.1,0.0 -2019,5,31,1,0,0.0,0.0,0.0,16.0,0.0 -2019,5,31,1,15,0.0,0.0,0.0,16.0,0.0 -2019,5,31,1,30,0.0,0.0,0.0,16.0,0.0 -2019,5,31,1,45,0.0,0.0,0.0,16.0,0.0 -2019,5,31,2,0,0.0,0.0,0.0,15.5,0.0 -2019,5,31,2,15,0.0,0.0,0.0,15.5,0.0 -2019,5,31,2,30,0.0,0.0,0.0,15.5,0.0 -2019,5,31,2,45,0.0,0.0,0.0,15.5,0.0 -2019,5,31,3,0,0.0,0.0,0.0,14.9,0.0 -2019,5,31,3,15,0.0,0.0,0.0,14.9,0.0 -2019,5,31,3,30,0.0,0.0,0.0,14.9,0.0 -2019,5,31,3,45,0.0,0.0,0.0,14.9,0.0 -2019,5,31,4,0,210.0,-60.17230062372481,0.0,14.0,0.0 -2019,5,31,4,15,210.0,-51.74446186412047,0.0,14.0,0.0 -2019,5,31,4,30,210.0,-42.91087044396918,0.0,14.0,0.0 -2019,5,31,4,45,210.0,-33.70935315788987,0.0,14.0,0.0 -2019,5,31,5,0,355.0,8.125448228485162,49.0,15.1,0.0 -2019,5,31,5,15,355.0,24.7221298081502,49.0,15.1,0.0 -2019,5,31,5,30,355.0,41.73411629073594,49.0,15.1,0.0 -2019,5,31,5,45,355.0,59.08855973839626,49.0,15.1,0.0 -2019,5,31,6,0,587.0,138.8209649608777,93.0,15.9,0.0 -2019,5,31,6,15,587.0,168.27888363221876,93.0,15.9,0.0 -2019,5,31,6,30,587.0,197.92925934983472,93.0,15.9,0.0 -2019,5,31,6,45,587.0,227.64512465289434,93.0,15.9,0.0 -2019,5,31,7,0,725.0,322.92494538667427,120.0,18.7,0.0 -2019,5,31,7,15,725.0,359.3174322682248,120.0,18.7,0.0 -2019,5,31,7,30,725.0,395.3209671874341,120.0,18.7,0.0 -2019,5,31,7,45,725.0,430.7813774804149,120.0,18.7,0.0 -2019,5,31,8,0,813.0,521.4890504717123,134.0,22.1,0.2 -2019,5,31,8,15,813.0,559.5280266834897,134.0,22.1,0.2 -2019,5,31,8,30,813.0,596.4578466463471,134.0,22.1,0.2 -2019,5,31,8,45,813.0,632.1203712016347,134.0,22.1,0.2 -2019,5,31,9,0,872.0,708.9968490619174,138.0,25.3,1.5 -2019,5,31,9,15,872.0,744.0440384007502,138.0,25.3,1.5 -2019,5,31,9,30,872.0,777.2608186005128,138.0,25.3,1.5 -2019,5,31,9,45,872.0,808.5049503088569,138.0,25.3,1.5 -2019,5,31,10,0,907.0,864.7246281088403,137.0,28.1,1.7 -2019,5,31,10,15,907.0,892.7110682899032,137.0,28.1,1.7 -2019,5,31,10,30,907.0,918.2568979544252,137.0,28.1,1.7 -2019,5,31,10,45,907.0,941.2527259379156,137.0,28.1,1.7 -2019,5,31,11,0,922.0,974.237347618246,136.0,30.9,3.7 -2019,5,31,11,15,922.0,992.1403622065386,136.0,30.9,3.7 -2019,5,31,11,30,922.0,1007.18586797576,136.0,30.9,3.7 -2019,5,31,11,45,922.0,1019.3094377603782,136.0,30.9,3.7 -2019,5,31,12,0,918.0,1024.5873164146617,136.0,33.3,4.7 -2019,5,31,12,15,918.0,1030.6973803828914,136.0,33.3,4.7 -2019,5,31,12,30,918.0,1033.7813203669161,136.0,33.3,4.7 -2019,5,31,12,45,918.0,1033.8259304622688,136.0,33.3,4.7 -2019,5,31,13,0,895.0,1009.4115060776655,137.0,33.2,5.8 -2019,5,31,13,15,895.0,1003.5407671599982,137.0,33.2,5.8 -2019,5,31,13,30,895.0,994.7443036585779,137.0,33.2,5.8 -2019,5,31,13,45,895.0,983.0597833805756,137.0,33.2,5.8 -2019,5,31,14,0,850.0,926.7281062014665,137.0,32.0,6.0 -2019,5,31,14,15,850.0,910.299480706163,137.0,32.0,6.0 -2019,5,31,14,30,850.0,891.3049380737453,137.0,32.0,6.0 -2019,5,31,14,45,850.0,869.825815851861,137.0,32.0,6.0 -2019,5,31,15,0,780.0,780.569636391448,130.0,31.0,4.5 -2019,5,31,15,15,780.0,756.5620574909223,130.0,31.0,4.5 -2019,5,31,15,30,780.0,730.555521983399,130.0,31.0,4.5 -2019,5,31,15,45,780.0,702.6613938465175,130.0,31.0,4.5 -2019,5,31,16,0,675.0,580.9030846321248,111.0,29.7,4.0 -2019,5,31,16,15,675.0,553.8136029048247,111.0,29.7,4.0 -2019,5,31,16,30,675.0,525.4199161971958,111.0,29.7,4.0 -2019,5,31,16,45,675.0,495.84361063479787,111.0,29.7,4.0 -2019,5,31,17,0,503.0,340.95304038346535,77.0,28.8,3.7 -2019,5,31,17,15,503.0,317.4371788776301,77.0,28.8,3.7 -2019,5,31,17,30,503.0,293.33287126991,77.0,28.8,3.7 -2019,5,31,17,45,503.0,268.74333590604215,77.0,28.8,3.7 -2019,5,31,18,0,310.0,125.7831001490409,23.0,27.5,3.9 -2019,5,31,18,15,310.0,110.22610732431218,23.0,27.5,3.9 -2019,5,31,18,30,310.0,94.56747619575867,23.0,27.5,3.9 -2019,5,31,18,45,310.0,78.8742594258294,23.0,27.5,3.9 -2019,5,31,19,0,0.0,0.0,0.0,25.3,2.5 -2019,5,31,19,15,0.0,0.0,0.0,25.3,2.5 -2019,5,31,19,30,0.0,0.0,0.0,25.3,2.5 -2019,5,31,19,45,0.0,0.0,0.0,25.3,2.5 -2019,5,31,20,0,0.0,0.0,0.0,23.1,1.3 -2019,5,31,20,15,0.0,0.0,0.0,23.1,1.3 -2019,5,31,20,30,0.0,0.0,0.0,23.1,1.3 -2019,5,31,20,45,0.0,0.0,0.0,23.1,1.3 -2019,5,31,21,0,0.0,0.0,0.0,21.6,0.2 -2019,5,31,21,15,0.0,0.0,0.0,21.6,0.2 -2019,5,31,21,30,0.0,0.0,0.0,21.6,0.2 -2019,5,31,21,45,0.0,0.0,0.0,21.6,0.2 -2019,5,31,22,0,0.0,0.0,0.0,20.5,2.0 -2019,5,31,22,15,0.0,0.0,0.0,20.5,2.0 -2019,5,31,22,30,0.0,0.0,0.0,20.5,2.0 -2019,5,31,22,45,0.0,0.0,0.0,20.5,2.0 -2019,5,31,23,0,0.0,0.0,0.0,19.2,1.3 -2019,5,31,23,15,0.0,0.0,0.0,19.2,1.3 -2019,5,31,23,30,0.0,0.0,0.0,19.2,1.3 -2019,5,31,23,45,0.0,0.0,0.0,19.2,1.3 -2019,6,1,0,0,0.0,0.0,0.0,17.7,0.0 -2019,6,1,0,15,0.0,0.0,0.0,17.7,0.0 -2019,6,1,0,30,0.0,0.0,0.0,17.7,0.0 -2019,6,1,0,45,0.0,0.0,0.0,17.7,0.0 -2019,6,1,1,0,0.0,0.0,0.0,16.7,0.0 -2019,6,1,1,15,0.0,0.0,0.0,16.7,0.0 -2019,6,1,1,30,0.0,0.0,0.0,16.7,0.0 -2019,6,1,1,45,0.0,0.0,0.0,16.7,0.0 -2019,6,1,2,0,0.0,0.0,0.0,16.6,0.0 -2019,6,1,2,15,0.0,0.0,0.0,16.6,0.0 -2019,6,1,2,30,0.0,0.0,0.0,16.6,0.0 -2019,6,1,2,45,0.0,0.0,0.0,16.6,0.0 -2019,6,1,3,0,0.0,0.0,0.0,16.1,0.0 -2019,6,1,3,15,0.0,0.0,0.0,16.1,0.0 -2019,6,1,3,30,0.0,0.0,0.0,16.1,0.0 -2019,6,1,3,45,0.0,0.0,0.0,16.1,0.0 -2019,6,1,4,0,197.0,-56.08290718133096,0.0,16.1,0.0 -2019,6,1,4,15,197.0,-48.18501199551011,0.0,16.1,0.0 -2019,6,1,4,30,197.0,-39.90687792807614,0.0,16.1,0.0 -2019,6,1,4,45,197.0,-31.283953219988316,0.0,16.1,0.0 -2019,6,1,5,0,320.0,14.690294320955353,51.0,16.3,0.2 -2019,6,1,5,15,320.0,29.635128591612258,51.0,16.3,0.2 -2019,6,1,5,30,320.0,44.953932978894514,51.0,16.3,0.2 -2019,6,1,5,45,320.0,60.58111001063008,51.0,16.3,0.2 -2019,6,1,6,0,531.0,143.23066515939234,101.0,18.1,1.5 -2019,6,1,6,15,531.0,169.8505820308289,101.0,18.1,1.5 -2019,6,1,6,30,531.0,196.64441446739124,101.0,18.1,1.5 -2019,6,1,6,45,531.0,223.49742716512233,101.0,18.1,1.5 -2019,6,1,7,0,659.0,322.28279113620613,137.0,20.9,1.3 -2019,6,1,7,15,659.0,355.3279130474947,137.0,20.9,1.3 -2019,6,1,7,30,659.0,388.0198586272222,137.0,20.9,1.3 -2019,6,1,7,45,659.0,420.21863594545806,137.0,20.9,1.3 -2019,6,1,8,0,742.0,512.4332059965147,158.0,23.6,0.2 -2019,6,1,8,15,742.0,547.1141089051881,158.0,23.6,0.2 -2019,6,1,8,30,742.0,580.7837716594157,158.0,23.6,0.2 -2019,6,1,8,45,742.0,613.2980155942237,158.0,23.6,0.2 -2019,6,1,9,0,798.0,690.235919893361,167.0,26.4,1.9 -2019,6,1,9,15,798.0,722.2755738981971,167.0,26.4,1.9 -2019,6,1,9,30,798.0,752.641893275936,167.0,26.4,1.9 -2019,6,1,9,45,798.0,781.20484478508,167.0,26.4,1.9 -2019,6,1,10,0,832.0,837.1461676004923,169.0,29.2,0.3 -2019,6,1,10,15,832.0,862.7917116142705,169.0,29.2,0.3 -2019,6,1,10,30,832.0,886.2007873949508,169.0,29.2,0.3 -2019,6,1,10,45,832.0,907.2731536862135,169.0,29.2,0.3 -2019,6,1,11,0,847.0,939.5649439270347,169.0,31.8,2.8 -2019,6,1,11,15,847.0,955.9945394254144,169.0,31.8,2.8 -2019,6,1,11,30,847.0,969.8017992384342,169.0,31.8,2.8 -2019,6,1,11,45,847.0,980.9275985598462,169.0,31.8,2.8 -2019,6,1,12,0,843.0,985.450272364222,169.0,32.7,4.2 -2019,6,1,12,15,843.0,991.0553143063196,169.0,32.7,4.2 -2019,6,1,12,30,843.0,993.8843539116739,169.0,32.7,4.2 -2019,6,1,12,45,843.0,993.9252767983724,169.0,32.7,4.2 -2019,6,1,13,0,820.0,968.7460075174757,169.0,32.0,4.8 -2019,6,1,13,15,820.0,963.3728224357164,169.0,32.0,4.8 -2019,6,1,13,30,820.0,955.3218722706814,169.0,32.0,4.8 -2019,6,1,13,45,820.0,944.6276324269819,169.0,32.0,4.8 -2019,6,1,14,0,777.0,886.3597465703383,164.0,30.5,6.5 -2019,6,1,14,15,777.0,871.3576644313144,164.0,30.5,6.5 -2019,6,1,14,30,777.0,854.0124708942055,164.0,30.5,6.5 -2019,6,1,14,45,777.0,834.3984407406202,164.0,30.5,6.5 -2019,6,1,15,0,711.0,744.5061649781998,151.0,29.6,6.1 -2019,6,1,15,15,711.0,722.6450867087741,151.0,29.6,6.1 -2019,6,1,15,30,711.0,698.9637771272355,151.0,29.6,6.1 -2019,6,1,15,45,711.0,673.563643236833,151.0,29.6,6.1 -2019,6,1,16,0,614.0,551.9463005887146,124.0,28.6,5.3 -2019,6,1,16,15,614.0,527.3305257455977,124.0,28.6,5.3 -2019,6,1,16,30,614.0,501.52964088567677,124.0,28.6,5.3 -2019,6,1,16,45,614.0,474.65412935894597,124.0,28.6,5.3 -2019,6,1,17,0,456.0,322.74836931870584,83.0,28.0,4.5 -2019,6,1,17,15,456.0,301.4519804830198,83.0,28.0,4.5 -2019,6,1,17,30,456.0,279.62268423114256,83.0,28.0,4.5 -2019,6,1,17,45,456.0,257.3539569609193,83.0,28.0,4.5 -2019,6,1,18,0,274.0,116.17780034664527,25.0,25.8,3.4 -2019,6,1,18,15,274.0,102.44172271430325,25.0,25.8,3.4 -2019,6,1,18,30,274.0,88.61590334025784,25.0,25.8,3.4 -2019,6,1,18,45,274.0,74.7595465056471,25.0,25.8,3.4 -2019,6,1,19,0,0.0,0.0,0.0,23.6,1.3 -2019,6,1,19,15,0.0,0.0,0.0,23.6,1.3 -2019,6,1,19,30,0.0,0.0,0.0,23.6,1.3 -2019,6,1,19,45,0.0,0.0,0.0,23.6,1.3 -2019,6,1,20,0,0.0,0.0,0.0,21.4,0.2 -2019,6,1,20,15,0.0,0.0,0.0,21.4,0.2 -2019,6,1,20,30,0.0,0.0,0.0,21.4,0.2 -2019,6,1,20,45,0.0,0.0,0.0,21.4,0.2 -2019,6,1,21,0,0.0,0.0,0.0,19.1,2.2 -2019,6,1,21,15,0.0,0.0,0.0,19.1,2.2 -2019,6,1,21,30,0.0,0.0,0.0,19.1,2.2 -2019,6,1,21,45,0.0,0.0,0.0,19.1,2.2 -2019,6,1,22,0,0.0,0.0,0.0,17.1,3.0 -2019,6,1,22,15,0.0,0.0,0.0,17.1,3.0 -2019,6,1,22,30,0.0,0.0,0.0,17.1,3.0 -2019,6,1,22,45,0.0,0.0,0.0,17.1,3.0 -2019,6,1,23,0,0.0,0.0,0.0,16.6,2.1 -2019,6,1,23,15,0.0,0.0,0.0,16.6,2.1 -2019,6,1,23,30,0.0,0.0,0.0,16.6,2.1 -2019,6,1,23,45,0.0,0.0,0.0,16.6,2.1 -2019,6,2,0,0,0.0,0.0,0.0,15.6,1.9 -2019,6,2,0,15,0.0,0.0,0.0,15.6,1.9 -2019,6,2,0,30,0.0,0.0,0.0,15.6,1.9 -2019,6,2,0,45,0.0,0.0,0.0,15.6,1.9 -2019,6,2,1,0,0.0,0.0,0.0,15.6,0.0 -2019,6,2,1,15,0.0,0.0,0.0,15.6,0.0 -2019,6,2,1,30,0.0,0.0,0.0,15.6,0.0 -2019,6,2,1,45,0.0,0.0,0.0,15.6,0.0 -2019,6,2,2,0,0.0,0.0,0.0,15.6,0.0 -2019,6,2,2,15,0.0,0.0,0.0,15.6,0.0 -2019,6,2,2,30,0.0,0.0,0.0,15.6,0.0 -2019,6,2,2,45,0.0,0.0,0.0,15.6,0.0 -2019,6,2,3,0,0.0,0.0,0.0,15.7,0.0 -2019,6,2,3,15,0.0,0.0,0.0,15.7,0.0 -2019,6,2,3,30,0.0,0.0,0.0,15.7,0.0 -2019,6,2,3,45,0.0,0.0,0.0,15.7,0.0 -2019,6,2,4,0,1.0,1.717086655119326,2.0,16.1,0.0 -2019,6,2,4,15,1.0,1.7571373234769205,2.0,16.1,0.0 -2019,6,2,4,30,1.0,1.7991162044767253,2.0,16.1,0.0 -2019,6,2,4,45,1.0,1.8428435381055828,2.0,16.1,0.0 -2019,6,2,5,0,3.0,19.664396231623257,20.0,16.1,0.0 -2019,6,2,5,15,3.0,19.80436366791793,20.0,16.1,0.0 -2019,6,2,5,30,3.0,19.947833561150357,20.0,16.1,0.0 -2019,6,2,5,45,3.0,20.094191551211818,20.0,16.1,0.0 -2019,6,2,6,0,1.0,48.08093697023986,48.0,16.2,0.0 -2019,6,2,6,15,1.0,48.131018409586595,48.0,16.2,0.0 -2019,6,2,6,30,1.0,48.181427045365545,48.0,16.2,0.0 -2019,6,2,6,45,1.0,48.231947020059444,48.0,16.2,0.0 -2019,6,2,7,0,0.0,71.0,71.0,16.8,0.2 -2019,6,2,7,15,0.0,71.0,71.0,16.8,0.2 -2019,6,2,7,30,0.0,71.0,71.0,16.8,0.2 -2019,6,2,7,45,0.0,71.0,71.0,16.8,0.2 -2019,6,2,8,0,0.0,101.0,101.0,17.9,1.0 -2019,6,2,8,15,0.0,101.0,101.0,17.9,1.0 -2019,6,2,8,30,0.0,101.0,101.0,17.9,1.0 -2019,6,2,8,45,0.0,101.0,101.0,17.9,1.0 -2019,6,2,9,0,169.0,501.950755146867,391.0,20.4,0.2 -2019,6,2,9,15,169.0,508.7292966425253,391.0,20.4,0.2 -2019,6,2,9,30,169.0,515.1538153324384,391.0,20.4,0.2 -2019,6,2,9,45,169.0,521.1968004412659,391.0,20.4,0.2 -2019,6,2,10,0,661.0,778.2733719594243,247.0,23.6,2.2 -2019,6,2,10,15,661.0,798.6276019515194,247.0,23.6,2.2 -2019,6,2,10,30,661.0,817.2068027704362,247.0,23.6,2.2 -2019,6,2,10,45,661.0,833.9314154259368,247.0,23.6,2.2 -2019,6,2,11,0,870.0,950.9893277251874,159.0,26.4,2.7 -2019,6,2,11,15,870.0,967.8481542406277,159.0,26.4,2.7 -2019,6,2,11,30,870.0,982.0161353004335,159.0,26.4,2.7 -2019,6,2,11,45,870.0,993.4326014345988,159.0,26.4,2.7 -2019,6,2,12,0,956.0,1045.384510686002,119.0,28.4,3.7 -2019,6,2,12,15,956.0,1051.7345119625543,119.0,28.4,3.7 -2019,6,2,12,30,956.0,1054.939555794696,119.0,28.4,3.7 -2019,6,2,12,45,956.0,1054.9859176926907,119.0,28.4,3.7 -2019,6,2,13,0,963.0,1049.7040620920984,110.0,29.3,4.3 -2019,6,2,13,15,963.0,1043.400168652864,110.0,29.3,4.3 -2019,6,2,13,30,963.0,1033.9546849867122,110.0,29.3,4.3 -2019,6,2,13,45,963.0,1021.4080581047987,110.0,29.3,4.3 -2019,6,2,14,0,890.0,950.9070332136722,123.0,28.7,6.0 -2019,6,2,14,15,890.0,933.7403989317884,123.0,28.7,6.0 -2019,6,2,14,30,890.0,913.8925810595276,123.0,28.7,6.0 -2019,6,2,14,45,890.0,891.4485710001115,123.0,28.7,6.0 -2019,6,2,15,0,714.0,746.474378538765,150.0,27.5,4.6 -2019,6,2,15,15,714.0,724.543056181513,150.0,27.5,4.6 -2019,6,2,15,30,714.0,700.7856537389733,150.0,27.5,4.6 -2019,6,2,15,45,714.0,675.3039040557078,150.0,27.5,4.6 -2019,6,2,16,0,478.0,485.53348686587555,152.0,25.6,4.6 -2019,6,2,16,15,478.0,466.389267390945,152.0,25.6,4.6 -2019,6,2,16,30,478.0,446.3233622730385,152.0,25.6,4.6 -2019,6,2,16,45,478.0,425.42169679844454,152.0,25.6,4.6 -2019,6,2,17,0,277.0,245.90237595147954,100.0,24.1,4.7 -2019,6,2,17,15,277.0,232.97871600027156,100.0,24.1,4.7 -2019,6,2,17,30,277.0,219.73166252514415,100.0,24.1,4.7 -2019,6,2,17,45,277.0,206.21794144280256,100.0,24.1,4.7 -2019,6,2,18,0,104.0,60.72752252882628,26.0,21.9,5.5 -2019,6,2,18,15,104.0,55.519052836765994,26.0,21.9,5.5 -2019,6,2,18,30,104.0,50.276554715754884,26.0,21.9,5.5 -2019,6,2,18,45,104.0,45.0224773475901,26.0,21.9,5.5 -2019,6,2,19,0,0.0,0.0,0.0,19.2,3.9 -2019,6,2,19,15,0.0,0.0,0.0,19.2,3.9 -2019,6,2,19,30,0.0,0.0,0.0,19.2,3.9 -2019,6,2,19,45,0.0,0.0,0.0,19.2,3.9 -2019,6,2,20,0,0.0,0.0,0.0,17.7,2.1 -2019,6,2,20,15,0.0,0.0,0.0,17.7,2.1 -2019,6,2,20,30,0.0,0.0,0.0,17.7,2.1 -2019,6,2,20,45,0.0,0.0,0.0,17.7,2.1 -2019,6,2,21,0,0.0,0.0,0.0,16.7,2.0 -2019,6,2,21,15,0.0,0.0,0.0,16.7,2.0 -2019,6,2,21,30,0.0,0.0,0.0,16.7,2.0 -2019,6,2,21,45,0.0,0.0,0.0,16.7,2.0 -2019,6,2,22,0,0.0,0.0,0.0,16.6,1.3 -2019,6,2,22,15,0.0,0.0,0.0,16.6,1.3 -2019,6,2,22,30,0.0,0.0,0.0,16.6,1.3 -2019,6,2,22,45,0.0,0.0,0.0,16.6,1.3 -2019,6,2,23,0,0.0,0.0,0.0,16.0,0.2 -2019,6,2,23,15,0.0,0.0,0.0,16.0,0.2 -2019,6,2,23,30,0.0,0.0,0.0,16.0,0.2 -2019,6,2,23,45,0.0,0.0,0.0,16.0,0.2 -2019,6,3,0,0,0.0,0.0,0.0,15.6,1.6 -2019,6,3,0,15,0.0,0.0,0.0,15.6,1.6 -2019,6,3,0,30,0.0,0.0,0.0,15.6,1.6 -2019,6,3,0,45,0.0,0.0,0.0,15.6,1.6 -2019,6,3,1,0,0.0,0.0,0.0,15.6,1.9 -2019,6,3,1,15,0.0,0.0,0.0,15.6,1.9 -2019,6,3,1,30,0.0,0.0,0.0,15.6,1.9 -2019,6,3,1,45,0.0,0.0,0.0,15.6,1.9 -2019,6,3,2,0,0.0,0.0,0.0,15.6,0.0 -2019,6,3,2,15,0.0,0.0,0.0,15.6,0.0 -2019,6,3,2,30,0.0,0.0,0.0,15.6,0.0 -2019,6,3,2,45,0.0,0.0,0.0,15.6,0.0 -2019,6,3,3,0,0.0,0.0,0.0,15.7,0.0 -2019,6,3,3,15,0.0,0.0,0.0,15.7,0.0 -2019,6,3,3,30,0.0,0.0,0.0,15.7,0.0 -2019,6,3,3,45,0.0,0.0,0.0,15.7,0.0 -2019,6,3,4,0,1.0,2.718778848198608,3.0,16.1,0.0 -2019,6,3,4,15,1.0,2.7587909493726612,3.0,16.1,0.0 -2019,6,3,4,30,1.0,2.800729406397666,3.0,16.1,0.0 -2019,6,3,4,45,1.0,2.8444146323621324,3.0,16.1,0.0 -2019,6,3,5,0,3.0,19.668978681265408,20.0,16.2,0.0 -2019,6,3,5,15,3.0,19.80881133454579,20.0,16.2,0.0 -2019,6,3,5,30,3.0,19.952143072038705,20.0,16.2,0.0 -2019,6,3,5,45,3.0,20.09836012523951,20.0,16.2,0.0 -2019,6,3,6,0,3.0,69.24683637027876,69.0,16.9,0.2 -2019,6,3,6,15,3.0,69.39693600908069,69.0,16.9,0.2 -2019,6,3,6,30,3.0,69.54801629194826,69.0,16.9,0.2 -2019,6,3,6,45,3.0,69.69943026991594,69.0,16.9,0.2 -2019,6,3,7,0,138.0,273.1243599938909,234.0,18.1,0.2 -2019,6,3,7,15,138.0,280.03068876545467,234.0,18.1,0.2 -2019,6,3,7,30,138.0,286.8632047707457,234.0,18.1,0.2 -2019,6,3,7,45,138.0,293.59265012728235,234.0,18.1,0.2 -2019,6,3,8,0,420.0,464.44846009498826,263.0,20.3,1.6 -2019,6,3,8,15,420.0,484.0406056862625,263.0,20.3,1.6 -2019,6,3,8,30,420.0,503.0614753685499,263.0,20.3,1.6 -2019,6,3,8,45,420.0,521.4296188577339,263.0,20.3,1.6 -2019,6,3,9,0,549.0,628.8581979475293,268.0,22.4,2.0 -2019,6,3,9,15,549.0,650.8572257815789,268.0,22.4,2.0 -2019,6,3,9,30,549.0,671.7073106516491,268.0,22.4,2.0 -2019,6,3,9,45,549.0,691.3191692933632,268.0,22.4,2.0 -2019,6,3,10,0,661.0,778.7002376940545,247.0,24.2,1.8 -2019,6,3,10,15,661.0,799.0348673809327,247.0,24.2,1.8 -2019,6,3,10,30,661.0,817.5961771763677,247.0,24.2,1.8 -2019,6,3,10,45,661.0,834.3046847022315,247.0,24.2,1.8 -2019,6,3,11,0,778.0,910.6612991481355,202.0,26.9,4.1 -2019,6,3,11,15,778.0,925.7228355704915,202.0,26.9,4.1 -2019,6,3,11,30,778.0,938.3803928784146,202.0,26.9,4.1 -2019,6,3,11,45,778.0,948.5797694682884,202.0,26.9,4.1 -2019,6,3,12,0,837.0,983.4782670521754,172.0,28.3,4.0 -2019,6,3,12,15,837.0,989.0324856549609,172.0,28.3,4.0 -2019,6,3,12,30,837.0,991.8358731347333,172.0,28.3,4.0 -2019,6,3,12,45,837.0,991.8764249559201,172.0,28.3,4.0 -2019,6,3,13,0,840.0,980.082834736313,160.0,28.2,3.7 -2019,6,3,13,15,840.0,974.5894065365699,160.0,28.2,3.7 -2019,6,3,13,30,840.0,966.358289238662,160.0,28.2,3.7 -2019,6,3,13,45,840.0,955.4247297505234,160.0,28.2,3.7 -2019,6,3,14,0,773.0,885.4748547930124,166.0,27.7,4.3 -2019,6,3,14,15,773.0,870.579315458219,166.0,27.7,4.3 -2019,6,3,14,30,773.0,853.3573051927546,166.0,27.7,4.3 -2019,6,3,14,45,773.0,833.8825712885471,166.0,27.7,4.3 -2019,6,3,15,0,686.0,732.5053249373207,159.0,27.0,6.1 -2019,6,3,15,15,686.0,711.4543452236162,159.0,27.0,6.1 -2019,6,3,15,30,686.0,688.6505858915737,159.0,27.0,6.1 -2019,6,3,15,45,686.0,664.19169613955,159.0,27.0,6.1 -2019,6,3,16,0,578.0,535.7426159386735,132.0,25.8,5.6 -2019,6,3,16,15,578.0,512.6156214600705,132.0,25.8,5.6 -2019,6,3,16,30,578.0,488.3751932996178,132.0,25.8,5.6 -2019,6,3,16,45,578.0,463.1251326921563,132.0,25.8,5.6 -2019,6,3,17,0,382.0,292.55692310128154,91.0,24.7,5.0 -2019,6,3,17,15,382.0,274.751565250246,91.0,24.7,5.0 -2019,6,3,17,30,382.0,256.50065734281526,91.0,24.7,5.0 -2019,6,3,17,45,382.0,237.88235256857934,91.0,24.7,5.0 -2019,6,3,18,0,146.0,75.91243742295725,27.0,22.5,4.5 -2019,6,3,18,15,146.0,68.60758833459636,27.0,22.5,4.5 -2019,6,3,18,30,146.0,61.255014568375,27.0,22.5,4.5 -2019,6,3,18,45,146.0,53.88620097394776,27.0,22.5,4.5 -2019,6,3,19,0,0.0,0.0,0.0,20.3,3.5 -2019,6,3,19,15,0.0,0.0,0.0,20.3,3.5 -2019,6,3,19,30,0.0,0.0,0.0,20.3,3.5 -2019,6,3,19,45,0.0,0.0,0.0,20.3,3.5 -2019,6,3,20,0,0.0,0.0,0.0,18.2,2.6 -2019,6,3,20,15,0.0,0.0,0.0,18.2,2.6 -2019,6,3,20,30,0.0,0.0,0.0,18.2,2.6 -2019,6,3,20,45,0.0,0.0,0.0,18.2,2.6 -2019,6,3,21,0,0.0,0.0,0.0,17.1,2.6 -2019,6,3,21,15,0.0,0.0,0.0,17.1,2.6 -2019,6,3,21,30,0.0,0.0,0.0,17.1,2.6 -2019,6,3,21,45,0.0,0.0,0.0,17.1,2.6 -2019,6,3,22,0,0.0,0.0,0.0,16.0,2.1 -2019,6,3,22,15,0.0,0.0,0.0,16.0,2.1 -2019,6,3,22,30,0.0,0.0,0.0,16.0,2.1 -2019,6,3,22,45,0.0,0.0,0.0,16.0,2.1 -2019,6,3,23,0,0.0,0.0,0.0,16.2,2.5 -2019,6,3,23,15,0.0,0.0,0.0,16.2,2.5 -2019,6,3,23,30,0.0,0.0,0.0,16.2,2.5 -2019,6,3,23,45,0.0,0.0,0.0,16.2,2.5 -2019,6,4,0,0,0.0,0.0,0.0,16.6,1.6 -2019,6,4,0,15,0.0,0.0,0.0,16.6,1.6 -2019,6,4,0,30,0.0,0.0,0.0,16.6,1.6 -2019,6,4,0,45,0.0,0.0,0.0,16.6,1.6 -2019,6,4,1,0,0.0,0.0,0.0,16.1,1.9 -2019,6,4,1,15,0.0,0.0,0.0,16.1,1.9 -2019,6,4,1,30,0.0,0.0,0.0,16.1,1.9 -2019,6,4,1,45,0.0,0.0,0.0,16.1,1.9 -2019,6,4,2,0,0.0,0.0,0.0,16.1,0.2 -2019,6,4,2,15,0.0,0.0,0.0,16.1,0.2 -2019,6,4,2,30,0.0,0.0,0.0,16.1,0.2 -2019,6,4,2,45,0.0,0.0,0.0,16.1,0.2 -2019,6,4,3,0,0.0,0.0,0.0,16.1,2.0 -2019,6,4,3,15,0.0,0.0,0.0,16.1,2.0 -2019,6,4,3,30,0.0,0.0,0.0,16.1,2.0 -2019,6,4,3,45,0.0,0.0,0.0,16.1,2.0 -2019,6,4,4,0,1.0,2.720391030694291,3.0,16.1,1.3 -2019,6,4,4,15,1.0,2.7603662118671433,3.0,16.1,1.3 -2019,6,4,4,30,1.0,2.8022659714021825,3.0,16.1,1.3 -2019,6,4,4,45,1.0,2.8459108880965096,3.0,16.1,1.3 -2019,6,4,5,0,3.0,19.673342203149055,20.0,16.2,0.0 -2019,6,4,5,15,3.0,19.81304582992057,20.0,16.2,0.0 -2019,6,4,5,30,3.0,19.95624531222655,20.0,16.2,0.0 -2019,6,4,5,45,3.0,20.102327447899373,20.0,16.2,0.0 -2019,6,4,6,0,1.0,48.08355556360239,48.0,16.8,0.3 -2019,6,4,6,15,1.0,48.1335426098461,48.0,16.8,0.3 -2019,6,4,6,30,1.0,48.18385623582478,48.0,16.8,0.3 -2019,6,4,6,45,1.0,48.23428099086768,48.0,16.8,0.3 -2019,6,4,7,0,1.0,107.28460094843237,107.0,17.9,0.4 -2019,6,4,7,15,1.0,107.3346006307353,107.0,17.9,0.4 -2019,6,4,7,30,1.0,107.38406593146074,107.0,17.9,0.4 -2019,6,4,7,45,1.0,107.43278503259694,107.0,17.9,0.4 -2019,6,4,8,0,77.0,352.00229698344776,315.0,19.0,4.0 -2019,6,4,8,15,77.0,355.59087602684804,315.0,19.0,4.0 -2019,6,4,8,30,77.0,359.0748177937724,315.0,19.0,4.0 -2019,6,4,8,45,77.0,362.43920351071046,315.0,19.0,4.0 -2019,6,4,9,0,424.0,596.0119685361203,317.0,20.9,2.6 -2019,6,4,9,15,424.0,612.9864330927937,317.0,20.9,2.6 -2019,6,4,9,30,424.0,629.0743724917727,317.0,20.9,2.6 -2019,6,4,9,45,424.0,644.2068957066853,317.0,20.9,2.6 -2019,6,4,10,0,558.0,743.1889510520409,294.0,23.0,2.7 -2019,6,4,10,15,558.0,760.3391076431315,294.0,23.0,2.7 -2019,6,4,10,30,558.0,775.9936523498329,294.0,23.0,2.7 -2019,6,4,10,45,558.0,790.0855500083819,294.0,23.0,2.7 -2019,6,4,11,0,651.0,856.3135331078397,263.0,24.6,3.3 -2019,6,4,11,15,651.0,868.9048092995735,263.0,24.6,3.3 -2019,6,4,11,30,651.0,879.4863858072791,263.0,24.6,3.3 -2019,6,4,11,45,651.0,888.0129506958375,263.0,24.6,3.3 -2019,6,4,12,0,702.0,916.9162677689286,236.0,25.8,5.3 -2019,6,4,12,15,702.0,921.5703462799622,236.0,25.8,5.3 -2019,6,4,12,30,702.0,923.919404961442,236.0,25.8,5.3 -2019,6,4,12,45,702.0,923.9533847834595,236.0,25.8,5.3 -2019,6,4,13,0,449.0,769.5566822897449,331.0,23.2,6.7 -2019,6,4,13,15,449.0,766.6230235692929,331.0,23.2,6.7 -2019,6,4,13,30,449.0,762.2273551156304,331.0,23.2,6.7 -2019,6,4,13,45,449.0,756.3884998559113,331.0,23.2,6.7 -2019,6,4,14,0,468.0,717.8252195792994,282.0,22.7,6.6 -2019,6,4,14,15,468.0,708.8152842394444,282.0,22.7,6.6 -2019,6,4,14,30,468.0,698.3981254225289,282.0,22.7,6.6 -2019,6,4,14,45,468.0,686.6183510018784,282.0,22.7,6.6 -2019,6,4,15,0,452.0,606.1408857020763,228.0,22.5,5.7 -2019,6,4,15,15,452.0,592.2833593144643,228.0,22.5,5.7 -2019,6,4,15,30,452.0,577.2720058773218,228.0,22.5,5.7 -2019,6,4,15,45,452.0,561.171106310652,228.0,22.5,5.7 -2019,6,4,16,0,560.0,527.5658849500492,136.0,21.9,5.4 -2019,6,4,16,15,560.0,505.1797834932516,136.0,21.9,5.4 -2019,6,4,16,30,560.0,481.71591815362996,136.0,21.9,5.4 -2019,6,4,16,45,560.0,457.2747648048067,136.0,21.9,5.4 -2019,6,4,17,0,423.0,311.55624343586635,88.0,21.5,5.2 -2019,6,4,17,15,423.0,291.85803206108255,88.0,21.5,5.2 -2019,6,4,17,30,423.0,271.6669050559394,88.0,21.5,5.2 -2019,6,4,17,45,423.0,251.06932392607106,88.0,21.5,5.2 -2019,6,4,18,0,168.0,84.45812395645481,28.0,19.7,6.0 -2019,6,4,18,15,168.0,76.06030018751017,28.0,19.7,6.0 -2019,6,4,18,30,168.0,67.60761102309277,28.0,19.7,6.0 -2019,6,4,18,45,168.0,59.13625217588507,28.0,19.7,6.0 -2019,6,4,19,0,0.0,0.0,0.0,17.7,4.0 -2019,6,4,19,15,0.0,0.0,0.0,17.7,4.0 -2019,6,4,19,30,0.0,0.0,0.0,17.7,4.0 -2019,6,4,19,45,0.0,0.0,0.0,17.7,4.0 -2019,6,4,20,0,0.0,0.0,0.0,17.1,3.9 -2019,6,4,20,15,0.0,0.0,0.0,17.1,3.9 -2019,6,4,20,30,0.0,0.0,0.0,17.1,3.9 -2019,6,4,20,45,0.0,0.0,0.0,17.1,3.9 -2019,6,4,21,0,0.0,0.0,0.0,16.8,2.6 -2019,6,4,21,15,0.0,0.0,0.0,16.8,2.6 -2019,6,4,21,30,0.0,0.0,0.0,16.8,2.6 -2019,6,4,21,45,0.0,0.0,0.0,16.8,2.6 -2019,6,4,22,0,0.0,0.0,0.0,17.2,0.2 -2019,6,4,22,15,0.0,0.0,0.0,17.2,0.2 -2019,6,4,22,30,0.0,0.0,0.0,17.2,0.2 -2019,6,4,22,45,0.0,0.0,0.0,17.2,0.2 -2019,6,4,23,0,0.0,0.0,0.0,17.2,1.3 -2019,6,4,23,15,0.0,0.0,0.0,17.2,1.3 -2019,6,4,23,30,0.0,0.0,0.0,17.2,1.3 -2019,6,4,23,45,0.0,0.0,0.0,17.2,1.3 -2019,6,5,0,0,0.0,0.0,0.0,17.2,0.0 -2019,6,5,0,15,0.0,0.0,0.0,17.2,0.0 -2019,6,5,0,30,0.0,0.0,0.0,17.2,0.0 -2019,6,5,0,45,0.0,0.0,0.0,17.2,0.0 -2019,6,5,1,0,0.0,0.0,0.0,17.1,0.0 -2019,6,5,1,15,0.0,0.0,0.0,17.1,0.0 -2019,6,5,1,30,0.0,0.0,0.0,17.1,0.0 -2019,6,5,1,45,0.0,0.0,0.0,17.1,0.0 -2019,6,5,2,0,0.0,0.0,0.0,16.7,0.3 -2019,6,5,2,15,0.0,0.0,0.0,16.7,0.3 -2019,6,5,2,30,0.0,0.0,0.0,16.7,0.3 -2019,6,5,2,45,0.0,0.0,0.0,16.7,0.3 -2019,6,5,3,0,0.0,0.0,0.0,16.6,2.4 -2019,6,5,3,15,0.0,0.0,0.0,16.6,2.4 -2019,6,5,3,30,0.0,0.0,0.0,16.6,2.4 -2019,6,5,3,45,0.0,0.0,0.0,16.6,2.4 -2019,6,5,4,0,12.0,-0.33693002243913117,3.0,16.0,0.0 -2019,6,5,4,15,12.0,0.14234938527335395,3.0,16.0,0.0 -2019,6,5,4,30,12.0,0.6447033795283352,3.0,16.0,0.0 -2019,6,5,4,45,12.0,1.1679808033996144,3.0,16.0,0.0 -2019,6,5,5,0,25.0,39.312376880464946,42.0,16.8,0.2 -2019,6,5,5,15,25.0,40.475547751772716,42.0,16.8,0.2 -2019,6,5,5,30,25.0,41.667825078094985,42.0,16.8,0.2 -2019,6,5,5,45,25.0,42.88410334487872,42.0,16.8,0.2 -2019,6,5,6,0,336.0,156.48170207938617,128.0,17.3,1.3 -2019,6,5,6,15,336.0,173.26254744378843,128.0,17.3,1.3 -2019,6,5,6,30,336.0,190.15302689228403,128.0,17.3,1.3 -2019,6,5,6,45,336.0,207.080812798801,128.0,17.3,1.3 -2019,6,5,7,0,13.0,178.71325723574026,175.0,18.6,0.2 -2019,6,5,7,15,13.0,179.36268025776565,175.0,18.6,0.2 -2019,6,5,7,30,13.0,180.00516244171013,175.0,18.6,0.2 -2019,6,5,7,45,13.0,180.63795258022637,175.0,18.6,0.2 -2019,6,5,8,0,179.0,406.17254103185024,320.0,20.7,2.2 -2019,6,5,8,15,179.0,414.5074700482138,320.0,20.7,2.2 -2019,6,5,8,30,179.0,422.599365746558,320.0,20.7,2.2 -2019,6,5,8,45,179.0,430.4135773872123,320.0,20.7,2.2 -2019,6,5,9,0,23.0,355.151300537845,340.0,21.8,2.7 -2019,6,5,9,15,23.0,356.0712736750354,340.0,21.8,2.7 -2019,6,5,9,30,23.0,356.94319938617593,340.0,21.8,2.7 -2019,6,5,9,45,23.0,357.7633439515111,340.0,21.8,2.7 -2019,6,5,10,0,311.0,649.533424568586,399.0,22.3,3.2 -2019,6,5,10,15,311.0,659.0836002986892,399.0,22.3,3.2 -2019,6,5,10,30,311.0,667.8009348681837,399.0,22.3,3.2 -2019,6,5,10,45,311.0,675.6480993121331,399.0,22.3,3.2 -2019,6,5,11,0,533.0,806.0265743809268,320.0,23.4,3.7 -2019,6,5,11,15,533.0,816.3264754651983,320.0,23.4,3.7 -2019,6,5,11,30,533.0,824.982404354803,320.0,23.4,3.7 -2019,6,5,11,45,533.0,831.9572950333531,320.0,23.4,3.7 -2019,6,5,12,0,537.0,836.1028655387639,315.0,24.4,4.3 -2019,6,5,12,15,537.0,839.6598990927207,315.0,24.4,4.3 -2019,6,5,12,30,537.0,841.4552449448431,315.0,24.4,4.3 -2019,6,5,12,45,537.0,841.481215148566,315.0,24.4,4.3 -2019,6,5,13,0,699.0,905.0384567008333,222.0,24.3,5.9 -2019,6,5,13,15,699.0,900.4753827432467,222.0,24.3,5.9 -2019,6,5,13,30,699.0,893.6382683552439,222.0,24.3,5.9 -2019,6,5,13,45,699.0,884.5563911102872,222.0,24.3,5.9 -2019,6,5,14,0,654.0,821.3414752713358,212.0,23.8,3.9 -2019,6,5,14,15,654.0,808.7617645990475,212.0,23.8,3.9 -2019,6,5,14,30,654.0,794.2172824245305,212.0,23.8,3.9 -2019,6,5,14,45,654.0,777.7703104533655,212.0,23.8,3.9 -2019,6,5,15,0,701.0,741.8369805478702,155.0,23.3,6.2 -2019,6,5,15,15,701.0,720.3644919625847,155.0,23.3,6.2 -2019,6,5,15,30,701.0,697.1041274276215,155.0,23.3,6.2 -2019,6,5,15,45,701.0,672.1554913949157,155.0,23.3,6.2 -2019,6,5,16,0,660.0,576.9297799111763,115.0,22.7,5.9 -2019,6,5,16,15,660.0,550.5694124869893,115.0,22.7,5.9 -2019,6,5,16,30,660.0,522.9399428029656,115.0,22.7,5.9 -2019,6,5,16,45,660.0,494.15968449004504,115.0,22.7,5.9 -2019,6,5,17,0,517.0,351.65897190898704,78.0,22.1,5.6 -2019,6,5,17,15,517.0,327.60459829034244,78.0,22.1,5.6 -2019,6,5,17,30,517.0,302.94830318199774,78.0,22.1,5.6 -2019,6,5,17,45,517.0,277.7956686249103,78.0,22.1,5.6 -2019,6,5,18,0,363.0,147.34883549016917,25.0,21.5,4.6 -2019,6,5,18,15,363.0,129.21952933755603,25.0,21.5,4.6 -2019,6,5,18,30,363.0,110.971779219092,25.0,21.5,4.6 -2019,6,5,18,45,363.0,92.68372480222999,25.0,21.5,4.6 -2019,6,5,19,0,0.0,0.0,0.0,19.8,4.4 -2019,6,5,19,15,0.0,0.0,0.0,19.8,4.4 -2019,6,5,19,30,0.0,0.0,0.0,19.8,4.4 -2019,6,5,19,45,0.0,0.0,0.0,19.8,4.4 -2019,6,5,20,0,0.0,0.0,0.0,18.2,3.0 -2019,6,5,20,15,0.0,0.0,0.0,18.2,3.0 -2019,6,5,20,30,0.0,0.0,0.0,18.2,3.0 -2019,6,5,20,45,0.0,0.0,0.0,18.2,3.0 -2019,6,5,21,0,0.0,0.0,0.0,17.7,1.9 -2019,6,5,21,15,0.0,0.0,0.0,17.7,1.9 -2019,6,5,21,30,0.0,0.0,0.0,17.7,1.9 -2019,6,5,21,45,0.0,0.0,0.0,17.7,1.9 -2019,6,5,22,0,0.0,0.0,0.0,17.1,0.0 -2019,6,5,22,15,0.0,0.0,0.0,17.1,0.0 -2019,6,5,22,30,0.0,0.0,0.0,17.1,0.0 -2019,6,5,22,45,0.0,0.0,0.0,17.1,0.0 -2019,6,5,23,0,0.0,0.0,0.0,16.6,0.0 -2019,6,5,23,15,0.0,0.0,0.0,16.6,0.0 -2019,6,5,23,30,0.0,0.0,0.0,16.6,0.0 -2019,6,5,23,45,0.0,0.0,0.0,16.6,0.0 -2019,6,6,0,0,0.0,0.0,0.0,15.5,0.0 -2019,6,6,0,15,0.0,0.0,0.0,15.5,0.0 -2019,6,6,0,30,0.0,0.0,0.0,15.5,0.0 -2019,6,6,0,45,0.0,0.0,0.0,15.5,0.0 -2019,6,6,1,0,0.0,0.0,0.0,14.3,0.2 -2019,6,6,1,15,0.0,0.0,0.0,14.3,0.2 -2019,6,6,1,30,0.0,0.0,0.0,14.3,0.2 -2019,6,6,1,45,0.0,0.0,0.0,14.3,0.2 -2019,6,6,2,0,0.0,0.0,0.0,13.8,1.3 -2019,6,6,2,15,0.0,0.0,0.0,13.8,1.3 -2019,6,6,2,30,0.0,0.0,0.0,13.8,1.3 -2019,6,6,2,45,0.0,0.0,0.0,13.8,1.3 -2019,6,6,3,0,0.0,0.0,0.0,13.3,0.0 -2019,6,6,3,15,0.0,0.0,0.0,13.3,0.0 -2019,6,6,3,30,0.0,0.0,0.0,13.3,0.0 -2019,6,6,3,45,0.0,0.0,0.0,13.3,0.0 -2019,6,6,4,0,323.0,-89.35065593491704,0.0,13.4,0.0 -2019,6,6,4,15,323.0,-76.46087261687273,0.0,13.4,0.0 -2019,6,6,4,30,323.0,-62.95051930166167,0.0,13.4,0.0 -2019,6,6,4,45,323.0,-48.877449396326966,0.0,13.4,0.0 -2019,6,6,5,0,357.0,12.087345006234699,50.0,14.0,0.0 -2019,6,6,5,15,357.0,28.6834928830667,50.0,14.0,0.0 -2019,6,6,5,30,357.0,45.69493230777593,50.0,14.0,0.0 -2019,6,6,5,45,357.0,63.04881768510216,50.0,14.0,0.0 -2019,6,6,6,0,582.0,144.00119647602259,94.0,15.3,0.2 -2019,6,6,6,15,582.0,173.04363730792213,94.0,15.3,0.2 -2019,6,6,6,30,582.0,202.27582074999984,94.0,15.3,0.2 -2019,6,6,6,45,582.0,231.5725701049506,94.0,15.3,0.2 -2019,6,6,7,0,717.0,327.5011097651644,122.0,17.4,1.3 -2019,6,6,7,15,717.0,363.28924372069525,122.0,17.4,1.3 -2019,6,6,7,30,717.0,398.6948848563248,122.0,17.4,1.3 -2019,6,6,7,45,717.0,433.5664207811379,122.0,17.4,1.3 -2019,6,6,8,0,804.0,524.7080043022063,137.0,19.3,0.2 -2019,6,6,8,15,804.0,562.1139374987883,137.0,19.3,0.2 -2019,6,6,8,30,804.0,598.4291729773063,137.0,19.3,0.2 -2019,6,6,8,45,804.0,633.4982033242251,137.0,19.3,0.2 -2019,6,6,9,0,862.0,709.4170139594036,141.0,22.4,2.2 -2019,6,6,9,15,862.0,743.8670869759098,141.0,22.4,2.2 -2019,6,6,9,30,862.0,776.5179364403814,141.0,22.4,2.2 -2019,6,6,9,45,862.0,807.2297464027616,141.0,22.4,2.2 -2019,6,6,10,0,897.0,863.08502406904,140.0,24.3,2.7 -2019,6,6,10,15,897.0,890.606960512675,140.0,24.3,2.7 -2019,6,6,10,30,897.0,915.7287943678657,140.0,24.3,2.7 -2019,6,6,10,45,897.0,938.3429500852702,140.0,24.3,2.7 -2019,6,6,11,0,912.0,971.0374163043771,139.0,27.3,3.2 -2019,6,6,11,15,912.0,988.6464795725185,139.0,27.3,3.2 -2019,6,6,11,30,912.0,1003.444951733998,139.0,27.3,3.2 -2019,6,6,11,45,912.0,1015.3694634591169,139.0,27.3,3.2 -2019,6,6,12,0,908.0,1020.4857549993966,139.0,28.4,3.7 -2019,6,6,12,15,908.0,1026.495210109249,139.0,28.4,3.7 -2019,6,6,12,30,908.0,1029.5283696623796,139.0,28.4,3.7 -2019,6,6,12,45,908.0,1029.5722452039222,139.0,28.4,3.7 -2019,6,6,13,0,886.0,1007.1202763027937,141.0,29.2,4.8 -2019,6,6,13,15,886.0,1001.341317153003,141.0,29.2,4.8 -2019,6,6,13,30,886.0,992.6823725209481,141.0,29.2,4.8 -2019,6,6,13,45,886.0,981.1805213368887,141.0,29.2,4.8 -2019,6,6,14,0,842.0,924.8704105180989,140.0,27.7,6.3 -2019,6,6,14,15,842.0,908.6880986609206,140.0,27.7,6.3 -2019,6,6,14,30,842.0,889.9783403460742,140.0,27.7,6.3 -2019,6,6,14,45,842.0,868.8212536310384,140.0,27.7,6.3 -2019,6,6,15,0,774.0,781.3467408322301,133.0,27.6,6.6 -2019,6,6,15,15,774.0,757.6580590556387,133.0,27.6,6.6 -2019,6,6,15,30,774.0,731.9969731834661,133.0,27.6,6.6 -2019,6,6,15,45,774.0,704.4733679249789,133.0,27.6,6.6 -2019,6,6,16,0,673.0,584.452241229489,113.0,26.9,5.5 -2019,6,6,16,15,673.0,557.5952004460714,113.0,26.9,5.5 -2019,6,6,16,30,673.0,529.4451453961115,113.0,26.9,5.5 -2019,6,6,16,45,673.0,500.1226189370085,113.0,26.9,5.5 -2019,6,6,17,0,508.0,348.28769359791676,79.0,26.5,4.6 -2019,6,6,17,15,508.0,324.6718865350858,79.0,26.5,4.6 -2019,6,6,17,30,508.0,300.4651323957236,79.0,26.5,4.6 -2019,6,6,17,45,508.0,275.7710882173434,79.0,26.5,4.6 -2019,6,6,18,0,290.0,125.01514631807584,27.0,24.7,4.4 -2019,6,6,18,15,290.0,110.54382700321187,27.0,24.7,4.4 -2019,6,6,18,30,290.0,95.97796240148928,27.0,24.7,4.4 -2019,6,6,18,45,290.0,81.37992578132477,27.0,24.7,4.4 -2019,6,6,19,0,0.0,0.0,0.0,22.7,2.9 -2019,6,6,19,15,0.0,0.0,0.0,22.7,2.9 -2019,6,6,19,30,0.0,0.0,0.0,22.7,2.9 -2019,6,6,19,45,0.0,0.0,0.0,22.7,2.9 -2019,6,6,20,0,0.0,0.0,0.0,22.0,1.3 -2019,6,6,20,15,0.0,0.0,0.0,22.0,1.3 -2019,6,6,20,30,0.0,0.0,0.0,22.0,1.3 -2019,6,6,20,45,0.0,0.0,0.0,22.0,1.3 -2019,6,6,21,0,0.0,0.0,0.0,20.5,0.0 -2019,6,6,21,15,0.0,0.0,0.0,20.5,0.0 -2019,6,6,21,30,0.0,0.0,0.0,20.5,0.0 -2019,6,6,21,45,0.0,0.0,0.0,20.5,0.0 -2019,6,6,22,0,0.0,0.0,0.0,19.9,0.0 -2019,6,6,22,15,0.0,0.0,0.0,19.9,0.0 -2019,6,6,22,30,0.0,0.0,0.0,19.9,0.0 -2019,6,6,22,45,0.0,0.0,0.0,19.9,0.0 -2019,6,6,23,0,0.0,0.0,0.0,18.8,0.0 -2019,6,6,23,15,0.0,0.0,0.0,18.8,0.0 -2019,6,6,23,30,0.0,0.0,0.0,18.8,0.0 -2019,6,6,23,45,0.0,0.0,0.0,18.8,0.0 -2019,6,7,0,0,0.0,0.0,0.0,17.5,0.0 -2019,6,7,0,15,0.0,0.0,0.0,17.5,0.0 -2019,6,7,0,30,0.0,0.0,0.0,17.5,0.0 -2019,6,7,0,45,0.0,0.0,0.0,17.5,0.0 -2019,6,7,1,0,0.0,0.0,0.0,15.7,0.0 -2019,6,7,1,15,0.0,0.0,0.0,15.7,0.0 -2019,6,7,1,30,0.0,0.0,0.0,15.7,0.0 -2019,6,7,1,45,0.0,0.0,0.0,15.7,0.0 -2019,6,7,2,0,0.0,0.0,0.0,15.9,0.0 -2019,6,7,2,15,0.0,0.0,0.0,15.9,0.0 -2019,6,7,2,30,0.0,0.0,0.0,15.9,0.0 -2019,6,7,2,45,0.0,0.0,0.0,15.9,0.0 -2019,6,7,3,0,0.0,0.0,0.0,14.4,0.0 -2019,6,7,3,15,0.0,0.0,0.0,14.4,0.0 -2019,6,7,3,30,0.0,0.0,0.0,14.4,0.0 -2019,6,7,3,45,0.0,0.0,0.0,14.4,0.0 -2019,6,7,4,0,311.0,-85.60565749156281,0.0,14.6,0.0 -2019,6,7,4,15,311.0,-73.20462042585046,0.0,14.6,0.0 -2019,6,7,4,30,311.0,-60.20654372441653,0.0,14.6,0.0 -2019,6,7,4,45,311.0,-46.66708714719803,0.0,14.6,0.0 -2019,6,7,5,0,382.0,8.903230310985123,49.0,16.4,0.0 -2019,6,7,5,15,382.0,26.647452410488874,49.0,16.4,0.0 -2019,6,7,5,30,382.0,44.835694743860714,49.0,16.4,0.0 -2019,6,7,5,45,382.0,63.39007246511944,49.0,16.4,0.0 -2019,6,7,6,0,619.0,141.84835406526742,88.0,19.2,0.0 -2019,6,7,6,15,619.0,172.71257362206782,88.0,19.2,0.0 -2019,6,7,6,30,619.0,203.77843799287416,88.0,19.2,0.0 -2019,6,7,6,45,619.0,234.91291837713217,88.0,19.2,0.0 -2019,6,7,7,0,759.0,330.23725903366426,112.0,21.4,0.2 -2019,6,7,7,15,759.0,368.09164418674413,112.0,21.4,0.2 -2019,6,7,7,30,759.0,405.5414530481176,112.0,21.4,0.2 -2019,6,7,7,45,759.0,442.4263197868411,112.0,21.4,0.2 -2019,6,7,8,0,849.0,532.0572658524377,122.0,23.5,1.9 -2019,6,7,8,15,849.0,571.5254056229446,122.0,23.5,1.9 -2019,6,7,8,30,849.0,609.8427170005953,122.0,23.5,1.9 -2019,6,7,8,45,849.0,646.8451193754896,122.0,23.5,1.9 -2019,6,7,9,0,908.0,722.316536871839,123.0,25.3,0.3 -2019,6,7,9,15,908.0,758.5761571345055,123.0,25.3,0.3 -2019,6,7,9,30,908.0,792.9420466427214,123.0,25.3,0.3 -2019,6,7,9,45,908.0,825.2670453816652,123.0,25.3,0.3 -2019,6,7,10,0,944.0,881.4511230291215,120.0,27.5,2.7 -2019,6,7,10,15,944.0,910.3920915569149,120.0,27.5,2.7 -2019,6,7,10,30,944.0,936.8092081160107,120.0,27.5,2.7 -2019,6,7,10,45,944.0,960.5893505576732,120.0,27.5,2.7 -2019,6,7,11,0,959.0,993.3218542648999,118.0,30.2,3.3 -2019,6,7,11,15,959.0,1011.8236782402372,118.0,30.2,3.3 -2019,6,7,11,30,959.0,1027.3724171405613,118.0,30.2,3.3 -2019,6,7,11,45,959.0,1039.9014888788151,118.0,30.2,3.3 -2019,6,7,12,0,955.0,1046.4725403068128,119.0,31.9,4.5 -2019,6,7,12,15,955.0,1052.7880315972855,119.0,31.9,4.5 -2019,6,7,12,30,955.0,1055.9756571623727,119.0,31.9,4.5 -2019,6,7,12,45,955.0,1056.0217671000314,119.0,31.9,4.5 -2019,6,7,13,0,933.0,1033.411634528881,121.0,33.1,4.3 -2019,6,7,13,15,933.0,1027.3309556553195,121.0,33.1,4.3 -2019,6,7,13,30,933.0,1018.2199271246225,121.0,33.1,4.3 -2019,6,7,13,45,933.0,1006.117563759709,121.0,33.1,4.3 -2019,6,7,14,0,889.0,952.0431813263914,123.0,31.5,6.1 -2019,6,7,14,15,889.0,934.9711673353797,123.0,31.5,6.1 -2019,6,7,14,30,889.0,915.2327480947557,123.0,31.5,6.1 -2019,6,7,14,45,889.0,892.9124465460054,123.0,31.5,6.1 -2019,6,7,15,0,819.0,806.4360903362449,120.0,30.6,5.2 -2019,6,7,15,15,819.0,781.3900914436458,120.0,30.6,5.2 -2019,6,7,15,30,819.0,754.2586733935107,120.0,30.6,5.2 -2019,6,7,15,45,819.0,725.1580170832211,120.0,30.6,5.2 -2019,6,7,16,0,714.0,604.5957185560054,104.0,29.1,5.7 -2019,6,7,16,15,714.0,576.1251704372958,104.0,29.1,5.7 -2019,6,7,16,30,714.0,546.2839268204991,104.0,29.1,5.7 -2019,6,7,16,45,714.0,515.1997724920936,104.0,29.1,5.7 -2019,6,7,17,0,542.0,363.7046939756127,76.0,28.0,6.0 -2019,6,7,17,15,542.0,338.5283369653222,76.0,28.0,6.0 -2019,6,7,17,30,542.0,312.7219826598574,76.0,28.0,6.0 -2019,6,7,17,45,542.0,286.39613783021804,76.0,28.0,6.0 -2019,6,7,18,0,308.0,131.36968340582882,27.0,25.9,3.9 -2019,6,7,18,15,308.0,116.01236575882633,27.0,25.9,3.9 -2019,6,7,18,30,308.0,100.55471434330393,27.0,25.9,3.9 -2019,6,7,18,45,308.0,85.06292119572481,27.0,25.9,3.9 -2019,6,7,19,0,0.0,0.0,0.0,24.1,2.5 -2019,6,7,19,15,0.0,0.0,0.0,24.1,2.5 -2019,6,7,19,30,0.0,0.0,0.0,24.1,2.5 -2019,6,7,19,45,0.0,0.0,0.0,24.1,2.5 -2019,6,7,20,0,0.0,0.0,0.0,22.0,1.9 -2019,6,7,20,15,0.0,0.0,0.0,22.0,1.9 -2019,6,7,20,30,0.0,0.0,0.0,22.0,1.9 -2019,6,7,20,45,0.0,0.0,0.0,22.0,1.9 -2019,6,7,21,0,0.0,0.0,0.0,20.5,0.3 -2019,6,7,21,15,0.0,0.0,0.0,20.5,0.3 -2019,6,7,21,30,0.0,0.0,0.0,20.5,0.3 -2019,6,7,21,45,0.0,0.0,0.0,20.5,0.3 -2019,6,7,22,0,0.0,0.0,0.0,19.3,2.3 -2019,6,7,22,15,0.0,0.0,0.0,19.3,2.3 -2019,6,7,22,30,0.0,0.0,0.0,19.3,2.3 -2019,6,7,22,45,0.0,0.0,0.0,19.3,2.3 -2019,6,7,23,0,0.0,0.0,0.0,18.2,0.3 -2019,6,7,23,15,0.0,0.0,0.0,18.2,0.3 -2019,6,7,23,30,0.0,0.0,0.0,18.2,0.3 -2019,6,7,23,45,0.0,0.0,0.0,18.2,0.3 -2019,6,8,0,0,0.0,0.0,0.0,17.2,2.3 -2019,6,8,0,15,0.0,0.0,0.0,17.2,2.3 -2019,6,8,0,30,0.0,0.0,0.0,17.2,2.3 -2019,6,8,0,45,0.0,0.0,0.0,17.2,2.3 -2019,6,8,1,0,0.0,0.0,0.0,17.1,0.0 -2019,6,8,1,15,0.0,0.0,0.0,17.1,0.0 -2019,6,8,1,30,0.0,0.0,0.0,17.1,0.0 -2019,6,8,1,45,0.0,0.0,0.0,17.1,0.0 -2019,6,8,2,0,0.0,0.0,0.0,16.0,0.0 -2019,6,8,2,15,0.0,0.0,0.0,16.0,0.0 -2019,6,8,2,30,0.0,0.0,0.0,16.0,0.0 -2019,6,8,2,45,0.0,0.0,0.0,16.0,0.0 -2019,6,8,3,0,0.0,0.0,0.0,15.6,0.0 -2019,6,8,3,15,0.0,0.0,0.0,15.6,0.0 -2019,6,8,3,30,0.0,0.0,0.0,15.6,0.0 -2019,6,8,3,45,0.0,0.0,0.0,15.6,0.0 -2019,6,8,4,0,149.0,-38.8221096863241,2.0,15.7,0.0 -2019,6,8,4,15,149.0,-32.88523613234788,2.0,15.7,0.0 -2019,6,8,4,30,149.0,-26.66253577169346,2.0,15.7,0.0 -2019,6,8,4,45,149.0,-20.180655162631613,2.0,15.7,0.0 -2019,6,8,5,0,297.0,22.169106296813055,53.0,16.3,0.2 -2019,6,8,5,15,297.0,35.95465209730601,53.0,16.3,0.2 -2019,6,8,5,30,297.0,50.08515871016998,53.0,16.3,0.2 -2019,6,8,5,45,297.0,64.50011713673365,53.0,16.3,0.2 -2019,6,8,6,0,490.0,151.1229702117005,108.0,18.1,1.3 -2019,6,8,6,15,490.0,175.5367287555169,108.0,18.1,1.3 -2019,6,8,6,30,490.0,200.10998939825043,108.0,18.1,1.3 -2019,6,8,6,45,490.0,224.73752566527338,108.0,18.1,1.3 -2019,6,8,7,0,608.0,324.34456781339725,149.0,20.3,0.0 -2019,6,8,7,15,608.0,354.64521567080146,149.0,20.3,0.0 -2019,6,8,7,30,608.0,384.62201931050464,149.0,20.3,0.0 -2019,6,8,7,45,608.0,414.146613457199,149.0,20.3,0.0 -2019,6,8,8,0,686.0,507.8215501916294,176.0,22.5,0.2 -2019,6,8,8,15,686.0,539.688243252219,176.0,22.5,0.2 -2019,6,8,8,30,686.0,570.6257540565935,176.0,22.5,0.2 -2019,6,8,8,45,686.0,600.5016034338755,176.0,22.5,0.2 -2019,6,8,9,0,738.0,677.5402908263571,190.0,25.2,2.0 -2019,6,8,9,15,738.0,706.989096017973,190.0,25.2,2.0 -2019,6,8,9,30,738.0,734.8998788125202,190.0,25.2,2.0 -2019,6,8,9,45,738.0,761.1531209531312,190.0,25.2,2.0 -2019,6,8,10,0,771.0,818.2705500845835,196.0,27.0,1.7 -2019,6,8,10,15,771.0,841.8899771631046,196.0,27.0,1.7 -2019,6,8,10,30,771.0,863.449627372915,196.0,27.0,1.7 -2019,6,8,10,45,771.0,882.8571789819183,196.0,27.0,1.7 -2019,6,8,11,0,786.0,914.7265983624567,197.0,29.0,3.7 -2019,6,8,11,15,786.0,929.8793811572988,197.0,29.0,3.7 -2019,6,8,11,30,786.0,942.6136209600547,197.0,29.0,3.7 -2019,6,8,11,45,786.0,952.8747878008929,197.0,29.0,3.7 -2019,6,8,12,0,782.0,956.7328403031514,197.0,29.3,4.2 -2019,6,8,12,15,782.0,961.9003873148729,197.0,29.3,4.2 -2019,6,8,12,30,782.0,964.5086095743515,197.0,29.3,4.2 -2019,6,8,12,45,782.0,964.5463382734503,197.0,29.3,4.2 -2019,6,8,13,0,761.0,938.4695734263923,194.0,28.8,5.2 -2019,6,8,13,15,761.0,933.5135996945489,194.0,28.8,5.2 -2019,6,8,13,30,761.0,926.0877811293659,194.0,28.8,5.2 -2019,6,8,13,45,761.0,916.2239162259714,194.0,28.8,5.2 -2019,6,8,14,0,721.0,858.6468063241518,186.0,27.5,6.1 -2019,6,8,14,15,721.0,844.8113917866842,186.0,27.5,6.1 -2019,6,8,14,30,721.0,828.8150827014096,186.0,27.5,6.1 -2019,6,8,14,45,721.0,810.726377719629,186.0,27.5,6.1 -2019,6,8,15,0,660.0,720.468800830857,167.0,26.1,5.7 -2019,6,8,15,15,660.0,700.3003609399356,167.0,26.1,5.7 -2019,6,8,15,30,660.0,678.452624842602,167.0,26.1,5.7 -2019,6,8,15,45,660.0,655.0191478989507,167.0,26.1,5.7 -2019,6,8,16,0,571.0,535.6519053228883,135.0,24.9,5.4 -2019,6,8,16,15,571.0,512.9005308308047,135.0,24.9,5.4 -2019,6,8,16,30,571.0,489.05380662990757,135.0,24.9,5.4 -2019,6,8,16,45,571.0,464.213848054241,135.0,24.9,5.4 -2019,6,8,17,0,429.0,317.0138934027111,89.0,24.3,4.8 -2019,6,8,17,15,429.0,297.10143835755457,89.0,24.3,4.8 -2019,6,8,17,30,429.0,276.69070658341786,89.0,24.3,4.8 -2019,6,8,17,45,429.0,255.86909996727027,89.0,24.3,4.8 -2019,6,8,18,0,237.0,110.50585039296112,30.0,23.1,2.7 -2019,6,8,18,15,237.0,98.6975630972785,30.0,23.1,2.7 -2019,6,8,18,30,237.0,86.812128868038,30.0,23.1,2.7 -2019,6,8,18,45,237.0,74.9004429592942,30.0,23.1,2.7 -2019,6,8,19,0,0.0,0.0,0.0,21.4,3.0 -2019,6,8,19,15,0.0,0.0,0.0,21.4,3.0 -2019,6,8,19,30,0.0,0.0,0.0,21.4,3.0 -2019,6,8,19,45,0.0,0.0,0.0,21.4,3.0 -2019,6,8,20,0,0.0,0.0,0.0,19.1,2.1 -2019,6,8,20,15,0.0,0.0,0.0,19.1,2.1 -2019,6,8,20,30,0.0,0.0,0.0,19.1,2.1 -2019,6,8,20,45,0.0,0.0,0.0,19.1,2.1 -2019,6,8,21,0,0.0,0.0,0.0,17.2,1.9 -2019,6,8,21,15,0.0,0.0,0.0,17.2,1.9 -2019,6,8,21,30,0.0,0.0,0.0,17.2,1.9 -2019,6,8,21,45,0.0,0.0,0.0,17.2,1.9 -2019,6,8,22,0,0.0,0.0,0.0,17.1,0.2 -2019,6,8,22,15,0.0,0.0,0.0,17.1,0.2 -2019,6,8,22,30,0.0,0.0,0.0,17.1,0.2 -2019,6,8,22,45,0.0,0.0,0.0,17.1,0.2 -2019,6,8,23,0,0.0,0.0,0.0,16.6,1.5 -2019,6,8,23,15,0.0,0.0,0.0,16.6,1.5 -2019,6,8,23,30,0.0,0.0,0.0,16.6,1.5 -2019,6,8,23,45,0.0,0.0,0.0,16.6,1.5 -2019,6,9,0,0,0.0,0.0,0.0,15.5,1.6 -2019,6,9,0,15,0.0,0.0,0.0,15.5,1.6 -2019,6,9,0,30,0.0,0.0,0.0,15.5,1.6 -2019,6,9,0,45,0.0,0.0,0.0,15.5,1.6 -2019,6,9,1,0,0.0,0.0,0.0,14.5,2.0 -2019,6,9,1,15,0.0,0.0,0.0,14.5,2.0 -2019,6,9,1,30,0.0,0.0,0.0,14.5,2.0 -2019,6,9,1,45,0.0,0.0,0.0,14.5,2.0 -2019,6,9,2,0,0.0,0.0,0.0,14.3,0.0 -2019,6,9,2,15,0.0,0.0,0.0,14.3,0.0 -2019,6,9,2,30,0.0,0.0,0.0,14.3,0.0 -2019,6,9,2,45,0.0,0.0,0.0,14.3,0.0 -2019,6,9,3,0,0.0,0.0,0.0,14.0,0.0 -2019,6,9,3,15,0.0,0.0,0.0,14.0,0.0 -2019,6,9,3,30,0.0,0.0,0.0,14.0,0.0 -2019,6,9,3,45,0.0,0.0,0.0,14.0,0.0 -2019,6,9,4,0,1.0,2.727228398538003,3.0,14.5,0.0 -2019,6,9,4,15,1.0,2.767045097704742,3.0,14.5,0.0 -2019,6,9,4,30,1.0,2.8087787452234765,3.0,14.5,0.0 -2019,6,9,4,45,1.0,2.852250631208463,3.0,14.5,0.0 -2019,6,9,5,0,2.0,19.79454920473998,20.0,15.1,0.0 -2019,6,9,5,15,2.0,19.887315718302677,20.0,15.1,0.0 -2019,6,9,5,30,2.0,19.982403562652163,20.0,15.1,0.0 -2019,6,9,5,45,2.0,20.079405557040783,20.0,15.1,0.0 -2019,6,9,6,0,1.0,49.08895316201828,49.0,15.7,0.0 -2019,6,9,6,15,1.0,49.13874203411654,49.0,15.7,0.0 -2019,6,9,6,30,1.0,49.18885619122113,49.0,15.7,0.0 -2019,6,9,6,45,1.0,49.23908103681766,49.0,15.7,0.0 -2019,6,9,7,0,0.0,71.0,71.0,16.3,0.2 -2019,6,9,7,15,0.0,71.0,71.0,16.3,0.2 -2019,6,9,7,30,0.0,71.0,71.0,16.3,0.2 -2019,6,9,7,45,0.0,71.0,71.0,16.3,0.2 -2019,6,9,8,0,0.0,134.0,134.0,17.9,2.1 -2019,6,9,8,15,0.0,134.0,134.0,17.9,2.1 -2019,6,9,8,30,0.0,134.0,134.0,17.9,2.1 -2019,6,9,8,45,0.0,134.0,134.0,17.9,2.1 -2019,6,9,9,0,352.0,575.7308250388943,343.0,20.2,3.0 -2019,6,9,9,15,352.0,589.7669654420131,343.0,20.2,3.0 -2019,6,9,9,30,352.0,603.070040507916,343.0,20.2,3.0 -2019,6,9,9,45,352.0,615.5830844268455,343.0,20.2,3.0 -2019,6,9,10,0,577.0,750.9480137002181,285.0,22.0,2.2 -2019,6,9,10,15,577.0,768.6118290904946,285.0,22.0,2.2 -2019,6,9,10,30,577.0,784.735238008035,285.0,22.0,2.2 -2019,6,9,10,45,577.0,799.2491975405438,285.0,22.0,2.2 -2019,6,9,11,0,716.0,885.06855214301,231.0,24.1,2.7 -2019,6,9,11,15,716.0,898.8621194134206,231.0,24.1,2.7 -2019,6,9,11,30,716.0,910.4540887391238,231.0,24.1,2.7 -2019,6,9,11,45,716.0,919.7948215278353,231.0,24.1,2.7 -2019,6,9,12,0,775.0,954.1834461997174,201.0,25.6,3.8 -2019,6,9,12,15,775.0,959.3011259887182,201.0,25.6,3.8 -2019,6,9,12,30,775.0,961.8841787044997,201.0,25.6,3.8 -2019,6,9,12,45,775.0,961.9215433187751,201.0,25.6,3.8 -2019,6,9,13,0,782.0,950.2632423064188,185.0,25.5,5.2 -2019,6,9,13,15,782.0,945.1740974216975,185.0,25.5,5.2 -2019,6,9,13,30,782.0,937.5487409104122,185.0,25.5,5.2 -2019,6,9,13,45,782.0,927.4198257198103,185.0,25.5,5.2 -2019,6,9,14,0,772.0,887.4978516931621,167.0,25.0,6.0 -2019,6,9,14,15,772.0,872.6942314823391,167.0,25.0,6.0 -2019,6,9,14,30,772.0,855.5784967978408,167.0,25.0,6.0 -2019,6,9,14,45,772.0,836.2239398432419,167.0,25.0,6.0 -2019,6,9,15,0,720.0,753.0850733912006,149.0,24.8,4.2 -2019,6,9,15,15,720.0,731.0986498922304,149.0,24.8,4.2 -2019,6,9,15,30,720.0,707.2815583904758,149.0,24.8,4.2 -2019,6,9,15,45,720.0,681.7357873282139,149.0,24.8,4.2 -2019,6,9,16,0,647.0,573.3114732909546,119.0,24.1,4.7 -2019,6,9,16,15,647.0,547.5500689300738,119.0,24.1,4.7 -2019,6,9,16,30,647.0,520.5483989854529,119.0,24.1,4.7 -2019,6,9,16,45,647.0,492.42208875316635,119.0,24.1,4.7 -2019,6,9,17,0,456.0,329.653725211308,87.0,23.1,5.2 -2019,6,9,17,15,456.0,308.50296011901355,87.0,23.1,5.2 -2019,6,9,17,30,456.0,286.8229316073308,87.0,23.1,5.2 -2019,6,9,17,45,456.0,264.7064768867252,87.0,23.1,5.2 -2019,6,9,18,0,185.0,93.98450849158488,31.0,21.4,5.4 -2019,6,9,18,15,185.0,84.77356715340633,31.0,21.4,5.4 -2019,6,9,18,30,185.0,75.50244808905731,31.0,21.4,5.4 -2019,6,9,18,45,185.0,66.21085165369934,31.0,21.4,5.4 -2019,6,9,19,0,0.0,0.0,0.0,19.2,2.9 -2019,6,9,19,15,0.0,0.0,0.0,19.2,2.9 -2019,6,9,19,30,0.0,0.0,0.0,19.2,2.9 -2019,6,9,19,45,0.0,0.0,0.0,19.2,2.9 -2019,6,9,20,0,0.0,0.0,0.0,17.7,1.6 -2019,6,9,20,15,0.0,0.0,0.0,17.7,1.6 -2019,6,9,20,30,0.0,0.0,0.0,17.7,1.6 -2019,6,9,20,45,0.0,0.0,0.0,17.7,1.6 -2019,6,9,21,0,0.0,0.0,0.0,16.6,2.1 -2019,6,9,21,15,0.0,0.0,0.0,16.6,2.1 -2019,6,9,21,30,0.0,0.0,0.0,16.6,2.1 -2019,6,9,21,45,0.0,0.0,0.0,16.6,2.1 -2019,6,9,22,0,0.0,0.0,0.0,15.5,2.0 -2019,6,9,22,15,0.0,0.0,0.0,15.5,2.0 -2019,6,9,22,30,0.0,0.0,0.0,15.5,2.0 -2019,6,9,22,45,0.0,0.0,0.0,15.5,2.0 -2019,6,9,23,0,0.0,0.0,0.0,14.9,1.5 -2019,6,9,23,15,0.0,0.0,0.0,14.9,1.5 -2019,6,9,23,30,0.0,0.0,0.0,14.9,1.5 -2019,6,9,23,45,0.0,0.0,0.0,14.9,1.5 -2019,6,10,0,0,0.0,0.0,0.0,14.4,1.3 -2019,6,10,0,15,0.0,0.0,0.0,14.4,1.3 -2019,6,10,0,30,0.0,0.0,0.0,14.4,1.3 -2019,6,10,0,45,0.0,0.0,0.0,14.4,1.3 -2019,6,10,1,0,0.0,0.0,0.0,14.4,0.0 -2019,6,10,1,15,0.0,0.0,0.0,14.4,0.0 -2019,6,10,1,30,0.0,0.0,0.0,14.4,0.0 -2019,6,10,1,45,0.0,0.0,0.0,14.4,0.0 -2019,6,10,2,0,0.0,0.0,0.0,14.3,0.0 -2019,6,10,2,15,0.0,0.0,0.0,14.3,0.0 -2019,6,10,2,30,0.0,0.0,0.0,14.3,0.0 -2019,6,10,2,45,0.0,0.0,0.0,14.3,0.0 -2019,6,10,3,0,0.0,0.0,0.0,13.9,0.0 -2019,6,10,3,15,0.0,0.0,0.0,13.9,0.0 -2019,6,10,3,30,0.0,0.0,0.0,13.9,0.0 -2019,6,10,3,45,0.0,0.0,0.0,13.9,0.0 -2019,6,10,4,0,1.0,2.7283469963632467,3.0,13.2,0.0 -2019,6,10,4,15,1.0,2.7681374763022997,3.0,13.2,0.0 -2019,6,10,4,30,1.0,2.8098436422861663,3.0,13.2,0.0 -2019,6,10,4,45,1.0,2.853286902109255,3.0,13.2,0.0 -2019,6,10,5,0,2.0,19.79656245012695,20.0,14.0,0.0 -2019,6,10,5,15,2.0,19.889267877100558,20.0,14.0,0.0 -2019,6,10,5,30,2.0,19.984293106268638,20.0,14.0,0.0 -2019,6,10,5,45,2.0,20.081231225011358,20.0,14.0,0.0 -2019,6,10,6,0,1.0,49.08983356471103,49.0,15.1,0.0 -2019,6,10,6,15,1.0,49.139589650922936,49.0,15.1,0.0 -2019,6,10,6,30,1.0,49.18967080794156,49.0,15.1,0.0 -2019,6,10,6,45,1.0,49.23986258056394,49.0,15.1,0.0 -2019,6,10,7,0,2.0,118.57990007982826,118.0,16.3,0.3 -2019,6,10,7,15,2.0,118.67943740760325,118.0,16.3,0.3 -2019,6,10,7,30,2.0,118.77791091033407,118.0,16.3,0.3 -2019,6,10,7,45,2.0,118.87489890936409,118.0,16.3,0.3 -2019,6,10,8,0,316.0,445.25780177627473,292.0,18.1,2.1 -2019,6,10,8,15,316.0,459.9169120158525,292.0,18.1,2.1 -2019,6,10,8,30,316.0,474.14858583770666,292.0,18.1,2.1 -2019,6,10,8,45,316.0,487.8918810296458,292.0,18.1,2.1 -2019,6,10,9,0,503.0,618.8203708416129,286.0,20.3,2.0 -2019,6,10,9,15,503.0,638.864488760164,286.0,20.3,2.0 -2019,6,10,9,30,503.0,657.8617627715472,286.0,20.3,2.0 -2019,6,10,9,45,503.0,675.7308436319312,286.0,20.3,2.0 -2019,6,10,10,0,708.0,797.0234809963866,225.0,23.0,1.6 -2019,6,10,10,15,708.0,818.6833529707621,225.0,23.0,1.6 -2019,6,10,10,30,708.0,838.4543347902776,225.0,23.0,1.6 -2019,6,10,10,45,708.0,856.2517640754854,225.0,23.0,1.6 -2019,6,10,11,0,767.0,906.9160486270314,206.0,24.6,2.5 -2019,6,10,11,15,767.0,921.6823885775044,206.0,24.6,2.5 -2019,6,10,11,30,767.0,934.0918658652237,206.0,24.6,2.5 -2019,6,10,11,45,767.0,944.0913412033057,206.0,24.6,2.5 -2019,6,10,12,0,857.0,995.131371544781,162.0,26.3,2.3 -2019,6,10,12,15,857.0,1000.7868083234621,162.0,26.3,2.3 -2019,6,10,12,30,857.0,1003.6412837756972,162.0,26.3,2.3 -2019,6,10,12,45,857.0,1003.6825745993725,162.0,26.3,2.3 -2019,6,10,13,0,950.0,1043.9474664898485,114.0,27.9,3.7 -2019,6,10,13,15,950.0,1037.7690726189821,114.0,27.9,3.7 -2019,6,10,13,30,950.0,1028.511632125602,114.0,27.9,3.7 -2019,6,10,13,45,950.0,1016.2147867911293,114.0,27.9,3.7 -2019,6,10,14,0,1051.0,1049.2259836510357,68.0,28.7,4.4 -2019,6,10,14,15,1051.0,1029.085621569251,68.0,28.7,4.4 -2019,6,10,14,30,1051.0,1005.7996220007451,68.0,28.7,4.4 -2019,6,10,14,45,1051.0,979.4676991706018,68.0,28.7,4.4 -2019,6,10,15,0,898.0,850.775398813137,97.0,27.5,6.6 -2019,6,10,15,15,898.0,823.3715001487177,97.0,27.5,6.6 -2019,6,10,15,30,898.0,793.6858551857771,97.0,27.5,6.6 -2019,6,10,15,45,898.0,761.8455824134699,97.0,27.5,6.6 -2019,6,10,16,0,606.0,553.8108443445619,128.0,25.6,6.1 -2019,6,10,16,15,606.0,529.6978135014954,128.0,25.6,6.1 -2019,6,10,16,30,606.0,504.42387691527256,128.0,25.6,6.1 -2019,6,10,16,45,606.0,478.0972614624806,128.0,25.6,6.1 -2019,6,10,17,0,319.0,270.9389337606592,101.0,24.3,5.6 -2019,6,10,17,15,319.0,256.1524181583686,101.0,24.3,5.6 -2019,6,10,17,30,319.0,240.99589410605947,101.0,24.3,5.6 -2019,6,10,17,45,319.0,225.5342641665955,101.0,24.3,5.6 -2019,6,10,18,0,162.0,86.26979768313672,31.0,22.9,5.0 -2019,6,10,18,15,162.0,78.2093117168072,31.0,22.9,5.0 -2019,6,10,18,30,162.0,70.09616427979043,31.0,22.9,5.0 -2019,6,10,18,45,162.0,61.96509711496467,31.0,22.9,5.0 -2019,6,10,19,0,0.0,0.0,0.0,19.7,4.4 -2019,6,10,19,15,0.0,0.0,0.0,19.7,4.4 -2019,6,10,19,30,0.0,0.0,0.0,19.7,4.4 -2019,6,10,19,45,0.0,0.0,0.0,19.7,4.4 -2019,6,10,20,0,0.0,0.0,0.0,17.7,3.0 -2019,6,10,20,15,0.0,0.0,0.0,17.7,3.0 -2019,6,10,20,30,0.0,0.0,0.0,17.7,3.0 -2019,6,10,20,45,0.0,0.0,0.0,17.7,3.0 -2019,6,10,21,0,0.0,0.0,0.0,16.6,2.5 -2019,6,10,21,15,0.0,0.0,0.0,16.6,2.5 -2019,6,10,21,30,0.0,0.0,0.0,16.6,2.5 -2019,6,10,21,45,0.0,0.0,0.0,16.6,2.5 -2019,6,10,22,0,0.0,0.0,0.0,15.6,1.9 -2019,6,10,22,15,0.0,0.0,0.0,15.6,1.9 -2019,6,10,22,30,0.0,0.0,0.0,15.6,1.9 -2019,6,10,22,45,0.0,0.0,0.0,15.6,1.9 -2019,6,10,23,0,0.0,0.0,0.0,15.5,0.2 -2019,6,10,23,15,0.0,0.0,0.0,15.5,0.2 -2019,6,10,23,30,0.0,0.0,0.0,15.5,0.2 -2019,6,10,23,45,0.0,0.0,0.0,15.5,0.2 -2019,6,11,0,0,0.0,0.0,0.0,14.5,1.3 -2019,6,11,0,15,0.0,0.0,0.0,14.5,1.3 -2019,6,11,0,30,0.0,0.0,0.0,14.5,1.3 -2019,6,11,0,45,0.0,0.0,0.0,14.5,1.3 -2019,6,11,1,0,0.0,0.0,0.0,14.9,0.0 -2019,6,11,1,15,0.0,0.0,0.0,14.9,0.0 -2019,6,11,1,30,0.0,0.0,0.0,14.9,0.0 -2019,6,11,1,45,0.0,0.0,0.0,14.9,0.0 -2019,6,11,2,0,0.0,0.0,0.0,14.4,0.0 -2019,6,11,2,15,0.0,0.0,0.0,14.4,0.0 -2019,6,11,2,30,0.0,0.0,0.0,14.4,0.0 -2019,6,11,2,45,0.0,0.0,0.0,14.4,0.0 -2019,6,11,3,0,0.0,0.0,0.0,14.3,0.0 -2019,6,11,3,15,0.0,0.0,0.0,14.3,0.0 -2019,6,11,3,30,0.0,0.0,0.0,14.3,0.0 -2019,6,11,3,45,0.0,0.0,0.0,14.3,0.0 -2019,6,11,4,0,119.0,-30.203611269448984,2.0,13.4,0.0 -2019,6,11,4,15,119.0,-25.471438091414466,2.0,13.4,0.0 -2019,6,11,4,30,119.0,-20.51143760059843,2.0,13.4,0.0 -2019,6,11,4,45,119.0,-15.344849280575868,2.0,13.4,0.0 -2019,6,11,5,0,239.0,30.91161727632307,55.0,14.5,0.3 -2019,6,11,5,15,239.0,41.983145067197654,55.0,14.5,0.3 -2019,6,11,5,30,239.0,53.33171979376857,55.0,14.5,0.3 -2019,6,11,5,45,239.0,64.90874511679161,55.0,14.5,0.3 -2019,6,11,6,0,31.0,120.81005874280918,118.0,15.8,0.0 -2019,6,11,6,15,31.0,122.3515547219148,118.0,15.8,0.0 -2019,6,11,6,30,31.0,123.90312173714123,118.0,15.8,0.0 -2019,6,11,6,45,31.0,125.45811574032838,118.0,15.8,0.0 -2019,6,11,7,0,452.0,317.369834187396,186.0,17.5,1.3 -2019,6,11,7,15,452.0,339.8515217110822,186.0,17.5,1.3 -2019,6,11,7,30,452.0,362.09293171519306,186.0,17.5,1.3 -2019,6,11,7,45,452.0,383.9988230675274,186.0,17.5,1.3 -2019,6,11,8,0,491.0,478.4124273600138,240.0,19.7,0.2 -2019,6,11,8,15,491.0,501.1757949252428,240.0,19.7,0.2 -2019,6,11,8,30,491.0,523.2754187755812,240.0,19.7,0.2 -2019,6,11,8,45,491.0,544.616664928906,240.0,19.7,0.2 -2019,6,11,9,0,650.0,656.3875671697224,226.0,22.5,1.7 -2019,6,11,9,15,650.0,682.2736783038097,226.0,22.5,1.7 -2019,6,11,9,30,650.0,706.8078358208256,226.0,22.5,1.7 -2019,6,11,9,45,650.0,729.88498069173,226.0,22.5,1.7 -2019,6,11,10,0,753.0,811.6629825517019,203.0,24.7,3.1 -2019,6,11,10,15,753.0,834.6854620322748,203.0,24.7,3.1 -2019,6,11,10,30,753.0,855.7002225899118,203.0,24.7,3.1 -2019,6,11,10,45,753.0,874.6172757936603,203.0,24.7,3.1 -2019,6,11,11,0,878.0,956.6244764615773,154.0,27.5,3.1 -2019,6,11,11,15,878.0,973.5174656937008,154.0,27.5,3.1 -2019,6,11,11,30,878.0,987.714156742454,154.0,27.5,3.1 -2019,6,11,11,45,878.0,999.1537571972501,154.0,27.5,3.1 -2019,6,11,12,0,938.0,1038.132653206008,126.0,29.4,3.3 -2019,6,11,12,15,938.0,1044.3188347226649,126.0,29.4,3.3 -2019,6,11,12,30,938.0,1047.4411936090614,126.0,29.4,3.3 -2019,6,11,12,45,938.0,1047.4863594450921,126.0,29.4,3.3 -2019,6,11,13,0,913.0,1022.9750839510133,129.0,29.3,5.2 -2019,6,11,13,15,913.0,1017.0409512489938,129.0,29.3,5.2 -2019,6,11,13,30,913.0,1008.1495012189456,129.0,29.3,5.2 -2019,6,11,13,45,913.0,996.3388084149376,129.0,29.3,5.2 -2019,6,11,14,0,837.0,923.6823198321732,142.0,28.8,5.5 -2019,6,11,14,15,837.0,907.652652599827,142.0,28.8,5.5 -2019,6,11,14,30,837.0,889.1193798244929,142.0,28.8,5.5 -2019,6,11,14,45,837.0,868.1618638254747,142.0,28.8,5.5 -2019,6,11,15,0,693.0,739.9460031030937,158.0,27.9,4.2 -2019,6,11,15,15,693.0,718.8109306198164,158.0,27.9,4.2 -2019,6,11,15,30,693.0,695.9160766544134,158.0,27.9,4.2 -2019,6,11,15,45,693.0,671.3594804864463,158.0,27.9,4.2 -2019,6,11,16,0,572.0,538.1715469205808,136.0,26.6,5.0 -2019,6,11,16,15,572.0,515.4253027370869,136.0,26.6,5.0 -2019,6,11,16,30,572.0,491.5839558400554,136.0,26.6,5.0 -2019,6,11,16,45,572.0,466.7495985370896,136.0,26.6,5.0 -2019,6,11,17,0,378.0,297.5748277720745,96.0,25.5,5.6 -2019,6,11,17,15,378.0,280.0642105965489,96.0,25.5,5.6 -2019,6,11,17,30,378.0,262.11541876958745,96.0,25.5,5.6 -2019,6,11,17,45,378.0,243.80531177334174,96.0,25.5,5.6 -2019,6,11,18,0,193.0,97.9734740352348,32.0,24.1,4.4 -2019,6,11,18,15,193.0,88.37641842338373,32.0,24.1,4.4 -2019,6,11,18,30,193.0,78.71666248987718,32.0,24.1,4.4 -2019,6,11,18,45,193.0,69.03557079261518,32.0,24.1,4.4 -2019,6,11,19,0,0.0,0.0,0.0,21.6,2.7 -2019,6,11,19,15,0.0,0.0,0.0,21.6,2.7 -2019,6,11,19,30,0.0,0.0,0.0,21.6,2.7 -2019,6,11,19,45,0.0,0.0,0.0,21.6,2.7 -2019,6,11,20,0,0.0,0.0,0.0,20.4,3.0 -2019,6,11,20,15,0.0,0.0,0.0,20.4,3.0 -2019,6,11,20,30,0.0,0.0,0.0,20.4,3.0 -2019,6,11,20,45,0.0,0.0,0.0,20.4,3.0 -2019,6,11,21,0,0.0,0.0,0.0,18.7,2.5 -2019,6,11,21,15,0.0,0.0,0.0,18.7,2.5 -2019,6,11,21,30,0.0,0.0,0.0,18.7,2.5 -2019,6,11,21,45,0.0,0.0,0.0,18.7,2.5 -2019,6,11,22,0,0.0,0.0,0.0,17.1,2.0 -2019,6,11,22,15,0.0,0.0,0.0,17.1,2.0 -2019,6,11,22,30,0.0,0.0,0.0,17.1,2.0 -2019,6,11,22,45,0.0,0.0,0.0,17.1,2.0 -2019,6,11,23,0,0.0,0.0,0.0,16.1,1.6 -2019,6,11,23,15,0.0,0.0,0.0,16.1,1.6 -2019,6,11,23,30,0.0,0.0,0.0,16.1,1.6 -2019,6,11,23,45,0.0,0.0,0.0,16.1,1.6 -2019,6,12,0,0,0.0,0.0,0.0,16.0,1.9 -2019,6,12,0,15,0.0,0.0,0.0,16.0,1.9 -2019,6,12,0,30,0.0,0.0,0.0,16.0,1.9 -2019,6,12,0,45,0.0,0.0,0.0,16.0,1.9 -2019,6,12,1,0,0.0,0.0,0.0,15.1,0.0 -2019,6,12,1,15,0.0,0.0,0.0,15.1,0.0 -2019,6,12,1,30,0.0,0.0,0.0,15.1,0.0 -2019,6,12,1,45,0.0,0.0,0.0,15.1,0.0 -2019,6,12,2,0,0.0,0.0,0.0,15.5,0.0 -2019,6,12,2,15,0.0,0.0,0.0,15.5,0.0 -2019,6,12,2,30,0.0,0.0,0.0,15.5,0.0 -2019,6,12,2,45,0.0,0.0,0.0,15.5,0.0 -2019,6,12,3,0,0.0,0.0,0.0,14.8,0.0 -2019,6,12,3,15,0.0,0.0,0.0,14.8,0.0 -2019,6,12,3,30,0.0,0.0,0.0,14.8,0.0 -2019,6,12,3,45,0.0,0.0,0.0,14.8,0.0 -2019,6,12,4,0,1.0,2.730331215077028,3.0,15.0,0.0 -2019,6,12,4,15,1.0,2.770074985612593,3.0,15.0,0.0 -2019,6,12,4,30,1.0,2.81173219339998,3.0,15.0,0.0 -2019,6,12,4,45,1.0,2.855124455880111,3.0,15.0,0.0 -2019,6,12,5,0,2.0,19.80013192144669,20.0,15.1,0.0 -2019,6,12,5,15,2.0,19.8927285230128,20.0,15.1,0.0 -2019,6,12,5,30,2.0,19.98764220359495,20.0,15.1,0.0 -2019,6,12,5,45,2.0,20.08446652824148,20.0,15.1,0.0 -2019,6,12,6,0,3.0,65.27418032049427,65.0,16.3,0.0 -2019,6,12,6,15,3.0,65.42327335552548,65.0,16.3,0.0 -2019,6,12,6,30,3.0,65.57334045819067,65.0,16.3,0.0 -2019,6,12,6,45,3.0,65.72373901811751,65.0,16.3,0.0 -2019,6,12,7,0,507.0,320.67642594349195,173.0,19.7,0.2 -2019,6,12,7,15,507.0,345.87951825956947,173.0,19.7,0.2 -2019,6,12,7,30,507.0,370.8132474995451,173.0,19.7,0.2 -2019,6,12,7,45,507.0,395.3708436069178,173.0,19.7,0.2 -2019,6,12,8,0,637.0,501.63872338628846,192.0,22.0,1.6 -2019,6,12,8,15,637.0,531.1542033455275,192.0,22.0,1.6 -2019,6,12,8,30,637.0,559.8090586955657,192.0,22.0,1.6 -2019,6,12,8,45,637.0,587.4805849466208,192.0,22.0,1.6 -2019,6,12,9,0,783.0,689.783949446914,171.0,24.7,2.5 -2019,6,12,9,15,783.0,720.9491994616877,171.0,24.7,2.5 -2019,6,12,9,30,783.0,750.4867823361113,171.0,24.7,2.5 -2019,6,12,9,45,783.0,778.2702136056241,171.0,24.7,2.5 -2019,6,12,10,0,834.0,841.4221634402106,167.0,27.5,2.3 -2019,6,12,10,15,834.0,866.9068072210298,167.0,27.5,2.3 -2019,6,12,10,30,834.0,890.1690143782783,167.0,27.5,2.3 -2019,6,12,10,45,834.0,911.1091725696297,167.0,27.5,2.3 -2019,6,12,11,0,907.0,970.3912647846352,141.0,29.7,3.7 -2019,6,12,11,15,907.0,987.8323970213199,141.0,29.7,3.7 -2019,6,12,11,30,907.0,1002.4897417045105,141.0,29.7,3.7 -2019,6,12,11,45,907.0,1014.3005338340369,141.0,29.7,3.7 -2019,6,12,12,0,952.0,1045.9844722062905,120.0,31.6,4.3 -2019,6,12,12,15,952.0,1052.259449628482,120.0,31.6,4.3 -2019,6,12,12,30,952.0,1055.426626579782,120.0,31.6,4.3 -2019,6,12,12,45,952.0,1055.4724407222516,120.0,31.6,4.3 -2019,6,12,13,0,807.0,964.3824932450299,174.0,30.5,5.6 -2019,6,12,13,15,807.0,959.1402712333129,174.0,30.5,5.6 -2019,6,12,13,30,807.0,951.2855505177248,174.0,30.5,5.6 -2019,6,12,13,45,807.0,940.8519662182487,174.0,30.5,5.6 -2019,6,12,14,0,724.0,861.3471602209727,185.0,29.3,4.7 -2019,6,12,14,15,724.0,847.48940092902,185.0,29.3,4.7 -2019,6,12,14,30,724.0,831.4672571571003,185.0,29.3,4.7 -2019,6,12,14,45,724.0,813.3493381846095,185.0,29.3,4.7 -2019,6,12,15,0,622.0,702.5257287888768,180.0,28.8,5.0 -2019,6,12,15,15,622.0,683.566691089291,180.0,28.8,5.0 -2019,6,12,15,30,622.0,663.0290563212989,180.0,28.8,5.0 -2019,6,12,15,45,622.0,641.0007697899723,180.0,28.8,5.0 -2019,6,12,16,0,615.0,559.6516694534573,127.0,28.0,4.3 -2019,6,12,16,15,615.0,535.2092505740845,127.0,28.0,4.3 -2019,6,12,16,30,615.0,509.5900677848416,127.0,28.0,4.3 -2019,6,12,16,45,615.0,482.9038263595609,127.0,28.0,4.3 -2019,6,12,17,0,466.0,335.7339792041182,87.0,27.0,3.7 -2019,6,12,17,15,466.0,314.15897103921515,87.0,27.0,3.7 -2019,6,12,17,30,466.0,292.0440834635739,87.0,27.0,3.7 -2019,6,12,17,45,466.0,269.48401582093265,87.0,27.0,3.7 -2019,6,12,18,0,237.0,112.15743258993128,31.0,25.4,4.3 -2019,6,12,18,15,237.0,100.37908282246565,31.0,25.4,4.3 -2019,6,12,18,30,237.0,88.52378171191538,31.0,25.4,4.3 -2019,6,12,18,45,237.0,76.64229547769466,31.0,25.4,4.3 -2019,6,12,19,0,0.0,0.0,0.0,23.6,2.1 -2019,6,12,19,15,0.0,0.0,0.0,23.6,2.1 -2019,6,12,19,30,0.0,0.0,0.0,23.6,2.1 -2019,6,12,19,45,0.0,0.0,0.0,23.6,2.1 -2019,6,12,20,0,0.0,0.0,0.0,21.5,2.2 -2019,6,12,20,15,0.0,0.0,0.0,21.5,2.2 -2019,6,12,20,30,0.0,0.0,0.0,21.5,2.2 -2019,6,12,20,45,0.0,0.0,0.0,21.5,2.2 -2019,6,12,21,0,0.0,0.0,0.0,19.9,2.5 -2019,6,12,21,15,0.0,0.0,0.0,19.9,2.5 -2019,6,12,21,30,0.0,0.0,0.0,19.9,2.5 -2019,6,12,21,45,0.0,0.0,0.0,19.9,2.5 -2019,6,12,22,0,0.0,0.0,0.0,18.8,1.3 -2019,6,12,22,15,0.0,0.0,0.0,18.8,1.3 -2019,6,12,22,30,0.0,0.0,0.0,18.8,1.3 -2019,6,12,22,45,0.0,0.0,0.0,18.8,1.3 -2019,6,12,23,0,0.0,0.0,0.0,17.7,0.2 -2019,6,12,23,15,0.0,0.0,0.0,17.7,0.2 -2019,6,12,23,30,0.0,0.0,0.0,17.7,0.2 -2019,6,12,23,45,0.0,0.0,0.0,17.7,0.2 -2019,6,13,0,0,0.0,0.0,0.0,16.5,1.5 -2019,6,13,0,15,0.0,0.0,0.0,16.5,1.5 -2019,6,13,0,30,0.0,0.0,0.0,16.5,1.5 -2019,6,13,0,45,0.0,0.0,0.0,16.5,1.5 -2019,6,13,1,0,0.0,0.0,0.0,14.8,1.5 -2019,6,13,1,15,0.0,0.0,0.0,14.8,1.5 -2019,6,13,1,30,0.0,0.0,0.0,14.8,1.5 -2019,6,13,1,45,0.0,0.0,0.0,14.8,1.5 -2019,6,13,2,0,0.0,0.0,0.0,14.5,0.0 -2019,6,13,2,15,0.0,0.0,0.0,14.5,0.0 -2019,6,13,2,30,0.0,0.0,0.0,14.5,0.0 -2019,6,13,2,45,0.0,0.0,0.0,14.5,0.0 -2019,6,13,3,0,0.0,0.0,0.0,14.5,1.3 -2019,6,13,3,15,0.0,0.0,0.0,14.5,1.3 -2019,6,13,3,30,0.0,0.0,0.0,14.5,1.3 -2019,6,13,3,45,0.0,0.0,0.0,14.5,1.3 -2019,6,13,4,0,1.0,2.731195976863886,3.0,15.0,0.0 -2019,6,13,4,15,1.0,2.7709193104242744,3.0,15.0,0.0 -2019,6,13,4,30,1.0,2.812555097311983,3.0,15.0,0.0 -2019,6,13,4,45,1.0,2.855925046695515,3.0,15.0,0.0 -2019,6,13,5,0,2.0,19.80168688358667,20.0,15.1,1.3 -2019,6,13,5,15,2.0,19.894235870283275,20.0,15.1,1.3 -2019,6,13,5,30,2.0,19.989100744511425,20.0,15.1,1.3 -2019,6,13,5,45,2.0,20.085875280315765,20.0,15.1,1.3 -2019,6,13,6,0,1.0,48.092072537138435,48.0,15.7,0.0 -2019,6,13,6,15,1.0,48.14174466002518,48.0,15.7,0.0 -2019,6,13,6,30,1.0,48.19174130516211,48.0,15.7,0.0 -2019,6,13,6,45,1.0,48.24184837923912,48.0,15.7,0.0 -2019,6,13,7,0,2.0,113.58370263214489,113.0,16.3,0.2 -2019,6,13,7,15,2.0,113.68307199081993,113.0,16.3,0.2 -2019,6,13,7,30,2.0,113.78137931965405,113.0,16.3,0.2 -2019,6,13,7,45,2.0,113.87820365157278,113.0,16.3,0.2 -2019,6,13,8,0,328.0,447.5933806672231,288.0,18.8,1.3 -2019,6,13,8,15,328.0,462.7834893629792,288.0,18.8,1.3 -2019,6,13,8,30,328.0,477.5306785677408,288.0,18.8,1.3 -2019,6,13,8,45,328.0,491.77179855330337,288.0,18.8,1.3 -2019,6,13,9,0,609.0,645.7333316903946,242.0,22.5,0.3 -2019,6,13,9,15,609.0,669.9605061242219,242.0,22.5,0.3 -2019,6,13,9,30,609.0,692.9223682082115,242.0,22.5,0.3 -2019,6,13,9,45,609.0,714.5205917237506,242.0,22.5,0.3 -2019,6,13,10,0,874.0,856.0397222527475,149.0,25.4,2.6 -2019,6,13,10,15,874.0,882.7329179147239,149.0,25.4,2.6 -2019,6,13,10,30,874.0,907.0982828975849,149.0,25.4,2.6 -2019,6,13,10,45,874.0,929.031480967835,149.0,25.4,2.6 -2019,6,13,11,0,1009.0,1019.9216683310394,97.0,28.5,2.8 -2019,6,13,11,15,1009.0,1039.3142296982214,97.0,28.5,2.8 -2019,6,13,11,30,1009.0,1055.6115349643815,97.0,28.5,2.8 -2019,6,13,11,45,1009.0,1068.7437965663614,97.0,28.5,2.8 -2019,6,13,12,0,965.0,1052.8472376995487,114.0,29.9,4.8 -2019,6,13,12,15,965.0,1059.2046320680556,114.0,29.9,4.8 -2019,6,13,12,30,965.0,1062.4134074244507,114.0,29.9,4.8 -2019,6,13,12,45,965.0,1062.459823300037,114.0,29.9,4.8 -2019,6,13,13,0,803.0,962.6434982287382,176.0,28.8,6.0 -2019,6,13,13,15,803.0,957.4299422545566,176.0,28.8,6.0 -2019,6,13,13,30,803.0,949.6181735006292,176.0,28.8,6.0 -2019,6,13,13,45,803.0,939.2416431600446,176.0,28.8,6.0 -2019,6,13,14,0,699.0,848.1643895454548,195.0,28.1,4.7 -2019,6,13,14,15,699.0,834.7920238944417,195.0,28.1,4.7 -2019,6,13,14,30,699.0,819.331085331623,195.0,28.1,4.7 -2019,6,13,14,45,699.0,801.8477799695311,195.0,28.1,4.7 -2019,6,13,15,0,558.0,668.9251380475582,200.0,26.8,5.7 -2019,6,13,15,15,558.0,651.9256154637319,200.0,26.8,5.7 -2019,6,13,15,30,558.0,633.5106520257675,200.0,26.8,5.7 -2019,6,13,15,45,558.0,613.7591034342233,200.0,26.8,5.7 -2019,6,13,16,0,500.0,502.93149538752766,151.0,25.4,5.7 -2019,6,13,16,15,500.0,483.06982860733314,151.0,25.4,5.7 -2019,6,13,16,30,500.0,462.251935163479,151.0,25.4,5.7 -2019,6,13,16,45,500.0,440.5669604717129,151.0,25.4,5.7 -2019,6,13,17,0,323.0,274.5516148481305,102.0,24.2,5.6 -2019,6,13,17,15,323.0,259.60495349662904,102.0,24.2,5.6 -2019,6,13,17,30,323.0,244.28427630878238,102.0,24.2,5.6 -2019,6,13,17,45,323.0,228.65518877638198,102.0,24.2,5.6 -2019,6,13,18,0,166.0,89.93574746308363,33.0,22.6,4.9 -2019,6,13,18,15,166.0,81.69017506388411,33.0,22.6,4.9 -2019,6,13,18,30,166.0,73.39073197115394,33.0,22.6,4.9 -2019,6,13,18,45,166.0,65.07295767436977,33.0,22.6,4.9 -2019,6,13,19,0,0.0,0.0,0.0,20.8,3.4 -2019,6,13,19,15,0.0,0.0,0.0,20.8,3.4 -2019,6,13,19,30,0.0,0.0,0.0,20.8,3.4 -2019,6,13,19,45,0.0,0.0,0.0,20.8,3.4 -2019,6,13,20,0,0.0,0.0,0.0,18.8,2.1 -2019,6,13,20,15,0.0,0.0,0.0,18.8,2.1 -2019,6,13,20,30,0.0,0.0,0.0,18.8,2.1 -2019,6,13,20,45,0.0,0.0,0.0,18.8,2.1 -2019,6,13,21,0,0.0,0.0,0.0,17.7,2.1 -2019,6,13,21,15,0.0,0.0,0.0,17.7,2.1 -2019,6,13,21,30,0.0,0.0,0.0,17.7,2.1 -2019,6,13,21,45,0.0,0.0,0.0,17.7,2.1 -2019,6,13,22,0,0.0,0.0,0.0,16.6,2.1 -2019,6,13,22,15,0.0,0.0,0.0,16.6,2.1 -2019,6,13,22,30,0.0,0.0,0.0,16.6,2.1 -2019,6,13,22,45,0.0,0.0,0.0,16.6,2.1 -2019,6,13,23,0,0.0,0.0,0.0,16.1,2.2 -2019,6,13,23,15,0.0,0.0,0.0,16.1,2.2 -2019,6,13,23,30,0.0,0.0,0.0,16.1,2.2 -2019,6,13,23,45,0.0,0.0,0.0,16.1,2.2 -2019,6,14,0,0,0.0,0.0,0.0,15.6,2.5 -2019,6,14,0,15,0.0,0.0,0.0,15.6,2.5 -2019,6,14,0,30,0.0,0.0,0.0,15.6,2.5 -2019,6,14,0,45,0.0,0.0,0.0,15.6,2.5 -2019,6,14,1,0,0.0,0.0,0.0,15.6,2.1 -2019,6,14,1,15,0.0,0.0,0.0,15.6,2.1 -2019,6,14,1,30,0.0,0.0,0.0,15.6,2.1 -2019,6,14,1,45,0.0,0.0,0.0,15.6,2.1 -2019,6,14,2,0,0.0,0.0,0.0,15.6,2.0 -2019,6,14,2,15,0.0,0.0,0.0,15.6,2.0 -2019,6,14,2,30,0.0,0.0,0.0,15.6,2.0 -2019,6,14,2,45,0.0,0.0,0.0,15.6,2.0 -2019,6,14,3,0,0.0,0.0,0.0,15.7,1.3 -2019,6,14,3,15,0.0,0.0,0.0,15.7,1.3 -2019,6,14,3,30,0.0,0.0,0.0,15.7,1.3 -2019,6,14,3,45,0.0,0.0,0.0,15.7,1.3 -2019,6,14,4,0,1.0,2.731975329385591,3.0,16.1,0.0 -2019,6,14,4,15,1.0,2.771680202877574,3.0,16.1,0.0 -2019,6,14,4,30,1.0,2.8132966409492304,3.0,16.1,0.0 -2019,6,14,4,45,1.0,2.8566464356236634,3.0,16.1,0.0 -2019,6,14,5,0,3.0,19.704631869274692,20.0,16.1,0.0 -2019,6,14,5,15,3.0,19.8433908358282,20.0,16.1,0.0 -2019,6,14,5,30,3.0,19.98562201933407,20.0,16.1,0.0 -2019,6,14,5,45,3.0,20.130716364028803,20.0,16.1,0.0 -2019,6,14,6,0,1.0,48.09268418455104,48.0,16.1,0.3 -2019,6,14,6,15,1.0,48.14233322400787,48.0,16.1,0.3 -2019,6,14,6,30,1.0,48.1923066349042,48.0,16.1,0.3 -2019,6,14,6,45,1.0,48.24239042342252,48.0,16.1,0.3 -2019,6,14,7,0,0.0,71.0,71.0,16.8,0.2 -2019,6,14,7,15,0.0,71.0,71.0,16.8,0.2 -2019,6,14,7,30,0.0,71.0,71.0,16.8,0.2 -2019,6,14,7,45,0.0,71.0,71.0,16.8,0.2 -2019,6,14,8,0,0.0,93.0,93.0,17.4,1.2 -2019,6,14,8,15,0.0,93.0,93.0,17.4,1.2 -2019,6,14,8,30,0.0,93.0,93.0,17.4,1.2 -2019,6,14,8,45,0.0,93.0,93.0,17.4,1.2 -2019,6,14,9,0,8.0,296.3063285552056,291.0,18.9,2.1 -2019,6,14,9,15,8.0,296.62443582191696,291.0,18.9,2.1 -2019,6,14,9,30,8.0,296.9259293042085,291.0,18.9,2.1 -2019,6,14,9,45,8.0,297.20951796070307,291.0,18.9,2.1 -2019,6,14,10,0,507.0,727.2889528208436,317.0,21.8,2.7 -2019,6,14,10,15,507.0,742.7662537245872,317.0,21.8,2.7 -2019,6,14,10,30,507.0,756.8938272922007,317.0,21.8,2.7 -2019,6,14,10,45,507.0,769.6111770847632,317.0,21.8,2.7 -2019,6,14,11,0,625.0,846.8242670834072,275.0,23.1,0.2 -2019,6,14,11,15,625.0,858.8309254913404,275.0,23.1,0.2 -2019,6,14,11,30,625.0,868.9211953425284,275.0,23.1,0.2 -2019,6,14,11,45,625.0,877.0518685523822,275.0,23.1,0.2 -2019,6,14,12,0,814.0,974.1042183369573,182.0,25.3,1.7 -2019,6,14,12,15,814.0,979.4643366253873,182.0,25.3,1.7 -2019,6,14,12,30,814.0,982.1697556185013,182.0,25.3,1.7 -2019,6,14,12,45,814.0,982.2088902968273,182.0,25.3,1.7 -2019,6,14,13,0,949.0,1043.858615298037,114.0,27.3,3.7 -2019,6,14,13,15,949.0,1037.7000033919085,114.0,27.3,3.7 -2019,6,14,13,30,949.0,1028.4722033463913,114.0,27.3,3.7 -2019,6,14,13,45,949.0,1016.2147300179579,114.0,27.3,3.7 -2019,6,14,14,0,1070.0,1062.0723675600066,62.0,28.0,4.8 -2019,6,14,14,15,1070.0,1041.6120215088658,62.0,28.0,4.8 -2019,6,14,14,30,1070.0,1017.9560610358786,62.0,28.0,4.8 -2019,6,14,14,45,1070.0,991.2057845955195,62.0,28.0,4.8 -2019,6,14,15,0,877.0,840.2338549887422,103.0,26.7,6.1 -2019,6,14,15,15,877.0,813.5283835732437,103.0,26.7,6.1 -2019,6,14,15,30,877.0,784.599319401883,103.0,26.7,6.1 -2019,6,14,15,45,877.0,753.5705411687129,103.0,26.7,6.1 -2019,6,14,16,0,564.0,535.1633457699936,138.0,24.9,5.6 -2019,6,14,16,15,564.0,512.7697971205148,138.0,24.9,5.6 -2019,6,14,16,30,564.0,489.298126048101,138.0,24.9,5.6 -2019,6,14,16,45,564.0,464.8488418517207,138.0,24.9,5.6 -2019,6,14,17,0,295.0,262.7134021903341,105.0,23.6,5.2 -2019,6,14,17,15,295.0,249.06877047923905,105.0,23.6,5.2 -2019,6,14,17,30,295.0,235.08270410116168,105.0,23.6,5.2 -2019,6,14,17,45,295.0,220.81509353951287,105.0,23.6,5.2 -2019,6,14,18,0,128.0,76.96562869938808,33.0,21.5,5.5 -2019,6,14,18,15,128.0,70.61055164891428,33.0,21.5,5.5 -2019,6,14,18,30,128.0,64.21395505418384,33.0,21.5,5.5 -2019,6,14,18,45,128.0,57.803230123838716,33.0,21.5,5.5 -2019,6,14,19,0,0.0,0.0,0.0,19.8,3.5 -2019,6,14,19,15,0.0,0.0,0.0,19.8,3.5 -2019,6,14,19,30,0.0,0.0,0.0,19.8,3.5 -2019,6,14,19,45,0.0,0.0,0.0,19.8,3.5 -2019,6,14,20,0,0.0,0.0,0.0,18.1,3.1 -2019,6,14,20,15,0.0,0.0,0.0,18.1,3.1 -2019,6,14,20,30,0.0,0.0,0.0,18.1,3.1 -2019,6,14,20,45,0.0,0.0,0.0,18.1,3.1 -2019,6,14,21,0,0.0,0.0,0.0,16.6,3.0 -2019,6,14,21,15,0.0,0.0,0.0,16.6,3.0 -2019,6,14,21,30,0.0,0.0,0.0,16.6,3.0 -2019,6,14,21,45,0.0,0.0,0.0,16.6,3.0 -2019,6,14,22,0,0.0,0.0,0.0,15.5,2.5 -2019,6,14,22,15,0.0,0.0,0.0,15.5,2.5 -2019,6,14,22,30,0.0,0.0,0.0,15.5,2.5 -2019,6,14,22,45,0.0,0.0,0.0,15.5,2.5 -2019,6,14,23,0,0.0,0.0,0.0,15.0,2.5 -2019,6,14,23,15,0.0,0.0,0.0,15.0,2.5 -2019,6,14,23,30,0.0,0.0,0.0,15.0,2.5 -2019,6,14,23,45,0.0,0.0,0.0,15.0,2.5 -2019,6,15,0,0,0.0,0.0,0.0,15.6,3.1 -2019,6,15,0,15,0.0,0.0,0.0,15.6,3.1 -2019,6,15,0,30,0.0,0.0,0.0,15.6,3.1 -2019,6,15,0,45,0.0,0.0,0.0,15.6,3.1 -2019,6,15,1,0,0.0,0.0,0.0,15.6,3.0 -2019,6,15,1,15,0.0,0.0,0.0,15.6,3.0 -2019,6,15,1,30,0.0,0.0,0.0,15.6,3.0 -2019,6,15,1,45,0.0,0.0,0.0,15.6,3.0 -2019,6,15,2,0,0.0,0.0,0.0,15.6,1.9 -2019,6,15,2,15,0.0,0.0,0.0,15.6,1.9 -2019,6,15,2,30,0.0,0.0,0.0,15.6,1.9 -2019,6,15,2,45,0.0,0.0,0.0,15.6,1.9 -2019,6,15,3,0,0.0,0.0,0.0,15.6,0.0 -2019,6,15,3,15,0.0,0.0,0.0,15.6,0.0 -2019,6,15,3,30,0.0,0.0,0.0,15.6,0.0 -2019,6,15,3,45,0.0,0.0,0.0,15.6,0.0 -2019,6,15,4,0,1.0,2.732668935971398,3.0,15.7,0.0 -2019,6,15,4,15,1.0,2.772357347299328,3.0,15.7,0.0 -2019,6,15,4,30,1.0,2.8139565306470513,3.0,15.7,0.0 -2019,6,15,4,45,1.0,2.8572883519250505,3.0,15.7,0.0 -2019,6,15,5,0,3.0,19.706501772866574,20.0,16.1,0.0 -2019,6,15,5,15,3.0,19.845203208123028,20.0,16.1,0.0 -2019,6,15,5,30,3.0,19.987375420704918,20.0,16.1,0.0 -2019,6,15,5,45,3.0,20.13240960737129,20.0,16.1,0.0 -2019,6,15,6,0,1.0,48.093228236489594,48.0,16.1,0.2 -2019,6,15,6,15,1.0,48.142856690800045,48.0,16.1,0.2 -2019,6,15,6,30,1.0,48.19280938206133,48.0,16.1,0.2 -2019,6,15,6,45,1.0,48.24287240518058,48.0,16.1,0.2 -2019,6,15,7,0,0.0,71.0,71.0,16.1,1.5 -2019,6,15,7,15,0.0,71.0,71.0,16.1,1.5 -2019,6,15,7,30,0.0,71.0,71.0,16.1,1.5 -2019,6,15,7,45,0.0,71.0,71.0,16.1,1.5 -2019,6,15,8,0,0.0,93.0,93.0,16.2,1.3 -2019,6,15,8,15,0.0,93.0,93.0,16.2,1.3 -2019,6,15,8,30,0.0,93.0,93.0,16.2,1.3 -2019,6,15,8,45,0.0,93.0,93.0,16.2,1.3 -2019,6,15,9,0,0.0,121.0,121.0,17.5,0.2 -2019,6,15,9,15,0.0,121.0,121.0,17.5,0.2 -2019,6,15,9,30,0.0,121.0,121.0,17.5,0.2 -2019,6,15,9,45,0.0,121.0,121.0,17.5,0.2 -2019,6,15,10,0,4.0,307.23798153044027,304.0,19.7,1.7 -2019,6,15,10,15,4.0,307.36003978535723,304.0,19.7,1.7 -2019,6,15,10,30,4.0,307.471453719001,304.0,19.7,1.7 -2019,6,15,10,45,4.0,307.571746239803,304.0,19.7,1.7 -2019,6,15,11,0,559.0,817.5531812009548,306.0,21.4,3.0 -2019,6,15,11,15,559.0,828.2874840514819,306.0,21.4,3.0 -2019,6,15,11,30,559.0,837.308479631287,306.0,21.4,3.0 -2019,6,15,11,45,559.0,844.577538652369,306.0,21.4,3.0 -2019,6,15,12,0,759.0,946.7195388569183,208.0,23.5,2.3 -2019,6,15,12,15,759.0,951.7154147755311,208.0,23.5,2.3 -2019,6,15,12,30,759.0,954.236989276346,208.0,23.5,2.3 -2019,6,15,12,45,759.0,954.2734645902311,208.0,23.5,2.3 -2019,6,15,13,0,899.0,1016.0255485999198,135.0,25.1,3.8 -2019,6,15,13,15,899.0,1010.1938346278188,135.0,25.1,3.8 -2019,6,15,13,30,899.0,1001.455844431741,135.0,25.1,3.8 -2019,6,15,13,45,899.0,989.8489954271867,135.0,25.1,3.8 -2019,6,15,14,0,968.0,999.927090373701,95.0,25.5,5.0 -2019,6,15,14,15,968.0,981.4248442910845,95.0,25.5,5.0 -2019,6,15,14,30,968.0,960.032811091946,95.0,25.5,5.0 -2019,6,15,14,45,968.0,935.8425947466093,95.0,25.5,5.0 -2019,6,15,15,0,816.0,807.1462290121642,121.0,24.7,4.7 -2019,6,15,15,15,816.0,782.3085670240774,121.0,24.7,4.7 -2019,6,15,15,30,816.0,755.4028327518517,121.0,24.7,4.7 -2019,6,15,15,45,816.0,726.5442406802841,121.0,24.7,4.7 -2019,6,15,16,0,556.0,531.6913486010768,140.0,23.2,5.5 -2019,6,15,16,15,556.0,509.6245919027478,140.0,23.2,5.5 -2019,6,15,16,30,556.0,486.4954459614136,140.0,23.2,5.5 -2019,6,15,16,45,556.0,462.40295333084606,140.0,23.2,5.5 -2019,6,15,17,0,309.0,269.3095990374818,104.0,22.0,6.0 -2019,6,15,17,15,309.0,255.02335120606688,104.0,22.0,6.0 -2019,6,15,17,30,309.0,240.37961331013238,104.0,22.0,6.0 -2019,6,15,17,45,309.0,225.44109208349613,104.0,22.0,6.0 -2019,6,15,18,0,138.0,80.46117283595032,33.0,20.3,4.2 -2019,6,15,18,15,138.0,73.61244614110805,33.0,20.3,4.2 -2019,6,15,18,30,138.0,66.71897474705136,33.0,20.3,4.2 -2019,6,15,18,45,138.0,59.810277556594485,33.0,20.3,4.2 -2019,6,15,19,0,0.0,0.0,0.0,18.2,4.4 -2019,6,15,19,15,0.0,0.0,0.0,18.2,4.4 -2019,6,15,19,30,0.0,0.0,0.0,18.2,4.4 -2019,6,15,19,45,0.0,0.0,0.0,18.2,4.4 -2019,6,15,20,0,0.0,0.0,0.0,17.1,2.5 -2019,6,15,20,15,0.0,0.0,0.0,17.1,2.5 -2019,6,15,20,30,0.0,0.0,0.0,17.1,2.5 -2019,6,15,20,45,0.0,0.0,0.0,17.1,2.5 -2019,6,15,21,0,0.0,0.0,0.0,16.1,2.0 -2019,6,15,21,15,0.0,0.0,0.0,16.1,2.0 -2019,6,15,21,30,0.0,0.0,0.0,16.1,2.0 -2019,6,15,21,45,0.0,0.0,0.0,16.1,2.0 -2019,6,15,22,0,0.0,0.0,0.0,16.0,1.5 -2019,6,15,22,15,0.0,0.0,0.0,16.0,1.5 -2019,6,15,22,30,0.0,0.0,0.0,16.0,1.5 -2019,6,15,22,45,0.0,0.0,0.0,16.0,1.5 -2019,6,15,23,0,0.0,0.0,0.0,15.6,1.3 -2019,6,15,23,15,0.0,0.0,0.0,15.6,1.3 -2019,6,15,23,30,0.0,0.0,0.0,15.6,1.3 -2019,6,15,23,45,0.0,0.0,0.0,15.6,1.3 -2019,6,16,0,0,0.0,0.0,0.0,15.5,0.0 -2019,6,16,0,15,0.0,0.0,0.0,15.5,0.0 -2019,6,16,0,30,0.0,0.0,0.0,15.5,0.0 -2019,6,16,0,45,0.0,0.0,0.0,15.5,0.0 -2019,6,16,1,0,0.0,0.0,0.0,14.4,0.0 -2019,6,16,1,15,0.0,0.0,0.0,14.4,0.0 -2019,6,16,1,30,0.0,0.0,0.0,14.4,0.0 -2019,6,16,1,45,0.0,0.0,0.0,14.4,0.0 -2019,6,16,2,0,0.0,0.0,0.0,14.4,0.0 -2019,6,16,2,15,0.0,0.0,0.0,14.4,0.0 -2019,6,16,2,30,0.0,0.0,0.0,14.4,0.0 -2019,6,16,2,45,0.0,0.0,0.0,14.4,0.0 -2019,6,16,3,0,0.0,0.0,0.0,14.0,0.0 -2019,6,16,3,15,0.0,0.0,0.0,14.0,0.0 -2019,6,16,3,30,0.0,0.0,0.0,14.0,0.0 -2019,6,16,3,45,0.0,0.0,0.0,14.0,0.0 -2019,6,16,4,0,1.0,2.7332764972178447,3.0,15.1,0.0 -2019,6,16,4,15,1.0,2.7729504630029225,3.0,15.1,0.0 -2019,6,16,4,30,1.0,2.8145345053367956,3.0,15.1,0.0 -2019,6,16,4,45,1.0,2.85785055496609,3.0,15.1,0.0 -2019,6,16,5,0,3.0,19.708139377748882,20.0,15.7,0.0 -2019,6,16,5,15,3.0,19.84679032931351,20.0,15.7,0.0 -2019,6,16,5,30,3.0,19.988910794931474,20.0,15.7,0.0 -2019,6,16,5,45,3.0,20.13389219295027,20.0,15.7,0.0 -2019,6,16,6,0,22.0,111.06150039894797,109.0,16.8,0.0 -2019,6,16,6,15,22.0,112.15292899769508,109.0,16.8,0.0 -2019,6,16,6,30,22.0,113.25148821305766,109.0,16.8,0.0 -2019,6,16,6,45,22.0,114.35247384582165,109.0,16.8,0.0 -2019,6,16,7,0,386.0,312.1887329228055,199.0,18.1,0.0 -2019,6,16,7,15,386.0,331.34318455818743,199.0,18.1,0.0 -2019,6,16,7,30,386.0,350.292919171196,199.0,18.1,0.0 -2019,6,16,7,45,386.0,368.95679108900214,199.0,18.1,0.0 -2019,6,16,8,0,523.0,484.0707294936184,229.0,21.0,0.3 -2019,6,16,8,15,523.0,508.26144166105513,229.0,21.0,0.3 -2019,6,16,8,30,523.0,531.7467910075535,229.0,21.0,0.3 -2019,6,16,8,45,523.0,554.4262096616758,229.0,21.0,0.3 -2019,6,16,9,0,718.0,673.656698021669,197.0,24.1,2.5 -2019,6,16,9,15,718.0,702.1846007593247,197.0,24.1,2.5 -2019,6,16,9,30,718.0,729.2225770613775,197.0,24.1,2.5 -2019,6,16,9,45,718.0,754.6548461623562,197.0,24.1,2.5 -2019,6,16,10,0,799.0,828.959094766084,182.0,25.9,2.3 -2019,6,16,10,15,799.0,853.3313570902798,182.0,25.9,2.3 -2019,6,16,10,30,799.0,875.5781901224509,182.0,25.9,2.3 -2019,6,16,10,45,799.0,895.6043295081573,182.0,25.9,2.3 -2019,6,16,11,0,871.0,953.2255589894803,156.0,28.6,3.8 -2019,6,16,11,15,871.0,969.9450129809433,156.0,28.6,3.8 -2019,6,16,11,30,871.0,983.9958668327461,156.0,28.6,3.8 -2019,6,16,11,45,871.0,995.3179526315683,156.0,28.6,3.8 -2019,6,16,12,0,900.0,1018.0924325155446,142.0,30.6,5.0 -2019,6,16,12,15,900.0,1024.0142398877372,142.0,30.6,5.0 -2019,6,16,12,30,900.0,1027.0031608921252,142.0,30.6,5.0 -2019,6,16,12,45,900.0,1027.0463965101,142.0,30.6,5.0 -2019,6,16,13,0,894.0,1013.2628031894411,137.0,30.4,4.7 -2019,6,16,13,15,894.0,1007.4656344525193,137.0,30.4,4.7 -2019,6,16,13,30,894.0,998.779405355796,137.0,30.4,4.7 -2019,6,16,13,45,894.0,987.2413116657975,137.0,30.4,4.7 -2019,6,16,14,0,729.0,864.6237751304323,183.0,28.8,5.6 -2019,6,16,14,15,729.0,850.6948205175424,183.0,28.8,5.6 -2019,6,16,14,30,729.0,834.5903617303369,183.0,28.8,5.6 -2019,6,16,14,45,729.0,816.3793605337443,183.0,28.8,5.6 -2019,6,16,15,0,606.0,694.6882281670773,185.0,28.2,5.2 -2019,6,16,15,15,606.0,676.2493252651957,185.0,28.2,5.2 -2019,6,16,15,30,606.0,656.275133572461,185.0,28.2,5.2 -2019,6,16,15,45,606.0,634.8511856441949,185.0,28.2,5.2 -2019,6,16,16,0,524.0,516.2809775379425,147.0,27.2,5.7 -2019,6,16,16,15,524.0,495.49181946656137,147.0,27.2,5.7 -2019,6,16,16,30,524.0,473.70178128361215,147.0,27.2,5.7 -2019,6,16,16,45,524.0,451.0041712778617,147.0,27.2,5.7 -2019,6,16,17,0,421.0,318.360483790231,93.0,26.4,6.0 -2019,6,16,17,15,421.0,298.9031335873281,93.0,26.4,6.0 -2019,6,16,17,30,421.0,278.95889491227354,93.0,26.4,6.0 -2019,6,16,17,45,421.0,258.61317205696923,93.0,26.4,6.0 -2019,6,16,18,0,176.0,93.59796575134817,33.0,24.2,4.0 -2019,6,16,18,15,176.0,84.86653696137124,33.0,24.2,4.0 -2019,6,16,18,30,176.0,76.07806323847065,33.0,24.2,4.0 -2019,6,16,18,45,176.0,67.27017817635878,33.0,24.2,4.0 -2019,6,16,19,0,0.0,0.0,0.0,22.6,3.2 -2019,6,16,19,15,0.0,0.0,0.0,22.6,3.2 -2019,6,16,19,30,0.0,0.0,0.0,22.6,3.2 -2019,6,16,19,45,0.0,0.0,0.0,22.6,3.2 -2019,6,16,20,0,0.0,0.0,0.0,20.8,3.4 -2019,6,16,20,15,0.0,0.0,0.0,20.8,3.4 -2019,6,16,20,30,0.0,0.0,0.0,20.8,3.4 -2019,6,16,20,45,0.0,0.0,0.0,20.8,3.4 -2019,6,16,21,0,0.0,0.0,0.0,18.8,1.9 -2019,6,16,21,15,0.0,0.0,0.0,18.8,1.9 -2019,6,16,21,30,0.0,0.0,0.0,18.8,1.9 -2019,6,16,21,45,0.0,0.0,0.0,18.8,1.9 -2019,6,16,22,0,0.0,0.0,0.0,18.2,0.2 -2019,6,16,22,15,0.0,0.0,0.0,18.2,0.2 -2019,6,16,22,30,0.0,0.0,0.0,18.2,0.2 -2019,6,16,22,45,0.0,0.0,0.0,18.2,0.2 -2019,6,16,23,0,0.0,0.0,0.0,17.7,1.5 -2019,6,16,23,15,0.0,0.0,0.0,17.7,1.5 -2019,6,16,23,30,0.0,0.0,0.0,17.7,1.5 -2019,6,16,23,45,0.0,0.0,0.0,17.7,1.5 -2019,6,17,0,0,0.0,0.0,0.0,17.1,1.3 -2019,6,17,0,15,0.0,0.0,0.0,17.1,1.3 -2019,6,17,0,30,0.0,0.0,0.0,17.1,1.3 -2019,6,17,0,45,0.0,0.0,0.0,17.1,1.3 -2019,6,17,1,0,0.0,0.0,0.0,16.6,0.0 -2019,6,17,1,15,0.0,0.0,0.0,16.6,0.0 -2019,6,17,1,30,0.0,0.0,0.0,16.6,0.0 -2019,6,17,1,45,0.0,0.0,0.0,16.6,0.0 -2019,6,17,2,0,0.0,0.0,0.0,16.0,0.0 -2019,6,17,2,15,0.0,0.0,0.0,16.0,0.0 -2019,6,17,2,30,0.0,0.0,0.0,16.0,0.0 -2019,6,17,2,45,0.0,0.0,0.0,16.0,0.0 -2019,6,17,3,0,0.0,0.0,0.0,15.6,0.0 -2019,6,17,3,15,0.0,0.0,0.0,15.6,0.0 -2019,6,17,3,30,0.0,0.0,0.0,15.6,0.0 -2019,6,17,3,45,0.0,0.0,0.0,15.6,0.0 -2019,6,17,4,0,323.0,-85.98332641405908,0.0,15.7,0.0 -2019,6,17,4,15,323.0,-73.17264470426586,0.0,15.7,0.0 -2019,6,17,4,30,323.0,-59.74520129133197,0.0,15.7,0.0 -2019,6,17,4,45,323.0,-45.758494549370546,0.0,15.7,0.0 -2019,6,17,5,0,380.0,11.208920348319381,48.0,16.4,0.0 -2019,6,17,5,15,380.0,28.76587957646886,48.0,16.4,0.0 -2019,6,17,5,30,380.0,46.76217309038085,48.0,16.4,0.0 -2019,6,17,5,45,380.0,65.12073799838745,48.0,16.4,0.0 -2019,6,17,6,0,613.0,145.69130143591832,88.0,18.6,0.2 -2019,6,17,6,15,613.0,176.09295650770645,88.0,18.6,0.2 -2019,6,17,6,30,613.0,206.6932343268199,88.0,18.6,0.2 -2019,6,17,6,45,613.0,237.36109980579687,88.0,18.6,0.2 -2019,6,17,7,0,752.0,332.77300454193016,112.0,21.0,1.5 -2019,6,17,7,15,752.0,370.07777425517935,112.0,21.0,1.5 -2019,6,17,7,30,752.0,406.98384180136105,112.0,21.0,1.5 -2019,6,17,7,45,752.0,443.3331697333196,112.0,21.0,1.5 -2019,6,17,8,0,841.0,533.401406927267,123.0,24.3,1.6 -2019,6,17,8,15,841.0,572.2886419796553,123.0,24.3,1.6 -2019,6,17,8,30,841.0,610.0419868999475,123.0,24.3,1.6 -2019,6,17,8,45,841.0,646.4997760691956,123.0,24.3,1.6 -2019,6,17,9,0,900.0,722.687636710307,125.0,27.5,2.1 -2019,6,17,9,15,900.0,758.4356585472538,125.0,27.5,2.1 -2019,6,17,9,30,900.0,792.3166688746204,125.0,27.5,2.1 -2019,6,17,9,45,900.0,824.1855840046779,125.0,27.5,2.1 -2019,6,17,10,0,936.0,880.062173804244,122.0,30.3,2.3 -2019,6,17,10,15,936.0,908.6044771517871,122.0,30.3,2.3 -2019,6,17,10,30,936.0,934.6576948826661,122.0,30.3,2.3 -2019,6,17,10,45,936.0,958.1102631187944,122.0,30.3,2.3 -2019,6,17,11,0,952.0,991.508963838763,120.0,32.3,3.8 -2019,6,17,11,15,952.0,1009.7775521157686,120.0,32.3,3.8 -2019,6,17,11,30,952.0,1025.1302821804002,120.0,32.3,3.8 -2019,6,17,11,45,952.0,1037.5014112855267,120.0,32.3,3.8 -2019,6,17,12,0,949.0,1044.9172564861974,121.0,33.4,5.0 -2019,6,17,12,15,949.0,1051.159519788333,121.0,33.4,5.0 -2019,6,17,12,30,949.0,1054.310184902211,121.0,33.4,5.0 -2019,6,17,12,45,949.0,1054.3557601961152,121.0,33.4,5.0 -2019,6,17,13,0,927.0,1031.7296510246956,123.0,34.0,4.5 -2019,6,17,13,15,927.0,1025.720373504923,123.0,34.0,4.5 -2019,6,17,13,30,927.0,1016.7163297015936,123.0,34.0,4.5 -2019,6,17,13,45,927.0,1004.7560763125998,123.0,34.0,4.5 -2019,6,17,14,0,885.0,952.614221840912,125.0,34.9,3.8 -2019,6,17,14,15,885.0,935.709875976891,125.0,34.9,3.8 -2019,6,17,14,30,885.0,916.1653122348379,125.0,34.9,3.8 -2019,6,17,14,45,885.0,894.064223437232,125.0,34.9,3.8 -2019,6,17,15,0,817.0,808.2966340324624,121.0,34.1,5.6 -2019,6,17,15,15,817.0,783.445362539818,121.0,34.1,5.6 -2019,6,17,15,30,817.0,756.5248855871669,121.0,34.1,5.6 -2019,6,17,15,45,817.0,727.6504807897272,121.0,34.1,5.6 -2019,6,17,16,0,716.0,610.7456396960979,106.0,32.7,5.1 -2019,6,17,16,15,716.0,582.3479675468346,106.0,32.7,5.1 -2019,6,17,16,30,716.0,552.583108464294,106.0,32.7,5.1 -2019,6,17,16,45,716.0,521.5785201446517,106.0,32.7,5.1 -2019,6,17,17,0,553.0,374.1693210254705,78.0,31.4,4.7 -2019,6,17,17,15,553.0,348.61932509608454,78.0,31.4,4.7 -2019,6,17,17,30,553.0,322.4299821666284,78.0,31.4,4.7 -2019,6,17,17,45,553.0,295.7134390241872,78.0,31.4,4.7 -2019,6,17,18,0,306.0,137.45883291587177,32.0,29.1,5.5 -2019,6,17,18,15,306.0,122.28280281478338,32.0,29.1,5.5 -2019,6,17,18,30,306.0,107.00762334879859,32.0,29.1,5.5 -2019,6,17,18,45,306.0,91.69870518147889,32.0,29.1,5.5 -2019,6,17,19,0,0.0,0.0,0.0,26.4,3.4 -2019,6,17,19,15,0.0,0.0,0.0,26.4,3.4 -2019,6,17,19,30,0.0,0.0,0.0,26.4,3.4 -2019,6,17,19,45,0.0,0.0,0.0,26.4,3.4 -2019,6,17,20,0,0.0,0.0,0.0,24.1,2.1 -2019,6,17,20,15,0.0,0.0,0.0,24.1,2.1 -2019,6,17,20,30,0.0,0.0,0.0,24.1,2.1 -2019,6,17,20,45,0.0,0.0,0.0,24.1,2.1 -2019,6,17,21,0,0.0,0.0,0.0,21.9,2.1 -2019,6,17,21,15,0.0,0.0,0.0,21.9,2.1 -2019,6,17,21,30,0.0,0.0,0.0,21.9,2.1 -2019,6,17,21,45,0.0,0.0,0.0,21.9,2.1 -2019,6,17,22,0,0.0,0.0,0.0,19.9,2.1 -2019,6,17,22,15,0.0,0.0,0.0,19.9,2.1 -2019,6,17,22,30,0.0,0.0,0.0,19.9,2.1 -2019,6,17,22,45,0.0,0.0,0.0,19.9,2.1 -2019,6,17,23,0,0.0,0.0,0.0,18.8,2.0 -2019,6,17,23,15,0.0,0.0,0.0,18.8,2.0 -2019,6,17,23,30,0.0,0.0,0.0,18.8,2.0 -2019,6,17,23,45,0.0,0.0,0.0,18.8,2.0 -2019,6,18,0,0,0.0,0.0,0.0,17.7,1.3 -2019,6,18,0,15,0.0,0.0,0.0,17.7,1.3 -2019,6,18,0,30,0.0,0.0,0.0,17.7,1.3 -2019,6,18,0,45,0.0,0.0,0.0,17.7,1.3 -2019,6,18,1,0,0.0,0.0,0.0,17.1,0.2 -2019,6,18,1,15,0.0,0.0,0.0,17.1,0.2 -2019,6,18,1,30,0.0,0.0,0.0,17.1,0.2 -2019,6,18,1,45,0.0,0.0,0.0,17.1,0.2 -2019,6,18,2,0,0.0,0.0,0.0,16.1,1.3 -2019,6,18,2,15,0.0,0.0,0.0,16.1,1.3 -2019,6,18,2,30,0.0,0.0,0.0,16.1,1.3 -2019,6,18,2,45,0.0,0.0,0.0,16.1,1.3 -2019,6,18,3,0,0.0,0.0,0.0,16.0,0.0 -2019,6,18,3,15,0.0,0.0,0.0,16.0,0.0 -2019,6,18,3,30,0.0,0.0,0.0,16.0,0.0 -2019,6,18,3,45,0.0,0.0,0.0,16.0,0.0 -2019,6,18,4,0,1.0,2.734232472715634,3.0,15.7,0.4 -2019,6,18,4,15,1.0,2.7738836606339303,3.0,15.7,0.4 -2019,6,18,4,30,1.0,2.8154438284758583,3.0,15.7,0.4 -2019,6,18,4,45,1.0,2.8587350092222854,3.0,15.7,0.4 -2019,6,18,5,0,3.0,19.71071547017322,20.0,15.6,0.9 -2019,6,18,5,15,3.0,19.849286818581437,20.0,15.6,0.9 -2019,6,18,5,30,3.0,19.991325689103757,20.0,15.6,0.9 -2019,6,18,5,45,3.0,20.1362238494904,20.0,15.6,0.9 -2019,6,18,6,0,284.0,159.82482463161767,133.0,16.9,0.2 -2019,6,18,6,15,284.0,173.90608656680786,133.0,16.9,0.2 -2019,6,18,6,30,284.0,188.07934543192724,133.0,16.9,0.2 -2019,6,18,6,45,284.0,202.2839091565973,133.0,16.9,0.2 -2019,6,18,7,0,341.0,308.20951585145974,208.0,18.6,2.1 -2019,6,18,7,15,341.0,325.1212205285195,208.0,18.6,2.1 -2019,6,18,7,30,341.0,341.8521779886581,208.0,18.6,2.1 -2019,6,18,7,45,341.0,358.330743703448,208.0,18.6,2.1 -2019,6,18,8,0,481.0,476.83852269138697,242.0,21.1,2.2 -2019,6,18,8,15,481.0,499.07380409210634,242.0,21.1,2.2 -2019,6,18,8,30,481.0,520.6607399333974,242.0,21.1,2.2 -2019,6,18,8,45,481.0,541.5068916419011,242.0,21.1,2.2 -2019,6,18,9,0,783.0,691.1382606215968,171.0,25.3,2.6 -2019,6,18,9,15,783.0,722.230911575553,171.0,25.3,2.6 -2019,6,18,9,30,783.0,751.6996870194413,171.0,25.3,2.6 -2019,6,18,9,45,783.0,779.4183971326823,171.0,25.3,2.6 -2019,6,18,10,0,913.0,871.5747126802887,132.0,27.5,2.7 -2019,6,18,10,15,913.0,899.4083799084053,132.0,27.5,2.7 -2019,6,18,10,30,913.0,924.8147594746631,132.0,27.5,2.7 -2019,6,18,10,45,913.0,947.6850573613009,132.0,27.5,2.7 -2019,6,18,11,0,1020.0,1025.8880243488384,92.0,30.1,3.1 -2019,6,18,11,15,1020.0,1045.4563963484266,92.0,30.1,3.1 -2019,6,18,11,30,1020.0,1061.9014510269049,92.0,30.1,3.1 -2019,6,18,11,45,1020.0,1075.15276813545,92.0,30.1,3.1 -2019,6,18,12,0,926.0,1032.6276831772911,131.0,31.2,3.2 -2019,6,18,12,15,926.0,1038.717066901053,131.0,31.2,3.2 -2019,6,18,12,30,926.0,1041.7905689202503,131.0,31.2,3.2 -2019,6,18,12,45,926.0,1041.835028027384,131.0,31.2,3.2 -2019,6,18,13,0,991.0,1069.5762435822417,98.0,32.2,4.2 -2019,6,18,13,15,991.0,1063.153764984844,98.0,32.2,4.2 -2019,6,18,13,30,991.0,1053.5305984017336,98.0,32.2,4.2 -2019,6,18,13,45,991.0,1040.7479517095953,98.0,32.2,4.2 -2019,6,18,14,0,981.0,1008.5077815165248,91.0,32.0,5.0 -2019,6,18,14,15,981.0,989.7746409968919,91.0,32.0,5.0 -2019,6,18,14,30,981.0,968.1156509407268,91.0,32.0,5.0 -2019,6,18,14,45,981.0,943.6235584685988,91.0,32.0,5.0 -2019,6,18,15,0,866.0,835.6434332193393,107.0,30.8,4.1 -2019,6,18,15,15,866.0,809.308578082688,107.0,30.8,4.1 -2019,6,18,15,30,866.0,780.7809890228096,107.0,30.8,4.1 -2019,6,18,15,45,866.0,750.182825555694,107.0,30.8,4.1 -2019,6,18,16,0,645.0,576.8107371201622,122.0,29.3,3.8 -2019,6,18,16,15,645.0,551.2357209128611,122.0,29.3,3.8 -2019,6,18,16,30,645.0,524.4294126548176,122.0,29.3,3.8 -2019,6,18,16,45,645.0,496.506601073372,122.0,29.3,3.8 -2019,6,18,17,0,424.0,320.1764758391155,93.0,28.2,3.7 -2019,6,18,17,15,424.0,300.5917252640879,93.0,28.2,3.7 -2019,6,18,17,30,424.0,280.51689823026675,93.0,28.2,3.7 -2019,6,18,17,45,424.0,260.03795822895415,93.0,28.2,3.7 -2019,6,18,18,0,259.0,122.33215377200936,33.0,26.9,4.0 -2019,6,18,18,15,259.0,109.4904395423817,33.0,26.9,4.0 -2019,6,18,18,30,259.0,96.5648267041214,33.0,26.9,4.0 -2019,6,18,18,45,259.0,83.61066471577796,33.0,26.9,4.0 -2019,6,18,19,0,0.0,0.0,0.0,24.1,3.4 -2019,6,18,19,15,0.0,0.0,0.0,24.1,3.4 -2019,6,18,19,30,0.0,0.0,0.0,24.1,3.4 -2019,6,18,19,45,0.0,0.0,0.0,24.1,3.4 -2019,6,18,20,0,0.0,0.0,0.0,21.5,2.1 -2019,6,18,20,15,0.0,0.0,0.0,21.5,2.1 -2019,6,18,20,30,0.0,0.0,0.0,21.5,2.1 -2019,6,18,20,45,0.0,0.0,0.0,21.5,2.1 -2019,6,18,21,0,0.0,0.0,0.0,19.9,2.2 -2019,6,18,21,15,0.0,0.0,0.0,19.9,2.2 -2019,6,18,21,30,0.0,0.0,0.0,19.9,2.2 -2019,6,18,21,45,0.0,0.0,0.0,19.9,2.2 -2019,6,18,22,0,0.0,0.0,0.0,18.7,2.5 -2019,6,18,22,15,0.0,0.0,0.0,18.7,2.5 -2019,6,18,22,30,0.0,0.0,0.0,18.7,2.5 -2019,6,18,22,45,0.0,0.0,0.0,18.7,2.5 -2019,6,18,23,0,0.0,0.0,0.0,17.1,2.2 -2019,6,18,23,15,0.0,0.0,0.0,17.1,2.2 -2019,6,18,23,30,0.0,0.0,0.0,17.1,2.2 -2019,6,18,23,45,0.0,0.0,0.0,17.1,2.2 -2019,6,19,0,0,0.0,0.0,0.0,15.9,2.6 -2019,6,19,0,15,0.0,0.0,0.0,15.9,2.6 -2019,6,19,0,30,0.0,0.0,0.0,15.9,2.6 -2019,6,19,0,45,0.0,0.0,0.0,15.9,2.6 -2019,6,19,1,0,0.0,0.0,0.0,15.1,1.3 -2019,6,19,1,15,0.0,0.0,0.0,15.1,1.3 -2019,6,19,1,30,0.0,0.0,0.0,15.1,1.3 -2019,6,19,1,45,0.0,0.0,0.0,15.1,1.3 -2019,6,19,2,0,0.0,0.0,0.0,15.6,0.0 -2019,6,19,2,15,0.0,0.0,0.0,15.6,0.0 -2019,6,19,2,30,0.0,0.0,0.0,15.6,0.0 -2019,6,19,2,45,0.0,0.0,0.0,15.6,0.0 -2019,6,19,3,0,0.0,0.0,0.0,15.6,0.0 -2019,6,19,3,15,0.0,0.0,0.0,15.6,0.0 -2019,6,19,3,30,0.0,0.0,0.0,15.6,0.0 -2019,6,19,3,45,0.0,0.0,0.0,15.6,0.0 -2019,6,19,4,0,1.0,2.7345804749213594,3.0,16.1,0.0 -2019,6,19,4,15,1.0,2.7742233563911616,3.0,16.1,0.0 -2019,6,19,4,30,1.0,2.8157748178761888,3.0,16.1,0.0 -2019,6,19,4,45,1.0,2.8590569296392645,3.0,16.1,0.0 -2019,6,19,5,0,3.0,19.71165305309909,20.0,16.2,0.0 -2019,6,19,5,15,3.0,19.850195372471134,20.0,16.2,0.0 -2019,6,19,5,30,3.0,19.992204487552975,20.0,16.2,0.0 -2019,6,19,5,45,3.0,20.137072293512194,20.0,16.2,0.0 -2019,6,19,6,0,1.0,48.09472614805439,48.0,16.8,0.0 -2019,6,19,6,15,1.0,48.14429766946155,48.0,16.8,0.0 -2019,6,19,6,30,1.0,48.19419305586053,48.0,16.8,0.0 -2019,6,19,6,45,1.0,48.24419864754668,48.0,16.8,0.0 -2019,6,19,7,0,1.0,88.2941003128994,88.0,17.3,0.3 -2019,6,19,7,15,1.0,88.34368436532664,88.0,17.3,0.3 -2019,6,19,7,30,1.0,88.39273847830357,88.0,17.3,0.3 -2019,6,19,7,45,1.0,88.44105259458755,88.0,17.3,0.3 -2019,6,19,8,0,271.0,433.3617727688437,301.0,19.2,0.2 -2019,6,19,8,15,271.0,445.88671857935,301.0,19.2,0.2 -2019,6,19,8,30,271.0,458.0464568239174,301.0,19.2,0.2 -2019,6,19,8,45,271.0,469.7889176365858,301.0,19.2,0.2 -2019,6,19,9,0,488.0,614.2477608219224,290.0,21.5,1.6 -2019,6,19,9,15,488.0,633.6220073853685,290.0,21.5,1.6 -2019,6,19,9,30,488.0,651.9843954049104,290.0,21.5,1.6 -2019,6,19,9,45,488.0,669.256294316003,290.0,21.5,1.6 -2019,6,19,10,0,775.0,819.8829938049308,192.0,24.6,2.5 -2019,6,19,10,15,775.0,843.5046512163321,192.0,24.6,2.5 -2019,6,19,10,30,775.0,865.06633725862,192.0,24.6,2.5 -2019,6,19,10,45,775.0,884.4757214819513,192.0,24.6,2.5 -2019,6,19,11,0,819.0,929.9394787705567,180.0,26.3,2.2 -2019,6,19,11,15,819.0,945.6484388771755,180.0,26.3,2.2 -2019,6,19,11,30,819.0,958.8500842619233,180.0,26.3,2.2 -2019,6,19,11,45,819.0,969.4878834525086,180.0,26.3,2.2 -2019,6,19,12,0,881.0,1008.8899218464644,151.0,27.9,3.3 -2019,6,19,12,15,881.0,1014.6821715337677,151.0,27.9,3.3 -2019,6,19,12,30,881.0,1017.6057007310085,151.0,27.9,3.3 -2019,6,19,12,45,881.0,1017.6479904373357,151.0,27.9,3.3 -2019,6,19,13,0,884.0,1007.7503199234657,141.0,28.8,5.0 -2019,6,19,13,15,884.0,1002.0224877156201,141.0,28.8,5.0 -2019,6,19,13,30,884.0,993.4401495014394,141.0,28.8,5.0 -2019,6,19,13,45,884.0,982.0400561707415,141.0,28.8,5.0 -2019,6,19,14,0,913.0,968.9968840800474,115.0,28.5,4.1 -2019,6,19,14,15,913.0,951.5659214438367,115.0,28.5,4.1 -2019,6,19,14,30,913.0,931.4124908959047,115.0,28.5,4.1 -2019,6,19,14,45,913.0,908.6228925198689,115.0,28.5,4.1 -2019,6,19,15,0,845.0,824.0723264722011,113.0,28.2,4.1 -2019,6,19,15,15,845.0,798.3814594240582,113.0,28.2,4.1 -2019,6,19,15,30,845.0,770.5514791967743,113.0,28.2,4.1 -2019,6,19,15,45,845.0,740.701558038219,113.0,28.2,4.1 -2019,6,19,16,0,685.0,596.1151121384662,113.0,27.2,4.1 -2019,6,19,16,15,685.0,568.9597383316514,113.0,27.2,4.1 -2019,6,19,16,30,685.0,540.4969872144079,113.0,27.2,4.1 -2019,6,19,16,45,685.0,510.84874065670067,113.0,27.2,4.1 -2019,6,19,17,0,485.0,345.947225030593,86.0,26.4,4.1 -2019,6,19,17,15,485.0,323.5495500654456,86.0,26.4,4.1 -2019,6,19,17,30,485.0,300.59140979388144,86.0,26.4,4.1 -2019,6,19,17,45,485.0,277.1711144971411,86.0,26.4,4.1 -2019,6,19,18,0,179.0,95.7786034475607,34.0,23.6,4.0 -2019,6,19,18,15,179.0,86.9053011156787,34.0,23.6,4.0 -2019,6,19,18,30,179.0,77.97402695026179,34.0,23.6,4.0 -2019,6,19,18,45,179.0,69.02302603844056,34.0,23.6,4.0 -2019,6,19,19,0,0.0,0.0,0.0,21.0,3.5 -2019,6,19,19,15,0.0,0.0,0.0,21.0,3.5 -2019,6,19,19,30,0.0,0.0,0.0,21.0,3.5 -2019,6,19,19,45,0.0,0.0,0.0,21.0,3.5 -2019,6,19,20,0,0.0,0.0,0.0,19.8,3.1 -2019,6,19,20,15,0.0,0.0,0.0,19.8,3.1 -2019,6,19,20,30,0.0,0.0,0.0,19.8,3.1 -2019,6,19,20,45,0.0,0.0,0.0,19.8,3.1 -2019,6,19,21,0,0.0,0.0,0.0,18.2,2.9 -2019,6,19,21,15,0.0,0.0,0.0,18.2,2.9 -2019,6,19,21,30,0.0,0.0,0.0,18.2,2.9 -2019,6,19,21,45,0.0,0.0,0.0,18.2,2.9 -2019,6,19,22,0,0.0,0.0,0.0,17.7,1.3 -2019,6,19,22,15,0.0,0.0,0.0,17.7,1.3 -2019,6,19,22,30,0.0,0.0,0.0,17.7,1.3 -2019,6,19,22,45,0.0,0.0,0.0,17.7,1.3 -2019,6,19,23,0,0.0,0.0,0.0,17.1,0.0 -2019,6,19,23,15,0.0,0.0,0.0,17.1,0.0 -2019,6,19,23,30,0.0,0.0,0.0,17.1,0.0 -2019,6,19,23,45,0.0,0.0,0.0,17.1,0.0 -2019,6,20,0,0,0.0,0.0,0.0,16.0,0.0 -2019,6,20,0,15,0.0,0.0,0.0,16.0,0.0 -2019,6,20,0,30,0.0,0.0,0.0,16.0,0.0 -2019,6,20,0,45,0.0,0.0,0.0,16.0,0.0 -2019,6,20,1,0,0.0,0.0,0.0,15.5,0.2 -2019,6,20,1,15,0.0,0.0,0.0,15.5,0.2 -2019,6,20,1,30,0.0,0.0,0.0,15.5,0.2 -2019,6,20,1,45,0.0,0.0,0.0,15.5,0.2 -2019,6,20,2,0,0.0,0.0,0.0,14.3,1.5 -2019,6,20,2,15,0.0,0.0,0.0,14.3,1.5 -2019,6,20,2,30,0.0,0.0,0.0,14.3,1.5 -2019,6,20,2,45,0.0,0.0,0.0,14.3,1.5 -2019,6,20,3,0,0.0,0.0,0.0,14.5,1.9 -2019,6,20,3,15,0.0,0.0,0.0,14.5,1.9 -2019,6,20,3,30,0.0,0.0,0.0,14.5,1.9 -2019,6,20,3,45,0.0,0.0,0.0,14.5,1.9 -2019,6,20,4,0,1.0,2.7348416077633746,3.0,15.0,0.0 -2019,6,20,4,15,1.0,2.774478251131351,3.0,15.0,0.0 -2019,6,20,4,30,1.0,2.8160231741853123,3.0,15.0,0.0 -2019,6,20,4,45,1.0,2.859298475186647,3.0,15.0,0.0 -2019,6,20,5,0,3.0,19.71235652795817,20.0,15.1,0.0 -2019,6,20,5,15,3.0,19.850877046667314,20.0,15.1,0.0 -2019,6,20,5,30,3.0,19.9928638155602,20.0,15.1,0.0 -2019,6,20,5,45,3.0,20.13770882549422,20.0,15.1,0.0 -2019,6,20,6,0,1.0,48.094930609299944,48.0,15.8,0.3 -2019,6,20,6,15,1.0,48.144494330260045,48.0,15.8,0.3 -2019,6,20,6,30,1.0,48.194381865249404,48.0,15.8,0.3 -2019,6,20,6,45,1.0,48.24437958818431,48.0,15.8,0.3 -2019,6,20,7,0,1.0,105.29427340113938,105.0,17.3,0.3 -2019,6,20,7,15,1.0,105.34384965114769,105.0,17.3,0.3 -2019,6,20,7,30,1.0,105.39289604509564,105.0,17.3,0.3 -2019,6,20,7,45,1.0,105.44120255879457,105.0,17.3,0.3 -2019,6,20,8,0,393.0,460.0049981803287,268.0,19.2,0.2 -2019,6,20,8,15,393.0,478.16562232233383,268.0,19.2,0.2 -2019,6,20,8,30,393.0,495.7967114516392,268.0,19.2,0.2 -2019,6,20,8,45,393.0,512.8227665378189,268.0,19.2,0.2 -2019,6,20,9,0,602.0,644.0632809116086,244.0,22.0,1.5 -2019,6,20,9,15,602.0,667.9597176429162,244.0,22.0,1.5 -2019,6,20,9,30,602.0,690.608115458426,244.0,22.0,1.5 -2019,6,20,9,45,602.0,711.9114904416467,244.0,22.0,1.5 -2019,6,20,10,0,769.0,818.0926203486652,195.0,24.7,1.6 -2019,6,20,10,15,769.0,841.5277121462431,195.0,24.7,1.6 -2019,6,20,10,30,769.0,862.9191023823779,195.0,24.7,1.6 -2019,6,20,10,45,769.0,882.1751898400125,195.0,24.7,1.6 -2019,6,20,11,0,923.0,977.239370855243,132.0,27.5,2.5 -2019,6,20,11,15,923.0,994.9403337304875,132.0,27.5,2.5 -2019,6,20,11,30,923.0,1009.8160373583233,132.0,27.5,2.5 -2019,6,20,11,45,923.0,1021.8027816920568,132.0,27.5,2.5 -2019,6,20,12,0,1075.0,1116.8720806891963,70.0,30.0,2.6 -2019,6,20,12,15,1075.0,1123.9386965817398,70.0,30.0,2.6 -2019,6,20,12,30,1075.0,1127.5054381766026,70.0,30.0,2.6 -2019,6,20,12,45,1075.0,1127.5570321386997,70.0,30.0,2.6 -2019,6,20,13,0,963.0,1053.271448377654,109.0,29.9,6.6 -2019,6,20,13,15,963.0,1047.0327216265864,109.0,29.9,6.6 -2019,6,20,13,30,963.0,1037.6848809321298,109.0,29.9,6.6 -2019,6,20,13,45,963.0,1025.2679551832448,109.0,29.9,6.6 -2019,6,20,14,0,838.0,925.9042854010191,142.0,28.8,6.1 -2019,6,20,14,15,838.0,909.9077375958427,142.0,28.8,6.1 -2019,6,20,14,30,838.0,891.4127570301347,142.0,28.8,6.1 -2019,6,20,14,45,838.0,870.4985420500789,142.0,28.8,6.1 -2019,6,20,15,0,691.0,741.5405292597906,160.0,28.3,5.6 -2019,6,20,15,15,691.0,720.5350906089142,160.0,28.3,5.6 -2019,6,20,15,30,691.0,697.7806642509461,160.0,28.3,5.6 -2019,6,20,15,45,691.0,673.3746881328743,160.0,28.3,5.6 -2019,6,20,16,0,616.0,562.5177282099088,128.0,27.5,5.1 -2019,6,20,16,15,616.0,538.1015558952352,128.0,27.5,5.1 -2019,6,20,16,30,616.0,512.5098832939952,128.0,27.5,5.1 -2019,6,20,16,45,616.0,485.85229787717276,128.0,27.5,5.1 -2019,6,20,17,0,481.0,344.8682787016094,87.0,27.1,4.6 -2019,6,20,17,15,481.0,322.6588222019103,87.0,27.1,4.6 -2019,6,20,17,30,481.0,299.89361025608446,87.0,27.1,4.6 -2019,6,20,17,45,481.0,276.670126996663,87.0,27.1,4.6 -2019,6,20,18,0,285.0,131.40962245140236,33.0,25.8,5.5 -2019,6,20,18,15,285.0,117.28396197777317,33.0,25.8,5.5 -2019,6,20,18,30,285.0,103.06601450580689,33.0,25.8,5.5 -2019,6,20,18,45,285.0,88.81666346935741,33.0,25.8,5.5 -2019,6,20,19,0,0.0,0.0,0.0,23.6,3.5 -2019,6,20,19,15,0.0,0.0,0.0,23.6,3.5 -2019,6,20,19,30,0.0,0.0,0.0,23.6,3.5 -2019,6,20,19,45,0.0,0.0,0.0,23.6,3.5 -2019,6,20,20,0,0.0,0.0,0.0,20.9,3.0 -2019,6,20,20,15,0.0,0.0,0.0,20.9,3.0 -2019,6,20,20,30,0.0,0.0,0.0,20.9,3.0 -2019,6,20,20,45,0.0,0.0,0.0,20.9,3.0 -2019,6,20,21,0,0.0,0.0,0.0,19.3,2.5 -2019,6,20,21,15,0.0,0.0,0.0,19.3,2.5 -2019,6,20,21,30,0.0,0.0,0.0,19.3,2.5 -2019,6,20,21,45,0.0,0.0,0.0,19.3,2.5 -2019,6,20,22,0,0.0,0.0,0.0,18.2,2.1 -2019,6,20,22,15,0.0,0.0,0.0,18.2,2.1 -2019,6,20,22,30,0.0,0.0,0.0,18.2,2.1 -2019,6,20,22,45,0.0,0.0,0.0,18.2,2.1 -2019,6,20,23,0,0.0,0.0,0.0,17.1,2.1 -2019,6,20,23,15,0.0,0.0,0.0,17.1,2.1 -2019,6,20,23,30,0.0,0.0,0.0,17.1,2.1 -2019,6,20,23,45,0.0,0.0,0.0,17.1,2.1 -2019,6,21,0,0,0.0,0.0,0.0,16.6,1.9 -2019,6,21,0,15,0.0,0.0,0.0,16.6,1.9 -2019,6,21,0,30,0.0,0.0,0.0,16.6,1.9 -2019,6,21,0,45,0.0,0.0,0.0,16.6,1.9 -2019,6,21,1,0,0.0,0.0,0.0,16.0,0.0 -2019,6,21,1,15,0.0,0.0,0.0,16.0,0.0 -2019,6,21,1,30,0.0,0.0,0.0,16.0,0.0 -2019,6,21,1,45,0.0,0.0,0.0,16.0,0.0 -2019,6,21,2,0,0.0,0.0,0.0,15.5,0.0 -2019,6,21,2,15,0.0,0.0,0.0,15.5,0.0 -2019,6,21,2,30,0.0,0.0,0.0,15.5,0.0 -2019,6,21,2,45,0.0,0.0,0.0,15.5,0.0 -2019,6,21,3,0,0.0,0.0,0.0,14.9,0.0 -2019,6,21,3,15,0.0,0.0,0.0,14.9,0.0 -2019,6,21,3,30,0.0,0.0,0.0,14.9,0.0 -2019,6,21,3,45,0.0,0.0,0.0,14.9,0.0 -2019,6,21,4,0,1.0,1.7350157588008581,2.0,14.5,0.0 -2019,6,21,4,15,1.0,1.7746482394960403,2.0,14.5,0.0 -2019,6,21,4,30,1.0,1.8161887994681096,2.0,14.5,0.0 -2019,6,21,4,45,1.0,1.8594595556618416,2.0,14.5,0.0 -2019,6,21,5,0,3.0,19.712825648168504,20.0,15.2,0.2 -2019,6,21,5,15,3.0,19.851331619339167,20.0,15.2,0.2 -2019,6,21,5,30,3.0,19.993303476665133,20.0,15.2,0.2 -2019,6,21,5,45,3.0,20.138133274857417,20.0,15.2,0.2 -2019,6,21,6,0,1.0,48.09506694349516,48.0,16.7,0.2 -2019,6,21,6,15,1.0,48.14462545923264,48.0,16.7,0.2 -2019,6,21,6,30,1.0,48.19450775499216,48.0,16.7,0.2 -2019,6,21,6,45,1.0,48.2445002271252,48.0,16.7,0.2 -2019,6,21,7,0,1.0,98.29438880019111,98.0,17.0,2.2 -2019,6,21,7,15,1.0,98.34395984366098,98.0,17.0,2.2 -2019,6,21,7,30,1.0,98.39300108671641,98.0,17.0,2.2 -2019,6,21,7,45,1.0,98.44130252722567,98.0,17.0,2.2 -2019,6,21,8,0,68.0,342.22869850834854,309.0,19.8,1.1 -2019,6,21,8,15,68.0,345.370664791017,309.0,19.8,1.1 -2019,6,21,8,30,68.0,348.42101631736523,309.0,19.8,1.1 -2019,6,21,8,45,68.0,351.36669101385866,309.0,19.8,1.1 -2019,6,21,9,0,505.0,618.6398955861109,283.0,22.0,2.1 -2019,6,21,9,15,505.0,638.6838045387713,283.0,22.0,2.1 -2019,6,21,9,30,505.0,657.6808804979228,283.0,22.0,2.1 -2019,6,21,9,45,505.0,675.5497750678242,283.0,22.0,2.1 -2019,6,21,10,0,714.0,798.5718321220438,220.0,24.2,2.0 -2019,6,21,10,15,714.0,820.3285268766111,220.0,24.2,2.0 -2019,6,21,10,30,714.0,840.1878878624094,220.0,24.2,2.0 -2019,6,21,10,45,714.0,858.0648742468327,220.0,24.2,2.0 -2019,6,21,11,0,827.0,934.3686084629234,177.0,27.0,1.7 -2019,6,21,11,15,827.0,950.2268521573287,177.0,27.0,1.7 -2019,6,21,11,30,827.0,963.5539539042,177.0,27.0,1.7 -2019,6,21,11,45,827.0,974.292845007843,177.0,27.0,1.7 -2019,6,21,12,0,911.0,1024.203335958725,137.0,28.8,3.9 -2019,6,21,12,15,911.0,1030.1912531558692,137.0,28.8,3.9 -2019,6,21,12,30,911.0,1033.2135418522432,137.0,28.8,3.9 -2019,6,21,12,45,911.0,1033.2572601436582,137.0,28.8,3.9 -2019,6,21,13,0,862.0,995.2730563647503,150.0,28.4,6.0 -2019,6,21,13,15,862.0,989.6892373820963,150.0,28.4,6.0 -2019,6,21,13,30,862.0,981.3226824103466,150.0,28.4,6.0 -2019,6,21,13,45,862.0,970.2092183223474,150.0,28.4,6.0 -2019,6,21,14,0,907.0,965.4936963485923,117.0,29.2,4.2 -2019,6,21,14,15,907.0,948.1818286564824,117.0,29.2,4.2 -2019,6,21,14,30,907.0,928.1660939854008,117.0,29.2,4.2 -2019,6,21,14,45,907.0,905.5322027840814,117.0,29.2,4.2 -2019,6,21,15,0,842.0,822.6697890928888,114.0,29.0,5.1 -2019,6,21,15,15,842.0,797.0768485936561,114.0,29.0,5.1 -2019,6,21,15,30,842.0,769.3529486288559,114.0,29.0,5.1 -2019,6,21,15,45,842.0,739.6168071943878,114.0,29.0,5.1 -2019,6,21,16,0,689.0,599.0606626603224,113.0,28.0,5.1 -2019,6,21,16,15,689.0,571.7538834613414,113.0,28.0,5.1 -2019,6,21,16,30,689.0,543.1324376405859,113.0,28.0,5.1 -2019,6,21,16,45,689.0,513.3188866231044,113.0,28.0,5.1 -2019,6,21,17,0,449.0,331.75321128958575,91.0,26.5,6.1 -2019,6,21,17,15,449.0,311.02348427104346,91.0,26.5,6.1 -2019,6,21,17,30,449.0,289.7750296245906,91.0,26.5,6.1 -2019,6,21,17,45,449.0,268.09883649514524,91.0,26.5,6.1 -2019,6,21,18,0,197.0,103.04517139618494,35.0,24.7,5.0 -2019,6,21,18,15,197.0,93.2821437959018,35.0,24.7,5.0 -2019,6,21,18,30,197.0,83.45533153127714,35.0,24.7,5.0 -2019,6,21,18,45,197.0,73.60681452106775,35.0,24.7,5.0 -2019,6,21,19,0,0.0,0.0,0.0,21.9,4.0 -2019,6,21,19,15,0.0,0.0,0.0,21.9,4.0 -2019,6,21,19,30,0.0,0.0,0.0,21.9,4.0 -2019,6,21,19,45,0.0,0.0,0.0,21.9,4.0 -2019,6,21,20,0,0.0,0.0,0.0,19.9,2.6 -2019,6,21,20,15,0.0,0.0,0.0,19.9,2.6 -2019,6,21,20,30,0.0,0.0,0.0,19.9,2.6 -2019,6,21,20,45,0.0,0.0,0.0,19.9,2.6 -2019,6,21,21,0,0.0,0.0,0.0,18.8,2.3 -2019,6,21,21,15,0.0,0.0,0.0,18.8,2.3 -2019,6,21,21,30,0.0,0.0,0.0,18.8,2.3 -2019,6,21,21,45,0.0,0.0,0.0,18.8,2.3 -2019,6,21,22,0,0.0,0.0,0.0,17.8,0.0 -2019,6,21,22,15,0.0,0.0,0.0,17.8,0.0 -2019,6,21,22,30,0.0,0.0,0.0,17.8,0.0 -2019,6,21,22,45,0.0,0.0,0.0,17.8,0.0 -2019,6,21,23,0,0.0,0.0,0.0,17.7,0.0 -2019,6,21,23,15,0.0,0.0,0.0,17.7,0.0 -2019,6,21,23,30,0.0,0.0,0.0,17.7,0.0 -2019,6,21,23,45,0.0,0.0,0.0,17.7,0.0 -2019,6,22,0,0,0.0,0.0,0.0,17.1,0.0 -2019,6,22,0,15,0.0,0.0,0.0,17.1,0.0 -2019,6,22,0,30,0.0,0.0,0.0,17.1,0.0 -2019,6,22,0,45,0.0,0.0,0.0,17.1,0.0 -2019,6,22,1,0,0.0,0.0,0.0,16.0,0.0 -2019,6,22,1,15,0.0,0.0,0.0,16.0,0.0 -2019,6,22,1,30,0.0,0.0,0.0,16.0,0.0 -2019,6,22,1,45,0.0,0.0,0.0,16.0,0.0 -2019,6,22,2,0,0.0,0.0,0.0,15.5,0.0 -2019,6,22,2,15,0.0,0.0,0.0,15.5,0.0 -2019,6,22,2,30,0.0,0.0,0.0,15.5,0.0 -2019,6,22,2,45,0.0,0.0,0.0,15.5,0.0 -2019,6,22,3,0,0.0,0.0,0.0,14.2,0.9 -2019,6,22,3,15,0.0,0.0,0.0,14.2,0.9 -2019,6,22,3,30,0.0,0.0,0.0,14.2,0.9 -2019,6,22,3,45,0.0,0.0,0.0,14.2,0.9 -2019,6,22,4,0,1.0,1.7351028530635966,2.0,15.0,1.9 -2019,6,22,4,15,1.0,1.7747332512404461,2.0,15.0,1.9 -2019,6,22,4,30,1.0,1.8162716284327305,2.0,15.0,1.9 -2019,6,22,4,45,1.0,1.8595401109322234,2.0,15.0,1.9 -2019,6,22,5,0,3.0,19.713060249362496,20.0,15.1,0.2 -2019,6,22,5,15,3.0,19.851558942633336,20.0,15.1,0.2 -2019,6,22,5,30,3.0,19.993523339941902,20.0,15.1,0.2 -2019,6,22,5,45,3.0,20.138345527944146,20.0,15.1,0.2 -2019,6,22,6,0,1.0,48.09513511859918,48.0,15.7,1.3 -2019,6,22,6,15,1.0,48.144691030247394,48.0,15.7,1.3 -2019,6,22,6,30,1.0,48.19457070490438,48.0,15.7,1.3 -2019,6,22,6,45,1.0,48.24456055014559,48.0,15.7,1.3 -2019,6,22,7,0,0.0,70.0,70.0,17.2,0.8 -2019,6,22,7,15,0.0,70.0,70.0,17.2,0.8 -2019,6,22,7,30,0.0,70.0,70.0,17.2,0.8 -2019,6,22,7,45,0.0,70.0,70.0,17.2,0.8 -2019,6,22,8,0,402.0,461.4593394923882,265.0,19.3,2.2 -2019,6,22,8,15,402.0,480.03292885491373,265.0,19.3,2.2 -2019,6,22,8,30,402.0,498.06494179351995,265.0,19.3,2.2 -2019,6,22,8,45,402.0,515.4781624604791,265.0,19.3,2.2 -2019,6,22,9,0,648.0,655.707263810887,225.0,22.4,2.5 -2019,6,22,9,15,648.0,681.4256212630632,225.0,22.4,2.5 -2019,6,22,9,30,648.0,705.8007863677099,225.0,22.4,2.5 -2019,6,22,9,45,648.0,728.7283809257057,225.0,22.4,2.5 -2019,6,22,10,0,738.0,807.0422012151952,209.0,24.3,2.2 -2019,6,22,10,15,738.0,829.529031791087,209.0,24.3,2.2 -2019,6,22,10,30,738.0,850.0548557211843,209.0,24.3,2.2 -2019,6,22,10,45,738.0,868.5317782762363,209.0,24.3,2.2 -2019,6,22,11,0,889.0,962.1706275483754,148.0,27.3,3.2 -2019,6,22,11,15,889.0,979.2168643748529,148.0,27.3,3.2 -2019,6,22,11,30,889.0,993.5423430952914,148.0,27.3,3.2 -2019,6,22,11,45,889.0,1005.0857198105219,148.0,27.3,3.2 -2019,6,22,12,0,877.0,1007.1107577459364,153.0,28.4,3.5 -2019,6,22,12,15,877.0,1012.874893248657,153.0,28.4,3.5 -2019,6,22,12,30,877.0,1015.784232339476,153.0,28.4,3.5 -2019,6,22,12,45,877.0,1015.8263167817566,153.0,28.4,3.5 -2019,6,22,13,0,981.0,1062.9851174487462,101.0,29.3,3.2 -2019,6,22,13,15,981.0,1056.630780336504,101.0,29.3,3.2 -2019,6,22,13,30,981.0,1047.1097140333598,101.0,29.3,3.2 -2019,6,22,13,45,981.0,1034.4626892069246,101.0,29.3,3.2 -2019,6,22,14,0,914.0,969.0641082530357,114.0,28.8,4.2 -2019,6,22,14,15,914.0,951.6195485653303,114.0,28.8,4.2 -2019,6,22,14,30,914.0,931.4503973002655,114.0,28.8,4.2 -2019,6,22,14,45,914.0,908.6430218599832,114.0,28.8,4.2 -2019,6,22,15,0,870.0,838.2611877756957,106.0,28.4,5.1 -2019,6,22,15,15,870.0,811.8185651412983,106.0,28.4,5.1 -2019,6,22,15,30,870.0,783.1742354776171,106.0,28.4,5.1 -2019,6,22,15,45,870.0,752.4508582018298,106.0,28.4,5.1 -2019,6,22,16,0,625.0,567.9339048363286,127.0,27.4,5.5 -2019,6,22,16,15,625.0,543.1649059757973,127.0,27.4,5.5 -2019,6,22,16,30,625.0,517.2034202306197,127.0,27.4,5.5 -2019,6,22,16,45,625.0,490.16061866843665,127.0,27.4,5.5 -2019,6,22,17,0,455.0,334.99087637813864,91.0,26.0,4.1 -2019,6,22,17,15,455.0,313.9852412320612,91.0,26.0,4.1 -2019,6,22,17,30,455.0,292.45397430692867,91.0,26.0,4.1 -2019,6,22,17,45,455.0,270.4892757932548,91.0,26.0,4.1 -2019,6,22,18,0,242.0,117.60179969301534,34.0,24.7,4.0 -2019,6,22,18,15,242.0,105.60926907414799,34.0,24.7,4.0 -2019,6,22,18,30,242.0,93.53838780715725,34.0,24.7,4.0 -2019,6,22,18,45,242.0,81.44084525878358,34.0,24.7,4.0 -2019,6,22,19,0,0.0,0.0,0.0,22.6,3.4 -2019,6,22,19,15,0.0,0.0,0.0,22.6,3.4 -2019,6,22,19,30,0.0,0.0,0.0,22.6,3.4 -2019,6,22,19,45,0.0,0.0,0.0,22.6,3.4 -2019,6,22,20,0,0.0,0.0,0.0,20.5,0.2 -2019,6,22,20,15,0.0,0.0,0.0,20.5,0.2 -2019,6,22,20,30,0.0,0.0,0.0,20.5,0.2 -2019,6,22,20,45,0.0,0.0,0.0,20.5,0.2 -2019,6,22,21,0,0.0,0.0,0.0,19.3,2.1 -2019,6,22,21,15,0.0,0.0,0.0,19.3,2.1 -2019,6,22,21,30,0.0,0.0,0.0,19.3,2.1 -2019,6,22,21,45,0.0,0.0,0.0,19.3,2.1 -2019,6,22,22,0,0.0,0.0,0.0,18.2,1.9 -2019,6,22,22,15,0.0,0.0,0.0,18.2,1.9 -2019,6,22,22,30,0.0,0.0,0.0,18.2,1.9 -2019,6,22,22,45,0.0,0.0,0.0,18.2,1.9 -2019,6,22,23,0,0.0,0.0,0.0,17.7,0.0 -2019,6,22,23,15,0.0,0.0,0.0,17.7,0.0 -2019,6,22,23,30,0.0,0.0,0.0,17.7,0.0 -2019,6,22,23,45,0.0,0.0,0.0,17.7,0.0 -2019,6,23,0,0,0.0,0.0,0.0,16.6,0.2 -2019,6,23,0,15,0.0,0.0,0.0,16.6,0.2 -2019,6,23,0,30,0.0,0.0,0.0,16.6,0.2 -2019,6,23,0,45,0.0,0.0,0.0,16.6,0.2 -2019,6,23,1,0,0.0,0.0,0.0,15.6,1.3 -2019,6,23,1,15,0.0,0.0,0.0,15.6,1.3 -2019,6,23,1,30,0.0,0.0,0.0,15.6,1.3 -2019,6,23,1,45,0.0,0.0,0.0,15.6,1.3 -2019,6,23,2,0,0.0,0.0,0.0,15.5,0.0 -2019,6,23,2,15,0.0,0.0,0.0,15.5,0.0 -2019,6,23,2,30,0.0,0.0,0.0,15.5,0.0 -2019,6,23,2,45,0.0,0.0,0.0,15.5,0.0 -2019,6,23,3,0,0.0,0.0,0.0,14.9,0.0 -2019,6,23,3,15,0.0,0.0,0.0,14.9,0.0 -2019,6,23,3,30,0.0,0.0,0.0,14.9,0.0 -2019,6,23,3,45,0.0,0.0,0.0,14.9,0.0 -2019,6,23,4,0,215.0,-56.95288659132674,0.0,14.5,0.2 -2019,6,23,4,15,215.0,-48.43235098330407,0.0,14.5,0.2 -2019,6,23,4,30,215.0,-39.50159988696293,0.0,14.5,0.2 -2019,6,23,4,45,215.0,-30.198876149571962,0.0,14.5,0.2 -2019,6,23,5,0,319.0,19.48873984887853,50.0,15.1,1.3 -2019,6,23,5,15,319.0,34.21576756667784,50.0,15.1,1.3 -2019,6,23,5,30,319.0,49.311315147155405,50.0,15.1,1.3 -2019,6,23,5,45,319.0,64.71074113806078,50.0,15.1,1.3 -2019,6,23,6,0,527.0,150.13620750176756,100.0,16.4,0.0 -2019,6,23,6,15,527.0,176.25217294037526,100.0,16.4,0.0 -2019,6,23,6,30,527.0,202.53876148460728,100.0,16.4,0.0 -2019,6,23,6,45,527.0,228.88340992672676,100.0,16.4,0.0 -2019,6,23,7,0,656.0,328.1569051671079,135.0,19.2,0.0 -2019,6,23,7,15,656.0,360.6738009689592,135.0,19.2,0.0 -2019,6,23,7,30,656.0,392.8431659611535,135.0,19.2,0.0 -2019,6,23,7,45,656.0,424.5272459840634,135.0,19.2,0.0 -2019,6,23,8,0,739.0,517.1528653852608,156.0,22.0,0.3 -2019,6,23,8,15,739.0,551.2968518004509,156.0,22.0,0.3 -2019,6,23,8,30,739.0,584.4452536950528,156.0,22.0,0.3 -2019,6,23,8,45,739.0,616.4561245231195,156.0,22.0,0.3 -2019,6,23,9,0,795.0,693.4140042124308,165.0,24.2,2.5 -2019,6,23,9,15,795.0,724.966618679221,165.0,24.2,2.5 -2019,6,23,9,30,795.0,754.8713351270516,165.0,24.2,2.5 -2019,6,23,9,45,795.0,783.000096969037,165.0,24.2,2.5 -2019,6,23,10,0,830.0,840.5948875455448,168.0,26.3,2.2 -2019,6,23,10,15,830.0,865.8849544533906,168.0,26.3,2.2 -2019,6,23,10,30,830.0,888.9695531823617,168.0,26.3,2.2 -2019,6,23,10,45,830.0,909.7498319366886,168.0,26.3,2.2 -2019,6,23,11,0,846.0,942.7900460134146,168.0,28.0,2.6 -2019,6,23,11,15,846.0,959.0117741969916,168.0,28.0,2.6 -2019,6,23,11,30,846.0,972.6443444978813,168.0,28.0,2.6 -2019,6,23,11,45,846.0,983.6293801571446,168.0,28.0,2.6 -2019,6,23,12,0,843.0,988.9981399997998,168.0,29.4,3.0 -2019,6,23,12,15,843.0,994.5388084476829,168.0,29.4,3.0 -2019,6,23,12,30,843.0,997.3353567413664,168.0,29.4,3.0 -2019,6,23,12,45,843.0,997.3758096317227,168.0,29.4,3.0 -2019,6,23,13,0,823.0,974.047657146094,167.0,29.4,5.6 -2019,6,23,13,15,823.0,968.7167504759866,167.0,29.4,5.6 -2019,6,23,13,30,823.0,960.7291484703926,167.0,29.4,5.6 -2019,6,23,13,45,823.0,950.1190552673792,167.0,29.4,5.6 -2019,6,23,14,0,782.0,895.5756374768862,164.0,29.3,5.2 -2019,6,23,14,15,782.0,880.6504233895934,164.0,29.3,5.2 -2019,6,23,14,30,782.0,863.3941035982579,164.0,29.3,5.2 -2019,6,23,14,45,782.0,843.8805723134648,164.0,29.3,5.2 -2019,6,23,15,0,719.0,756.1675793226726,151.0,28.7,5.8 -2019,6,23,15,15,719.0,734.3144233753949,151.0,28.7,5.8 -2019,6,23,15,30,719.0,710.6416957567893,151.0,28.7,5.8 -2019,6,23,15,45,719.0,685.2507667208225,151.0,28.7,5.8 -2019,6,23,16,0,627.0,569.3448933318048,127.0,27.7,6.3 -2019,6,23,16,15,627.0,544.4966336749198,127.0,27.7,6.3 -2019,6,23,16,30,627.0,518.4520711753578,127.0,27.7,6.3 -2019,6,23,16,45,627.0,491.32273264817564,127.0,27.7,6.3 -2019,6,23,17,0,481.0,345.9332121711751,88.0,27.0,6.4 -2019,6,23,17,15,481.0,323.7272550167504,88.0,27.0,6.4 -2019,6,23,17,30,481.0,300.9656299816104,88.0,27.0,6.4 -2019,6,23,17,45,481.0,277.7458058385837,88.0,27.0,6.4 -2019,6,23,18,0,263.0,124.85650131926873,34.0,25.3,4.1 -2019,6,23,18,15,263.0,111.82329655578893,34.0,25.3,4.1 -2019,6,23,18,30,263.0,98.70494212100148,34.0,25.3,4.1 -2019,6,23,18,45,263.0,85.55761282256233,34.0,25.3,4.1 -2019,6,23,19,0,0.0,0.0,0.0,23.0,4.0 -2019,6,23,19,15,0.0,0.0,0.0,23.0,4.0 -2019,6,23,19,30,0.0,0.0,0.0,23.0,4.0 -2019,6,23,19,45,0.0,0.0,0.0,23.0,4.0 -2019,6,23,20,0,0.0,0.0,0.0,21.0,3.4 -2019,6,23,20,15,0.0,0.0,0.0,21.0,3.4 -2019,6,23,20,30,0.0,0.0,0.0,21.0,3.4 -2019,6,23,20,45,0.0,0.0,0.0,21.0,3.4 -2019,6,23,21,0,0.0,0.0,0.0,19.9,1.3 -2019,6,23,21,15,0.0,0.0,0.0,19.9,1.3 -2019,6,23,21,30,0.0,0.0,0.0,19.9,1.3 -2019,6,23,21,45,0.0,0.0,0.0,19.9,1.3 -2019,6,23,22,0,0.0,0.0,0.0,18.8,0.0 -2019,6,23,22,15,0.0,0.0,0.0,18.8,0.0 -2019,6,23,22,30,0.0,0.0,0.0,18.8,0.0 -2019,6,23,22,45,0.0,0.0,0.0,18.8,0.0 -2019,6,23,23,0,0.0,0.0,0.0,18.2,0.0 -2019,6,23,23,15,0.0,0.0,0.0,18.2,0.0 -2019,6,23,23,30,0.0,0.0,0.0,18.2,0.0 -2019,6,23,23,45,0.0,0.0,0.0,18.2,0.0 -2019,6,24,0,0,0.0,0.0,0.0,17.7,0.0 -2019,6,24,0,15,0.0,0.0,0.0,17.7,0.0 -2019,6,24,0,30,0.0,0.0,0.0,17.7,0.0 -2019,6,24,0,45,0.0,0.0,0.0,17.7,0.0 -2019,6,24,1,0,0.0,0.0,0.0,17.1,0.0 -2019,6,24,1,15,0.0,0.0,0.0,17.1,0.0 -2019,6,24,1,30,0.0,0.0,0.0,17.1,0.0 -2019,6,24,1,45,0.0,0.0,0.0,17.1,0.0 -2019,6,24,2,0,0.0,0.0,0.0,16.1,0.0 -2019,6,24,2,15,0.0,0.0,0.0,16.1,0.0 -2019,6,24,2,30,0.0,0.0,0.0,16.1,0.0 -2019,6,24,2,45,0.0,0.0,0.0,16.1,0.0 -2019,6,24,3,0,0.0,0.0,0.0,16.0,0.0 -2019,6,24,3,15,0.0,0.0,0.0,16.0,0.0 -2019,6,24,3,30,0.0,0.0,0.0,16.0,0.0 -2019,6,24,3,45,0.0,0.0,0.0,16.0,0.0 -2019,6,24,4,0,229.0,-60.6813912346035,0.0,15.7,0.0 -2019,6,24,4,15,229.0,-51.60555315540676,0.0,15.7,0.0 -2019,6,24,4,30,229.0,-42.09276492180292,0.0,15.7,0.0 -2019,6,24,4,45,229.0,-32.183761753438276,0.0,15.7,0.0 -2019,6,24,5,0,332.0,17.219371730647865,49.0,16.9,0.2 -2019,6,24,5,15,332.0,32.547365873534346,49.0,16.9,0.2 -2019,6,24,5,30,332.0,48.258918084274626,49.0,16.9,0.2 -2019,6,24,5,45,332.0,64.28674908422082,49.0,16.9,0.2 -2019,6,24,6,0,551.0,148.38188586583453,96.0,18.6,1.3 -2019,6,24,6,15,551.0,175.68862803718497,96.0,18.6,1.3 -2019,6,24,6,30,551.0,203.17377300067818,96.0,18.6,1.3 -2019,6,24,6,45,551.0,230.7196251459847,96.0,18.6,1.3 -2019,6,24,7,0,685.0,328.6563281309106,127.0,21.0,0.2 -2019,6,24,7,15,685.0,362.612492907778,127.0,21.0,0.2 -2019,6,24,7,30,685.0,396.2057444007432,127.0,21.0,0.2 -2019,6,24,7,45,685.0,429.2922311495837,127.0,21.0,0.2 -2019,6,24,8,0,771.0,521.7548022049521,145.0,24.1,1.6 -2019,6,24,8,15,771.0,557.3791552040316,145.0,24.1,1.6 -2019,6,24,8,30,771.0,591.9647585395378,145.0,24.1,1.6 -2019,6,24,8,45,771.0,625.3635113483093,145.0,24.1,1.6 -2019,6,24,9,0,829.0,701.9811355265069,151.0,25.8,2.2 -2019,6,24,9,15,829.0,734.8848989359234,151.0,25.8,2.2 -2019,6,24,9,30,829.0,766.0701978866889,151.0,25.8,2.2 -2019,6,24,9,45,829.0,795.403492141042,151.0,25.8,2.2 -2019,6,24,10,0,865.0,852.9308610442127,152.0,27.5,3.1 -2019,6,24,10,15,865.0,879.288761552197,152.0,27.5,3.1 -2019,6,24,10,30,865.0,903.3480714299498,152.0,27.5,3.1 -2019,6,24,10,45,865.0,925.005765018922,152.0,27.5,3.1 -2019,6,24,11,0,881.0,957.8219396080235,151.0,30.1,3.4 -2019,6,24,11,15,881.0,974.7156671712293,151.0,30.1,3.4 -2019,6,24,11,30,881.0,988.9129787056834,151.0,30.1,3.4 -2019,6,24,11,45,881.0,1000.3530791437843,151.0,30.1,3.4 -2019,6,24,12,0,879.0,1007.0392231698344,151.0,30.6,5.7 -2019,6,24,12,15,879.0,1012.8168073809101,151.0,30.6,5.7 -2019,6,24,12,30,879.0,1015.7329344545793,151.0,30.6,5.7 -2019,6,24,12,45,879.0,1015.7751170870205,151.0,30.6,5.7 -2019,6,24,13,0,858.0,993.3506755927561,152.0,30.5,5.8 -2019,6,24,13,15,858.0,987.792767603061,152.0,30.5,5.8 -2019,6,24,13,30,858.0,979.465036552294,152.0,30.5,5.8 -2019,6,24,13,45,858.0,968.403143063311,152.0,30.5,5.8 -2019,6,24,14,0,816.0,913.3636783025923,150.0,29.9,6.1 -2019,6,24,14,15,816.0,897.7887234660304,150.0,29.9,6.1 -2019,6,24,14,30,816.0,879.7811826814632,150.0,29.9,6.1 -2019,6,24,14,45,816.0,859.4181670030986,150.0,29.9,6.1 -2019,6,24,15,0,752.0,774.9212368145515,142.0,29.5,5.7 -2019,6,24,15,15,752.0,752.0638837796074,142.0,29.5,5.7 -2019,6,24,15,30,752.0,727.3033460438237,142.0,29.5,5.7 -2019,6,24,15,45,752.0,700.7456520310922,142.0,29.5,5.7 -2019,6,24,16,0,656.0,582.7805438391458,120.0,28.5,5.4 -2019,6,24,16,15,656.0,556.7816365031058,120.0,28.5,5.4 -2019,6,24,16,30,656.0,529.5310291614287,120.0,28.5,5.4 -2019,6,24,16,45,656.0,501.14541309834027,120.0,28.5,5.4 -2019,6,24,17,0,503.0,354.70794048699696,85.0,27.6,5.2 -2019,6,24,17,15,503.0,331.4851059873828,85.0,27.6,5.2 -2019,6,24,17,30,503.0,307.68115790906256,85.0,27.6,5.2 -2019,6,24,17,45,503.0,283.398028412156,85.0,27.6,5.2 -2019,6,24,18,0,275.0,128.98691438553737,34.0,25.8,5.6 -2019,6,24,18,15,275.0,115.35832255773094,34.0,25.8,5.6 -2019,6,24,18,30,275.0,101.64069122386402,34.0,25.8,5.6 -2019,6,24,18,45,275.0,87.89276138727732,34.0,25.8,5.6 -2019,6,24,19,0,0.0,0.0,0.0,23.1,4.8 -2019,6,24,19,15,0.0,0.0,0.0,23.1,4.8 -2019,6,24,19,30,0.0,0.0,0.0,23.1,4.8 -2019,6,24,19,45,0.0,0.0,0.0,23.1,4.8 -2019,6,24,20,0,0.0,0.0,0.0,21.5,2.5 -2019,6,24,20,15,0.0,0.0,0.0,21.5,2.5 -2019,6,24,20,30,0.0,0.0,0.0,21.5,2.5 -2019,6,24,20,45,0.0,0.0,0.0,21.5,2.5 -2019,6,24,21,0,0.0,0.0,0.0,19.9,2.1 -2019,6,24,21,15,0.0,0.0,0.0,19.9,2.1 -2019,6,24,21,30,0.0,0.0,0.0,19.9,2.1 -2019,6,24,21,45,0.0,0.0,0.0,19.9,2.1 -2019,6,24,22,0,0.0,0.0,0.0,18.8,1.9 -2019,6,24,22,15,0.0,0.0,0.0,18.8,1.9 -2019,6,24,22,30,0.0,0.0,0.0,18.8,1.9 -2019,6,24,22,45,0.0,0.0,0.0,18.8,1.9 -2019,6,24,23,0,0.0,0.0,0.0,17.7,0.0 -2019,6,24,23,15,0.0,0.0,0.0,17.7,0.0 -2019,6,24,23,30,0.0,0.0,0.0,17.7,0.0 -2019,6,24,23,45,0.0,0.0,0.0,17.7,0.0 -2019,6,25,0,0,0.0,0.0,0.0,17.1,0.0 -2019,6,25,0,15,0.0,0.0,0.0,17.1,0.0 -2019,6,25,0,30,0.0,0.0,0.0,17.1,0.0 -2019,6,25,0,45,0.0,0.0,0.0,17.1,0.0 -2019,6,25,1,0,0.0,0.0,0.0,16.0,0.0 -2019,6,25,1,15,0.0,0.0,0.0,16.0,0.0 -2019,6,25,1,30,0.0,0.0,0.0,16.0,0.0 -2019,6,25,1,45,0.0,0.0,0.0,16.0,0.0 -2019,6,25,2,0,0.0,0.0,0.0,15.5,0.0 -2019,6,25,2,15,0.0,0.0,0.0,15.5,0.0 -2019,6,25,2,30,0.0,0.0,0.0,15.5,0.0 -2019,6,25,2,45,0.0,0.0,0.0,15.5,0.0 -2019,6,25,3,0,0.0,0.0,0.0,14.9,0.2 -2019,6,25,3,15,0.0,0.0,0.0,14.9,0.2 -2019,6,25,3,30,0.0,0.0,0.0,14.9,0.2 -2019,6,25,3,45,0.0,0.0,0.0,14.9,0.2 -2019,6,25,4,0,250.0,-66.28959805915633,0.0,14.1,1.3 -2019,6,25,4,15,250.0,-56.38043721716225,0.0,14.1,1.3 -2019,6,25,4,30,250.0,-45.994206453671964,0.0,14.1,1.3 -2019,6,25,4,45,250.0,-35.17538120333827,0.0,14.1,1.3 -2019,6,25,5,0,335.0,15.879812288662585,48.0,15.9,0.0 -2019,6,25,5,15,335.0,31.347936877850135,48.0,15.9,0.0 -2019,6,25,5,30,335.0,47.203126070888885,48.0,15.9,0.0 -2019,6,25,5,45,335.0,63.37748551352128,48.0,15.9,0.0 -2019,6,25,6,0,617.0,144.57218593806553,86.0,18.0,0.0 -2019,6,25,6,15,617.0,175.1530017704487,86.0,18.0,0.0 -2019,6,25,6,30,617.0,205.93361085888085,86.0,18.0,0.0 -2019,6,25,6,45,617.0,236.78220590972055,86.0,18.0,0.0 -2019,6,25,7,0,758.0,332.0592380636501,109.0,19.9,0.0 -2019,6,25,7,15,758.0,369.6380355699526,109.0,19.9,0.0 -2019,6,25,7,30,758.0,406.8152021824919,109.0,19.9,0.0 -2019,6,25,7,45,758.0,443.4315395662907,109.0,19.9,0.0 -2019,6,25,8,0,877.0,538.4691689672984,110.0,23.5,0.2 -2019,6,25,8,15,877.0,578.9955490500936,110.0,23.5,0.2 -2019,6,25,8,30,877.0,618.3402441299938,110.0,23.5,0.2 -2019,6,25,8,45,877.0,656.3347741823592,110.0,23.5,0.2 -2019,6,25,9,0,896.0,720.4430227521616,125.0,25.3,1.7 -2019,6,25,9,15,896.0,756.0098123057357,125.0,25.3,1.7 -2019,6,25,9,30,896.0,789.7190555660294,125.0,25.3,1.7 -2019,6,25,9,45,896.0,821.4264043782649,125.0,25.3,1.7 -2019,6,25,10,0,971.0,893.7658444194459,107.0,27.4,3.1 -2019,6,25,10,15,971.0,923.3568380936307,107.0,27.4,3.1 -2019,6,25,10,30,971.0,950.3672931252131,107.0,27.4,3.1 -2019,6,25,10,45,971.0,974.6815465990276,107.0,27.4,3.1 -2019,6,25,11,0,875.0,955.2832605615791,154.0,29.0,3.2 -2019,6,25,11,15,875.0,972.0636966567461,154.0,29.0,3.2 -2019,6,25,11,30,875.0,986.1657992291798,154.0,29.0,3.2 -2019,6,25,11,45,875.0,997.5291809106714,154.0,29.0,3.2 -2019,6,25,12,0,858.0,996.5499955640282,161.0,29.5,3.7 -2019,6,25,12,15,858.0,1002.1901410857048,161.0,29.5,3.7 -2019,6,25,12,30,858.0,1005.0368985632791,161.0,29.5,3.7 -2019,6,25,12,45,858.0,1005.0780777441901,161.0,29.5,3.7 -2019,6,25,13,0,887.0,1008.7495064496147,139.0,29.9,4.8 -2019,6,25,13,15,887.0,1003.0031402728785,139.0,29.9,4.8 -2019,6,25,13,30,887.0,994.3930315543084,139.0,29.9,4.8 -2019,6,25,13,45,887.0,982.9560501012857,139.0,29.9,4.8 -2019,6,25,14,0,933.0,979.7717163235691,107.0,29.3,6.3 -2019,6,25,14,15,933.0,961.9617173948941,107.0,29.3,6.3 -2019,6,25,14,30,933.0,941.3700504882048,107.0,29.3,6.3 -2019,6,25,14,45,933.0,918.0848922824863,107.0,29.3,6.3 -2019,6,25,15,0,923.0,866.7900267826146,90.0,28.7,7.1 -2019,6,25,15,15,923.0,838.7321109001848,90.0,28.7,7.1 -2019,6,25,15,30,923.0,808.3379929140712,90.0,28.7,7.1 -2019,6,25,15,45,923.0,775.7378251036802,90.0,28.7,7.1 -2019,6,25,16,0,800.0,653.3087379349465,89.0,27.7,6.0 -2019,6,25,16,15,800.0,621.5994232405651,89.0,27.7,6.0 -2019,6,25,16,30,800.0,588.3634847973965,89.0,27.7,6.0 -2019,6,25,16,45,800.0,553.7432439963284,89.0,27.7,6.0 -2019,6,25,17,0,635.0,409.42901658112675,69.0,27.0,5.2 -2019,6,25,17,15,635.0,380.1088401210251,69.0,27.0,5.2 -2019,6,25,17,30,635.0,350.05497403869776,69.0,27.0,5.2 -2019,6,25,17,45,635.0,319.3961136026632,69.0,27.0,5.2 -2019,6,25,18,0,375.0,160.48634533079257,31.0,25.3,5.9 -2019,6,25,18,15,375.0,141.89994997075416,31.0,25.3,5.9 -2019,6,25,18,30,375.0,123.19212434974591,31.0,25.3,5.9 -2019,6,25,18,45,375.0,104.44297824915449,31.0,25.3,5.9 -2019,6,25,19,0,0.0,0.0,0.0,22.6,3.5 -2019,6,25,19,15,0.0,0.0,0.0,22.6,3.5 -2019,6,25,19,30,0.0,0.0,0.0,22.6,3.5 -2019,6,25,19,45,0.0,0.0,0.0,22.6,3.5 -2019,6,25,20,0,0.0,0.0,0.0,20.9,2.5 -2019,6,25,20,15,0.0,0.0,0.0,20.9,2.5 -2019,6,25,20,30,0.0,0.0,0.0,20.9,2.5 -2019,6,25,20,45,0.0,0.0,0.0,20.9,2.5 -2019,6,25,21,0,0.0,0.0,0.0,19.3,1.5 -2019,6,25,21,15,0.0,0.0,0.0,19.3,1.5 -2019,6,25,21,30,0.0,0.0,0.0,19.3,1.5 -2019,6,25,21,45,0.0,0.0,0.0,19.3,1.5 -2019,6,25,22,0,0.0,0.0,0.0,18.8,1.3 -2019,6,25,22,15,0.0,0.0,0.0,18.8,1.3 -2019,6,25,22,30,0.0,0.0,0.0,18.8,1.3 -2019,6,25,22,45,0.0,0.0,0.0,18.8,1.3 -2019,6,25,23,0,0.0,0.0,0.0,17.7,0.2 -2019,6,25,23,15,0.0,0.0,0.0,17.7,0.2 -2019,6,25,23,30,0.0,0.0,0.0,17.7,0.2 -2019,6,25,23,45,0.0,0.0,0.0,17.7,0.2 -2019,6,26,0,0,0.0,0.0,0.0,16.6,1.9 -2019,6,26,0,15,0.0,0.0,0.0,16.6,1.9 -2019,6,26,0,30,0.0,0.0,0.0,16.6,1.9 -2019,6,26,0,45,0.0,0.0,0.0,16.6,1.9 -2019,6,26,1,0,0.0,0.0,0.0,15.5,0.0 -2019,6,26,1,15,0.0,0.0,0.0,15.5,0.0 -2019,6,26,1,30,0.0,0.0,0.0,15.5,0.0 -2019,6,26,1,45,0.0,0.0,0.0,15.5,0.0 -2019,6,26,2,0,0.0,0.0,0.0,14.3,0.0 -2019,6,26,2,15,0.0,0.0,0.0,14.3,0.0 -2019,6,26,2,30,0.0,0.0,0.0,14.3,0.0 -2019,6,26,2,45,0.0,0.0,0.0,14.3,0.0 -2019,6,26,3,0,0.0,0.0,0.0,13.8,0.0 -2019,6,26,3,15,0.0,0.0,0.0,13.8,0.0 -2019,6,26,3,30,0.0,0.0,0.0,13.8,0.0 -2019,6,26,3,45,0.0,0.0,0.0,13.8,0.0 -2019,6,26,4,0,265.0,-70.33617414583982,0.0,13.5,0.0 -2019,6,26,4,15,265.0,-59.83081055634223,0.0,13.5,0.0 -2019,6,26,4,30,265.0,-48.819673262810014,0.0,13.5,0.0 -2019,6,26,4,45,265.0,-37.34991364559489,0.0,13.5,0.0 -2019,6,26,5,0,409.0,4.688699572509229,44.0,15.4,0.0 -2019,6,26,5,15,409.0,23.5766357802314,44.0,15.4,0.0 -2019,6,26,5,30,409.0,42.93721180305563,44.0,15.4,0.0 -2019,6,26,5,45,409.0,62.687522682162424,44.0,15.4,0.0 -2019,6,26,6,0,670.0,140.46651919643995,77.0,18.6,0.0 -2019,6,26,6,15,670.0,173.67943853923867,77.0,18.6,0.0 -2019,6,26,6,30,670.0,207.10934742655323,77.0,18.6,0.0 -2019,6,26,6,45,670.0,240.6130938562752,77.0,18.6,0.0 -2019,6,26,7,0,825.0,335.63275814201234,93.0,21.4,0.2 -2019,6,26,7,15,825.0,376.53960139447173,93.0,21.4,0.2 -2019,6,26,7,30,825.0,417.00924460044837,93.0,21.4,0.2 -2019,6,26,7,45,825.0,456.868390534722,93.0,21.4,0.2 -2019,6,26,8,0,923.0,546.8114991352129,96.0,24.1,1.5 -2019,6,26,8,15,923.0,589.4702629104797,96.0,24.1,1.5 -2019,6,26,8,30,923.0,630.8851647545231,96.0,24.1,1.5 -2019,6,26,8,45,923.0,670.8788596995155,96.0,24.1,1.5 -2019,6,26,9,0,986.0,747.1399429721629,92.0,25.9,1.7 -2019,6,26,9,15,986.0,786.2854493483062,92.0,25.9,1.7 -2019,6,26,9,30,986.0,823.3865038304131,92.0,25.9,1.7 -2019,6,26,9,45,986.0,858.2842340073339,92.0,25.9,1.7 -2019,6,26,10,0,1023.0,914.8055518225087,86.0,28.0,3.2 -2019,6,26,10,15,1023.0,945.9861396055584,86.0,28.0,3.2 -2019,6,26,10,30,1023.0,974.4475651813784,86.0,28.0,3.2 -2019,6,26,10,45,1023.0,1000.0679523561756,86.0,28.0,3.2 -2019,6,26,11,0,1040.0,1035.3041000261037,83.0,29.6,3.7 -2019,6,26,11,15,1040.0,1055.2519858757785,83.0,29.6,3.7 -2019,6,26,11,30,1040.0,1072.0159800151405,83.0,29.6,3.7 -2019,6,26,11,45,1040.0,1085.5242964476301,83.0,29.6,3.7 -2019,6,26,12,0,1038.0,1093.7715537759705,83.0,31.2,4.0 -2019,6,26,12,15,1038.0,1100.5960204904095,83.0,31.2,4.0 -2019,6,26,12,30,1038.0,1104.0405418374426,83.0,31.2,4.0 -2019,6,26,12,45,1038.0,1104.0903678478485,83.0,31.2,4.0 -2019,6,26,13,0,1016.0,1083.1745758396394,87.0,32.2,3.3 -2019,6,26,13,15,1016.0,1076.5914564695363,87.0,32.2,3.3 -2019,6,26,13,30,1016.0,1066.7275926396633,87.0,32.2,3.3 -2019,6,26,13,45,1016.0,1053.6252229292686,87.0,32.2,3.3 -2019,6,26,14,0,973.0,1003.1193518180571,93.0,31.9,4.8 -2019,6,26,14,15,973.0,984.5428713744284,93.0,31.9,4.8 -2019,6,26,14,30,973.0,963.0650094651866,93.0,31.9,4.8 -2019,6,26,14,45,973.0,938.7777375923685,93.0,31.9,4.8 -2019,6,26,15,0,902.0,855.0381520448822,96.0,31.0,6.2 -2019,6,26,15,15,902.0,827.6142915982253,96.0,31.0,6.2 -2019,6,26,15,30,902.0,797.9070227638939,96.0,31.0,6.2 -2019,6,26,15,45,902.0,766.0435566277794,96.0,31.0,6.2 -2019,6,26,16,0,794.0,649.9903635590397,90.0,29.4,6.2 -2019,6,26,16,15,794.0,618.5139156720163,90.0,29.4,6.2 -2019,6,26,16,30,794.0,585.5220552529049,90.0,29.4,6.2 -2019,6,26,16,45,794.0,551.1560585130223,90.0,29.4,6.2 -2019,6,26,17,0,617.0,401.6957481317029,71.0,28.6,6.1 -2019,6,26,17,15,617.0,373.20221111418545,71.0,28.6,6.1 -2019,6,26,17,30,617.0,343.9956697790203,71.0,28.6,6.1 -2019,6,26,17,45,617.0,314.20119102007436,71.0,28.6,6.1 -2019,6,26,18,0,344.0,150.72536081542393,32.0,26.4,5.5 -2019,6,26,18,15,344.0,133.67275745136018,32.0,26.4,5.5 -2019,6,26,18,30,344.0,116.50874453011205,32.0,26.4,5.5 -2019,6,26,18,45,344.0,99.30682099007572,32.0,26.4,5.5 -2019,6,26,19,0,0.0,0.0,0.0,24.2,3.9 -2019,6,26,19,15,0.0,0.0,0.0,24.2,3.9 -2019,6,26,19,30,0.0,0.0,0.0,24.2,3.9 -2019,6,26,19,45,0.0,0.0,0.0,24.2,3.9 -2019,6,26,20,0,0.0,0.0,0.0,22.7,2.3 -2019,6,26,20,15,0.0,0.0,0.0,22.7,2.3 -2019,6,26,20,30,0.0,0.0,0.0,22.7,2.3 -2019,6,26,20,45,0.0,0.0,0.0,22.7,2.3 -2019,6,26,21,0,0.0,0.0,0.0,21.6,0.0 -2019,6,26,21,15,0.0,0.0,0.0,21.6,0.0 -2019,6,26,21,30,0.0,0.0,0.0,21.6,0.0 -2019,6,26,21,45,0.0,0.0,0.0,21.6,0.0 -2019,6,26,22,0,0.0,0.0,0.0,21.0,0.0 -2019,6,26,22,15,0.0,0.0,0.0,21.0,0.0 -2019,6,26,22,30,0.0,0.0,0.0,21.0,0.0 -2019,6,26,22,45,0.0,0.0,0.0,21.0,0.0 -2019,6,26,23,0,0.0,0.0,0.0,20.3,0.0 -2019,6,26,23,15,0.0,0.0,0.0,20.3,0.0 -2019,6,26,23,30,0.0,0.0,0.0,20.3,0.0 -2019,6,26,23,45,0.0,0.0,0.0,20.3,0.0 -2019,6,27,0,0,0.0,0.0,0.0,17.7,0.0 -2019,6,27,0,15,0.0,0.0,0.0,17.7,0.0 -2019,6,27,0,30,0.0,0.0,0.0,17.7,0.0 -2019,6,27,0,45,0.0,0.0,0.0,17.7,0.0 -2019,6,27,1,0,0.0,0.0,0.0,17.1,0.0 -2019,6,27,1,15,0.0,0.0,0.0,17.1,0.0 -2019,6,27,1,30,0.0,0.0,0.0,17.1,0.0 -2019,6,27,1,45,0.0,0.0,0.0,17.1,0.0 -2019,6,27,2,0,0.0,0.0,0.0,16.0,0.0 -2019,6,27,2,15,0.0,0.0,0.0,16.0,0.0 -2019,6,27,2,30,0.0,0.0,0.0,16.0,0.0 -2019,6,27,2,45,0.0,0.0,0.0,16.0,0.0 -2019,6,27,3,0,0.0,0.0,0.0,15.5,0.0 -2019,6,27,3,15,0.0,0.0,0.0,15.5,0.0 -2019,6,27,3,30,0.0,0.0,0.0,15.5,0.0 -2019,6,27,3,45,0.0,0.0,0.0,15.5,0.0 -2019,6,27,4,0,286.0,-76.00951280332856,0.0,14.7,0.0 -2019,6,27,4,15,286.0,-64.66927305869599,0.0,14.7,0.0 -2019,6,27,4,30,286.0,-52.78306505590451,0.0,14.7,0.0 -2019,6,27,4,45,286.0,-40.40178736242638,0.0,14.7,0.0 -2019,6,27,5,0,386.0,7.778723828954483,45.0,17.2,0.0 -2019,6,27,5,15,386.0,25.60823732414463,45.0,17.2,0.0 -2019,6,27,5,30,386.0,43.883905331349844,45.0,17.2,0.0 -2019,6,27,5,45,386.0,62.52746863443153,45.0,17.2,0.0 -2019,6,27,6,0,641.0,141.54476263685535,81.0,20.9,0.0 -2019,6,27,6,15,641.0,173.32676580747827,81.0,20.9,0.0 -2019,6,27,6,30,641.0,205.31640993614565,81.0,20.9,0.0 -2019,6,27,6,45,641.0,237.3767104555594,81.0,20.9,0.0 -2019,6,27,7,0,794.0,333.33242107348684,100.0,23.2,0.0 -2019,6,27,7,15,794.0,372.71040791684595,100.0,23.2,0.0 -2019,6,27,7,30,794.0,411.6675346715382,100.0,23.2,0.0 -2019,6,27,7,45,794.0,450.0369809399933,100.0,23.2,0.0 -2019,6,27,8,0,890.0,540.5245014456016,106.0,26.3,0.2 -2019,6,27,8,15,890.0,581.6667061163714,106.0,26.3,0.2 -2019,6,27,8,30,890.0,621.6092693154338,106.0,26.3,0.2 -2019,6,27,8,45,890.0,660.181150855077,106.0,26.3,0.2 -2019,6,27,9,0,953.0,737.067384894485,104.0,28.1,1.6 -2019,6,27,9,15,953.0,774.9106752637318,104.0,28.1,1.6 -2019,6,27,9,30,953.0,810.7775245587835,104.0,28.1,1.6 -2019,6,27,9,45,953.0,844.5143454245801,104.0,28.1,1.6 -2019,6,27,10,0,991.0,901.7585326025916,99.0,30.8,2.6 -2019,6,27,10,15,991.0,931.9701034931321,99.0,30.8,2.6 -2019,6,27,10,30,991.0,959.5470171296727,99.0,30.8,2.6 -2019,6,27,10,45,991.0,984.3711849343365,99.0,30.8,2.6 -2019,6,27,11,0,1008.0,1018.9011064153228,96.0,32.3,2.5 -2019,6,27,11,15,1008.0,1038.239262273739,96.0,32.3,2.5 -2019,6,27,11,30,1008.0,1054.4908457207061,96.0,32.3,2.5 -2019,6,27,11,45,1008.0,1067.5862649809155,96.0,32.3,2.5 -2019,6,27,12,0,1006.0,1075.522083451787,96.0,33.3,2.4 -2019,6,27,12,15,1006.0,1082.1375478428288,96.0,33.3,2.4 -2019,6,27,12,30,1006.0,1085.4765791941381,96.0,33.3,2.4 -2019,6,27,12,45,1006.0,1085.524879260851,96.0,33.3,2.4 -2019,6,27,13,0,984.0,1064.7134446871098,100.0,33.2,4.8 -2019,6,27,13,15,984.0,1058.3363317306626,100.0,33.2,4.8 -2019,6,27,13,30,984.0,1048.781139079017,100.0,33.2,4.8 -2019,6,27,13,45,984.0,1036.0887835340482,100.0,33.2,4.8 -2019,6,27,14,0,940.0,984.1613808619096,105.0,32.0,6.1 -2019,6,27,14,15,940.0,966.2111748594072,105.0,32.0,6.1 -2019,6,27,14,30,940.0,945.4574025323988,105.0,32.0,6.1 -2019,6,27,14,45,940.0,921.9889347201661,105.0,32.0,6.1 -2019,6,27,15,0,870.0,838.0089918023385,106.0,31.3,5.7 -2019,6,27,15,15,870.0,811.5524976119382,106.0,31.3,5.7 -2019,6,27,15,30,870.0,782.893141397049,106.0,31.3,5.7 -2019,6,27,15,45,870.0,752.1536469208473,106.0,31.3,5.7 -2019,6,27,16,0,764.0,635.7215552865176,97.0,30.3,6.0 -2019,6,27,16,15,764.0,605.4280477169393,97.0,30.3,6.0 -2019,6,27,16,30,764.0,573.6760794857064,97.0,30.3,6.0 -2019,6,27,16,45,764.0,540.6016173954359,97.0,30.3,6.0 -2019,6,27,17,0,591.0,391.65400287952184,75.0,29.8,6.1 -2019,6,27,17,15,591.0,364.3554472431037,75.0,29.8,6.1 -2019,6,27,17,30,591.0,336.3737897502067,75.0,29.8,6.1 -2019,6,27,17,45,591.0,307.8288521540375,75.0,29.8,6.1 -2019,6,27,18,0,326.0,145.44124374391913,33.0,28.0,4.9 -2019,6,27,18,15,326.0,129.2775416633839,33.0,28.0,4.9 -2019,6,27,18,30,326.0,113.00823747314121,33.0,28.0,4.9 -2019,6,27,18,45,326.0,96.70299883144253,33.0,28.0,4.9 -2019,6,27,19,0,0.0,0.0,0.0,25.4,3.4 -2019,6,27,19,15,0.0,0.0,0.0,25.4,3.4 -2019,6,27,19,30,0.0,0.0,0.0,25.4,3.4 -2019,6,27,19,45,0.0,0.0,0.0,25.4,3.4 -2019,6,27,20,0,0.0,0.0,0.0,23.8,1.9 -2019,6,27,20,15,0.0,0.0,0.0,23.8,1.9 -2019,6,27,20,30,0.0,0.0,0.0,23.8,1.9 -2019,6,27,20,45,0.0,0.0,0.0,23.8,1.9 -2019,6,27,21,0,0.0,0.0,0.0,22.6,0.2 -2019,6,27,21,15,0.0,0.0,0.0,22.6,0.2 -2019,6,27,21,30,0.0,0.0,0.0,22.6,0.2 -2019,6,27,21,45,0.0,0.0,0.0,22.6,0.2 -2019,6,27,22,0,0.0,0.0,0.0,21.0,1.3 -2019,6,27,22,15,0.0,0.0,0.0,21.0,1.3 -2019,6,27,22,30,0.0,0.0,0.0,21.0,1.3 -2019,6,27,22,45,0.0,0.0,0.0,21.0,1.3 -2019,6,27,23,0,0.0,0.0,0.0,19.9,0.0 -2019,6,27,23,15,0.0,0.0,0.0,19.9,0.0 -2019,6,27,23,30,0.0,0.0,0.0,19.9,0.0 -2019,6,27,23,45,0.0,0.0,0.0,19.9,0.0 -2019,6,28,0,0,0.0,0.0,0.0,19.3,0.0 -2019,6,28,0,15,0.0,0.0,0.0,19.3,0.0 -2019,6,28,0,30,0.0,0.0,0.0,19.3,0.0 -2019,6,28,0,45,0.0,0.0,0.0,19.3,0.0 -2019,6,28,1,0,0.0,0.0,0.0,18.2,0.0 -2019,6,28,1,15,0.0,0.0,0.0,18.2,0.0 -2019,6,28,1,30,0.0,0.0,0.0,18.2,0.0 -2019,6,28,1,45,0.0,0.0,0.0,18.2,0.0 -2019,6,28,2,0,0.0,0.0,0.0,17.1,0.0 -2019,6,28,2,15,0.0,0.0,0.0,17.1,0.0 -2019,6,28,2,30,0.0,0.0,0.0,17.1,0.0 -2019,6,28,2,45,0.0,0.0,0.0,17.1,0.0 -2019,6,28,3,0,0.0,0.0,0.0,16.6,0.0 -2019,6,28,3,15,0.0,0.0,0.0,16.6,0.0 -2019,6,28,3,30,0.0,0.0,0.0,16.6,0.0 -2019,6,28,3,45,0.0,0.0,0.0,16.6,0.0 -2019,6,28,4,0,306.0,-81.45788818174017,0.0,15.9,0.0 -2019,6,28,4,15,306.0,-69.32145287772556,0.0,15.9,0.0 -2019,6,28,4,30,306.0,-56.60071701284082,0.0,15.9,0.0 -2019,6,28,4,45,306.0,-43.35015273098262,0.0,15.9,0.0 -2019,6,28,5,0,384.0,7.82164582567011,45.0,18.1,0.0 -2019,6,28,5,15,384.0,25.563415150958004,45.0,18.1,0.0 -2019,6,28,5,30,384.0,43.74914333343749,45.0,18.1,0.0 -2019,6,28,5,45,384.0,62.30095629310732,45.0,18.1,0.0 -2019,6,28,6,0,641.0,141.3264669174937,81.0,20.9,0.0 -2019,6,28,6,15,641.0,173.11677833840102,81.0,20.9,0.0 -2019,6,28,6,30,641.0,205.11478499753923,81.0,20.9,0.0 -2019,6,28,6,45,641.0,237.1834665179703,81.0,20.9,0.0 -2019,6,28,7,0,795.0,333.39699283355645,100.0,23.2,0.2 -2019,6,28,7,15,795.0,372.8348810277495,100.0,23.2,0.2 -2019,6,28,7,30,795.0,411.851268925641,100.0,23.2,0.2 -2019,6,28,7,45,795.0,450.2790823643472,100.0,23.2,0.2 -2019,6,28,8,0,892.0,540.2890071095387,105.0,26.4,1.6 -2019,6,28,8,15,892.0,581.534445476638,105.0,26.4,1.6 -2019,6,28,8,30,892.0,621.5772322410858,105.0,26.4,1.6 -2019,6,28,8,45,892.0,660.2458980424763,105.0,26.4,1.6 -2019,6,28,9,0,956.0,737.8770896611705,103.0,29.1,2.6 -2019,6,28,9,15,956.0,775.8494328568606,103.0,29.1,2.6 -2019,6,28,9,30,956.0,811.8385949379301,103.0,29.1,2.6 -2019,6,28,9,45,956.0,845.6904647871913,103.0,29.1,2.6 -2019,6,28,10,0,994.0,903.0361119245925,98.0,30.9,2.5 -2019,6,28,10,15,994.0,933.3470622744406,98.0,30.9,2.5 -2019,6,28,10,30,994.0,961.0146887963356,98.0,30.9,2.5 -2019,6,28,10,45,994.0,985.9205144658991,98.0,30.9,2.5 -2019,6,28,11,0,1011.0,1020.5205487825518,95.0,33.0,2.3 -2019,6,28,11,15,1011.0,1039.9213289800862,95.0,33.0,2.3 -2019,6,28,11,30,1011.0,1056.2255412651098,95.0,33.0,2.3 -2019,6,28,11,45,1011.0,1069.3633684975498,95.0,33.0,2.3 -2019,6,28,12,0,1009.0,1077.3314139036597,95.0,34.3,4.3 -2019,6,28,12,15,1009.0,1083.9683408497658,95.0,34.3,4.3 -2019,6,28,12,30,1009.0,1087.3182050224773,95.0,34.3,4.3 -2019,6,28,12,45,1009.0,1087.3666617891254,95.0,34.3,4.3 -2019,6,28,13,0,987.0,1066.5471041654525,99.0,33.8,5.8 -2019,6,28,13,15,987.0,1060.1488766444,99.0,33.8,5.8 -2019,6,28,13,30,987.0,1050.5620468343827,99.0,33.8,5.8 -2019,6,28,13,45,987.0,1037.8276670124444,99.0,33.8,5.8 -2019,6,28,14,0,943.0,985.8533459841582,104.0,32.7,6.7 -2019,6,28,14,15,943.0,967.841144684981,104.0,32.7,6.7 -2019,6,28,14,30,943.0,947.0156942796069,104.0,32.7,6.7 -2019,6,28,14,45,943.0,923.466172543853,104.0,32.7,6.7 -2019,6,28,15,0,873.0,839.4063176381146,105.0,31.9,6.7 -2019,6,28,15,15,873.0,812.8516542194138,105.0,31.9,6.7 -2019,6,28,15,30,873.0,784.0859548562995,105.0,31.9,6.7 -2019,6,28,15,45,873.0,753.2323986896351,105.0,31.9,6.7 -2019,6,28,16,0,766.0,636.993240233535,97.0,30.8,6.7 -2019,6,28,16,15,766.0,606.612490420217,97.0,30.8,6.7 -2019,6,28,16,30,766.0,574.769079725767,97.0,30.8,6.7 -2019,6,28,16,45,766.0,541.5993665234682,97.0,30.8,6.7 -2019,6,28,17,0,592.0,392.0564883310642,75.0,29.9,6.4 -2019,6,28,17,15,592.0,364.70459395457874,75.0,29.9,6.4 -2019,6,28,17,30,592.0,336.66826300658954,75.0,29.9,6.4 -2019,6,28,17,45,592.0,308.06755136043193,75.0,29.9,6.4 -2019,6,28,18,0,325.0,145.0069303845043,33.0,28.6,3.9 -2019,6,28,18,15,325.0,128.88859776079934,33.0,28.6,3.9 -2019,6,28,18,30,325.0,112.66495943908347,33.0,28.6,3.9 -2019,6,28,18,45,325.0,96.40548752934848,33.0,28.6,3.9 -2019,6,28,19,0,0.0,0.0,0.0,25.8,2.5 -2019,6,28,19,15,0.0,0.0,0.0,25.8,2.5 -2019,6,28,19,30,0.0,0.0,0.0,25.8,2.5 -2019,6,28,19,45,0.0,0.0,0.0,25.8,2.5 -2019,6,28,20,0,0.0,0.0,0.0,23.7,1.6 -2019,6,28,20,15,0.0,0.0,0.0,23.7,1.6 -2019,6,28,20,30,0.0,0.0,0.0,23.7,1.6 -2019,6,28,20,45,0.0,0.0,0.0,23.7,1.6 -2019,6,28,21,0,0.0,0.0,0.0,22.1,1.9 -2019,6,28,21,15,0.0,0.0,0.0,22.1,1.9 -2019,6,28,21,30,0.0,0.0,0.0,22.1,1.9 -2019,6,28,21,45,0.0,0.0,0.0,22.1,1.9 -2019,6,28,22,0,0.0,0.0,0.0,21.0,0.0 -2019,6,28,22,15,0.0,0.0,0.0,21.0,0.0 -2019,6,28,22,30,0.0,0.0,0.0,21.0,0.0 -2019,6,28,22,45,0.0,0.0,0.0,21.0,0.0 -2019,6,28,23,0,0.0,0.0,0.0,20.5,0.0 -2019,6,28,23,15,0.0,0.0,0.0,20.5,0.0 -2019,6,28,23,30,0.0,0.0,0.0,20.5,0.0 -2019,6,28,23,45,0.0,0.0,0.0,20.5,0.0 -2019,6,29,0,0,0.0,0.0,0.0,19.7,0.0 -2019,6,29,0,15,0.0,0.0,0.0,19.7,0.0 -2019,6,29,0,30,0.0,0.0,0.0,19.7,0.0 -2019,6,29,0,45,0.0,0.0,0.0,19.7,0.0 -2019,6,29,1,0,0.0,0.0,0.0,17.7,0.0 -2019,6,29,1,15,0.0,0.0,0.0,17.7,0.0 -2019,6,29,1,30,0.0,0.0,0.0,17.7,0.0 -2019,6,29,1,45,0.0,0.0,0.0,17.7,0.0 -2019,6,29,2,0,0.0,0.0,0.0,17.1,0.0 -2019,6,29,2,15,0.0,0.0,0.0,17.1,0.0 -2019,6,29,2,30,0.0,0.0,0.0,17.1,0.0 -2019,6,29,2,45,0.0,0.0,0.0,17.1,0.0 -2019,6,29,3,0,0.0,0.0,0.0,16.6,0.0 -2019,6,29,3,15,0.0,0.0,0.0,16.6,0.0 -2019,6,29,3,30,0.0,0.0,0.0,16.6,0.0 -2019,6,29,3,45,0.0,0.0,0.0,16.6,0.0 -2019,6,29,4,0,85.0,-22.671497736483218,0.0,16.3,0.0 -2019,6,29,4,15,85.0,-19.299210644751593,0.0,16.3,0.0 -2019,6,29,4,30,85.0,-15.76456704637239,0.0,16.3,0.0 -2019,6,29,4,45,85.0,-12.082702827882358,0.0,16.3,0.0 -2019,6,29,5,0,380.0,8.0309878481916,45.0,18.0,0.0 -2019,6,29,5,15,380.0,25.593441713044534,45.0,18.0,0.0 -2019,6,29,5,30,380.0,43.59536735798689,45.0,18.0,0.0 -2019,6,29,5,45,380.0,61.959677773701,45.0,18.0,0.0 -2019,6,29,6,0,638.0,140.78351156949117,81.0,19.7,0.0 -2019,6,29,6,15,638.0,172.4349409331576,81.0,19.7,0.0 -2019,6,29,6,30,638.0,204.29315817867223,81.0,19.7,0.0 -2019,6,29,6,45,638.0,236.22174152882764,81.0,19.7,0.0 -2019,6,29,7,0,793.0,332.5354020927067,100.0,22.6,0.0 -2019,6,29,7,15,793.0,371.88638692912605,100.0,22.6,0.0 -2019,6,29,7,30,793.0,410.81680026621353,100.0,22.6,0.0 -2019,6,29,7,45,793.0,449.15993609735415,100.0,22.6,0.0 -2019,6,29,8,0,891.0,539.5468833246921,105.0,25.9,0.0 -2019,6,29,8,15,891.0,580.7589761376676,105.0,25.9,0.0 -2019,6,29,8,30,891.0,620.7693896514918,105.0,25.9,0.0 -2019,6,29,8,45,891.0,659.4067931329888,105.0,25.9,0.0 -2019,6,29,9,0,955.0,736.9932404048661,103.0,28.6,0.2 -2019,6,29,9,15,955.0,774.9377349932523,103.0,28.6,0.2 -2019,6,29,9,30,955.0,810.900502915899,103.0,28.6,0.2 -2019,6,29,9,45,955.0,844.727546079457,103.0,28.6,0.2 -2019,6,29,10,0,993.0,902.0430301661095,98.0,30.9,1.6 -2019,6,29,10,15,993.0,932.3329631923001,98.0,30.9,1.6 -2019,6,29,10,30,993.0,959.9814052460497,98.0,30.9,1.6 -2019,6,29,10,45,993.0,984.8699614538176,98.0,30.9,1.6 -2019,6,29,11,0,1010.0,1019.4521407340701,95.0,32.9,2.3 -2019,6,29,11,15,1010.0,1038.83979691246,95.0,32.9,2.3 -2019,6,29,11,30,1010.0,1055.1329799093842,95.0,32.9,2.3 -2019,6,29,11,45,1010.0,1068.2619198138736,95.0,32.9,2.3 -2019,6,29,12,0,1008.0,1076.2235244174099,95.0,33.8,4.0 -2019,6,29,12,15,1008.0,1082.8559486742656,95.0,33.8,4.0 -2019,6,29,12,30,1008.0,1086.2035401991802,95.0,33.8,4.0 -2019,6,29,12,45,1008.0,1086.2519640913122,95.0,33.8,4.0 -2019,6,29,13,0,986.0,1065.4374988196744,99.0,33.2,6.6 -2019,6,29,13,15,986.0,1059.0437534342104,99.0,33.2,6.6 -2019,6,29,13,30,986.0,1049.4636394639988,99.0,33.2,6.6 -2019,6,29,13,45,986.0,1036.738180427826,99.0,33.2,6.6 -2019,6,29,14,0,943.0,985.7163510946469,104.0,32.7,5.8 -2019,6,29,14,15,943.0,967.6985126859294,104.0,32.7,5.8 -2019,6,29,14,30,943.0,946.8665447348527,104.0,32.7,5.8 -2019,6,29,14,45,943.0,923.3096529263661,104.0,32.7,5.8 -2019,6,29,15,0,872.0,838.4127639631871,105.0,32.3,6.2 -2019,6,29,15,15,872.0,811.8802172132849,105.0,32.3,6.2 -2019,6,29,15,30,872.0,783.1384760316599,105.0,32.3,6.2 -2019,6,29,15,45,872.0,752.3106169665642,105.0,32.3,6.2 -2019,6,29,16,0,764.0,635.4173031278398,97.0,31.4,5.9 -2019,6,29,16,15,764.0,605.1063932680398,97.0,31.4,5.9 -2019,6,29,16,30,764.0,573.3361849249611,97.0,31.4,5.9 -2019,6,29,16,45,764.0,540.2427230081801,97.0,31.4,5.9 -2019,6,29,17,0,589.0,390.29055808181965,75.0,30.9,5.6 -2019,6,29,17,15,589.0,363.06875459129753,75.0,30.9,5.6 -2019,6,29,17,30,589.0,335.1657698416369,75.0,30.9,5.6 -2019,6,29,17,45,589.0,306.70108869727994,75.0,30.9,5.6 -2019,6,29,18,0,322.0,143.86673279508017,33.0,29.1,4.4 -2019,6,29,18,15,322.0,127.89218694069056,33.0,29.1,4.4 -2019,6,29,18,30,322.0,111.81327478856562,33.0,29.1,4.4 -2019,6,29,18,45,322.0,95.69884870902004,33.0,29.1,4.4 -2019,6,29,19,0,0.0,0.0,0.0,26.4,3.0 -2019,6,29,19,15,0.0,0.0,0.0,26.4,3.0 -2019,6,29,19,30,0.0,0.0,0.0,26.4,3.0 -2019,6,29,19,45,0.0,0.0,0.0,26.4,3.0 -2019,6,29,20,0,0.0,0.0,0.0,24.3,2.5 -2019,6,29,20,15,0.0,0.0,0.0,24.3,2.5 -2019,6,29,20,30,0.0,0.0,0.0,24.3,2.5 -2019,6,29,20,45,0.0,0.0,0.0,24.3,2.5 -2019,6,29,21,0,0.0,0.0,0.0,23.2,1.5 -2019,6,29,21,15,0.0,0.0,0.0,23.2,1.5 -2019,6,29,21,30,0.0,0.0,0.0,23.2,1.5 -2019,6,29,21,45,0.0,0.0,0.0,23.2,1.5 -2019,6,29,22,0,0.0,0.0,0.0,22.1,1.3 -2019,6,29,22,15,0.0,0.0,0.0,22.1,1.3 -2019,6,29,22,30,0.0,0.0,0.0,22.1,1.3 -2019,6,29,22,45,0.0,0.0,0.0,22.1,1.3 -2019,6,29,23,0,0.0,0.0,0.0,20.9,0.2 -2019,6,29,23,15,0.0,0.0,0.0,20.9,0.2 -2019,6,29,23,30,0.0,0.0,0.0,20.9,0.2 -2019,6,29,23,45,0.0,0.0,0.0,20.9,0.2 -2019,6,30,0,0,0.0,0.0,0.0,19.2,1.9 -2019,6,30,0,15,0.0,0.0,0.0,19.2,1.9 -2019,6,30,0,30,0.0,0.0,0.0,19.2,1.9 -2019,6,30,0,45,0.0,0.0,0.0,19.2,1.9 -2019,6,30,1,0,0.0,0.0,0.0,17.7,0.0 -2019,6,30,1,15,0.0,0.0,0.0,17.7,0.0 -2019,6,30,1,30,0.0,0.0,0.0,17.7,0.0 -2019,6,30,1,45,0.0,0.0,0.0,17.7,0.0 -2019,6,30,2,0,0.0,0.0,0.0,17.1,0.0 -2019,6,30,2,15,0.0,0.0,0.0,17.1,0.0 -2019,6,30,2,30,0.0,0.0,0.0,17.1,0.0 -2019,6,30,2,45,0.0,0.0,0.0,17.1,0.0 -2019,6,30,3,0,0.0,0.0,0.0,16.0,0.0 -2019,6,30,3,15,0.0,0.0,0.0,16.0,0.0 -2019,6,30,3,30,0.0,0.0,0.0,16.0,0.0 -2019,6,30,3,45,0.0,0.0,0.0,16.0,0.0 -2019,6,30,4,0,100.0,-26.73310640286018,0.0,15.7,0.0 -2019,6,30,4,15,100.0,-22.764265270067227,0.0,15.7,0.0 -2019,6,30,4,30,100.0,-18.60434693529486,0.0,15.7,0.0 -2019,6,30,4,45,100.0,-14.271164807494955,0.0,15.7,0.0 -2019,6,30,5,0,355.0,11.269376455877932,46.0,17.1,0.0 -2019,6,30,5,15,355.0,27.682379627891727,46.0,17.1,0.0 -2019,6,30,5,30,355.0,44.506091450081954,46.0,17.1,0.0 -2019,6,30,5,45,355.0,61.66847020560256,46.0,17.1,0.0 -2019,6,30,6,0,603.0,142.21662660322585,86.0,20.3,0.0 -2019,6,30,6,15,603.0,172.1425845524279,86.0,20.3,0.0 -2019,6,30,6,30,603.0,202.26405738297996,86.0,20.3,0.0 -2019,6,30,6,45,603.0,232.45206032388938,86.0,20.3,0.0 -2019,6,30,7,0,754.0,329.7948624856721,109.0,22.5,0.2 -2019,6,30,7,15,754.0,367.2241762763556,109.0,22.5,0.2 -2019,6,30,7,30,754.0,404.25345681030217,109.0,22.5,0.2 -2019,6,30,7,45,754.0,440.7241390234273,109.0,22.5,0.2 -2019,6,30,8,0,850.0,532.2679607123362,118.0,24.8,1.9 -2019,6,30,8,15,850.0,571.5979647953859,118.0,24.8,1.9 -2019,6,30,8,30,850.0,609.7811683032598,118.0,24.8,1.9 -2019,6,30,8,45,850.0,646.6540648965453,118.0,24.8,1.9 -2019,6,30,9,0,914.0,724.52906574409,118.0,28.1,0.2 -2019,6,30,9,15,914.0,760.8577523657563,118.0,28.1,0.2 -2019,6,30,9,30,914.0,795.2891011050654,118.0,28.1,0.2 -2019,6,30,9,45,914.0,827.6756716407186,118.0,28.1,0.2 -2019,6,30,10,0,952.0,884.6396042447883,114.0,30.2,2.3 -2019,6,30,10,15,952.0,913.6894689150204,114.0,30.2,2.3 -2019,6,30,10,30,952.0,940.2059851222268,114.0,30.2,2.3 -2019,6,30,10,45,952.0,964.0756050731184,114.0,30.2,2.3 -2019,6,30,11,0,969.0,998.7531888796515,112.0,32.0,4.1 -2019,6,30,11,15,969.0,1017.3605939997959,112.0,32.0,4.1 -2019,6,30,11,30,969.0,1032.9980621873294,112.0,32.0,4.1 -2019,6,30,11,45,969.0,1045.598631402765,112.0,32.0,4.1 -2019,6,30,12,0,967.0,1053.1617840245588,112.0,33.7,4.3 -2019,6,30,12,15,967.0,1059.5267537390496,112.0,33.7,4.3 -2019,6,30,12,30,967.0,1062.739352608994,112.0,33.7,4.3 -2019,6,30,12,45,967.0,1062.785823792824,112.0,33.7,4.3 -2019,6,30,13,0,946.0,1042.0858386824516,115.0,32.1,6.1 -2019,6,30,13,15,946.0,1035.94924088756,115.0,32.1,6.1 -2019,6,30,13,30,946.0,1026.7544258425216,115.0,32.1,6.1 -2019,6,30,13,45,946.0,1014.5407671569728,115.0,32.1,6.1 -2019,6,30,14,0,902.0,962.2275160300396,119.0,31.6,5.3 -2019,6,30,14,15,902.0,944.9867867257833,119.0,31.6,5.3 -2019,6,30,14,30,902.0,925.0533012447678,119.0,31.6,5.3 -2019,6,30,14,45,902.0,902.5124178320677,119.0,31.6,5.3 -2019,6,30,15,0,832.0,816.6000766398537,117.0,30.7,6.6 -2019,6,30,15,15,832.0,791.2754016716084,117.0,30.7,6.6 -2019,6,30,15,30,832.0,763.8421039822802,117.0,30.7,6.6 -2019,6,30,15,45,832.0,734.4176571642113,117.0,30.7,6.6 -2019,6,30,16,0,726.0,616.4530918783844,105.0,29.7,5.8 -2019,6,30,16,15,726.0,587.6393052543074,105.0,29.7,5.8 -2019,6,30,16,30,726.0,557.4382981438603,105.0,29.7,5.8 -2019,6,30,16,45,726.0,525.9793958960328,105.0,29.7,5.8 -2019,6,30,17,0,557.0,376.9852642843927,79.0,28.8,5.0 -2019,6,30,17,15,557.0,351.2330311384442,79.0,28.8,5.0 -2019,6,30,17,30,557.0,324.83639033574025,79.0,28.8,5.0 -2019,6,30,17,45,557.0,297.9083763446839,79.0,28.8,5.0 -2019,6,30,18,0,302.0,136.8643057714275,33.0,27.5,3.9 -2019,6,30,18,15,302.0,121.87651256967125,33.0,27.5,3.9 -2019,6,30,18,30,302.0,106.79079980876459,33.0,27.5,3.9 -2019,6,30,18,45,302.0,91.67176682675026,33.0,27.5,3.9 -2019,6,30,19,0,0.0,0.0,0.0,25.3,2.6 -2019,6,30,19,15,0.0,0.0,0.0,25.3,2.6 -2019,6,30,19,30,0.0,0.0,0.0,25.3,2.6 -2019,6,30,19,45,0.0,0.0,0.0,25.3,2.6 -2019,6,30,20,0,0.0,0.0,0.0,23.1,2.7 -2019,6,30,20,15,0.0,0.0,0.0,23.1,2.7 -2019,6,30,20,30,0.0,0.0,0.0,23.1,2.7 -2019,6,30,20,45,0.0,0.0,0.0,23.1,2.7 -2019,6,30,21,0,0.0,0.0,0.0,21.5,3.4 -2019,6,30,21,15,0.0,0.0,0.0,21.5,3.4 -2019,6,30,21,30,0.0,0.0,0.0,21.5,3.4 -2019,6,30,21,45,0.0,0.0,0.0,21.5,3.4 -2019,6,30,22,0,0.0,0.0,0.0,19.9,1.6 -2019,6,30,22,15,0.0,0.0,0.0,19.9,1.6 -2019,6,30,22,30,0.0,0.0,0.0,19.9,1.6 -2019,6,30,22,45,0.0,0.0,0.0,19.9,1.6 -2019,6,30,23,0,0.0,0.0,0.0,19.3,1.9 -2019,6,30,23,15,0.0,0.0,0.0,19.3,1.9 -2019,6,30,23,30,0.0,0.0,0.0,19.3,1.9 -2019,6,30,23,45,0.0,0.0,0.0,19.3,1.9 -2019,7,1,0,0,0.0,0.0,0.0,18.7,0.0 -2019,7,1,0,15,0.0,0.0,0.0,18.7,0.0 -2019,7,1,0,30,0.0,0.0,0.0,18.7,0.0 -2019,7,1,0,45,0.0,0.0,0.0,18.7,0.0 -2019,7,1,1,0,0.0,0.0,0.0,17.1,0.0 -2019,7,1,1,15,0.0,0.0,0.0,17.1,0.0 -2019,7,1,1,30,0.0,0.0,0.0,17.1,0.0 -2019,7,1,1,45,0.0,0.0,0.0,17.1,0.0 -2019,7,1,2,0,0.0,0.0,0.0,16.6,0.0 -2019,7,1,2,15,0.0,0.0,0.0,16.6,0.0 -2019,7,1,2,30,0.0,0.0,0.0,16.6,0.0 -2019,7,1,2,45,0.0,0.0,0.0,16.6,0.0 -2019,7,1,3,0,0.0,0.0,0.0,16.0,0.0 -2019,7,1,3,15,0.0,0.0,0.0,16.0,0.0 -2019,7,1,3,30,0.0,0.0,0.0,16.0,0.0 -2019,7,1,3,45,0.0,0.0,0.0,16.0,0.0 -2019,7,1,4,0,118.0,-31.626911132500233,0.0,15.7,0.0 -2019,7,1,4,15,118.0,-26.94173606044622,0.0,15.7,0.0 -2019,7,1,4,30,118.0,-22.030996367990824,0.0,15.7,0.0 -2019,7,1,4,45,118.0,-16.915720596407727,0.0,15.7,0.0 -2019,7,1,5,0,216.0,28.733494587777717,50.0,16.3,0.0 -2019,7,1,5,15,216.0,38.724140179630346,50.0,16.3,0.0 -2019,7,1,5,30,216.0,48.964785392053074,50.0,16.3,0.0 -2019,7,1,5,45,216.0,59.41157821007391,50.0,16.3,0.0 -2019,7,1,6,0,433.0,150.13225191060155,110.0,18.1,0.0 -2019,7,1,6,15,433.0,171.63028599540746,110.0,18.1,0.0 -2019,7,1,6,30,433.0,193.26877291351906,110.0,18.1,0.0 -2019,7,1,6,45,433.0,214.95505334195207,110.0,18.1,0.0 -2019,7,1,7,0,578.0,319.9899311468258,151.0,20.3,0.0 -2019,7,1,7,15,578.0,348.6943302086834,151.0,20.3,0.0 -2019,7,1,7,30,578.0,377.09194528022783,151.0,20.3,0.0 -2019,7,1,7,45,578.0,405.0611734140419,151.0,20.3,0.0 -2019,7,1,8,0,642.0,498.6498304225292,186.0,22.5,0.3 -2019,7,1,8,15,642.0,528.367872645626,186.0,22.5,0.3 -2019,7,1,8,30,642.0,557.2193838649989,186.0,22.5,0.3 -2019,7,1,8,45,642.0,585.0808174802423,186.0,22.5,0.3 -2019,7,1,9,0,780.0,687.3670341325471,170.0,25.2,2.3 -2019,7,1,9,15,780.0,718.3824926369017,170.0,25.2,2.3 -2019,7,1,9,30,780.0,747.7781071603321,170.0,25.2,2.3 -2019,7,1,9,45,780.0,775.4280011685519,170.0,25.2,2.3 -2019,7,1,10,0,814.0,832.7282201107827,174.0,27.0,0.2 -2019,7,1,10,15,814.0,857.5773777747811,174.0,27.0,0.2 -2019,7,1,10,30,814.0,880.2595175855058,174.0,27.0,0.2 -2019,7,1,10,45,814.0,900.6775111380617,174.0,27.0,0.2 -2019,7,1,11,0,907.0,968.8313763914407,139.0,29.5,2.3 -2019,7,1,11,15,907.0,986.2554390730332,139.0,29.5,2.3 -2019,7,1,11,30,907.0,1000.8984386810772,139.0,29.5,2.3 -2019,7,1,11,45,907.0,1012.6976716432171,139.0,29.5,2.3 -2019,7,1,12,0,829.0,980.7007334168767,174.0,30.1,4.2 -2019,7,1,12,15,829.0,986.1596253838403,174.0,30.1,4.2 -2019,7,1,12,30,829.0,988.9148985353042,174.0,30.1,4.2 -2019,7,1,12,45,829.0,988.9547543686363,174.0,30.1,4.2 -2019,7,1,13,0,883.0,1006.1898391023884,141.0,30.6,5.2 -2019,7,1,13,15,883.0,1000.4595395100687,141.0,30.6,5.2 -2019,7,1,13,30,883.0,991.8735042727749,141.0,30.6,5.2 -2019,7,1,13,45,883.0,980.4685001115457,141.0,30.6,5.2 -2019,7,1,14,0,830.0,920.7570701633696,145.0,30.5,5.7 -2019,7,1,14,15,830.0,904.885960609681,145.0,30.5,5.7 -2019,7,1,14,30,830.0,886.5360099624106,145.0,30.5,5.7 -2019,7,1,14,45,830.0,865.7857955273657,145.0,30.5,5.7 -2019,7,1,15,0,682.0,736.3107059319524,163.0,29.6,5.7 -2019,7,1,15,15,682.0,715.5431671573001,163.0,29.6,5.7 -2019,7,1,15,30,682.0,693.0464490673709,163.0,29.6,5.7 -2019,7,1,15,45,682.0,668.9168860627849,163.0,29.6,5.7 -2019,7,1,16,0,568.0,539.9801070875112,140.0,28.3,5.4 -2019,7,1,16,15,568.0,517.4277389440645,140.0,28.3,5.4 -2019,7,1,16,30,568.0,493.7896021193641,140.0,28.3,5.4 -2019,7,1,16,45,568.0,469.1669187442861,140.0,28.3,5.4 -2019,7,1,17,0,412.0,316.26414136412757,96.0,27.7,4.9 -2019,7,1,17,15,412.0,297.20790995744574,96.0,27.7,4.9 -2019,7,1,17,30,412.0,277.6748274226394,96.0,27.7,4.9 -2019,7,1,17,45,412.0,257.74853741789593,96.0,27.7,4.9 -2019,7,1,18,0,246.0,119.49644265663646,35.0,26.4,3.2 -2019,7,1,18,15,246.0,107.28277895025715,35.0,26.4,3.2 -2019,7,1,18,30,246.0,94.98931986975956,35.0,26.4,3.2 -2019,7,1,18,45,246.0,82.66870789425258,35.0,26.4,3.2 -2019,7,1,19,0,0.0,0.0,0.0,24.1,4.0 -2019,7,1,19,15,0.0,0.0,0.0,24.1,4.0 -2019,7,1,19,30,0.0,0.0,0.0,24.1,4.0 -2019,7,1,19,45,0.0,0.0,0.0,24.1,4.0 -2019,7,1,20,0,0.0,0.0,0.0,22.1,3.0 -2019,7,1,20,15,0.0,0.0,0.0,22.1,3.0 -2019,7,1,20,30,0.0,0.0,0.0,22.1,3.0 -2019,7,1,20,45,0.0,0.0,0.0,22.1,3.0 -2019,7,1,21,0,0.0,0.0,0.0,21.0,2.1 -2019,7,1,21,15,0.0,0.0,0.0,21.0,2.1 -2019,7,1,21,30,0.0,0.0,0.0,21.0,2.1 -2019,7,1,21,45,0.0,0.0,0.0,21.0,2.1 -2019,7,1,22,0,0.0,0.0,0.0,19.9,1.9 -2019,7,1,22,15,0.0,0.0,0.0,19.9,1.9 -2019,7,1,22,30,0.0,0.0,0.0,19.9,1.9 -2019,7,1,22,45,0.0,0.0,0.0,19.9,1.9 -2019,7,1,23,0,0.0,0.0,0.0,19.3,0.2 -2019,7,1,23,15,0.0,0.0,0.0,19.3,0.2 -2019,7,1,23,30,0.0,0.0,0.0,19.3,0.2 -2019,7,1,23,45,0.0,0.0,0.0,19.3,0.2 -2019,7,2,0,0,0.0,0.0,0.0,18.7,2.0 -2019,7,2,0,15,0.0,0.0,0.0,18.7,2.0 -2019,7,2,0,30,0.0,0.0,0.0,18.7,2.0 -2019,7,2,0,45,0.0,0.0,0.0,18.7,2.0 -2019,7,2,1,0,0.0,0.0,0.0,17.2,1.3 -2019,7,2,1,15,0.0,0.0,0.0,17.2,1.3 -2019,7,2,1,30,0.0,0.0,0.0,17.2,1.3 -2019,7,2,1,45,0.0,0.0,0.0,17.2,1.3 -2019,7,2,2,0,0.0,0.0,0.0,17.2,0.0 -2019,7,2,2,15,0.0,0.0,0.0,17.2,0.0 -2019,7,2,2,30,0.0,0.0,0.0,17.2,0.0 -2019,7,2,2,45,0.0,0.0,0.0,17.2,0.0 -2019,7,2,3,0,0.0,0.0,0.0,17.1,0.0 -2019,7,2,3,15,0.0,0.0,0.0,17.1,0.0 -2019,7,2,3,30,0.0,0.0,0.0,17.1,0.0 -2019,7,2,3,45,0.0,0.0,0.0,17.1,0.0 -2019,7,2,4,0,146.0,-39.245387377872696,0.0,16.7,0.3 -2019,7,2,4,15,146.0,-33.445780678055954,0.0,16.7,0.3 -2019,7,2,4,30,146.0,-27.36695579245049,0.0,16.7,0.3 -2019,7,2,4,45,146.0,-21.034943182454825,0.0,16.7,0.3 -2019,7,2,5,0,150.0,35.12651626900029,50.0,16.8,1.3 -2019,7,2,5,15,150.0,42.06769027124555,50.0,16.8,1.3 -2019,7,2,5,30,150.0,49.182555838357025,50.0,16.8,1.3 -2019,7,2,5,45,150.0,56.440646023682305,50.0,16.8,1.3 -2019,7,2,6,0,287.0,152.4248181587314,126.0,17.5,0.2 -2019,7,2,6,15,287.0,166.680717427227,126.0,17.5,0.2 -2019,7,2,6,30,287.0,181.02975458152554,126.0,17.5,0.2 -2019,7,2,6,45,287.0,195.4104848416282,126.0,17.5,0.2 -2019,7,2,7,0,432.0,310.0797685432958,184.0,19.7,1.9 -2019,7,2,7,15,432.0,331.5435500171039,184.0,19.7,1.9 -2019,7,2,7,30,432.0,352.7779330452747,184.0,19.7,1.9 -2019,7,2,7,45,432.0,373.69198873972005,184.0,19.7,1.9 -2019,7,2,8,0,554.0,483.5571124684195,214.0,22.5,0.2 -2019,7,2,8,15,554.0,509.2135765460075,214.0,22.5,0.2 -2019,7,2,8,30,554.0,534.1219388003914,214.0,22.5,0.2 -2019,7,2,8,45,554.0,558.1755378003966,214.0,22.5,0.2 -2019,7,2,9,0,773.0,684.4562650191707,172.0,25.3,2.3 -2019,7,2,9,15,773.0,715.207670335014,172.0,25.3,2.3 -2019,7,2,9,30,773.0,744.353022372656,172.0,25.3,2.3 -2019,7,2,9,45,773.0,771.7675162601957,172.0,25.3,2.3 -2019,7,2,10,0,829.0,837.6360752260042,167.0,27.4,3.4 -2019,7,2,10,15,829.0,862.9549072669406,167.0,27.4,3.4 -2019,7,2,10,30,829.0,886.065762611096,167.0,27.4,3.4 -2019,7,2,10,45,829.0,906.8696770278435,167.0,27.4,3.4 -2019,7,2,11,0,824.0,930.7041176459628,177.0,29.0,2.4 -2019,7,2,11,15,824.0,946.5410557694098,177.0,29.0,2.4 -2019,7,2,11,30,824.0,959.8502525378099,177.0,29.0,2.4 -2019,7,2,11,45,824.0,970.5747159273358,177.0,29.0,2.4 -2019,7,2,12,0,796.0,963.4273587656381,189.0,30.1,4.5 -2019,7,2,12,15,796.0,968.6713856229766,189.0,30.1,4.5 -2019,7,2,12,30,796.0,971.3182096475261,189.0,30.1,4.5 -2019,7,2,12,45,796.0,971.3564967324656,189.0,30.1,4.5 -2019,7,2,13,0,807.0,964.5620212585202,174.0,30.5,4.2 -2019,7,2,13,15,807.0,959.3224948934336,174.0,30.5,4.2 -2019,7,2,13,30,807.0,951.4718132191877,174.0,30.5,4.2 -2019,7,2,13,45,807.0,941.0435940599701,174.0,30.5,4.2 -2019,7,2,14,0,779.0,892.9185399941477,165.0,29.9,4.7 -2019,7,2,14,15,779.0,878.0157176162663,165.0,29.9,4.7 -2019,7,2,14,30,779.0,860.7852868001921,165.0,29.9,4.7 -2019,7,2,14,45,779.0,841.3010308959438,165.0,29.9,4.7 -2019,7,2,15,0,690.0,740.8536653276258,161.0,29.2,5.6 -2019,7,2,15,15,690.0,719.8327503046146,161.0,29.2,5.6 -2019,7,2,15,30,690.0,697.0615589565942,161.0,29.2,5.6 -2019,7,2,15,45,690.0,672.6376010208137,161.0,29.2,5.6 -2019,7,2,16,0,526.0,519.2319331476791,149.0,28.0,5.1 -2019,7,2,16,15,526.0,498.33745969491446,149.0,28.0,5.1 -2019,7,2,16,30,526.0,476.4370357919799,149.0,28.0,5.1 -2019,7,2,16,45,526.0,453.62444241624195,149.0,28.0,5.1 -2019,7,2,17,0,348.0,288.90700299427067,103.0,26.9,4.7 -2019,7,2,17,15,348.0,272.8034793090617,103.0,26.9,4.7 -2019,7,2,17,30,348.0,256.29699119336306,103.0,26.9,4.7 -2019,7,2,17,45,348.0,239.45822196340842,103.0,26.9,4.7 -2019,7,2,18,0,145.0,85.73303242257305,36.0,24.7,5.5 -2019,7,2,18,15,145.0,78.53057460399515,36.0,24.7,5.5 -2019,7,2,18,30,145.0,71.28106105914048,36.0,24.7,5.5 -2019,7,2,18,45,145.0,64.0155353179736,36.0,24.7,5.5 -2019,7,2,19,0,0.0,0.0,0.0,22.0,3.5 -2019,7,2,19,15,0.0,0.0,0.0,22.0,3.5 -2019,7,2,19,30,0.0,0.0,0.0,22.0,3.5 -2019,7,2,19,45,0.0,0.0,0.0,22.0,3.5 -2019,7,2,20,0,0.0,0.0,0.0,20.4,2.5 -2019,7,2,20,15,0.0,0.0,0.0,20.4,2.5 -2019,7,2,20,30,0.0,0.0,0.0,20.4,2.5 -2019,7,2,20,45,0.0,0.0,0.0,20.4,2.5 -2019,7,2,21,0,0.0,0.0,0.0,18.8,2.1 -2019,7,2,21,15,0.0,0.0,0.0,18.8,2.1 -2019,7,2,21,30,0.0,0.0,0.0,18.8,2.1 -2019,7,2,21,45,0.0,0.0,0.0,18.8,2.1 -2019,7,2,22,0,0.0,0.0,0.0,17.8,2.0 -2019,7,2,22,15,0.0,0.0,0.0,17.8,2.0 -2019,7,2,22,30,0.0,0.0,0.0,17.8,2.0 -2019,7,2,22,45,0.0,0.0,0.0,17.8,2.0 -2019,7,2,23,0,0.0,0.0,0.0,17.7,1.6 -2019,7,2,23,15,0.0,0.0,0.0,17.7,1.6 -2019,7,2,23,30,0.0,0.0,0.0,17.7,1.6 -2019,7,2,23,45,0.0,0.0,0.0,17.7,1.6 -2019,7,3,0,0,0.0,0.0,0.0,16.7,2.2 -2019,7,3,0,15,0.0,0.0,0.0,16.7,2.2 -2019,7,3,0,30,0.0,0.0,0.0,16.7,2.2 -2019,7,3,0,45,0.0,0.0,0.0,16.7,2.2 -2019,7,3,1,0,0.0,0.0,0.0,16.7,2.3 -2019,7,3,1,15,0.0,0.0,0.0,16.7,2.3 -2019,7,3,1,30,0.0,0.0,0.0,16.7,2.3 -2019,7,3,1,45,0.0,0.0,0.0,16.7,2.3 -2019,7,3,2,0,0.0,0.0,0.0,16.7,0.0 -2019,7,3,2,15,0.0,0.0,0.0,16.7,0.0 -2019,7,3,2,30,0.0,0.0,0.0,16.7,0.0 -2019,7,3,2,45,0.0,0.0,0.0,16.7,0.0 -2019,7,3,3,0,0.0,0.0,0.0,16.7,0.0 -2019,7,3,3,15,0.0,0.0,0.0,16.7,0.0 -2019,7,3,3,30,0.0,0.0,0.0,16.7,0.0 -2019,7,3,3,45,0.0,0.0,0.0,16.7,0.0 -2019,7,3,4,0,1.0,0.7303312150770278,1.0,16.7,0.0 -2019,7,3,4,15,1.0,0.770074985612593,1.0,16.7,0.0 -2019,7,3,4,30,1.0,0.8117321933999802,1.0,16.7,0.0 -2019,7,3,4,45,1.0,0.8551244558801111,1.0,16.7,0.0 -2019,7,3,5,0,3.0,17.700197882170038,18.0,16.7,0.0 -2019,7,3,5,15,3.0,17.8390927845192,18.0,16.7,0.0 -2019,7,3,5,30,3.0,17.981463305392428,18.0,16.7,0.0 -2019,7,3,5,45,3.0,18.12669979236222,18.0,16.7,0.0 -2019,7,3,6,0,1.0,47.09139344016476,47.0,16.8,0.0 -2019,7,3,6,15,1.0,47.14109111850849,47.0,16.8,0.0 -2019,7,3,6,30,1.0,47.19111348606356,47.0,16.8,0.0 -2019,7,3,6,45,1.0,47.2412463393725,47.0,16.8,0.0 -2019,7,3,7,0,0.0,69.0,69.0,18.0,0.4 -2019,7,3,7,15,0.0,69.0,69.0,18.0,0.4 -2019,7,3,7,30,0.0,69.0,69.0,18.0,0.4 -2019,7,3,7,45,0.0,69.0,69.0,18.0,0.4 -2019,7,3,8,0,9.0,231.3748014293196,227.0,19.3,0.3 -2019,7,3,8,15,9.0,231.79181762968562,227.0,19.3,0.3 -2019,7,3,8,30,9.0,232.19667429868147,227.0,19.3,0.3 -2019,7,3,8,45,9.0,232.58763777789574,227.0,19.3,0.3 -2019,7,3,9,0,416.0,589.6246781224984,314.0,21.4,2.1 -2019,7,3,9,15,416.0,606.1824610166822,314.0,21.4,2.1 -2019,7,3,9,30,416.0,621.8754807813823,314.0,21.4,2.1 -2019,7,3,9,45,416.0,636.63653749673,314.0,21.4,2.1 -2019,7,3,10,0,613.0,760.7083767252387,265.0,24.2,2.2 -2019,7,3,10,15,613.0,779.4398954754093,265.0,24.2,2.2 -2019,7,3,10,30,613.0,796.5378966593341,265.0,24.2,2.2 -2019,7,3,10,45,613.0,811.9291640110108,265.0,24.2,2.2 -2019,7,3,11,0,779.0,910.3437654544991,198.0,26.3,2.6 -2019,7,3,11,15,779.0,925.3235251153343,198.0,26.3,2.6 -2019,7,3,11,30,779.0,937.9123580902026,198.0,26.3,2.6 -2019,7,3,11,45,779.0,948.0563570636326,198.0,26.3,2.6 -2019,7,3,12,0,863.0,997.4165961281816,158.0,27.8,3.0 -2019,7,3,12,15,863.0,1003.104942257752,158.0,27.8,3.0 -2019,7,3,12,30,863.0,1005.9760280865041,158.0,27.8,3.0 -2019,7,3,12,45,863.0,1006.0175591841421,158.0,27.8,3.0 -2019,7,3,13,0,790.0,954.7325522473031,181.0,27.7,6.2 -2019,7,3,13,15,790.0,949.6007611825491,181.0,27.7,6.2 -2019,7,3,13,30,790.0,941.9115054634482,181.0,27.7,6.2 -2019,7,3,13,45,790.0,931.6977116634653,181.0,27.7,6.2 -2019,7,3,14,0,728.0,864.0838848630776,184.0,27.1,6.2 -2019,7,3,14,15,728.0,850.149563365092,184.0,27.1,6.2 -2019,7,3,14,30,728.0,834.0388994618357,184.0,27.1,6.2 -2019,7,3,14,45,728.0,815.8208814894969,184.0,27.1,6.2 -2019,7,3,15,0,637.0,713.1268315731744,178.0,26.6,6.1 -2019,7,3,15,15,637.0,693.7105823535022,178.0,26.6,6.1 -2019,7,3,15,30,637.0,672.6776670042884,178.0,26.6,6.1 -2019,7,3,15,45,637.0,650.1181516980907,178.0,26.6,6.1 -2019,7,3,16,0,535.0,523.371777492032,147.0,25.8,5.6 -2019,7,3,16,15,535.0,502.1088602555044,147.0,25.8,5.6 -2019,7,3,16,30,535.0,479.82225408925245,147.0,25.8,5.6 -2019,7,3,16,45,535.0,456.60739366238226,147.0,25.8,5.6 -2019,7,3,17,0,361.0,294.6887692976109,102.0,24.9,4.9 -2019,7,3,17,15,361.0,277.9750827149285,102.0,24.9,4.9 -2019,7,3,17,30,361.0,260.8431633698501,102.0,24.9,4.9 -2019,7,3,17,45,361.0,243.36637277115173,102.0,24.9,4.9 -2019,7,3,18,0,188.0,99.37804779285688,35.0,23.7,3.5 -2019,7,3,18,15,188.0,90.03488426423435,35.0,23.7,3.5 -2019,7,3,18,30,188.0,80.63067916388223,35.0,23.7,3.5 -2019,7,3,18,45,188.0,71.20570274179998,35.0,23.7,3.5 -2019,7,3,19,0,0.0,0.0,0.0,21.9,3.1 -2019,7,3,19,15,0.0,0.0,0.0,21.9,3.1 -2019,7,3,19,30,0.0,0.0,0.0,21.9,3.1 -2019,7,3,19,45,0.0,0.0,0.0,21.9,3.1 -2019,7,3,20,0,0.0,0.0,0.0,19.3,3.0 -2019,7,3,20,15,0.0,0.0,0.0,19.3,3.0 -2019,7,3,20,30,0.0,0.0,0.0,19.3,3.0 -2019,7,3,20,45,0.0,0.0,0.0,19.3,3.0 -2019,7,3,21,0,0.0,0.0,0.0,18.8,2.5 -2019,7,3,21,15,0.0,0.0,0.0,18.8,2.5 -2019,7,3,21,30,0.0,0.0,0.0,18.8,2.5 -2019,7,3,21,45,0.0,0.0,0.0,18.8,2.5 -2019,7,3,22,0,0.0,0.0,0.0,17.7,1.5 -2019,7,3,22,15,0.0,0.0,0.0,17.7,1.5 -2019,7,3,22,30,0.0,0.0,0.0,17.7,1.5 -2019,7,3,22,45,0.0,0.0,0.0,17.7,1.5 -2019,7,3,23,0,0.0,0.0,0.0,17.1,1.6 -2019,7,3,23,15,0.0,0.0,0.0,17.1,1.6 -2019,7,3,23,30,0.0,0.0,0.0,17.1,1.6 -2019,7,3,23,45,0.0,0.0,0.0,17.1,1.6 -2019,7,4,0,0,0.0,0.0,0.0,16.6,2.2 -2019,7,4,0,15,0.0,0.0,0.0,16.6,2.2 -2019,7,4,0,30,0.0,0.0,0.0,16.6,2.2 -2019,7,4,0,45,0.0,0.0,0.0,16.6,2.2 -2019,7,4,1,0,0.0,0.0,0.0,16.2,1.5 -2019,7,4,1,15,0.0,0.0,0.0,16.2,1.5 -2019,7,4,1,30,0.0,0.0,0.0,16.2,1.5 -2019,7,4,1,45,0.0,0.0,0.0,16.2,1.5 -2019,7,4,2,0,0.0,0.0,0.0,16.7,1.3 -2019,7,4,2,15,0.0,0.0,0.0,16.7,1.3 -2019,7,4,2,30,0.0,0.0,0.0,16.7,1.3 -2019,7,4,2,45,0.0,0.0,0.0,16.7,1.3 -2019,7,4,3,0,0.0,0.0,0.0,16.6,0.3 -2019,7,4,3,15,0.0,0.0,0.0,16.6,0.3 -2019,7,4,3,30,0.0,0.0,0.0,16.6,0.3 -2019,7,4,3,45,0.0,0.0,0.0,16.6,0.3 -2019,7,4,4,0,1.0,0.7293814179037901,1.0,16.2,1.3 -2019,7,4,4,15,1.0,0.769147579063744,1.0,16.2,1.3 -2019,7,4,4,30,1.0,0.8108282554571561,1.0,16.2,1.3 -2019,7,4,4,45,1.0,0.8542449640287744,1.0,16.2,1.3 -2019,7,4,5,0,3.0,17.697635363301128,18.0,16.8,0.2 -2019,7,4,5,15,3.0,17.836608515487836,18.0,16.8,0.2 -2019,7,4,5,30,3.0,17.979059244273245,18.0,16.8,0.2 -2019,7,4,5,45,3.0,18.12437755376726,18.0,16.8,0.2 -2019,7,4,6,0,1.0,47.09064705621965,47.0,17.3,1.5 -2019,7,4,6,15,1.0,47.14037273296499,47.0,17.3,1.5 -2019,7,4,6,30,1.0,47.190423281843266,47.0,17.3,1.5 -2019,7,4,6,45,1.0,47.24058437872027,47.0,17.3,1.5 -2019,7,4,7,0,0.0,76.0,76.0,18.4,1.5 -2019,7,4,7,15,0.0,76.0,76.0,18.4,1.5 -2019,7,4,7,30,0.0,76.0,76.0,18.4,1.5 -2019,7,4,7,45,0.0,76.0,76.0,18.4,1.5 -2019,7,4,8,0,0.0,121.0,121.0,19.1,1.6 -2019,7,4,8,15,0.0,121.0,121.0,19.1,1.6 -2019,7,4,8,30,0.0,121.0,121.0,19.1,1.6 -2019,7,4,8,45,0.0,121.0,121.0,19.1,1.6 -2019,7,4,9,0,325.0,560.1937835848612,345.0,21.4,2.1 -2019,7,4,9,15,325.0,573.1368391519048,345.0,21.4,2.1 -2019,7,4,9,30,325.0,585.4039179104128,345.0,21.4,2.1 -2019,7,4,9,45,325.0,596.942490345865,345.0,21.4,2.1 -2019,7,4,10,0,522.0,727.9416691792674,306.0,23.6,2.2 -2019,7,4,10,15,522.0,743.9014756717761,306.0,23.6,2.2 -2019,7,4,10,30,522.0,758.4694770145206,306.0,23.6,2.2 -2019,7,4,10,45,522.0,771.5832907892307,306.0,23.6,2.2 -2019,7,4,11,0,639.0,849.1424151013074,265.0,25.8,3.0 -2019,7,4,11,15,639.0,861.4369710458711,265.0,25.8,3.0 -2019,7,4,11,30,639.0,871.769186968597,265.0,25.8,3.0 -2019,7,4,11,45,639.0,880.0948187346729,265.0,25.8,3.0 -2019,7,4,12,0,787.0,958.2967996515226,193.0,27.1,5.8 -2019,7,4,12,15,787.0,963.4871246553703,193.0,27.1,5.8 -2019,7,4,12,30,787.0,966.1068436783914,193.0,27.1,5.8 -2019,7,4,12,45,787.0,966.1447386815431,193.0,27.1,5.8 -2019,7,4,13,0,553.0,828.4766937841296,287.0,26.7,6.0 -2019,7,4,13,15,553.0,824.8824162548669,287.0,26.7,6.0 -2019,7,4,13,30,553.0,819.4969049004128,287.0,26.7,6.0 -2019,7,4,13,45,553.0,812.3432213071857,287.0,26.7,6.0 -2019,7,4,14,0,524.0,753.3686207790427,264.0,26.6,4.6 -2019,7,4,14,15,524.0,743.3333213408714,264.0,26.6,4.6 -2019,7,4,14,30,524.0,731.7306511684997,264.0,26.6,4.6 -2019,7,4,14,45,524.0,718.6102946768802,264.0,26.6,4.6 -2019,7,4,15,0,509.0,644.4322014133834,217.0,25.8,4.7 -2019,7,4,15,15,509.0,628.908749906907,217.0,25.8,4.7 -2019,7,4,15,30,509.0,612.0927604864306,217.0,25.8,4.7 -2019,7,4,15,45,509.0,594.0562418002903,217.0,25.8,4.7 -2019,7,4,16,0,464.0,488.23705904047114,162.0,24.7,5.5 -2019,7,4,16,15,464.0,469.7855602622523,162.0,24.7,5.5 -2019,7,4,16,30,464.0,450.4457264157093,162.0,24.7,5.5 -2019,7,4,16,45,464.0,430.30037363847833,162.0,24.7,5.5 -2019,7,4,17,0,293.0,264.2471548603646,108.0,23.7,6.1 -2019,7,4,17,15,293.0,250.67411033012917,108.0,23.7,6.1 -2019,7,4,17,30,293.0,236.76142248542098,108.0,23.7,6.1 -2019,7,4,17,45,293.0,222.56866759150563,108.0,23.7,6.1 -2019,7,4,18,0,138.0,82.17274309255131,35.0,22.0,4.9 -2019,7,4,18,15,138.0,75.31059970169406,35.0,22.0,4.9 -2019,7,4,18,30,138.0,68.40362395649248,35.0,22.0,4.9 -2019,7,4,18,45,138.0,61.48139258746576,35.0,22.0,4.9 -2019,7,4,19,0,0.0,0.0,0.0,20.5,3.0 -2019,7,4,19,15,0.0,0.0,0.0,20.5,3.0 -2019,7,4,19,30,0.0,0.0,0.0,20.5,3.0 -2019,7,4,19,45,0.0,0.0,0.0,20.5,3.0 -2019,7,4,20,0,0.0,0.0,0.0,19.2,2.6 -2019,7,4,20,15,0.0,0.0,0.0,19.2,2.6 -2019,7,4,20,30,0.0,0.0,0.0,19.2,2.6 -2019,7,4,20,45,0.0,0.0,0.0,19.2,2.6 -2019,7,4,21,0,0.0,0.0,0.0,17.7,2.6 -2019,7,4,21,15,0.0,0.0,0.0,17.7,2.6 -2019,7,4,21,30,0.0,0.0,0.0,17.7,2.6 -2019,7,4,21,45,0.0,0.0,0.0,17.7,2.6 -2019,7,4,22,0,0.0,0.0,0.0,17.1,2.5 -2019,7,4,22,15,0.0,0.0,0.0,17.1,2.5 -2019,7,4,22,30,0.0,0.0,0.0,17.1,2.5 -2019,7,4,22,45,0.0,0.0,0.0,17.1,2.5 -2019,7,4,23,0,0.0,0.0,0.0,16.6,2.0 -2019,7,4,23,15,0.0,0.0,0.0,16.6,2.0 -2019,7,4,23,30,0.0,0.0,0.0,16.6,2.0 -2019,7,4,23,45,0.0,0.0,0.0,16.6,2.0 -2019,7,5,0,0,0.0,0.0,0.0,16.2,1.6 -2019,7,5,0,15,0.0,0.0,0.0,16.2,1.6 -2019,7,5,0,30,0.0,0.0,0.0,16.2,1.6 -2019,7,5,0,45,0.0,0.0,0.0,16.2,1.6 -2019,7,5,1,0,0.0,0.0,0.0,16.7,2.5 -2019,7,5,1,15,0.0,0.0,0.0,16.7,2.5 -2019,7,5,1,30,0.0,0.0,0.0,16.7,2.5 -2019,7,5,1,45,0.0,0.0,0.0,16.7,2.5 -2019,7,5,2,0,0.0,0.0,0.0,16.8,1.3 -2019,7,5,2,15,0.0,0.0,0.0,16.8,1.3 -2019,7,5,2,30,0.0,0.0,0.0,16.8,1.3 -2019,7,5,2,45,0.0,0.0,0.0,16.8,1.3 -2019,7,5,3,0,0.0,0.0,0.0,17.2,0.2 -2019,7,5,3,15,0.0,0.0,0.0,17.2,0.2 -2019,7,5,3,30,0.0,0.0,0.0,17.2,0.2 -2019,7,5,3,45,0.0,0.0,0.0,17.2,0.2 -2019,7,5,4,0,1.0,0.7283469963632465,1.0,17.2,1.5 -2019,7,5,4,15,1.0,0.7681374763022999,1.0,17.2,1.5 -2019,7,5,4,30,1.0,0.8098436422861663,1.0,17.2,1.5 -2019,7,5,4,45,1.0,0.8532869021092548,1.0,17.2,1.5 -2019,7,5,5,0,3.0,17.694843675190423,18.0,17.3,1.3 -2019,7,5,5,15,3.0,17.833901815650833,18.0,17.3,1.3 -2019,7,5,5,30,3.0,17.97643965940296,18.0,17.3,1.3 -2019,7,5,5,45,3.0,18.12184683751704,18.0,17.3,1.3 -2019,7,5,6,0,1.0,47.08983356471103,47.0,17.8,0.0 -2019,7,5,6,15,1.0,47.139589650922936,47.0,17.8,0.0 -2019,7,5,6,30,1.0,47.18967080794156,47.0,17.8,0.0 -2019,7,5,6,45,1.0,47.23986258056394,47.0,17.8,0.0 -2019,7,5,7,0,0.0,69.0,69.0,17.9,0.0 -2019,7,5,7,15,0.0,69.0,69.0,17.9,0.0 -2019,7,5,7,30,0.0,69.0,69.0,17.9,0.0 -2019,7,5,7,45,0.0,69.0,69.0,17.9,0.0 -2019,7,5,8,0,0.0,91.0,91.0,19.0,0.8 -2019,7,5,8,15,0.0,91.0,91.0,19.0,0.8 -2019,7,5,8,30,0.0,91.0,91.0,19.0,0.8 -2019,7,5,8,45,0.0,91.0,91.0,19.0,0.8 -2019,7,5,9,0,9.0,298.9550364564106,293.0,20.4,0.6 -2019,7,5,9,15,9.0,299.313678725331,293.0,20.4,0.6 -2019,7,5,9,30,9.0,299.65359018875535,293.0,20.4,0.6 -2019,7,5,9,45,9.0,299.9733152936131,293.0,20.4,0.6 -2019,7,5,10,0,466.0,707.501330712311,331.0,22.5,2.5 -2019,7,5,10,15,466.0,721.7576871248236,331.0,22.5,2.5 -2019,7,5,10,30,466.0,734.7707909777816,331.0,22.5,2.5 -2019,7,5,10,45,466.0,746.4849181626782,331.0,22.5,2.5 -2019,7,5,11,0,632.0,846.5475133406569,269.0,24.6,2.2 -2019,7,5,11,15,632.0,858.7148234432631,269.0,24.6,2.2 -2019,7,5,11,30,632.0,868.9401032944216,269.0,24.6,2.2 -2019,7,5,11,45,632.0,877.1795666759963,269.0,24.6,2.2 -2019,7,5,12,0,783.0,956.1923733017077,195.0,26.3,3.1 -2019,7,5,12,15,783.0,961.359475982813,195.0,26.3,3.1 -2019,7,5,12,30,783.0,963.9674739747619,195.0,26.3,3.1 -2019,7,5,12,45,783.0,964.0051994297651,195.0,26.3,3.1 -2019,7,5,13,0,894.0,1011.129510570447,136.0,27.7,3.4 -2019,7,5,13,15,894.0,1005.3153167593368,136.0,27.7,3.4 -2019,7,5,13,30,894.0,996.603578021356,136.0,27.7,3.4 -2019,7,5,13,45,894.0,985.0315993592312,136.0,27.7,3.4 -2019,7,5,14,0,832.0,920.7650032327895,144.0,27.1,5.5 -2019,7,5,14,15,832.0,904.8213483783226,144.0,27.1,5.5 -2019,7,5,14,30,832.0,886.3875218883159,144.0,27.1,5.5 -2019,7,5,14,45,832.0,865.5424602378123,144.0,27.1,5.5 -2019,7,5,15,0,723.0,757.8815293339622,151.0,26.6,4.1 -2019,7,5,15,15,723.0,735.8180340841012,151.0,26.6,4.1 -2019,7,5,15,30,723.0,711.9174535627137,151.0,26.6,4.1 -2019,7,5,15,45,723.0,686.2821337248761,151.0,26.6,4.1 -2019,7,5,16,0,498.0,504.9237631742439,155.0,25.5,3.8 -2019,7,5,16,15,498.0,485.10810416459526,155.0,25.5,3.8 -2019,7,5,16,30,498.0,464.33843350462996,155.0,25.5,3.8 -2019,7,5,16,45,498.0,442.7036901127316,155.0,25.5,3.8 -2019,7,5,17,0,337.0,283.5279645057748,104.0,24.7,3.7 -2019,7,5,17,15,337.0,267.90710006072175,104.0,24.7,3.7 -2019,7,5,17,30,337.0,251.8953489458998,104.0,24.7,3.7 -2019,7,5,17,45,337.0,235.56127593775136,104.0,24.7,3.7 -2019,7,5,18,0,132.0,80.03464996403733,35.0,22.6,4.1 -2019,7,5,18,15,132.0,73.46684658406514,35.0,22.6,4.1 -2019,7,5,18,30,132.0,66.856133857607,35.0,22.6,4.1 -2019,7,5,18,45,132.0,60.230819871452695,35.0,22.6,4.1 -2019,7,5,19,0,0.0,0.0,0.0,20.9,4.0 -2019,7,5,19,15,0.0,0.0,0.0,20.9,4.0 -2019,7,5,19,30,0.0,0.0,0.0,20.9,4.0 -2019,7,5,19,45,0.0,0.0,0.0,20.9,4.0 -2019,7,5,20,0,0.0,0.0,0.0,19.3,3.0 -2019,7,5,20,15,0.0,0.0,0.0,19.3,3.0 -2019,7,5,20,30,0.0,0.0,0.0,19.3,3.0 -2019,7,5,20,45,0.0,0.0,0.0,19.3,3.0 -2019,7,5,21,0,0.0,0.0,0.0,18.2,2.5 -2019,7,5,21,15,0.0,0.0,0.0,18.2,2.5 -2019,7,5,21,30,0.0,0.0,0.0,18.2,2.5 -2019,7,5,21,45,0.0,0.0,0.0,18.2,2.5 -2019,7,5,22,0,0.0,0.0,0.0,17.1,2.0 -2019,7,5,22,15,0.0,0.0,0.0,17.1,2.0 -2019,7,5,22,30,0.0,0.0,0.0,17.1,2.0 -2019,7,5,22,45,0.0,0.0,0.0,17.1,2.0 -2019,7,5,23,0,0.0,0.0,0.0,16.7,1.5 -2019,7,5,23,15,0.0,0.0,0.0,16.7,1.5 -2019,7,5,23,30,0.0,0.0,0.0,16.7,1.5 -2019,7,5,23,45,0.0,0.0,0.0,16.7,1.5 -2019,7,6,0,0,0.0,0.0,0.0,16.7,1.3 -2019,7,6,0,15,0.0,0.0,0.0,16.7,1.3 -2019,7,6,0,30,0.0,0.0,0.0,16.7,1.3 -2019,7,6,0,45,0.0,0.0,0.0,16.7,1.3 -2019,7,6,1,0,0.0,0.0,0.0,16.6,0.0 -2019,7,6,1,15,0.0,0.0,0.0,16.6,0.0 -2019,7,6,1,30,0.0,0.0,0.0,16.6,0.0 -2019,7,6,1,45,0.0,0.0,0.0,16.6,0.0 -2019,7,6,2,0,0.0,0.0,0.0,15.7,0.0 -2019,7,6,2,15,0.0,0.0,0.0,15.7,0.0 -2019,7,6,2,30,0.0,0.0,0.0,15.7,0.0 -2019,7,6,2,45,0.0,0.0,0.0,15.7,0.0 -2019,7,6,3,0,0.0,0.0,0.0,16.0,0.0 -2019,7,6,3,15,0.0,0.0,0.0,16.0,0.0 -2019,7,6,3,30,0.0,0.0,0.0,16.0,0.0 -2019,7,6,3,45,0.0,0.0,0.0,16.0,0.0 -2019,7,6,4,0,1.0,0.7272283985380028,1.0,15.7,0.0 -2019,7,6,4,15,1.0,0.767045097704742,1.0,15.7,0.0 -2019,7,6,4,30,1.0,0.8087787452234765,1.0,15.7,0.0 -2019,7,6,4,45,1.0,0.8522506312084631,1.0,15.7,0.0 -2019,7,6,5,0,3.0,17.69182380710997,18.0,16.8,0.2 -2019,7,6,5,15,3.0,17.830973577454014,18.0,16.8,0.2 -2019,7,6,5,30,3.0,17.973605343978242,18.0,16.8,0.2 -2019,7,6,5,45,3.0,18.119108335561172,18.0,16.8,0.2 -2019,7,6,6,0,1.0,47.08895316201828,47.0,17.1,1.5 -2019,7,6,6,15,1.0,47.13874203411654,47.0,17.1,1.5 -2019,7,6,6,30,1.0,47.18885619122113,47.0,17.1,1.5 -2019,7,6,6,45,1.0,47.23908103681766,47.0,17.1,1.5 -2019,7,6,7,0,3.0,121.86760450121987,121.0,18.4,0.0 -2019,7,6,7,15,3.0,122.01700887540491,121.0,18.4,0.0 -2019,7,6,7,30,3.0,122.16481646054086,121.0,18.4,0.0 -2019,7,6,7,45,3.0,122.31039432185635,121.0,18.4,0.0 -2019,7,6,8,0,373.0,448.67113802656,268.0,21.3,1.3 -2019,7,6,8,15,373.0,465.9858565722665,268.0,21.3,1.3 -2019,7,6,8,30,373.0,482.79570537157565,268.0,21.3,1.3 -2019,7,6,8,45,373.0,499.0287020712335,268.0,21.3,1.3 -2019,7,6,9,0,534.0,620.0632402578681,267.0,22.8,0.4 -2019,7,6,9,15,534.0,641.3567032557812,267.0,22.8,0.4 -2019,7,6,9,30,534.0,661.5380728159862,267.0,22.8,0.4 -2019,7,6,9,45,534.0,680.5209292157258,267.0,22.8,0.4 -2019,7,6,10,0,690.0,786.1995311146455,229.0,25.3,2.5 -2019,7,6,10,15,690.0,807.3226379071772,229.0,25.3,2.5 -2019,7,6,10,30,690.0,826.603664169054,229.0,25.3,2.5 -2019,7,6,10,45,690.0,843.9600455857457,229.0,25.3,2.5 -2019,7,6,11,0,791.0,914.5813194764258,192.0,28.1,2.2 -2019,7,6,11,15,791.0,929.8197436536532,192.0,28.1,2.2 -2019,7,6,11,30,791.0,942.6259555763224,192.0,28.1,2.2 -2019,7,6,11,45,791.0,952.9451170789355,192.0,28.1,2.2 -2019,7,6,12,0,964.0,1049.8630221116487,113.0,30.2,3.2 -2019,7,6,12,15,964.0,1056.2287554233862,113.0,30.2,3.2 -2019,7,6,12,30,964.0,1059.4417397046936,113.0,30.2,3.2 -2019,7,6,12,45,964.0,1059.488216463612,113.0,30.2,3.2 -2019,7,6,13,0,1033.0,1091.8912139418549,81.0,31.6,4.3 -2019,7,6,13,15,1033.0,1085.1685967220121,81.0,31.6,4.3 -2019,7,6,13,30,1033.0,1075.0957152947005,81.0,31.6,4.3 -2019,7,6,13,45,1033.0,1061.715703284609,81.0,31.6,4.3 -2019,7,6,14,0,933.0,977.7571186913475,107.0,31.0,5.6 -2019,7,6,14,15,933.0,959.8662149909616,107.0,31.0,5.6 -2019,7,6,14,30,933.0,939.1810071403956,107.0,31.0,5.6 -2019,7,6,14,45,933.0,915.7900723753169,107.0,31.0,5.6 -2019,7,6,15,0,827.0,812.858827353504,119.0,30.8,4.6 -2019,7,6,15,15,827.0,787.6049770289924,119.0,30.8,4.6 -2019,7,6,15,30,827.0,760.2484010957271,119.0,30.8,4.6 -2019,7,6,15,45,827.0,730.9062446117123,119.0,30.8,4.6 -2019,7,6,16,0,603.0,555.4154843809051,132.0,29.7,4.6 -2019,7,6,16,15,603.0,531.406014783361,132.0,29.7,4.6 -2019,7,6,16,30,603.0,506.2406253295644,132.0,29.7,4.6 -2019,7,6,16,45,603.0,480.0270780806173,132.0,29.7,4.6 -2019,7,6,17,0,413.0,315.77190463217147,96.0,28.6,4.7 -2019,7,6,17,15,413.0,296.61561958147496,96.0,28.6,4.7 -2019,7,6,17,30,413.0,276.9799797233062,96.0,28.6,4.7 -2019,7,6,17,45,413.0,256.94906788205594,96.0,28.6,4.7 -2019,7,6,18,0,176.0,94.92039726766994,35.0,26.4,4.9 -2019,7,6,18,15,176.0,86.15755577837575,35.0,26.4,4.9 -2019,7,6,18,30,176.0,77.33746412796802,35.0,26.4,4.9 -2019,7,6,18,45,176.0,68.49789130297887,35.0,26.4,4.9 -2019,7,6,19,0,0.0,0.0,0.0,24.2,3.6 -2019,7,6,19,15,0.0,0.0,0.0,24.2,3.6 -2019,7,6,19,30,0.0,0.0,0.0,24.2,3.6 -2019,7,6,19,45,0.0,0.0,0.0,24.2,3.6 -2019,7,6,20,0,0.0,0.0,0.0,22.6,3.4 -2019,7,6,20,15,0.0,0.0,0.0,22.6,3.4 -2019,7,6,20,30,0.0,0.0,0.0,22.6,3.4 -2019,7,6,20,45,0.0,0.0,0.0,22.6,3.4 -2019,7,6,21,0,0.0,0.0,0.0,21.1,1.9 -2019,7,6,21,15,0.0,0.0,0.0,21.1,1.9 -2019,7,6,21,30,0.0,0.0,0.0,21.1,1.9 -2019,7,6,21,45,0.0,0.0,0.0,21.1,1.9 -2019,7,6,22,0,0.0,0.0,0.0,21.0,0.2 -2019,7,6,22,15,0.0,0.0,0.0,21.0,0.2 -2019,7,6,22,30,0.0,0.0,0.0,21.0,0.2 -2019,7,6,22,45,0.0,0.0,0.0,21.0,0.2 -2019,7,6,23,0,0.0,0.0,0.0,19.9,1.3 -2019,7,6,23,15,0.0,0.0,0.0,19.9,1.3 -2019,7,6,23,30,0.0,0.0,0.0,19.9,1.3 -2019,7,6,23,45,0.0,0.0,0.0,19.9,1.3 -2019,7,7,0,0,0.0,0.0,0.0,19.2,0.0 -2019,7,7,0,15,0.0,0.0,0.0,19.2,0.0 -2019,7,7,0,30,0.0,0.0,0.0,19.2,0.0 -2019,7,7,0,45,0.0,0.0,0.0,19.2,0.0 -2019,7,7,1,0,0.0,0.0,0.0,17.7,0.0 -2019,7,7,1,15,0.0,0.0,0.0,17.7,0.0 -2019,7,7,1,30,0.0,0.0,0.0,17.7,0.0 -2019,7,7,1,45,0.0,0.0,0.0,17.7,0.0 -2019,7,7,2,0,0.0,0.0,0.0,17.2,0.0 -2019,7,7,2,15,0.0,0.0,0.0,17.2,0.0 -2019,7,7,2,30,0.0,0.0,0.0,17.2,0.0 -2019,7,7,2,45,0.0,0.0,0.0,17.2,0.0 -2019,7,7,3,0,0.0,0.0,0.0,17.1,0.0 -2019,7,7,3,15,0.0,0.0,0.0,17.1,0.0 -2019,7,7,3,30,0.0,0.0,0.0,17.1,0.0 -2019,7,7,3,45,0.0,0.0,0.0,17.1,0.0 -2019,7,7,4,0,0.0,0.0,0.0,16.8,0.0 -2019,7,7,4,15,0.0,0.0,0.0,16.8,0.0 -2019,7,7,4,30,0.0,0.0,0.0,16.8,0.0 -2019,7,7,4,45,0.0,0.0,0.0,16.8,0.0 -2019,7,7,5,0,303.0,12.546259959374936,44.0,17.4,0.0 -2019,7,7,5,15,303.0,26.61030163462532,44.0,17.4,0.0 -2019,7,7,5,30,303.0,41.02627302754715,44.0,17.4,0.0 -2019,7,7,5,45,303.0,55.73244273545554,44.0,17.4,0.0 -2019,7,7,6,0,545.0,139.96330360280973,92.0,19.2,0.0 -2019,7,7,6,15,545.0,167.11738198317695,92.0,19.2,0.0 -2019,7,7,6,30,545.0,194.44886575927853,92.0,19.2,0.0 -2019,7,7,6,45,545.0,221.8407173215796,92.0,19.2,0.0 -2019,7,7,7,0,699.0,321.58857385125765,120.0,21.4,0.2 -2019,7,7,7,15,699.0,356.4243515688984,120.0,21.4,0.2 -2019,7,7,7,30,699.0,390.88781496388606,120.0,21.4,0.2 -2019,7,7,7,45,699.0,424.8313861950364,120.0,21.4,0.2 -2019,7,7,8,0,797.0,519.51279227803,134.0,24.2,2.1 -2019,7,7,8,15,797.0,556.5357578309308,134.0,24.2,2.1 -2019,7,7,8,30,797.0,592.4791923951968,134.0,24.2,2.1 -2019,7,7,8,45,797.0,627.1891806658873,134.0,24.2,2.1 -2019,7,7,9,0,862.0,706.4576296643901,137.0,26.4,2.2 -2019,7,7,9,15,862.0,740.8544725846785,137.0,26.4,2.2 -2019,7,7,9,30,862.0,773.4548720005319,137.0,26.4,2.2 -2019,7,7,9,45,862.0,804.1192279967466,137.0,26.4,2.2 -2019,7,7,10,0,902.0,863.0000469212638,135.0,29.2,3.1 -2019,7,7,10,15,902.0,890.6326321674712,135.0,29.2,3.1 -2019,7,7,10,30,902.0,915.8554654868603,135.0,29.2,3.1 -2019,7,7,10,45,902.0,938.5605388348772,135.0,29.2,3.1 -2019,7,7,11,0,920.0,973.0871125870995,133.0,31.8,3.2 -2019,7,7,11,15,920.0,990.8231942299172,133.0,31.8,3.2 -2019,7,7,11,30,920.0,1005.7284113018452,133.0,31.8,3.2 -2019,7,7,11,45,920.0,1017.7389373750909,133.0,31.8,3.2 -2019,7,7,12,0,918.0,1024.860290790656,133.0,32.9,3.8 -2019,7,7,12,15,918.0,1030.926541630503,133.0,32.9,3.8 -2019,7,7,12,30,918.0,1033.9883677611951,133.0,32.9,3.8 -2019,7,7,12,45,918.0,1034.032657973181,133.0,32.9,3.8 -2019,7,7,13,0,896.0,1011.537106163006,135.0,33.2,5.0 -2019,7,7,13,15,896.0,1005.7019518085623,135.0,33.2,5.0 -2019,7,7,13,30,896.0,996.9588066910799,135.0,33.2,5.0 -2019,7,7,13,45,896.0,985.3451103002238,135.0,33.2,5.0 -2019,7,7,14,0,852.0,931.8614132984429,137.0,32.7,4.3 -2019,7,7,14,15,852.0,915.5122133179681,137.0,32.7,4.3 -2019,7,7,14,30,852.0,896.6095013337044,137.0,32.7,4.3 -2019,7,7,14,45,852.0,875.2342216603661,137.0,32.7,4.3 -2019,7,7,15,0,782.0,787.7766700753489,132.0,32.2,6.2 -2019,7,7,15,15,782.0,763.8801246288327,132.0,32.2,6.2 -2019,7,7,15,30,782.0,737.9938676165374,132.0,32.2,6.2 -2019,7,7,15,45,782.0,710.2287479651203,132.0,32.2,6.2 -2019,7,7,16,0,676.0,590.3269492088834,116.0,31.3,5.9 -2019,7,7,16,15,676.0,563.3918718767493,116.0,31.3,5.9 -2019,7,7,16,30,676.0,535.1600232606261,116.0,31.3,5.9 -2019,7,7,16,45,676.0,505.75229647052,116.0,31.3,5.9 -2019,7,7,17,0,508.0,355.00246584749937,85.0,30.4,5.7 -2019,7,7,17,15,508.0,331.42314845137,85.0,30.4,5.7 -2019,7,7,17,30,508.0,307.2537970731381,85.0,30.4,5.7 -2019,7,7,17,45,508.0,282.5979085859517,85.0,30.4,5.7 -2019,7,7,18,0,265.0,124.01709010183417,34.0,28.6,5.5 -2019,7,7,18,15,265.0,110.81373088936205,34.0,28.6,5.5 -2019,7,7,18,30,265.0,97.52411033767963,34.0,28.6,5.5 -2019,7,7,18,45,265.0,84.20513664224879,34.0,28.6,5.5 -2019,7,7,19,0,0.0,0.0,0.0,26.4,3.9 -2019,7,7,19,15,0.0,0.0,0.0,26.4,3.9 -2019,7,7,19,30,0.0,0.0,0.0,26.4,3.9 -2019,7,7,19,45,0.0,0.0,0.0,26.4,3.9 -2019,7,7,20,0,0.0,0.0,0.0,24.3,2.0 -2019,7,7,20,15,0.0,0.0,0.0,24.3,2.0 -2019,7,7,20,30,0.0,0.0,0.0,24.3,2.0 -2019,7,7,20,45,0.0,0.0,0.0,24.3,2.0 -2019,7,7,21,0,0.0,0.0,0.0,23.1,1.3 -2019,7,7,21,15,0.0,0.0,0.0,23.1,1.3 -2019,7,7,21,30,0.0,0.0,0.0,23.1,1.3 -2019,7,7,21,45,0.0,0.0,0.0,23.1,1.3 -2019,7,7,22,0,0.0,0.0,0.0,21.6,0.0 -2019,7,7,22,15,0.0,0.0,0.0,21.6,0.0 -2019,7,7,22,30,0.0,0.0,0.0,21.6,0.0 -2019,7,7,22,45,0.0,0.0,0.0,21.6,0.0 -2019,7,7,23,0,0.0,0.0,0.0,21.0,0.0 -2019,7,7,23,15,0.0,0.0,0.0,21.0,0.0 -2019,7,7,23,30,0.0,0.0,0.0,21.0,0.0 -2019,7,7,23,45,0.0,0.0,0.0,21.0,0.0 -2019,7,8,0,0,0.0,0.0,0.0,20.3,0.0 -2019,7,8,0,15,0.0,0.0,0.0,20.3,0.0 -2019,7,8,0,30,0.0,0.0,0.0,20.3,0.0 -2019,7,8,0,45,0.0,0.0,0.0,20.3,0.0 -2019,7,8,1,0,0.0,0.0,0.0,17.7,0.0 -2019,7,8,1,15,0.0,0.0,0.0,17.7,0.0 -2019,7,8,1,30,0.0,0.0,0.0,17.7,0.0 -2019,7,8,1,45,0.0,0.0,0.0,17.7,0.0 -2019,7,8,2,0,0.0,0.0,0.0,16.7,0.0 -2019,7,8,2,15,0.0,0.0,0.0,16.7,0.0 -2019,7,8,2,30,0.0,0.0,0.0,16.7,0.0 -2019,7,8,2,45,0.0,0.0,0.0,16.7,0.0 -2019,7,8,3,0,0.0,0.0,0.0,16.6,0.0 -2019,7,8,3,15,0.0,0.0,0.0,16.6,0.0 -2019,7,8,3,30,0.0,0.0,0.0,16.6,0.0 -2019,7,8,3,45,0.0,0.0,0.0,16.6,0.0 -2019,7,8,4,0,0.0,0.0,0.0,16.2,0.0 -2019,7,8,4,15,0.0,0.0,0.0,16.2,0.0 -2019,7,8,4,30,0.0,0.0,0.0,16.2,0.0 -2019,7,8,4,45,0.0,0.0,0.0,16.2,0.0 -2019,7,8,5,0,349.0,5.367087378360836,42.0,17.5,0.0 -2019,7,8,5,15,349.0,21.578431652514702,42.0,17.5,0.0 -2019,7,8,5,30,349.0,38.195438391642384,42.0,17.5,0.0 -2019,7,8,5,45,349.0,55.1469510217976,42.0,17.5,0.0 -2019,7,8,6,0,623.0,134.19632404307205,80.0,19.8,0.0 -2019,7,8,6,15,623.0,165.2599892835999,80.0,19.8,0.0 -2019,7,8,6,30,623.0,196.5266023740882,80.0,19.8,0.0 -2019,7,8,6,45,623.0,227.8622748771461,80.0,19.8,0.0 -2019,7,8,7,0,792.0,325.7258355133888,98.0,23.3,0.0 -2019,7,8,7,15,792.0,365.2260634992113,98.0,23.3,0.0 -2019,7,8,7,30,792.0,404.30412491977506,98.0,23.3,0.0 -2019,7,8,7,45,792.0,442.79268151670374,98.0,23.3,0.0 -2019,7,8,8,0,898.0,535.7237040465124,102.0,27.0,0.4 -2019,7,8,8,15,898.0,577.4697458768012,102.0,27.0,0.4 -2019,7,8,8,30,898.0,617.998539300983,102.0,27.0,0.4 -2019,7,8,8,45,898.0,657.1365338035214,102.0,27.0,0.4 -2019,7,8,9,0,966.0,735.598870724886,98.0,29.2,3.1 -2019,7,8,9,15,966.0,774.174634132084,98.0,29.2,3.1 -2019,7,8,9,30,966.0,810.735701604481,98.0,29.2,3.1 -2019,7,8,9,45,966.0,845.1255130382033,98.0,29.2,3.1 -2019,7,8,10,0,1007.0,904.268306027887,92.0,32.0,3.2 -2019,7,8,10,15,1007.0,935.140716311243,92.0,32.0,3.2 -2019,7,8,10,30,1007.0,963.3208395898547,92.0,32.0,3.2 -2019,7,8,10,45,1007.0,988.6880042495519,92.0,32.0,3.2 -2019,7,8,11,0,1026.0,1024.4757272948773,88.0,34.0,3.7 -2019,7,8,11,15,1026.0,1044.2701708805876,88.0,34.0,3.7 -2019,7,8,11,30,1026.0,1060.9052137499643,88.0,34.0,3.7 -2019,7,8,11,45,1026.0,1074.3096220955833,88.0,34.0,3.7 -2019,7,8,12,0,1024.0,1083.4836453132734,89.0,35.1,4.8 -2019,7,8,12,15,1024.0,1090.2554391158328,89.0,35.1,4.8 -2019,7,8,12,30,1024.0,1093.6733748002825,89.0,35.1,4.8 -2019,7,8,12,45,1024.0,1093.7228162412903,89.0,35.1,4.8 -2019,7,8,13,0,1002.0,1072.889022291467,93.0,35.5,6.2 -2019,7,8,13,15,1002.0,1066.3586469095715,93.0,35.5,6.2 -2019,7,8,13,30,1002.0,1056.5738124103664,93.0,35.5,6.2 -2019,7,8,13,45,1002.0,1043.5764189573724,93.0,35.5,6.2 -2019,7,8,14,0,957.0,991.4570579632807,99.0,34.9,6.0 -2019,7,8,14,15,957.0,973.0791981326865,99.0,34.9,6.0 -2019,7,8,14,30,957.0,951.8309785451983,99.0,34.9,6.0 -2019,7,8,14,45,957.0,927.8033873391757,99.0,34.9,6.0 -2019,7,8,15,0,882.0,841.2388665159561,102.0,34.0,4.7 -2019,7,8,15,15,882.0,814.2662523239262,102.0,34.0,4.7 -2019,7,8,15,30,882.0,785.0478021160884,102.0,34.0,4.7 -2019,7,8,15,45,882.0,753.7086337819305,102.0,34.0,4.7 -2019,7,8,16,0,768.0,634.4558989509974,96.0,32.7,5.5 -2019,7,8,16,15,768.0,603.8321161006206,96.0,32.7,5.5 -2019,7,8,16,30,768.0,571.733971706083,96.0,32.7,5.5 -2019,7,8,16,45,768.0,538.2989149494789,96.0,32.7,5.5 -2019,7,8,17,0,582.0,383.93751271920036,75.0,31.5,6.0 -2019,7,8,17,15,582.0,356.9031219812131,75.0,31.5,6.0 -2019,7,8,17,30,582.0,329.1922396827251,75.0,31.5,6.0 -2019,7,8,17,45,582.0,300.9235280759906,75.0,31.5,6.0 -2019,7,8,18,0,307.0,136.03082079736834,32.0,29.8,4.0 -2019,7,8,18,15,307.0,120.72336457129768,32.0,29.8,4.0 -2019,7,8,18,30,307.0,105.31590033569587,32.0,29.8,4.0 -2019,7,8,18,45,307.0,89.8744052178166,32.0,29.8,4.0 -2019,7,8,19,0,0.0,0.0,0.0,28.1,2.9 -2019,7,8,19,15,0.0,0.0,0.0,28.1,2.9 -2019,7,8,19,30,0.0,0.0,0.0,28.1,2.9 -2019,7,8,19,45,0.0,0.0,0.0,28.1,2.9 -2019,7,8,20,0,0.0,0.0,0.0,26.4,1.5 -2019,7,8,20,15,0.0,0.0,0.0,26.4,1.5 -2019,7,8,20,30,0.0,0.0,0.0,26.4,1.5 -2019,7,8,20,45,0.0,0.0,0.0,26.4,1.5 -2019,7,8,21,0,0.0,0.0,0.0,24.3,1.5 -2019,7,8,21,15,0.0,0.0,0.0,24.3,1.5 -2019,7,8,21,30,0.0,0.0,0.0,24.3,1.5 -2019,7,8,21,45,0.0,0.0,0.0,24.3,1.5 -2019,7,8,22,0,0.0,0.0,0.0,23.2,1.3 -2019,7,8,22,15,0.0,0.0,0.0,23.2,1.3 -2019,7,8,22,30,0.0,0.0,0.0,23.2,1.3 -2019,7,8,22,45,0.0,0.0,0.0,23.2,1.3 -2019,7,8,23,0,0.0,0.0,0.0,22.1,0.0 -2019,7,8,23,15,0.0,0.0,0.0,22.1,0.0 -2019,7,8,23,30,0.0,0.0,0.0,22.1,0.0 -2019,7,8,23,45,0.0,0.0,0.0,22.1,0.0 -2019,7,9,0,0,0.0,0.0,0.0,21.4,0.0 -2019,7,9,0,15,0.0,0.0,0.0,21.4,0.0 -2019,7,9,0,30,0.0,0.0,0.0,21.4,0.0 -2019,7,9,0,45,0.0,0.0,0.0,21.4,0.0 -2019,7,9,1,0,0.0,0.0,0.0,19.3,0.0 -2019,7,9,1,15,0.0,0.0,0.0,19.3,0.0 -2019,7,9,1,30,0.0,0.0,0.0,19.3,0.0 -2019,7,9,1,45,0.0,0.0,0.0,19.3,0.0 -2019,7,9,2,0,0.0,0.0,0.0,18.8,0.0 -2019,7,9,2,15,0.0,0.0,0.0,18.8,0.0 -2019,7,9,2,30,0.0,0.0,0.0,18.8,0.0 -2019,7,9,2,45,0.0,0.0,0.0,18.8,0.0 -2019,7,9,3,0,0.0,0.0,0.0,17.9,0.0 -2019,7,9,3,15,0.0,0.0,0.0,17.9,0.0 -2019,7,9,3,30,0.0,0.0,0.0,17.9,0.0 -2019,7,9,3,45,0.0,0.0,0.0,17.9,0.0 -2019,7,9,4,0,0.0,0.0,0.0,18.4,0.0 -2019,7,9,4,15,0.0,0.0,0.0,18.4,0.0 -2019,7,9,4,30,0.0,0.0,0.0,18.4,0.0 -2019,7,9,4,45,0.0,0.0,0.0,18.4,0.0 -2019,7,9,5,0,361.0,2.6625533536434958,41.0,19.3,0.0 -2019,7,9,5,15,361.0,19.4446524671907,41.0,19.3,0.0 -2019,7,9,5,30,361.0,36.646696255202066,41.0,19.3,0.0 -2019,7,9,5,45,361.0,54.195022925271374,41.0,19.3,0.0 -2019,7,9,6,0,644.0,132.32778441676743,77.0,22.5,0.0 -2019,7,9,6,15,644.0,164.46409351598254,77.0,22.5,0.0 -2019,7,9,6,30,644.0,196.81035835567008,77.0,22.5,0.0 -2019,7,9,6,45,644.0,229.22806726389723,77.0,22.5,0.0 -2019,7,9,7,0,818.0,325.44896483668686,91.0,25.5,0.0 -2019,7,9,7,15,818.0,366.2783840495519,91.0,25.5,0.0 -2019,7,9,7,30,818.0,406.6714307008003,91.0,25.5,0.0 -2019,7,9,7,45,818.0,446.45513556341825,91.0,25.5,0.0 -2019,7,9,8,0,927.0,540.0215422738125,93.0,29.2,0.0 -2019,7,9,8,15,927.0,583.1500249519611,93.0,29.2,0.0 -2019,7,9,8,30,927.0,625.0209494402525,93.0,29.2,0.0 -2019,7,9,8,45,927.0,665.4550180118864,93.0,29.2,0.0 -2019,7,9,9,0,996.0,743.7788235540208,87.0,32.1,0.2 -2019,7,9,9,15,996.0,783.5842443480351,87.0,32.1,0.2 -2019,7,9,9,30,996.0,821.3107479055915,87.0,32.1,0.2 -2019,7,9,9,45,996.0,856.7967835465785,87.0,32.1,0.2 -2019,7,9,10,0,1037.0,915.9411036338845,80.0,35.1,2.1 -2019,7,9,10,15,1037.0,947.7585485525573,80.0,35.1,2.1 -2019,7,9,10,30,1037.0,976.8012929314123,80.0,35.1,2.1 -2019,7,9,10,45,1037.0,1002.9449712802957,80.0,35.1,2.1 -2019,7,9,11,0,1056.0,1039.4117451945417,76.0,36.2,2.3 -2019,7,9,11,15,1056.0,1059.8011868734425,76.0,36.2,2.3 -2019,7,9,11,30,1056.0,1076.936259902524,76.0,36.2,2.3 -2019,7,9,11,45,1056.0,1090.7435892684512,76.0,36.2,2.3 -2019,7,9,12,0,1054.0,1100.222451287846,77.0,37.3,4.0 -2019,7,9,12,15,1054.0,1107.1981844219697,77.0,37.3,4.0 -2019,7,9,12,30,1054.0,1110.7190546521456,77.0,37.3,4.0 -2019,7,9,12,45,1054.0,1110.7699850715135,77.0,37.3,4.0 -2019,7,9,13,0,1032.0,1089.8443850389199,81.0,37.7,3.7 -2019,7,9,13,15,1032.0,1083.1131369095926,81.0,37.7,3.7 -2019,7,9,13,30,1032.0,1073.0273232975378,81.0,37.7,3.7 -2019,7,9,13,45,1032.0,1059.6301332050443,81.0,37.7,3.7 -2019,7,9,14,0,986.0,1008.1000294190565,89.0,37.1,4.4 -2019,7,9,14,15,986.0,989.1501962941421,89.0,37.1,4.4 -2019,7,9,14,30,986.0,967.2406693363766,89.0,37.1,4.4 -2019,7,9,14,45,986.0,942.4652685038051,89.0,37.1,4.4 -2019,7,9,15,0,911.0,856.1057892741106,93.0,36.2,3.1 -2019,7,9,15,15,911.0,828.2241496119985,93.0,36.2,3.1 -2019,7,9,15,30,911.0,798.020985232736,93.0,36.2,3.1 -2019,7,9,15,45,911.0,765.6256307230695,93.0,36.2,3.1 -2019,7,9,16,0,794.0,646.2155713762471,90.0,34.9,3.4 -2019,7,9,16,15,794.0,614.5298501548004,90.0,34.9,3.4 -2019,7,9,16,30,794.0,581.3186410765418,90.0,34.9,3.4 -2019,7,9,16,45,794.0,546.7241596374217,90.0,34.9,3.4 -2019,7,9,17,0,603.0,392.64661267626735,73.0,33.7,3.7 -2019,7,9,17,15,603.0,364.61446374145027,73.0,33.7,3.7 -2019,7,9,17,30,603.0,335.880855973664,73.0,33.7,3.7 -2019,7,9,17,45,603.0,306.568831092634,73.0,33.7,3.7 -2019,7,9,18,0,317.0,139.14069442355185,32.0,31.9,3.9 -2019,7,9,18,15,317.0,123.32204537937298,32.0,31.9,3.9 -2019,7,9,18,30,317.0,107.40004855611069,32.0,31.9,3.9 -2019,7,9,18,45,317.0,91.44288438855165,32.0,31.9,3.9 -2019,7,9,19,0,0.0,0.0,0.0,29.7,2.5 -2019,7,9,19,15,0.0,0.0,0.0,29.7,2.5 -2019,7,9,19,30,0.0,0.0,0.0,29.7,2.5 -2019,7,9,19,45,0.0,0.0,0.0,29.7,2.5 -2019,7,9,20,0,0.0,0.0,0.0,27.6,2.1 -2019,7,9,20,15,0.0,0.0,0.0,27.6,2.1 -2019,7,9,20,30,0.0,0.0,0.0,27.6,2.1 -2019,7,9,20,45,0.0,0.0,0.0,27.6,2.1 -2019,7,9,21,0,0.0,0.0,0.0,25.9,2.2 -2019,7,9,21,15,0.0,0.0,0.0,25.9,2.2 -2019,7,9,21,30,0.0,0.0,0.0,25.9,2.2 -2019,7,9,21,45,0.0,0.0,0.0,25.9,2.2 -2019,7,9,22,0,0.0,0.0,0.0,24.3,2.5 -2019,7,9,22,15,0.0,0.0,0.0,24.3,2.5 -2019,7,9,22,30,0.0,0.0,0.0,24.3,2.5 -2019,7,9,22,45,0.0,0.0,0.0,24.3,2.5 -2019,7,9,23,0,0.0,0.0,0.0,23.2,1.3 -2019,7,9,23,15,0.0,0.0,0.0,23.2,1.3 -2019,7,9,23,30,0.0,0.0,0.0,23.2,1.3 -2019,7,9,23,45,0.0,0.0,0.0,23.2,1.3 -2019,7,10,0,0,0.0,0.0,0.0,22.6,0.0 -2019,7,10,0,15,0.0,0.0,0.0,22.6,0.0 -2019,7,10,0,30,0.0,0.0,0.0,22.6,0.0 -2019,7,10,0,45,0.0,0.0,0.0,22.6,0.0 -2019,7,10,1,0,0.0,0.0,0.0,21.0,0.0 -2019,7,10,1,15,0.0,0.0,0.0,21.0,0.0 -2019,7,10,1,30,0.0,0.0,0.0,21.0,0.0 -2019,7,10,1,45,0.0,0.0,0.0,21.0,0.0 -2019,7,10,2,0,0.0,0.0,0.0,20.6,0.0 -2019,7,10,2,15,0.0,0.0,0.0,20.6,0.0 -2019,7,10,2,30,0.0,0.0,0.0,20.6,0.0 -2019,7,10,2,45,0.0,0.0,0.0,20.6,0.0 -2019,7,10,3,0,0.0,0.0,0.0,20.5,0.0 -2019,7,10,3,15,0.0,0.0,0.0,20.5,0.0 -2019,7,10,3,30,0.0,0.0,0.0,20.5,0.0 -2019,7,10,3,45,0.0,0.0,0.0,20.5,0.0 -2019,7,10,4,0,0.0,0.0,0.0,20.1,0.0 -2019,7,10,4,15,0.0,0.0,0.0,20.1,0.0 -2019,7,10,4,30,0.0,0.0,0.0,20.1,0.0 -2019,7,10,4,45,0.0,0.0,0.0,20.1,0.0 -2019,7,10,5,0,169.0,55.83166771194304,74.0,20.9,0.0 -2019,7,10,5,15,169.0,63.69470280198354,74.0,20.9,0.0 -2019,7,10,5,30,169.0,71.75449752792211,74.0,20.9,0.0 -2019,7,10,5,45,169.0,79.97653861138012,74.0,20.9,0.0 -2019,7,10,6,0,337.0,144.56646904986061,116.0,23.1,0.2 -2019,7,10,6,15,337.0,161.39725740641882,116.0,23.1,0.2 -2019,7,10,6,30,337.0,178.33800613898734,116.0,23.1,0.2 -2019,7,10,6,45,337.0,195.31617236070218,116.0,23.1,0.2 -2019,7,10,7,0,445.0,304.1076515311087,177.0,25.4,1.6 -2019,7,10,7,15,445.0,326.3379011312084,177.0,25.4,1.6 -2019,7,10,7,30,445.0,348.33056050469247,177.0,25.4,1.6 -2019,7,10,7,45,445.0,369.9914537077492,177.0,25.4,1.6 -2019,7,10,8,0,274.0,422.9065711884188,291.0,28.6,1.9 -2019,7,10,8,15,274.0,435.665065883858,291.0,28.6,1.9 -2019,7,10,8,30,274.0,448.05154309808324,291.0,28.6,1.9 -2019,7,10,8,45,274.0,460.0129620340568,291.0,28.6,1.9 -2019,7,10,9,0,1001.0,744.4109494949047,85.0,31.0,0.2 -2019,7,10,9,15,1001.0,784.449780378714,85.0,31.0,0.2 -2019,7,10,9,30,1001.0,822.397503720093,85.0,31.0,0.2 -2019,7,10,9,45,1001.0,858.0916215418538,85.0,31.0,0.2 -2019,7,10,10,0,763.0,809.6527425910969,195.0,34.6,2.2 -2019,7,10,10,15,763.0,833.0829164884241,195.0,34.6,2.2 -2019,7,10,10,30,763.0,854.469817699113,195.0,34.6,2.2 -2019,7,10,10,45,763.0,873.7218642288027,195.0,34.6,2.2 -2019,7,10,11,0,687.0,868.4545151964292,242.0,36.4,2.7 -2019,7,10,11,15,687.0,881.7303726915408,242.0,36.4,2.7 -2019,7,10,11,30,687.0,892.8872641496241,242.0,36.4,2.7 -2019,7,10,11,45,687.0,901.8774140486184,242.0,36.4,2.7 -2019,7,10,12,0,880.0,1003.9488299331699,150.0,38.4,3.7 -2019,7,10,12,15,880.0,1009.7778607106037,150.0,38.4,3.7 -2019,7,10,12,30,880.0,1012.7199544719963,150.0,38.4,3.7 -2019,7,10,12,45,880.0,1012.7625127201826,150.0,38.4,3.7 -2019,7,10,13,0,1089.0,1125.1328746025858,61.0,39.3,4.3 -2019,7,10,13,15,1089.0,1118.0238795527835,61.0,39.3,4.3 -2019,7,10,13,30,1089.0,1107.3720661500151,61.0,39.3,4.3 -2019,7,10,13,45,1089.0,1093.2230470945676,61.0,39.3,4.3 -2019,7,10,14,0,915.0,966.5190365034744,114.0,38.1,5.6 -2019,7,10,14,15,915.0,948.9189825812363,114.0,38.1,5.6 -2019,7,10,14,30,915.0,928.5700510985404,114.0,38.1,5.6 -2019,7,10,14,45,915.0,905.5593793040206,114.0,38.1,5.6 -2019,7,10,15,0,822.0,808.1312382458622,120.0,36.9,4.6 -2019,7,10,15,15,822.0,782.9523714596927,120.0,36.9,4.6 -2019,7,10,15,30,822.0,755.6770224614905,120.0,36.9,4.6 -2019,7,10,15,45,822.0,726.4219884830537,120.0,36.9,4.6 -2019,7,10,16,0,588.0,546.5374402845025,135.0,35.4,4.3 -2019,7,10,16,15,588.0,523.0527493065906,135.0,35.4,4.3 -2019,7,10,16,30,588.0,498.4374035880966,135.0,35.4,4.3 -2019,7,10,16,45,588.0,472.7968098184038,135.0,35.4,4.3 -2019,7,10,17,0,396.0,306.6111274196496,97.0,34.3,4.0 -2019,7,10,17,15,396.0,288.1865008181346,97.0,34.3,4.0 -2019,7,10,17,30,396.0,269.30082796918975,97.0,34.3,4.0 -2019,7,10,17,45,396.0,250.03498022333557,97.0,34.3,4.0 -2019,7,10,18,0,339.0,145.25965628420755,31.0,33.0,3.1 -2019,7,10,18,15,339.0,128.32898194333745,31.0,33.0,3.1 -2019,7,10,18,30,339.0,111.28769464262311,31.0,33.0,3.1 -2019,7,10,18,45,339.0,94.2087677905123,31.0,33.0,3.1 -2019,7,10,19,0,0.0,0.0,0.0,30.2,3.0 -2019,7,10,19,15,0.0,0.0,0.0,30.2,3.0 -2019,7,10,19,30,0.0,0.0,0.0,30.2,3.0 -2019,7,10,19,45,0.0,0.0,0.0,30.2,3.0 -2019,7,10,20,0,0.0,0.0,0.0,27.0,2.7 -2019,7,10,20,15,0.0,0.0,0.0,27.0,2.7 -2019,7,10,20,30,0.0,0.0,0.0,27.0,2.7 -2019,7,10,20,45,0.0,0.0,0.0,27.0,2.7 -2019,7,10,21,0,0.0,0.0,0.0,25.4,3.0 -2019,7,10,21,15,0.0,0.0,0.0,25.4,3.0 -2019,7,10,21,30,0.0,0.0,0.0,25.4,3.0 -2019,7,10,21,45,0.0,0.0,0.0,25.4,3.0 -2019,7,10,22,0,0.0,0.0,0.0,23.7,2.7 -2019,7,10,22,15,0.0,0.0,0.0,23.7,2.7 -2019,7,10,22,30,0.0,0.0,0.0,23.7,2.7 -2019,7,10,22,45,0.0,0.0,0.0,23.7,2.7 -2019,7,10,23,0,0.0,0.0,0.0,22.0,2.7 -2019,7,10,23,15,0.0,0.0,0.0,22.0,2.7 -2019,7,10,23,30,0.0,0.0,0.0,22.0,2.7 -2019,7,10,23,45,0.0,0.0,0.0,22.0,2.7 -2019,7,11,0,0,0.0,0.0,0.0,20.6,0.0 -2019,7,11,0,15,0.0,0.0,0.0,20.6,0.0 -2019,7,11,0,30,0.0,0.0,0.0,20.6,0.0 -2019,7,11,0,45,0.0,0.0,0.0,20.6,0.0 -2019,7,11,1,0,0.0,0.0,0.0,20.5,0.0 -2019,7,11,1,15,0.0,0.0,0.0,20.5,0.0 -2019,7,11,1,30,0.0,0.0,0.0,20.5,0.0 -2019,7,11,1,45,0.0,0.0,0.0,20.5,0.0 -2019,7,11,2,0,0.0,0.0,0.0,20.0,0.0 -2019,7,11,2,15,0.0,0.0,0.0,20.0,0.0 -2019,7,11,2,30,0.0,0.0,0.0,20.0,0.0 -2019,7,11,2,45,0.0,0.0,0.0,20.0,0.0 -2019,7,11,3,0,0.0,0.0,0.0,20.0,0.0 -2019,7,11,3,15,0.0,0.0,0.0,20.0,0.0 -2019,7,11,3,30,0.0,0.0,0.0,20.0,0.0 -2019,7,11,3,45,0.0,0.0,0.0,20.0,0.0 -2019,7,11,4,0,0.0,0.0,0.0,20.0,0.0 -2019,7,11,4,15,0.0,0.0,0.0,20.0,0.0 -2019,7,11,4,30,0.0,0.0,0.0,20.0,0.0 -2019,7,11,4,45,0.0,0.0,0.0,20.0,0.0 -2019,7,11,5,0,4.0,18.564456270865403,19.0,20.3,0.0 -2019,7,11,5,15,4.0,18.750727773227425,19.0,20.3,0.0 -2019,7,11,5,30,4.0,18.941660416302064,19.0,20.3,0.0 -2019,7,11,5,45,4.0,19.136436597199165,19.0,20.3,0.0 -2019,7,11,6,0,47.0,117.92711148931213,114.0,22.6,0.0 -2019,7,11,6,15,47.0,120.27650266276689,114.0,22.6,0.0 -2019,7,11,6,30,47.0,122.6412430837646,114.0,22.6,0.0 -2019,7,11,6,45,47.0,125.01120657078104,114.0,22.6,0.0 -2019,7,11,7,0,560.0,310.37653112212706,151.0,25.9,0.2 -2019,7,11,7,15,560.0,338.376353211763,151.0,25.9,0.2 -2019,7,11,7,30,560.0,366.07692161801015,151.0,25.9,0.2 -2019,7,11,7,45,560.0,393.3596182542849,151.0,25.9,0.2 -2019,7,11,8,0,865.0,526.675154424446,111.0,28.7,1.6 -2019,7,11,8,15,865.0,566.9884125093968,111.0,28.7,1.6 -2019,7,11,8,30,865.0,606.1261998910796,111.0,28.7,1.6 -2019,7,11,8,45,865.0,643.9209225553839,111.0,28.7,1.6 -2019,7,11,9,0,1001.0,743.7051426996615,85.0,32.1,2.5 -2019,7,11,9,15,1001.0,783.7792913346382,85.0,32.1,2.5 -2019,7,11,9,30,1001.0,821.760487887416,85.0,32.1,2.5 -2019,7,11,9,45,1001.0,857.4860910433772,85.0,32.1,2.5 -2019,7,11,10,0,1004.0,901.2181126456078,93.0,35.3,1.5 -2019,7,11,10,15,1004.0,932.0761004905089,93.0,35.3,1.5 -2019,7,11,10,30,1004.0,960.2430590667245,93.0,35.3,1.5 -2019,7,11,10,45,1004.0,985.598373133361,93.0,35.3,1.5 -2019,7,11,11,0,1036.0,1028.1978806447341,84.0,37.5,1.7 -2019,7,11,11,15,1036.0,1048.235610498246,84.0,37.5,1.7 -2019,7,11,11,30,1036.0,1065.0751085965303,84.0,37.5,1.7 -2019,7,11,11,45,1036.0,1078.6442656234835,84.0,37.5,1.7 -2019,7,11,12,0,881.0,1004.5402163880714,150.0,39.3,3.7 -2019,7,11,12,15,881.0,1010.3810186220038,150.0,39.3,3.7 -2019,7,11,12,30,881.0,1013.3290538048865,150.0,39.3,3.7 -2019,7,11,12,45,881.0,1013.3716979974754,150.0,39.3,3.7 -2019,7,11,13,0,965.0,1049.5550075937722,107.0,38.6,4.3 -2019,7,11,13,15,965.0,1043.2499281611751,107.0,38.6,4.3 -2019,7,11,13,30,965.0,1033.8026674534149,107.0,38.6,4.3 -2019,7,11,13,45,965.0,1021.2536800912126,107.0,38.6,4.3 -2019,7,11,14,0,540.0,759.8752533607301,257.0,36.6,5.7 -2019,7,11,14,15,540.0,749.4791741224358,257.0,36.6,5.7 -2019,7,11,14,30,540.0,737.4593754875334,257.0,36.6,5.7 -2019,7,11,14,45,540.0,723.8673280790906,257.0,36.6,5.7 -2019,7,11,15,0,654.0,718.1330514361902,171.0,35.4,5.7 -2019,7,11,15,15,654.0,698.0825597160612,171.0,35.4,5.7 -2019,7,11,15,30,654.0,676.3625925747091,171.0,35.4,5.7 -2019,7,11,15,45,654.0,653.0661582459434,171.0,35.4,5.7 -2019,7,11,16,0,481.0,493.32712618031013,157.0,33.9,5.7 -2019,7,11,16,15,481.0,474.09906403616793,157.0,33.9,5.7 -2019,7,11,16,30,481.0,453.9452796998143,157.0,33.9,5.7 -2019,7,11,16,45,481.0,432.9520747698429,157.0,33.9,5.7 -2019,7,11,17,0,143.0,188.57575132701862,113.0,32.0,5.5 -2019,7,11,17,15,143.0,181.9165451175764,113.0,32.0,5.5 -2019,7,11,17,30,143.0,175.090703127658,113.0,32.0,5.5 -2019,7,11,17,45,143.0,168.1274546605867,113.0,32.0,5.5 -2019,7,11,18,0,99.0,66.26996590291087,33.0,30.4,3.5 -2019,7,11,18,15,99.0,61.32124832478278,33.0,30.4,3.5 -2019,7,11,18,30,99.0,56.34019935289396,33.0,30.4,3.5 -2019,7,11,18,45,99.0,51.34814860364656,33.0,30.4,3.5 -2019,7,11,19,0,0.0,0.0,0.0,28.7,2.7 -2019,7,11,19,15,0.0,0.0,0.0,28.7,2.7 -2019,7,11,19,30,0.0,0.0,0.0,28.7,2.7 -2019,7,11,19,45,0.0,0.0,0.0,28.7,2.7 -2019,7,11,20,0,0.0,0.0,0.0,27.1,0.0 -2019,7,11,20,15,0.0,0.0,0.0,27.1,0.0 -2019,7,11,20,30,0.0,0.0,0.0,27.1,0.0 -2019,7,11,20,45,0.0,0.0,0.0,27.1,0.0 -2019,7,11,21,0,0.0,0.0,0.0,25.9,0.0 -2019,7,11,21,15,0.0,0.0,0.0,25.9,0.0 -2019,7,11,21,30,0.0,0.0,0.0,25.9,0.0 -2019,7,11,21,45,0.0,0.0,0.0,25.9,0.0 -2019,7,11,22,0,0.0,0.0,0.0,24.3,0.2 -2019,7,11,22,15,0.0,0.0,0.0,24.3,0.2 -2019,7,11,22,30,0.0,0.0,0.0,24.3,0.2 -2019,7,11,22,45,0.0,0.0,0.0,24.3,0.2 -2019,7,11,23,0,0.0,0.0,0.0,23.8,2.0 -2019,7,11,23,15,0.0,0.0,0.0,23.8,2.0 -2019,7,11,23,30,0.0,0.0,0.0,23.8,2.0 -2019,7,11,23,45,0.0,0.0,0.0,23.8,2.0 -2019,7,12,0,0,0.0,0.0,0.0,22.6,1.6 -2019,7,12,0,15,0.0,0.0,0.0,22.6,1.6 -2019,7,12,0,30,0.0,0.0,0.0,22.6,1.6 -2019,7,12,0,45,0.0,0.0,0.0,22.6,1.6 -2019,7,12,1,0,0.0,0.0,0.0,21.1,2.3 -2019,7,12,1,15,0.0,0.0,0.0,21.1,2.3 -2019,7,12,1,30,0.0,0.0,0.0,21.1,2.3 -2019,7,12,1,45,0.0,0.0,0.0,21.1,2.3 -2019,7,12,2,0,0.0,0.0,0.0,21.1,0.2 -2019,7,12,2,15,0.0,0.0,0.0,21.1,0.2 -2019,7,12,2,30,0.0,0.0,0.0,21.1,0.2 -2019,7,12,2,45,0.0,0.0,0.0,21.1,0.2 -2019,7,12,3,0,0.0,0.0,0.0,21.0,1.3 -2019,7,12,3,15,0.0,0.0,0.0,21.0,1.3 -2019,7,12,3,30,0.0,0.0,0.0,21.0,1.3 -2019,7,12,3,45,0.0,0.0,0.0,21.0,1.3 -2019,7,12,4,0,0.0,0.0,0.0,20.7,0.0 -2019,7,12,4,15,0.0,0.0,0.0,20.7,0.0 -2019,7,12,4,30,0.0,0.0,0.0,20.7,0.0 -2019,7,12,4,45,0.0,0.0,0.0,20.7,0.0 -2019,7,12,5,0,17.0,28.12421252717065,30.0,21.8,0.2 -2019,7,12,5,15,17.0,28.916597562426155,30.0,21.8,0.2 -2019,7,12,5,30,17.0,29.728810741552653,30.0,21.8,0.2 -2019,7,12,5,45,17.0,30.557374043023884,30.0,21.8,0.2 -2019,7,12,6,0,512.0,136.126740527574,94.0,23.1,1.5 -2019,7,12,6,15,512.0,161.74374554977112,94.0,23.1,1.5 -2019,7,12,6,30,512.0,187.5281138258351,94.0,23.1,1.5 -2019,7,12,6,45,512.0,213.36943273231964,94.0,23.1,1.5 -2019,7,12,7,0,67.0,228.99516028688905,210.0,25.4,1.3 -2019,7,12,7,15,67.0,232.34823295134396,210.0,25.4,1.3 -2019,7,12,7,30,67.0,235.6654689828983,210.0,25.4,1.3 -2019,7,12,7,45,67.0,238.9326634675936,210.0,25.4,1.3 -2019,7,12,8,0,736.0,505.0144443569318,152.0,28.6,0.0 -2019,7,12,8,15,736.0,539.3473471073553,152.0,28.6,0.0 -2019,7,12,8,30,736.0,572.679156836316,152.0,28.6,0.0 -2019,7,12,8,45,736.0,604.8671416173622,152.0,28.6,0.0 -2019,7,12,9,0,12.0,309.887610884099,302.0,31.4,0.0 -2019,7,12,9,15,12.0,310.3684639515099,302.0,31.4,0.0 -2019,7,12,9,30,12.0,310.8242035115114,302.0,31.4,0.0 -2019,7,12,9,45,12.0,311.2528780173413,302.0,31.4,0.0 -2019,7,12,10,0,11.0,351.84826416737457,343.0,33.4,0.2 -2019,7,12,10,15,11.0,352.1866619382606,343.0,33.4,0.2 -2019,7,12,10,30,11.0,352.49554909068087,343.0,33.4,0.2 -2019,7,12,10,45,11.0,352.7736029224275,343.0,33.4,0.2 -2019,7,12,11,0,3.0,311.7326271175378,309.0,33.9,1.6 -2019,7,12,11,15,3.0,311.79070502148005,309.0,33.9,1.6 -2019,7,12,11,30,3.0,311.8395130830787,309.0,33.9,1.6 -2019,7,12,11,45,3.0,311.8788422987209,309.0,33.9,1.6 -2019,7,12,12,0,2.0,275.9390161697782,274.0,34.0,2.5 -2019,7,12,12,15,2.0,275.95228789881713,274.0,34.0,2.5 -2019,7,12,12,30,2.0,275.9589865546828,274.0,34.0,2.5 -2019,7,12,12,45,2.0,275.9590834527023,274.0,34.0,2.5 -2019,7,12,13,0,2.0,270.9525781779436,269.0,34.1,2.6 -2019,7,12,13,15,2.0,270.9394985869918,269.0,34.1,2.6 -2019,7,12,13,30,2.0,270.91990068866346,269.0,34.1,2.6 -2019,7,12,13,45,2.0,270.8938684041679,269.0,34.1,2.6 -2019,7,12,14,0,3.0,231.79226981161582,229.0,32.2,5.8 -2019,7,12,14,15,3.0,231.73446047396462,229.0,32.2,5.8 -2019,7,12,14,30,3.0,231.66762214175714,229.0,32.2,5.8 -2019,7,12,14,45,3.0,231.59204102699306,229.0,32.2,5.8 -2019,7,12,15,0,13.0,235.8681767116402,225.0,31.4,2.5 -2019,7,12,15,15,13.0,235.46925144009768,225.0,31.4,2.5 -2019,7,12,15,30,13.0,235.037110228266,225.0,31.4,2.5 -2019,7,12,15,45,13.0,234.57360357115766,225.0,31.4,2.5 -2019,7,12,16,0,98.0,270.45463038406575,202.0,30.6,2.0 -2019,7,12,16,15,98.0,266.5334444690085,202.0,30.6,2.0 -2019,7,12,16,30,98.0,262.42347568055806,202.0,30.6,2.0 -2019,7,12,16,45,98.0,258.14232353604035,202.0,30.6,2.0 -2019,7,12,17,0,216.0,225.9693596593634,112.0,29.3,1.6 -2019,7,12,17,15,216.0,215.90140862317577,112.0,29.3,1.6 -2019,7,12,17,30,216.0,205.58152352368614,112.0,29.3,1.6 -2019,7,12,17,45,216.0,195.05389569322813,112.0,29.3,1.6 -2019,7,12,18,0,3.0,13.005050084033368,12.0,28.9,2.3 -2019,7,12,18,15,3.0,12.854950445231433,12.0,28.9,2.3 -2019,7,12,18,30,3.0,12.70387016236387,12.0,28.9,2.3 -2019,7,12,18,45,3.0,12.552456184396187,12.0,28.9,2.3 -2019,7,12,19,0,0.0,0.0,0.0,28.8,0.0 -2019,7,12,19,15,0.0,0.0,0.0,28.8,0.0 -2019,7,12,19,30,0.0,0.0,0.0,28.8,0.0 -2019,7,12,19,45,0.0,0.0,0.0,28.8,0.0 -2019,7,12,20,0,0.0,0.0,0.0,28.1,0.2 -2019,7,12,20,15,0.0,0.0,0.0,28.1,0.2 -2019,7,12,20,30,0.0,0.0,0.0,28.1,0.2 -2019,7,12,20,45,0.0,0.0,0.0,28.1,0.2 -2019,7,12,21,0,0.0,0.0,0.0,26.8,1.6 -2019,7,12,21,15,0.0,0.0,0.0,26.8,1.6 -2019,7,12,21,30,0.0,0.0,0.0,26.8,1.6 -2019,7,12,21,45,0.0,0.0,0.0,26.8,1.6 -2019,7,12,22,0,0.0,0.0,0.0,27.1,1.9 -2019,7,12,22,15,0.0,0.0,0.0,27.1,1.9 -2019,7,12,22,30,0.0,0.0,0.0,27.1,1.9 -2019,7,12,22,45,0.0,0.0,0.0,27.1,1.9 -2019,7,12,23,0,0.0,0.0,0.0,26.6,0.2 -2019,7,12,23,15,0.0,0.0,0.0,26.6,0.2 -2019,7,12,23,30,0.0,0.0,0.0,26.6,0.2 -2019,7,12,23,45,0.0,0.0,0.0,26.6,0.2 -2019,7,13,0,0,0.0,0.0,0.0,25.4,1.6 -2019,7,13,0,15,0.0,0.0,0.0,25.4,1.6 -2019,7,13,0,30,0.0,0.0,0.0,25.4,1.6 -2019,7,13,0,45,0.0,0.0,0.0,25.4,1.6 -2019,7,13,1,0,0.0,0.0,0.0,23.8,1.9 -2019,7,13,1,15,0.0,0.0,0.0,23.8,1.9 -2019,7,13,1,30,0.0,0.0,0.0,23.8,1.9 -2019,7,13,1,45,0.0,0.0,0.0,23.8,1.9 -2019,7,13,2,0,0.0,0.0,0.0,23.2,0.0 -2019,7,13,2,15,0.0,0.0,0.0,23.2,0.0 -2019,7,13,2,30,0.0,0.0,0.0,23.2,0.0 -2019,7,13,2,45,0.0,0.0,0.0,23.2,0.0 -2019,7,13,3,0,0.0,0.0,0.0,22.8,0.0 -2019,7,13,3,15,0.0,0.0,0.0,22.8,0.0 -2019,7,13,3,30,0.0,0.0,0.0,22.8,0.0 -2019,7,13,3,45,0.0,0.0,0.0,22.8,0.0 -2019,7,13,4,0,0.0,0.0,0.0,22.8,0.0 -2019,7,13,4,15,0.0,0.0,0.0,22.8,0.0 -2019,7,13,4,30,0.0,0.0,0.0,22.8,0.0 -2019,7,13,4,45,0.0,0.0,0.0,22.8,0.0 -2019,7,13,5,0,3.0,15.66439623162326,16.0,23.0,0.0 -2019,7,13,5,15,3.0,15.80436366791793,16.0,23.0,0.0 -2019,7,13,5,30,3.0,15.947833561150356,16.0,23.0,0.0 -2019,7,13,5,45,3.0,16.094191551211818,16.0,23.0,0.0 -2019,7,13,6,0,4.0,62.323747880959445,62.0,24.4,0.0 -2019,7,13,6,15,4.0,62.52407363834638,62.0,24.4,0.0 -2019,7,13,6,30,4.0,62.725708181462196,62.0,24.4,0.0 -2019,7,13,6,45,4.0,62.92778808023776,62.0,24.4,0.0 -2019,7,13,7,0,14.0,166.9530679913293,163.0,24.5,0.0 -2019,7,13,7,15,14.0,167.65438538107088,163.0,24.5,0.0 -2019,7,13,7,30,14.0,168.3482073013258,163.0,24.5,0.0 -2019,7,13,7,45,14.0,169.03156270011405,163.0,24.5,0.0 -2019,7,13,8,0,248.0,413.7127346776744,295.0,25.9,0.2 -2019,7,13,8,15,248.0,425.29258109624186,295.0,25.9,0.2 -2019,7,13,8,30,248.0,436.53477754901667,295.0,25.9,0.2 -2019,7,13,8,45,248.0,447.3911832248549,295.0,25.9,0.2 -2019,7,13,9,0,16.0,324.5042135050288,314.0,27.9,1.3 -2019,7,13,9,15,16.0,325.1459689129018,314.0,27.9,1.3 -2019,7,13,9,30,16.0,325.75420736875157,314.0,27.9,1.3 -2019,7,13,9,45,16.0,326.3263243021317,314.0,27.9,1.3 -2019,7,13,10,0,459.0,700.9175154756063,332.0,29.1,0.2 -2019,7,13,10,15,459.0,715.0515420510551,332.0,29.1,0.2 -2019,7,13,10,30,459.0,727.9529840720578,332.0,29.1,0.2 -2019,7,13,10,45,459.0,739.5665955832148,332.0,29.1,0.2 -2019,7,13,11,0,7.0,348.37232792422566,342.0,30.9,2.0 -2019,7,13,11,15,7.0,348.50797365480963,342.0,30.9,2.0 -2019,7,13,11,30,7.0,348.62196890471614,342.0,30.9,2.0 -2019,7,13,11,45,7.0,348.7138255287841,342.0,30.9,2.0 -2019,7,13,12,0,25.0,431.22553636731175,407.0,33.4,1.7 -2019,7,13,12,15,25.0,431.39159288605003,407.0,33.4,1.7 -2019,7,13,12,30,25.0,431.4754067937944,407.0,33.4,1.7 -2019,7,13,12,45,25.0,431.4766191865243,407.0,33.4,1.7 -2019,7,13,13,0,72.0,490.2582476330541,420.0,34.4,3.0 -2019,7,13,13,15,72.0,489.7869284974104,420.0,34.4,3.0 -2019,7,13,13,30,72.0,489.0807241111561,420.0,34.4,3.0 -2019,7,13,13,45,72.0,488.1426585498915,420.0,34.4,3.0 -2019,7,13,14,0,88.0,449.86047069977883,368.0,34.3,2.7 -2019,7,13,14,15,88.0,448.16309562471616,368.0,34.3,2.7 -2019,7,13,14,30,88.0,446.2006147564477,368.0,34.3,2.7 -2019,7,13,14,45,88.0,443.98143173933687,368.0,34.3,2.7 -2019,7,13,15,0,70.0,343.47788024889854,285.0,34.5,3.6 -2019,7,13,15,15,70.0,341.3277506060307,285.0,34.5,3.6 -2019,7,13,15,30,70.0,338.9985935038209,285.0,34.5,3.6 -2019,7,13,15,45,70.0,336.5003827505596,285.0,34.5,3.6 -2019,7,13,16,0,47.0,218.79513364580785,186.0,34.2,3.9 -2019,7,13,16,15,47.0,216.91275223300087,186.0,34.2,3.9 -2019,7,13,16,30,47.0,214.93974482601007,186.0,34.2,3.9 -2019,7,13,16,45,47.0,212.88456014545375,186.0,34.2,3.9 -2019,7,13,17,0,105.0,166.30595478305182,111.0,34.0,4.2 -2019,7,13,17,15,105.0,161.40709451273833,111.0,34.0,4.2 -2019,7,13,17,30,105.0,156.3856482496034,111.0,34.0,4.2 -2019,7,13,17,45,105.0,151.26311859745223,111.0,34.0,4.2 -2019,7,13,18,0,52.0,64.36376126441314,47.0,30.6,4.5 -2019,7,13,18,15,52.0,61.759526418383,47.0,30.6,4.5 -2019,7,13,18,30,52.0,59.13827735787744,47.0,30.6,4.5 -2019,7,13,18,45,52.0,56.51123867379506,47.0,30.6,4.5 -2019,7,13,19,0,0.0,0.0,0.0,30.3,3.5 -2019,7,13,19,15,0.0,0.0,0.0,30.3,3.5 -2019,7,13,19,30,0.0,0.0,0.0,30.3,3.5 -2019,7,13,19,45,0.0,0.0,0.0,30.3,3.5 -2019,7,13,20,0,0.0,0.0,0.0,28.1,2.5 -2019,7,13,20,15,0.0,0.0,0.0,28.1,2.5 -2019,7,13,20,30,0.0,0.0,0.0,28.1,2.5 -2019,7,13,20,45,0.0,0.0,0.0,28.1,2.5 -2019,7,13,21,0,0.0,0.0,0.0,26.5,2.0 -2019,7,13,21,15,0.0,0.0,0.0,26.5,2.0 -2019,7,13,21,30,0.0,0.0,0.0,26.5,2.0 -2019,7,13,21,45,0.0,0.0,0.0,26.5,2.0 -2019,7,13,22,0,0.0,0.0,0.0,24.9,1.5 -2019,7,13,22,15,0.0,0.0,0.0,24.9,1.5 -2019,7,13,22,30,0.0,0.0,0.0,24.9,1.5 -2019,7,13,22,45,0.0,0.0,0.0,24.9,1.5 -2019,7,13,23,0,0.0,0.0,0.0,24.3,1.5 -2019,7,13,23,15,0.0,0.0,0.0,24.3,1.5 -2019,7,13,23,30,0.0,0.0,0.0,24.3,1.5 -2019,7,13,23,45,0.0,0.0,0.0,24.3,1.5 -2019,7,14,0,0,0.0,0.0,0.0,23.6,1.5 -2019,7,14,0,15,0.0,0.0,0.0,23.6,1.5 -2019,7,14,0,30,0.0,0.0,0.0,23.6,1.5 -2019,7,14,0,45,0.0,0.0,0.0,23.6,1.5 -2019,7,14,1,0,0.0,0.0,0.0,21.7,1.3 -2019,7,14,1,15,0.0,0.0,0.0,21.7,1.3 -2019,7,14,1,30,0.0,0.0,0.0,21.7,1.3 -2019,7,14,1,45,0.0,0.0,0.0,21.7,1.3 -2019,7,14,2,0,0.0,0.0,0.0,21.6,0.0 -2019,7,14,2,15,0.0,0.0,0.0,21.6,0.0 -2019,7,14,2,30,0.0,0.0,0.0,21.6,0.0 -2019,7,14,2,45,0.0,0.0,0.0,21.6,0.0 -2019,7,14,3,0,0.0,0.0,0.0,21.1,0.0 -2019,7,14,3,15,0.0,0.0,0.0,21.1,0.0 -2019,7,14,3,30,0.0,0.0,0.0,21.1,0.0 -2019,7,14,3,45,0.0,0.0,0.0,21.1,0.0 -2019,7,14,4,0,0.0,0.0,0.0,21.0,0.0 -2019,7,14,4,15,0.0,0.0,0.0,21.0,0.0 -2019,7,14,4,30,0.0,0.0,0.0,21.0,0.0 -2019,7,14,4,45,0.0,0.0,0.0,21.0,0.0 -2019,7,14,5,0,215.0,18.604416496891876,43.0,20.8,0.0 -2019,7,14,5,15,215.0,28.645477022489487,43.0,20.8,0.0 -2019,7,14,5,30,215.0,38.937798720194756,43.0,20.8,0.0 -2019,7,14,5,45,215.0,49.43730828839208,43.0,20.8,0.0 -2019,7,14,6,0,446.0,136.4705775161752,101.0,22.5,0.0 -2019,7,14,6,15,446.0,158.82930242137417,101.0,22.5,0.0 -2019,7,14,6,30,446.0,181.33410330029483,101.0,22.5,0.0 -2019,7,14,6,45,446.0,203.88861114057366,101.0,22.5,0.0 -2019,7,14,7,0,627.0,310.28575120242994,134.0,25.2,0.2 -2019,7,14,7,15,627.0,341.72625414382276,134.0,25.2,0.2 -2019,7,14,7,30,627.0,372.8307304389506,134.0,25.2,0.2 -2019,7,14,7,45,627.0,403.4659859450716,134.0,25.2,0.2 -2019,7,14,8,0,679.0,494.3398205817165,170.0,27.0,2.1 -2019,7,14,8,15,679.0,526.0761185264457,170.0,27.0,2.1 -2019,7,14,8,30,679.0,556.8870363298427,170.0,27.0,2.1 -2019,7,14,8,45,679.0,586.6406369116953,170.0,27.0,2.1 -2019,7,14,9,0,800.0,684.5472881136452,160.0,29.7,2.2 -2019,7,14,9,15,800.0,716.6672420032052,160.0,29.7,2.2 -2019,7,14,9,30,800.0,747.1096674445474,160.0,29.7,2.2 -2019,7,14,9,45,800.0,775.7442052983259,160.0,29.7,2.2 -2019,7,14,10,0,808.0,823.8727204581705,175.0,31.8,3.3 -2019,7,14,10,15,808.0,848.7784891638589,175.0,31.8,3.3 -2019,7,14,10,30,808.0,871.5123031431734,175.0,31.8,3.3 -2019,7,14,10,45,808.0,891.9768127144958,175.0,31.8,3.3 -2019,7,14,11,0,698.0,871.0110163649,236.0,32.9,4.7 -2019,7,14,11,15,698.0,884.5503996681691,236.0,32.9,4.7 -2019,7,14,11,30,698.0,895.9287554526885,236.0,32.9,4.7 -2019,7,14,11,45,698.0,905.097359852152,236.0,32.9,4.7 -2019,7,14,12,0,738.0,930.7571779416321,216.0,33.4,5.0 -2019,7,14,12,15,738.0,935.6640829870272,216.0,33.4,5.0 -2019,7,14,12,30,738.0,938.1407511112875,216.0,33.4,5.0 -2019,7,14,12,45,738.0,938.1765768412798,216.0,33.4,5.0 -2019,7,14,13,0,767.0,939.0551070315902,191.0,33.8,4.7 -2019,7,14,13,15,767.0,934.029213180725,191.0,33.8,4.7 -2019,7,14,13,30,767.0,926.4986293068448,191.0,33.8,4.7 -2019,7,14,13,45,767.0,916.4956025262137,191.0,33.8,4.7 -2019,7,14,14,0,791.0,895.3752374995336,160.0,33.2,5.2 -2019,7,14,14,15,791.0,880.1028475742211,160.0,33.2,5.2 -2019,7,14,14,30,791.0,862.4451280274345,160.0,33.2,5.2 -2019,7,14,14,45,791.0,842.477691925136,160.0,33.2,5.2 -2019,7,14,15,0,827.0,808.336987956359,118.0,33.2,5.6 -2019,7,14,15,15,827.0,782.9092640058457,118.0,33.2,5.6 -2019,7,14,15,30,827.0,755.364337108613,118.0,33.2,5.6 -2019,7,14,15,45,827.0,725.8201588704092,118.0,33.2,5.6 -2019,7,14,16,0,714.0,604.6443951471372,107.0,32.5,4.8 -2019,7,14,16,15,714.0,576.0195364533498,107.0,32.5,4.8 -2019,7,14,16,30,714.0,546.0165530820411,107.0,32.5,4.8 -2019,7,14,16,45,714.0,514.763922414149,107.0,32.5,4.8 -2019,7,14,17,0,553.0,368.7474741957113,78.0,31.9,4.2 -2019,7,14,17,15,553.0,342.9209324717323,78.0,31.9,4.2 -2019,7,14,17,30,553.0,316.44812363996016,78.0,31.9,4.2 -2019,7,14,17,45,553.0,289.44240833199206,78.0,31.9,4.2 -2019,7,14,18,0,221.0,105.54121852776863,32.0,29.4,4.5 -2019,7,14,18,15,221.0,94.4621194155512,32.0,29.4,4.5 -2019,7,14,18,30,221.0,83.31063736568248,32.0,29.4,4.5 -2019,7,14,18,45,221.0,72.13452473630664,32.0,29.4,4.5 -2019,7,14,19,0,0.0,0.0,0.0,24.7,3.4 -2019,7,14,19,15,0.0,0.0,0.0,24.7,3.4 -2019,7,14,19,30,0.0,0.0,0.0,24.7,3.4 -2019,7,14,19,45,0.0,0.0,0.0,24.7,3.4 -2019,7,14,20,0,0.0,0.0,0.0,22.1,1.5 -2019,7,14,20,15,0.0,0.0,0.0,22.1,1.5 -2019,7,14,20,30,0.0,0.0,0.0,22.1,1.5 -2019,7,14,20,45,0.0,0.0,0.0,22.1,1.5 -2019,7,14,21,0,0.0,0.0,0.0,21.6,1.3 -2019,7,14,21,15,0.0,0.0,0.0,21.6,1.3 -2019,7,14,21,30,0.0,0.0,0.0,21.6,1.3 -2019,7,14,21,45,0.0,0.0,0.0,21.6,1.3 -2019,7,14,22,0,0.0,0.0,0.0,20.3,0.2 -2019,7,14,22,15,0.0,0.0,0.0,20.3,0.2 -2019,7,14,22,30,0.0,0.0,0.0,20.3,0.2 -2019,7,14,22,45,0.0,0.0,0.0,20.3,0.2 -2019,7,14,23,0,0.0,0.0,0.0,18.2,1.9 -2019,7,14,23,15,0.0,0.0,0.0,18.2,1.9 -2019,7,14,23,30,0.0,0.0,0.0,18.2,1.9 -2019,7,14,23,45,0.0,0.0,0.0,18.2,1.9 -2019,7,15,0,0,0.0,0.0,0.0,17.7,0.0 -2019,7,15,0,15,0.0,0.0,0.0,17.7,0.0 -2019,7,15,0,30,0.0,0.0,0.0,17.7,0.0 -2019,7,15,0,45,0.0,0.0,0.0,17.7,0.0 -2019,7,15,1,0,0.0,0.0,0.0,16.7,0.2 -2019,7,15,1,15,0.0,0.0,0.0,16.7,0.2 -2019,7,15,1,30,0.0,0.0,0.0,16.7,0.2 -2019,7,15,1,45,0.0,0.0,0.0,16.7,0.2 -2019,7,15,2,0,0.0,0.0,0.0,16.8,1.5 -2019,7,15,2,15,0.0,0.0,0.0,16.8,1.5 -2019,7,15,2,30,0.0,0.0,0.0,16.8,1.5 -2019,7,15,2,45,0.0,0.0,0.0,16.8,1.5 -2019,7,15,3,0,0.0,0.0,0.0,16.7,1.3 -2019,7,15,3,15,0.0,0.0,0.0,16.7,1.3 -2019,7,15,3,30,0.0,0.0,0.0,16.7,1.3 -2019,7,15,3,45,0.0,0.0,0.0,16.7,1.3 -2019,7,15,4,0,0.0,0.0,0.0,16.8,0.0 -2019,7,15,4,15,0.0,0.0,0.0,16.8,0.0 -2019,7,15,4,30,0.0,0.0,0.0,16.8,0.0 -2019,7,15,4,45,0.0,0.0,0.0,16.8,0.0 -2019,7,15,5,0,1.0,15.88486041754503,16.0,16.7,0.0 -2019,7,15,5,15,1.0,15.931611633262396,16.0,16.7,0.0 -2019,7,15,5,30,1.0,15.979532721945734,16.0,16.7,0.0 -2019,7,15,5,45,1.0,16.028418478136327,16.0,16.7,0.0 -2019,7,15,6,0,1.0,45.07805956552109,45.0,16.9,0.5 -2019,7,15,6,15,1.0,45.128243413342794,45.0,16.9,0.5 -2019,7,15,6,30,1.0,45.178755126660704,45.0,16.9,0.5 -2019,7,15,6,45,1.0,45.229378406563704,45.0,16.9,0.5 -2019,7,15,7,0,3.0,119.83968942918624,119.0,18.1,0.4 -2019,7,15,7,15,3.0,119.99027903007541,119.0,18.1,0.4 -2019,7,15,7,30,3.0,120.13925917456869,119.0,18.1,0.4 -2019,7,15,7,45,3.0,120.28599190681551,119.0,18.1,0.4 -2019,7,15,8,0,285.0,421.83564499930867,286.0,21.4,1.7 -2019,7,15,8,15,285.0,435.1703414573119,286.0,21.4,1.7 -2019,7,15,8,30,285.0,448.11621930407006,286.0,21.4,1.7 -2019,7,15,8,45,285.0,460.61784230315607,286.0,21.4,1.7 -2019,7,15,9,0,602.0,632.1973659808191,238.0,24.4,3.2 -2019,7,15,9,15,602.0,656.3927879784997,238.0,24.4,3.2 -2019,7,15,9,30,602.0,679.3245559604458,238.0,24.4,3.2 -2019,7,15,9,45,602.0,700.8944725756099,238.0,24.4,3.2 -2019,7,15,10,0,981.0,889.0979715267612,102.0,28.1,3.5 -2019,7,15,10,15,981.0,919.3677596388038,102.0,28.1,3.5 -2019,7,15,10,30,981.0,946.997813553794,102.0,28.1,3.5 -2019,7,15,10,45,981.0,971.8698171390245,102.0,28.1,3.5 -2019,7,15,11,0,1010.0,1013.24264760784,95.0,30.3,3.5 -2019,7,15,11,15,1010.0,1032.8544097924123,95.0,30.3,3.5 -2019,7,15,11,30,1010.0,1049.3359291274594,95.0,30.3,3.5 -2019,7,15,11,45,1010.0,1062.6166292169,95.0,30.3,3.5 -2019,7,15,12,0,1073.0,1108.6211225631066,70.0,32.1,6.1 -2019,7,15,12,15,1073.0,1115.7628422122468,70.0,32.1,6.1 -2019,7,15,12,30,1073.0,1119.3674910171035,70.0,32.1,6.1 -2019,7,15,12,45,1073.0,1119.4196333180985,70.0,32.1,6.1 -2019,7,15,13,0,891.0,1006.5124602404469,138.0,31.5,5.6 -2019,7,15,13,15,891.0,1000.6679592620764,138.0,31.5,5.6 -2019,7,15,13,30,891.0,991.9108095640144,138.0,31.5,5.6 -2019,7,15,13,45,891.0,980.2785106056904,138.0,31.5,5.6 -2019,7,15,14,0,719.0,855.0170686574758,187.0,29.8,5.3 -2019,7,15,14,15,719.0,841.1203842679191,187.0,29.8,5.3 -2019,7,15,14,30,719.0,825.0532358529681,187.0,29.8,5.3 -2019,7,15,14,45,719.0,806.8844254088094,187.0,29.8,5.3 -2019,7,15,15,0,602.0,689.106309112374,187.0,29.1,7.0 -2019,7,15,15,15,602.0,670.5773828327374,187.0,29.1,7.0 -2019,7,15,15,30,602.0,650.5056720948799,187.0,29.1,7.0 -2019,7,15,15,45,602.0,628.9771270456456,187.0,29.1,7.0 -2019,7,15,16,0,453.0,477.35718124200366,162.0,28.1,5.1 -2019,7,15,16,15,453.0,459.17712906057125,162.0,28.1,5.1 -2019,7,15,16,30,453.0,440.12181042567363,162.0,28.1,5.1 -2019,7,15,16,45,453.0,420.272823137131,162.0,28.1,5.1 -2019,7,15,17,0,405.0,306.52680189921176,94.0,26.9,5.1 -2019,7,15,17,15,405.0,287.59255953367835,94.0,26.9,5.1 -2019,7,15,17,30,405.0,268.1845186169256,94.0,26.9,5.1 -2019,7,15,17,45,405.0,248.3857873597357,94.0,26.9,5.1 -2019,7,15,18,0,175.0,90.02271782607151,32.0,24.7,5.0 -2019,7,15,18,15,175.0,81.24054445727305,32.0,24.7,5.0 -2019,7,15,18,30,175.0,72.40099462663795,32.0,24.7,5.0 -2019,7,15,18,45,175.0,63.54192064361341,32.0,24.7,5.0 -2019,7,15,19,0,0.0,0.0,0.0,21.9,4.0 -2019,7,15,19,15,0.0,0.0,0.0,21.9,4.0 -2019,7,15,19,30,0.0,0.0,0.0,21.9,4.0 -2019,7,15,19,45,0.0,0.0,0.0,21.9,4.0 -2019,7,15,20,0,0.0,0.0,0.0,19.2,3.4 -2019,7,15,20,15,0.0,0.0,0.0,19.2,3.4 -2019,7,15,20,30,0.0,0.0,0.0,19.2,3.4 -2019,7,15,20,45,0.0,0.0,0.0,19.2,3.4 -2019,7,15,21,0,0.0,0.0,0.0,17.7,2.0 -2019,7,15,21,15,0.0,0.0,0.0,17.7,2.0 -2019,7,15,21,30,0.0,0.0,0.0,17.7,2.0 -2019,7,15,21,45,0.0,0.0,0.0,17.7,2.0 -2019,7,15,22,0,0.0,0.0,0.0,16.6,1.6 -2019,7,15,22,15,0.0,0.0,0.0,16.6,1.6 -2019,7,15,22,30,0.0,0.0,0.0,16.6,1.6 -2019,7,15,22,45,0.0,0.0,0.0,16.6,1.6 -2019,7,15,23,0,0.0,0.0,0.0,16.0,2.1 -2019,7,15,23,15,0.0,0.0,0.0,16.0,2.1 -2019,7,15,23,30,0.0,0.0,0.0,16.0,2.1 -2019,7,15,23,45,0.0,0.0,0.0,16.0,2.1 -2019,7,16,0,0,0.0,0.0,0.0,15.5,2.0 -2019,7,16,0,15,0.0,0.0,0.0,15.5,2.0 -2019,7,16,0,30,0.0,0.0,0.0,15.5,2.0 -2019,7,16,0,45,0.0,0.0,0.0,15.5,2.0 -2019,7,16,1,0,0.0,0.0,0.0,14.4,1.3 -2019,7,16,1,15,0.0,0.0,0.0,14.4,1.3 -2019,7,16,1,30,0.0,0.0,0.0,14.4,1.3 -2019,7,16,1,45,0.0,0.0,0.0,14.4,1.3 -2019,7,16,2,0,0.0,0.0,0.0,14.5,0.0 -2019,7,16,2,15,0.0,0.0,0.0,14.5,0.0 -2019,7,16,2,30,0.0,0.0,0.0,14.5,0.0 -2019,7,16,2,45,0.0,0.0,0.0,14.5,0.0 -2019,7,16,3,0,0.0,0.0,0.0,15.1,0.2 -2019,7,16,3,15,0.0,0.0,0.0,15.1,0.2 -2019,7,16,3,30,0.0,0.0,0.0,15.1,0.2 -2019,7,16,3,45,0.0,0.0,0.0,15.1,0.2 -2019,7,16,4,0,0.0,0.0,0.0,15.5,1.3 -2019,7,16,4,15,0.0,0.0,0.0,15.5,1.3 -2019,7,16,4,30,0.0,0.0,0.0,15.5,1.3 -2019,7,16,4,45,0.0,0.0,0.0,15.5,1.3 -2019,7,16,5,0,1.0,14.883117427875158,15.0,15.6,0.2 -2019,7,16,5,15,1.0,14.929919009998088,15.0,15.6,0.2 -2019,7,16,5,30,1.0,14.977891725424191,15.0,15.6,0.2 -2019,7,16,5,45,1.0,15.026830147621107,15.0,15.6,0.2 -2019,7,16,6,0,1.0,45.07652471475183,45.0,15.7,1.2 -2019,7,16,6,15,1.0,45.126762627050645,45.0,15.7,1.2 -2019,7,16,6,30,1.0,45.177328758064434,45.0,15.7,1.2 -2019,7,16,6,45,1.0,45.228006575857144,45.0,15.7,1.2 -2019,7,16,7,0,1.0,95.27857907023278,95.0,16.9,0.2 -2019,7,16,7,15,1.0,95.3288296820064,95.0,16.9,0.2 -2019,7,16,7,30,1.0,95.37854323034377,95.0,16.9,0.2 -2019,7,16,7,45,1.0,95.42750683419874,95.0,16.9,0.2 -2019,7,16,8,0,1.0,153.4755108239026,153.0,19.0,0.0 -2019,7,16,8,15,1.0,153.5223496390017,153.0,19.0,0.0 -2019,7,16,8,30,1.0,153.567822708499,153.0,19.0,0.0 -2019,7,16,8,45,1.0,153.6117353097297,153.0,19.0,0.0 -2019,7,16,9,0,511.0,608.1425945210278,274.0,20.9,1.9 -2019,7,16,9,15,511.0,628.7026951476089,274.0,20.9,1.9 -2019,7,16,9,30,511.0,648.1890036442915,274.0,20.9,1.9 -2019,7,16,9,45,511.0,666.5180766465004,274.0,20.9,1.9 -2019,7,16,10,0,696.0,782.905191134634,225.0,23.6,0.2 -2019,7,16,10,15,696.0,804.4041406071682,225.0,23.6,0.2 -2019,7,16,10,30,696.0,824.0282334763693,225.0,23.6,0.2 -2019,7,16,10,45,696.0,841.6934363638261,225.0,23.6,0.2 -2019,7,16,11,0,861.0,941.2285254032972,159.0,26.4,2.4 -2019,7,16,11,15,861.0,957.9650785834451,159.0,26.4,2.4 -2019,7,16,11,30,861.0,972.0303024141544,159.0,26.4,2.4 -2019,7,16,11,45,861.0,983.3639674476502,159.0,26.4,2.4 -2019,7,16,12,0,988.0,1058.775296975609,103.0,28.4,4.6 -2019,7,16,12,15,988.0,1065.3583544425137,103.0,28.4,4.6 -2019,7,16,12,30,988.0,1068.6810290077688,103.0,28.4,4.6 -2019,7,16,12,45,988.0,1068.7290924687795,103.0,28.4,4.6 -2019,7,16,13,0,960.0,1044.2249447874597,109.0,28.8,4.5 -2019,7,16,13,15,960.0,1037.921055306624,109.0,28.8,4.5 -2019,7,16,13,30,960.0,1028.4755775715678,109.0,28.8,4.5 -2019,7,16,13,45,960.0,1015.9289585680482,109.0,28.8,4.5 -2019,7,16,14,0,803.0,900.5645256774988,155.0,27.6,4.4 -2019,7,16,14,15,803.0,885.027586162532,155.0,27.6,4.4 -2019,7,16,14,30,803.0,867.063998150942,155.0,27.6,4.4 -2019,7,16,14,45,803.0,846.750684484415,155.0,27.6,4.4 -2019,7,16,15,0,622.0,699.3395016089296,181.0,26.5,6.7 -2019,7,16,15,15,622.0,680.1743714667523,181.0,26.5,6.7 -2019,7,16,15,30,622.0,659.4134842646729,181.0,26.5,6.7 -2019,7,16,15,45,622.0,637.1457413089599,181.0,26.5,6.7 -2019,7,16,16,0,428.0,464.5814477479774,167.0,24.9,6.4 -2019,7,16,16,15,428.0,447.38620471940106,167.0,24.9,6.4 -2019,7,16,16,30,428.0,429.3631082153839,167.0,24.9,6.4 -2019,7,16,16,45,428.0,410.5893359021121,167.0,24.9,6.4 -2019,7,16,17,0,288.0,255.82673043689704,105.0,23.7,6.0 -2019,7,16,17,15,288.0,242.34787478549302,105.0,23.7,6.0 -2019,7,16,17,30,288.0,228.53173274277538,105.0,23.7,6.0 -2019,7,16,17,45,288.0,214.4374671500636,105.0,23.7,6.0 -2019,7,16,18,0,127.0,73.94767305793371,32.0,21.9,4.0 -2019,7,16,18,15,127.0,67.5674581959838,32.0,21.9,4.0 -2019,7,16,18,30,127.0,61.14555955723246,32.0,21.9,4.0 -2019,7,16,18,45,127.0,54.709476697558664,32.0,21.9,4.0 -2019,7,16,19,0,0.0,0.0,0.0,19.8,3.1 -2019,7,16,19,15,0.0,0.0,0.0,19.8,3.1 -2019,7,16,19,30,0.0,0.0,0.0,19.8,3.1 -2019,7,16,19,45,0.0,0.0,0.0,19.8,3.1 -2019,7,16,20,0,0.0,0.0,0.0,18.2,3.0 -2019,7,16,20,15,0.0,0.0,0.0,18.2,3.0 -2019,7,16,20,30,0.0,0.0,0.0,18.2,3.0 -2019,7,16,20,45,0.0,0.0,0.0,18.2,3.0 -2019,7,16,21,0,0.0,0.0,0.0,17.1,2.2 -2019,7,16,21,15,0.0,0.0,0.0,17.1,2.2 -2019,7,16,21,30,0.0,0.0,0.0,17.1,2.2 -2019,7,16,21,45,0.0,0.0,0.0,17.1,2.2 -2019,7,16,22,0,0.0,0.0,0.0,16.0,2.5 -2019,7,16,22,15,0.0,0.0,0.0,16.0,2.5 -2019,7,16,22,30,0.0,0.0,0.0,16.0,2.5 -2019,7,16,22,45,0.0,0.0,0.0,16.0,2.5 -2019,7,16,23,0,0.0,0.0,0.0,15.5,2.0 -2019,7,16,23,15,0.0,0.0,0.0,15.5,2.0 -2019,7,16,23,30,0.0,0.0,0.0,15.5,2.0 -2019,7,16,23,45,0.0,0.0,0.0,15.5,2.0 -2019,7,17,0,0,0.0,0.0,0.0,16.0,0.0 -2019,7,17,0,15,0.0,0.0,0.0,16.0,0.0 -2019,7,17,0,30,0.0,0.0,0.0,16.0,0.0 -2019,7,17,0,45,0.0,0.0,0.0,16.0,0.0 -2019,7,17,1,0,0.0,0.0,0.0,16.1,0.0 -2019,7,17,1,15,0.0,0.0,0.0,16.1,0.0 -2019,7,17,1,30,0.0,0.0,0.0,16.1,0.0 -2019,7,17,1,45,0.0,0.0,0.0,16.1,0.0 -2019,7,17,2,0,0.0,0.0,0.0,16.1,0.0 -2019,7,17,2,15,0.0,0.0,0.0,16.1,0.0 -2019,7,17,2,30,0.0,0.0,0.0,16.1,0.0 -2019,7,17,2,45,0.0,0.0,0.0,16.1,0.0 -2019,7,17,3,0,0.0,0.0,0.0,16.1,0.0 -2019,7,17,3,15,0.0,0.0,0.0,16.1,0.0 -2019,7,17,3,30,0.0,0.0,0.0,16.1,0.0 -2019,7,17,3,45,0.0,0.0,0.0,16.1,0.0 -2019,7,17,4,0,0.0,0.0,0.0,16.3,0.0 -2019,7,17,4,15,0.0,0.0,0.0,16.3,0.0 -2019,7,17,4,30,0.0,0.0,0.0,16.3,0.0 -2019,7,17,4,45,0.0,0.0,0.0,16.3,0.0 -2019,7,17,5,0,3.0,14.643911507473822,15.0,16.7,0.0 -2019,7,17,5,15,3.0,14.784472452651404,15.0,16.7,0.0 -2019,7,17,5,30,3.0,14.92855070635908,15.0,16.7,0.0 -2019,7,17,5,45,3.0,15.075529303395177,15.0,16.7,0.0 -2019,7,17,6,0,5.0,66.37463143140438,66.0,16.9,0.0 -2019,7,17,6,15,5.0,66.62610043865298,66.0,16.9,0.0 -2019,7,17,6,30,5.0,66.87921236517585,66.0,16.9,0.0 -2019,7,17,6,45,5.0,67.13288334684515,66.0,16.9,0.0 -2019,7,17,7,0,40.0,204.08821700458483,193.0,18.4,0.3 -2019,7,17,7,15,40.0,206.1004776066869,193.0,18.4,0.3 -2019,7,17,7,30,40.0,208.09123177224131,193.0,18.4,0.3 -2019,7,17,7,45,40.0,210.05195478628505,193.0,18.4,0.3 -2019,7,17,8,0,444.0,453.61418090360456,243.0,20.2,0.2 -2019,7,17,8,15,444.0,474.4337506223641,243.0,20.2,0.2 -2019,7,17,8,30,444.0,494.64625469022843,243.0,20.2,0.2 -2019,7,17,8,45,444.0,514.1651400616989,243.0,20.2,0.2 -2019,7,17,9,0,584.0,626.3188854546046,245.0,22.0,1.6 -2019,7,17,9,15,584.0,649.8422837666538,245.0,22.0,1.6 -2019,7,17,9,30,584.0,672.137125835973,245.0,22.0,1.6 -2019,7,17,9,45,584.0,693.1079417260551,245.0,22.0,1.6 -2019,7,17,10,0,712.0,788.1668339089679,218.0,24.6,2.3 -2019,7,17,10,15,712.0,810.1844792852471,218.0,24.6,2.3 -2019,7,17,10,30,712.0,830.282034199604,218.0,24.6,2.3 -2019,7,17,10,45,712.0,848.3734378364627,218.0,24.6,2.3 -2019,7,17,11,0,791.0,910.1004846097663,192.0,26.4,3.5 -2019,7,17,11,15,791.0,925.4934478900661,192.0,26.4,3.5 -2019,7,17,11,30,791.0,938.4295328548077,192.0,26.4,3.5 -2019,7,17,11,45,791.0,948.8533452021883,192.0,26.4,3.5 -2019,7,17,12,0,995.0,1062.942664127189,101.0,29.0,3.3 -2019,7,17,12,15,995.0,1069.579738159673,101.0,29.0,3.3 -2019,7,17,12,30,995.0,1072.9296765714703,101.0,29.0,3.3 -2019,7,17,12,45,995.0,1072.9781344120088,101.0,29.0,3.3 -2019,7,17,13,0,911.0,1015.9431032216979,129.0,29.2,4.6 -2019,7,17,13,15,911.0,1009.9543197112373,129.0,29.2,4.6 -2019,7,17,13,30,911.0,1000.9809832528338,129.0,29.2,4.6 -2019,7,17,13,45,911.0,989.0615190508137,129.0,29.2,4.6 -2019,7,17,14,0,848.0,924.7941042069355,138.0,28.1,5.3 -2019,7,17,14,15,848.0,908.3682236099949,138.0,28.1,5.3 -2019,7,17,14,30,848.0,889.3768545899401,138.0,28.1,5.3 -2019,7,17,14,45,848.0,867.9013211045229,138.0,28.1,5.3 -2019,7,17,15,0,652.0,713.846576904119,171.0,27.3,6.6 -2019,7,17,15,15,652.0,693.7347342210252,171.0,27.3,6.6 -2019,7,17,15,30,652.0,671.9483078168137,171.0,27.3,6.6 -2019,7,17,15,45,652.0,648.5805905140605,171.0,27.3,6.6 -2019,7,17,16,0,501.0,499.88121914008025,152.0,26.1,5.8 -2019,7,17,16,15,501.0,479.7307503301044,152.0,26.1,5.8 -2019,7,17,16,30,501.0,458.6101506758958,152.0,26.1,5.8 -2019,7,17,16,45,501.0,436.6098618276671,152.0,26.1,5.8 -2019,7,17,17,0,378.0,293.54392600225356,96.0,25.5,5.1 -2019,7,17,17,15,378.0,275.8332469098782,96.0,25.5,5.1 -2019,7,17,17,30,378.0,257.67938694271106,96.0,25.5,5.1 -2019,7,17,17,45,378.0,239.1600837161627,96.0,25.5,5.1 -2019,7,17,18,0,198.0,96.13814462036324,31.0,24.1,4.9 -2019,7,17,18,15,198.0,86.17997193331855,31.0,24.1,4.9 -2019,7,17,18,30,198.0,76.1567396430132,31.0,24.1,4.9 -2019,7,17,18,45,198.0,66.11136876890876,31.0,24.1,4.9 -2019,7,17,19,0,0.0,0.0,0.0,22.0,3.5 -2019,7,17,19,15,0.0,0.0,0.0,22.0,3.5 -2019,7,17,19,30,0.0,0.0,0.0,22.0,3.5 -2019,7,17,19,45,0.0,0.0,0.0,22.0,3.5 -2019,7,17,20,0,0.0,0.0,0.0,20.5,2.5 -2019,7,17,20,15,0.0,0.0,0.0,20.5,2.5 -2019,7,17,20,30,0.0,0.0,0.0,20.5,2.5 -2019,7,17,20,45,0.0,0.0,0.0,20.5,2.5 -2019,7,17,21,0,0.0,0.0,0.0,19.3,1.6 -2019,7,17,21,15,0.0,0.0,0.0,19.3,1.6 -2019,7,17,21,30,0.0,0.0,0.0,19.3,1.6 -2019,7,17,21,45,0.0,0.0,0.0,19.3,1.6 -2019,7,17,22,0,0.0,0.0,0.0,18.9,2.0 -2019,7,17,22,15,0.0,0.0,0.0,18.9,2.0 -2019,7,17,22,30,0.0,0.0,0.0,18.9,2.0 -2019,7,17,22,45,0.0,0.0,0.0,18.9,2.0 -2019,7,17,23,0,0.0,0.0,0.0,18.8,1.5 -2019,7,17,23,15,0.0,0.0,0.0,18.8,1.5 -2019,7,17,23,30,0.0,0.0,0.0,18.8,1.5 -2019,7,17,23,45,0.0,0.0,0.0,18.8,1.5 -2019,7,18,0,0,0.0,0.0,0.0,17.7,1.3 -2019,7,18,0,15,0.0,0.0,0.0,17.7,1.3 -2019,7,18,0,30,0.0,0.0,0.0,17.7,1.3 -2019,7,18,0,45,0.0,0.0,0.0,17.7,1.3 -2019,7,18,1,0,0.0,0.0,0.0,16.6,0.0 -2019,7,18,1,15,0.0,0.0,0.0,16.6,0.0 -2019,7,18,1,30,0.0,0.0,0.0,16.6,0.0 -2019,7,18,1,45,0.0,0.0,0.0,16.6,0.0 -2019,7,18,2,0,0.0,0.0,0.0,16.1,0.0 -2019,7,18,2,15,0.0,0.0,0.0,16.1,0.0 -2019,7,18,2,30,0.0,0.0,0.0,16.1,0.0 -2019,7,18,2,45,0.0,0.0,0.0,16.1,0.0 -2019,7,18,3,0,0.0,0.0,0.0,16.0,0.0 -2019,7,18,3,15,0.0,0.0,0.0,16.0,0.0 -2019,7,18,3,30,0.0,0.0,0.0,16.0,0.0 -2019,7,18,3,45,0.0,0.0,0.0,16.0,0.0 -2019,7,18,4,0,0.0,0.0,0.0,15.7,0.0 -2019,7,18,4,15,0.0,0.0,0.0,15.7,0.0 -2019,7,18,4,30,0.0,0.0,0.0,15.7,0.0 -2019,7,18,4,45,0.0,0.0,0.0,15.7,0.0 -2019,7,18,5,0,15.0,67.19130456361432,69.0,17.1,0.0 -2019,7,18,5,15,15.0,67.89491488241157,69.0,17.1,0.0 -2019,7,18,5,30,15.0,68.61613190250868,69.0,17.1,0.0 -2019,7,18,5,45,15.0,69.35186726190236,69.0,17.1,0.0 -2019,7,18,6,0,31.0,103.27120555291843,101.0,20.2,0.2 -2019,7,18,6,15,31.0,104.83210053186517,101.0,20.2,0.2 -2019,7,18,6,30,31.0,106.40319328617223,101.0,20.2,0.2 -2019,7,18,6,45,31.0,107.97775615546713,101.0,20.2,0.2 -2019,7,18,7,0,45.0,208.4099063835985,196.0,22.0,1.3 -2019,7,18,7,15,45.0,210.6762944435313,196.0,22.0,1.3 -2019,7,18,7,30,45.0,212.91846002902298,196.0,22.0,1.3 -2019,7,18,7,45,45.0,215.12680184281294,196.0,22.0,1.3 -2019,7,18,8,0,87.0,341.1642692906992,300.0,24.4,0.0 -2019,7,18,8,15,87.0,345.2484557294598,300.0,24.4,0.0 -2019,7,18,8,30,87.0,349.213553765707,300.0,24.4,0.0 -2019,7,18,8,45,87.0,353.04258424091665,300.0,24.4,0.0 -2019,7,18,9,0,535.0,612.7901793382932,264.0,28.1,0.0 -2019,7,18,9,15,535.0,634.364569282681,264.0,28.1,0.0 -2019,7,18,9,30,535.0,654.8121938210818,264.0,28.1,0.0 -2019,7,18,9,45,535.0,674.045493086046,264.0,28.1,0.0 -2019,7,18,10,0,88.0,500.397056874932,430.0,30.3,0.4 -2019,7,18,10,15,88.0,503.12145816882395,430.0,30.3,0.4 -2019,7,18,10,30,88.0,505.6082728884274,430.0,30.3,0.4 -2019,7,18,10,45,88.0,507.8468521113301,430.0,30.3,0.4 -2019,7,18,11,0,99.0,547.8060611348302,458.0,32.3,3.2 -2019,7,18,11,15,99.0,549.7348223806832,458.0,32.3,3.2 -2019,7,18,11,30,99.0,551.3557331110419,458.0,32.3,3.2 -2019,7,18,11,45,99.0,552.6618523373122,458.0,32.3,3.2 -2019,7,18,12,0,50.0,485.30686214972127,437.0,33.2,4.3 -2019,7,18,12,15,50.0,485.64076575810583,437.0,33.2,4.3 -2019,7,18,12,30,50.0,485.8092973306166,437.0,33.2,4.3 -2019,7,18,12,45,50.0,485.81173518918666,437.0,33.2,4.3 -2019,7,18,13,0,42.0,440.86437787140636,400.0,32.7,5.8 -2019,7,18,13,15,42.0,440.5879594043148,400.0,32.7,5.8 -2019,7,18,13,30,42.0,440.17378582395474,400.0,32.7,5.8 -2019,7,18,13,45,42.0,439.6236306851823,400.0,32.7,5.8 -2019,7,18,14,0,31.0,359.7413177366586,331.0,31.7,6.0 -2019,7,18,14,15,31.0,359.1401550316965,331.0,31.7,6.0 -2019,7,18,14,30,31.0,358.4450992808861,331.0,31.7,6.0 -2019,7,18,14,45,31.0,357.6591268196592,331.0,31.7,6.0 -2019,7,18,15,0,44.0,306.59892081681994,270.0,31.8,4.1 -2019,7,18,15,15,44.0,305.2401241563758,270.0,31.8,4.1 -2019,7,18,15,30,44.0,303.7681892418323,270.0,31.8,4.1 -2019,7,18,15,45,44.0,302.18941912446894,270.0,31.8,4.1 -2019,7,18,16,0,50.0,220.67110720489256,186.0,31.4,4.1 -2019,7,18,16,15,50.0,218.6577772277825,186.0,31.4,4.1 -2019,7,18,16,30,50.0,216.54751682543858,186.0,31.4,4.1 -2019,7,18,16,45,50.0,214.34936245687666,186.0,31.4,4.1 -2019,7,18,17,0,79.0,147.19490859138017,106.0,31.0,3.9 -2019,7,18,17,15,79.0,143.48922757904802,106.0,31.0,3.9 -2019,7,18,17,30,79.0,139.6908179398699,106.0,31.0,3.9 -2019,7,18,17,45,79.0,135.81594504706325,106.0,31.0,3.9 -2019,7,18,18,0,40.0,62.10440592467665,49.0,29.9,2.1 -2019,7,18,18,15,40.0,60.09034788732604,49.0,29.9,2.1 -2019,7,18,18,30,40.0,58.06313143015564,49.0,29.9,2.1 -2019,7,18,18,45,40.0,56.03143740525898,49.0,29.9,2.1 -2019,7,18,19,0,0.0,0.0,0.0,28.7,2.0 -2019,7,18,19,15,0.0,0.0,0.0,28.7,2.0 -2019,7,18,19,30,0.0,0.0,0.0,28.7,2.0 -2019,7,18,19,45,0.0,0.0,0.0,28.7,2.0 -2019,7,18,20,0,0.0,0.0,0.0,27.1,1.3 -2019,7,18,20,15,0.0,0.0,0.0,27.1,1.3 -2019,7,18,20,30,0.0,0.0,0.0,27.1,1.3 -2019,7,18,20,45,0.0,0.0,0.0,27.1,1.3 -2019,7,18,21,0,0.0,0.0,0.0,26.6,0.0 -2019,7,18,21,15,0.0,0.0,0.0,26.6,0.0 -2019,7,18,21,30,0.0,0.0,0.0,26.6,0.0 -2019,7,18,21,45,0.0,0.0,0.0,26.6,0.0 -2019,7,18,22,0,0.0,0.0,0.0,26.0,0.0 -2019,7,18,22,15,0.0,0.0,0.0,26.0,0.0 -2019,7,18,22,30,0.0,0.0,0.0,26.0,0.0 -2019,7,18,22,45,0.0,0.0,0.0,26.0,0.0 -2019,7,18,23,0,0.0,0.0,0.0,24.8,0.0 -2019,7,18,23,15,0.0,0.0,0.0,24.8,0.0 -2019,7,18,23,30,0.0,0.0,0.0,24.8,0.0 -2019,7,18,23,45,0.0,0.0,0.0,24.8,0.0 -2019,7,19,0,0,0.0,0.0,0.0,23.1,0.0 -2019,7,19,0,15,0.0,0.0,0.0,23.1,0.0 -2019,7,19,0,30,0.0,0.0,0.0,23.1,0.0 -2019,7,19,0,45,0.0,0.0,0.0,23.1,0.0 -2019,7,19,1,0,0.0,0.0,0.0,21.6,0.0 -2019,7,19,1,15,0.0,0.0,0.0,21.6,0.0 -2019,7,19,1,30,0.0,0.0,0.0,21.6,0.0 -2019,7,19,1,45,0.0,0.0,0.0,21.6,0.0 -2019,7,19,2,0,0.0,0.0,0.0,21.0,0.0 -2019,7,19,2,15,0.0,0.0,0.0,21.0,0.0 -2019,7,19,2,30,0.0,0.0,0.0,21.0,0.0 -2019,7,19,2,45,0.0,0.0,0.0,21.0,0.0 -2019,7,19,3,0,0.0,0.0,0.0,20.0,0.0 -2019,7,19,3,15,0.0,0.0,0.0,20.0,0.0 -2019,7,19,3,30,0.0,0.0,0.0,20.0,0.0 -2019,7,19,3,45,0.0,0.0,0.0,20.0,0.0 -2019,7,19,4,0,0.0,0.0,0.0,20.1,0.0 -2019,7,19,4,15,0.0,0.0,0.0,20.1,0.0 -2019,7,19,4,30,0.0,0.0,0.0,20.1,0.0 -2019,7,19,4,45,0.0,0.0,0.0,20.1,0.0 -2019,7,19,5,0,441.0,-22.036822046702618,32.0,21.5,0.2 -2019,7,19,5,15,441.0,-1.3262983323254929,32.0,21.5,0.2 -2019,7,19,5,30,441.0,19.902472478578204,32.0,21.5,0.2 -2019,7,19,5,45,441.0,41.558585530295865,32.0,21.5,0.2 -2019,7,19,6,0,733.0,112.43909595045434,60.0,24.8,1.9 -2019,7,19,6,15,733.0,149.39020817939263,60.0,24.8,1.9 -2019,7,19,6,30,733.0,186.58273264099728,60.0,24.8,1.9 -2019,7,19,6,45,733.0,223.8574052356235,60.0,24.8,1.9 -2019,7,19,7,0,930.0,319.0897508679669,64.0,28.1,0.0 -2019,7,19,7,15,930.0,365.9836407305698,64.0,28.1,0.0 -2019,7,19,7,30,930.0,412.3763427918758,64.0,28.1,0.0 -2019,7,19,7,45,930.0,458.069196379322,64.0,28.1,0.0 -2019,7,19,8,0,963.0,535.4392212740119,81.0,31.0,0.2 -2019,7,19,8,15,963.0,580.7002211900922,81.0,31.0,0.2 -2019,7,19,8,30,963.0,624.6414820940132,81.0,31.0,0.2 -2019,7,19,8,45,963.0,667.074840760599,81.0,31.0,0.2 -2019,7,19,9,0,1000.0,735.9019636900848,85.0,34.0,1.3 -2019,7,19,9,15,1000.0,776.2754537062386,85.0,34.0,1.3 -2019,7,19,9,30,1000.0,814.5403579414539,85.0,34.0,1.3 -2019,7,19,9,45,1000.0,850.5328202012604,85.0,34.0,1.3 -2019,7,19,10,0,1004.0,895.2951100975442,93.0,35.2,0.4 -2019,7,19,10,15,1004.0,926.4146859667228,93.0,35.2,0.4 -2019,7,19,10,30,1004.0,954.8204202881647,93.0,35.2,0.4 -2019,7,19,10,45,1004.0,980.3906753465778,93.0,35.2,0.4 -2019,7,19,11,0,949.0,980.1644837246932,120.0,36.7,3.8 -2019,7,19,11,15,949.0,998.6751069013677,120.0,36.7,3.8 -2019,7,19,11,30,949.0,1014.231240558247,120.0,36.7,3.8 -2019,7,19,11,45,949.0,1026.7662709427912,120.0,36.7,3.8 -2019,7,19,12,0,780.0,949.0628940798471,196.0,36.6,5.1 -2019,7,19,12,15,780.0,954.2779294884776,196.0,36.6,5.1 -2019,7,19,12,30,780.0,956.9101206240215,196.0,36.6,5.1 -2019,7,19,12,45,780.0,956.9481960399346,196.0,36.6,5.1 -2019,7,19,13,0,706.0,904.4419831284066,218.0,36.0,5.1 -2019,7,19,13,15,706.0,899.7900440812846,218.0,36.0,5.1 -2019,7,19,13,30,706.0,892.8197780529838,218.0,36.0,5.1 -2019,7,19,13,45,706.0,883.5610327927319,218.0,36.0,5.1 -2019,7,19,14,0,790.0,890.872846995238,159.0,35.5,5.3 -2019,7,19,14,15,790.0,875.5348383518588,159.0,35.5,5.3 -2019,7,19,14,30,790.0,857.8012513785392,159.0,35.5,5.3 -2019,7,19,14,45,790.0,837.748024017209,159.0,35.5,5.3 -2019,7,19,15,0,655.0,714.2809783028699,170.0,35.0,6.5 -2019,7,19,15,15,655.0,694.0295972667219,170.0,35.0,6.5 -2019,7,19,15,30,655.0,672.0920140487226,170.0,35.0,6.5 -2019,7,19,15,45,655.0,648.5621687481305,170.0,35.0,6.5 -2019,7,19,16,0,601.0,546.1496682209299,130.0,34.1,5.2 -2019,7,19,16,15,601.0,521.9209199150814,130.0,34.1,5.2 -2019,7,19,16,30,601.0,496.52569472622275,130.0,34.1,5.2 -2019,7,19,16,45,601.0,470.0727389073583,130.0,34.1,5.2 -2019,7,19,17,0,410.0,305.3059642451559,92.0,33.0,4.2 -2019,7,19,17,15,410.0,286.0512823338303,92.0,33.0,4.2 -2019,7,19,17,30,410.0,266.31478339398785,92.0,33.0,4.2 -2019,7,19,17,45,410.0,246.1809821440916,92.0,33.0,4.2 -2019,7,19,18,0,228.0,103.37031602818713,29.0,30.9,4.4 -2019,7,19,18,15,228.0,91.87665492559783,29.0,30.9,4.4 -2019,7,19,18,30,228.0,80.30790243276581,29.0,30.9,4.4 -2019,7,19,18,45,228.0,68.71359772393254,29.0,30.9,4.4 -2019,7,19,19,0,0.0,0.0,0.0,29.2,3.0 -2019,7,19,19,15,0.0,0.0,0.0,29.2,3.0 -2019,7,19,19,30,0.0,0.0,0.0,29.2,3.0 -2019,7,19,19,45,0.0,0.0,0.0,29.2,3.0 -2019,7,19,20,0,0.0,0.0,0.0,27.7,1.9 -2019,7,19,20,15,0.0,0.0,0.0,27.7,1.9 -2019,7,19,20,30,0.0,0.0,0.0,27.7,1.9 -2019,7,19,20,45,0.0,0.0,0.0,27.7,1.9 -2019,7,19,21,0,0.0,0.0,0.0,26.6,0.2 -2019,7,19,21,15,0.0,0.0,0.0,26.6,0.2 -2019,7,19,21,30,0.0,0.0,0.0,26.6,0.2 -2019,7,19,21,45,0.0,0.0,0.0,26.6,0.2 -2019,7,19,22,0,0.0,0.0,0.0,25.4,1.3 -2019,7,19,22,15,0.0,0.0,0.0,25.4,1.3 -2019,7,19,22,30,0.0,0.0,0.0,25.4,1.3 -2019,7,19,22,45,0.0,0.0,0.0,25.4,1.3 -2019,7,19,23,0,0.0,0.0,0.0,23.8,0.2 -2019,7,19,23,15,0.0,0.0,0.0,23.8,0.2 -2019,7,19,23,30,0.0,0.0,0.0,23.8,0.2 -2019,7,19,23,45,0.0,0.0,0.0,23.8,0.2 -2019,7,20,0,0,0.0,0.0,0.0,22.7,1.5 -2019,7,20,0,15,0.0,0.0,0.0,22.7,1.5 -2019,7,20,0,30,0.0,0.0,0.0,22.7,1.5 -2019,7,20,0,45,0.0,0.0,0.0,22.7,1.5 -2019,7,20,1,0,0.0,0.0,0.0,21.6,1.3 -2019,7,20,1,15,0.0,0.0,0.0,21.6,1.3 -2019,7,20,1,30,0.0,0.0,0.0,21.6,1.3 -2019,7,20,1,45,0.0,0.0,0.0,21.6,1.3 -2019,7,20,2,0,0.0,0.0,0.0,21.1,0.0 -2019,7,20,2,15,0.0,0.0,0.0,21.1,0.0 -2019,7,20,2,30,0.0,0.0,0.0,21.1,0.0 -2019,7,20,2,45,0.0,0.0,0.0,21.1,0.0 -2019,7,20,3,0,0.0,0.0,0.0,21.0,0.0 -2019,7,20,3,15,0.0,0.0,0.0,21.0,0.0 -2019,7,20,3,30,0.0,0.0,0.0,21.0,0.0 -2019,7,20,3,45,0.0,0.0,0.0,21.0,0.0 -2019,7,20,4,0,0.0,0.0,0.0,20.2,0.0 -2019,7,20,4,15,0.0,0.0,0.0,20.2,0.0 -2019,7,20,4,30,0.0,0.0,0.0,20.2,0.0 -2019,7,20,4,45,0.0,0.0,0.0,20.2,0.0 -2019,7,20,5,0,397.0,-16.44785364646404,33.0,21.9,0.0 -2019,7,20,5,15,397.0,2.2188629492420233,33.0,21.9,0.0 -2019,7,20,5,30,397.0,21.352683699861018,33.0,21.9,0.0 -2019,7,20,5,45,397.0,40.87167464746118,33.0,21.9,0.0 -2019,7,20,6,0,633.0,117.15414563584724,73.0,23.6,0.2 -2019,7,20,6,15,633.0,149.1027716813268,73.0,23.6,0.2 -2019,7,20,6,30,633.0,181.26012727996502,73.0,23.6,0.2 -2019,7,20,6,45,633.0,213.48850969820148,73.0,23.6,0.2 -2019,7,20,7,0,859.0,313.2911128831174,79.0,26.4,1.5 -2019,7,20,7,15,859.0,356.6573170184262,79.0,26.4,1.5 -2019,7,20,7,30,859.0,399.5600361972762,79.0,26.4,1.5 -2019,7,20,7,45,859.0,441.8155543895987,79.0,26.4,1.5 -2019,7,20,8,0,829.0,511.1250133479009,121.0,28.6,1.7 -2019,7,20,8,15,829.0,550.1351366587378,121.0,28.6,1.7 -2019,7,20,8,30,829.0,588.0077866106583,121.0,28.6,1.7 -2019,7,20,8,45,829.0,624.5807867022531,121.0,28.6,1.7 -2019,7,20,9,0,797.0,677.903411349428,160.0,30.9,3.5 -2019,7,20,9,15,797.0,710.1199998326184,160.0,30.9,3.5 -2019,7,20,9,30,797.0,740.6540129338237,160.0,30.9,3.5 -2019,7,20,9,45,797.0,769.3746993212773,160.0,30.9,3.5 -2019,7,20,10,0,869.0,841.6289009976475,148.0,33.0,3.2 -2019,7,20,10,15,869.0,868.5966481988353,148.0,33.0,3.2 -2019,7,20,10,30,869.0,893.2126219339867,148.0,33.0,3.2 -2019,7,20,10,45,869.0,915.3714128244549,148.0,33.0,3.2 -2019,7,20,11,0,885.0,949.4679495630655,148.0,34.5,3.7 -2019,7,20,11,15,885.0,966.7511049126293,148.0,34.5,3.7 -2019,7,20,11,30,885.0,981.275687476074,148.0,34.5,3.7 -2019,7,20,11,45,885.0,992.9795007610085,148.0,34.5,3.7 -2019,7,20,12,0,904.0,1011.1428635332188,139.0,35.7,4.7 -2019,7,20,12,15,904.0,1017.194265815706,139.0,35.7,4.7 -2019,7,20,12,30,904.0,1020.2485974160652,139.0,35.7,4.7 -2019,7,20,12,45,904.0,1020.2927792174738,139.0,35.7,4.7 -2019,7,20,13,0,905.0,1010.2982222722804,131.0,36.0,5.1 -2019,7,20,13,15,905.0,1004.3278305117718,131.0,36.0,5.1 -2019,7,20,13,30,905.0,995.3820514629971,131.0,36.0,5.1 -2019,7,20,13,45,905.0,983.4991923252245,131.0,36.0,5.1 -2019,7,20,14,0,846.0,921.1156863839043,138.0,34.9,5.3 -2019,7,20,14,15,846.0,904.6705611402135,138.0,34.9,5.3 -2019,7,20,14,30,846.0,885.6569417338895,138.0,34.9,5.3 -2019,7,20,14,45,846.0,864.1562474022543,138.0,34.9,5.3 -2019,7,20,15,0,751.0,763.4015024963131,140.0,34.1,6.7 -2019,7,20,15,15,751.0,740.1538975147367,140.0,34.1,6.7 -2019,7,20,15,30,751.0,714.9706140639843,140.0,34.1,6.7 -2019,7,20,15,45,751.0,687.9594908299999,140.0,34.1,6.7 -2019,7,20,16,0,604.0,546.6014126869961,129.0,33.0,6.4 -2019,7,20,16,15,604.0,522.2222727374725,129.0,33.0,6.4 -2019,7,20,16,30,604.0,496.66941539983577,129.0,33.0,6.4 -2019,7,20,16,45,604.0,470.05226193215157,129.0,33.0,6.4 -2019,7,20,17,0,445.0,318.96147686589256,88.0,32.0,6.1 -2019,7,20,17,15,445.0,298.03782728128493,88.0,32.0,6.1 -2019,7,20,17,30,445.0,276.59059747265667,88.0,32.0,6.1 -2019,7,20,17,45,445.0,254.71162777068668,88.0,32.0,6.1 -2019,7,20,18,0,247.0,108.20262471638694,28.0,30.4,5.0 -2019,7,20,18,15,247.0,95.73609922944628,28.0,30.4,5.0 -2019,7,20,18,30,247.0,83.1881263497249,28.0,30.4,5.0 -2019,7,20,18,45,247.0,70.61243842349359,28.0,30.4,5.0 -2019,7,20,19,0,0.0,0.0,0.0,28.6,3.9 -2019,7,20,19,15,0.0,0.0,0.0,28.6,3.9 -2019,7,20,19,30,0.0,0.0,0.0,28.6,3.9 -2019,7,20,19,45,0.0,0.0,0.0,28.6,3.9 -2019,7,20,20,0,0.0,0.0,0.0,26.6,2.2 -2019,7,20,20,15,0.0,0.0,0.0,26.6,2.2 -2019,7,20,20,30,0.0,0.0,0.0,26.6,2.2 -2019,7,20,20,45,0.0,0.0,0.0,26.6,2.2 -2019,7,20,21,0,0.0,0.0,0.0,25.5,2.5 -2019,7,20,21,15,0.0,0.0,0.0,25.5,2.5 -2019,7,20,21,30,0.0,0.0,0.0,25.5,2.5 -2019,7,20,21,45,0.0,0.0,0.0,25.5,2.5 -2019,7,20,22,0,0.0,0.0,0.0,24.9,1.9 -2019,7,20,22,15,0.0,0.0,0.0,24.9,1.9 -2019,7,20,22,30,0.0,0.0,0.0,24.9,1.9 -2019,7,20,22,45,0.0,0.0,0.0,24.9,1.9 -2019,7,20,23,0,0.0,0.0,0.0,23.8,0.0 -2019,7,20,23,15,0.0,0.0,0.0,23.8,0.0 -2019,7,20,23,30,0.0,0.0,0.0,23.8,0.0 -2019,7,20,23,45,0.0,0.0,0.0,23.8,0.0 -2019,7,21,0,0,0.0,0.0,0.0,23.1,0.0 -2019,7,21,0,15,0.0,0.0,0.0,23.1,0.0 -2019,7,21,0,30,0.0,0.0,0.0,23.1,0.0 -2019,7,21,0,45,0.0,0.0,0.0,23.1,0.0 -2019,7,21,1,0,0.0,0.0,0.0,21.6,0.0 -2019,7,21,1,15,0.0,0.0,0.0,21.6,0.0 -2019,7,21,1,30,0.0,0.0,0.0,21.6,0.0 -2019,7,21,1,45,0.0,0.0,0.0,21.6,0.0 -2019,7,21,2,0,0.0,0.0,0.0,21.1,0.0 -2019,7,21,2,15,0.0,0.0,0.0,21.1,0.0 -2019,7,21,2,30,0.0,0.0,0.0,21.1,0.0 -2019,7,21,2,45,0.0,0.0,0.0,21.1,0.0 -2019,7,21,3,0,0.0,0.0,0.0,21.0,0.0 -2019,7,21,3,15,0.0,0.0,0.0,21.0,0.0 -2019,7,21,3,30,0.0,0.0,0.0,21.0,0.0 -2019,7,21,3,45,0.0,0.0,0.0,21.0,0.0 -2019,7,21,4,0,0.0,0.0,0.0,20.1,0.0 -2019,7,21,4,15,0.0,0.0,0.0,20.1,0.0 -2019,7,21,4,30,0.0,0.0,0.0,20.1,0.0 -2019,7,21,4,45,0.0,0.0,0.0,20.1,0.0 -2019,7,21,5,0,252.0,5.085993346175449,37.0,21.3,0.2 -2019,7,21,5,15,252.0,16.949569803717804,37.0,21.3,0.2 -2019,7,21,5,30,252.0,29.110012923751768,37.0,21.3,0.2 -2019,7,21,5,45,252.0,41.51524982193222,37.0,21.3,0.2 -2019,7,21,6,0,509.0,123.56384571036368,89.0,23.1,1.3 -2019,7,21,6,15,509.0,149.2857977370289,89.0,23.1,1.3 -2019,7,21,6,30,509.0,175.1757986664936,89.0,23.1,1.3 -2019,7,21,6,45,509.0,201.1229835400727,89.0,23.1,1.3 -2019,7,21,7,0,684.0,303.46779939017426,118.0,25.4,0.0 -2019,7,21,7,15,684.0,338.0419893082038,118.0,25.4,0.0 -2019,7,21,7,30,684.0,372.2466606753645,118.0,25.4,0.0 -2019,7,21,7,45,684.0,405.9353438376659,118.0,25.4,0.0 -2019,7,21,8,0,795.0,504.05000592405224,131.0,28.6,0.2 -2019,7,21,8,15,795.0,541.5065398267307,131.0,28.6,0.2 -2019,7,21,8,30,795.0,577.8709005749649,131.0,28.6,0.2 -2019,7,21,8,45,795.0,612.987370393273,131.0,28.6,0.2 -2019,7,21,9,0,868.0,696.0596720059222,133.0,30.8,1.6 -2019,7,21,9,15,868.0,731.1897099643176,133.0,30.8,1.6 -2019,7,21,9,30,868.0,764.4850118497782,133.0,30.8,1.6 -2019,7,21,9,45,868.0,795.8030020680429,133.0,30.8,1.6 -2019,7,21,10,0,912.0,857.0883984163572,130.0,32.5,2.7 -2019,7,21,10,15,912.0,885.4256284624988,130.0,32.5,2.7 -2019,7,21,10,30,912.0,911.2916566975916,130.0,32.5,2.7 -2019,7,21,10,45,912.0,934.575720817708,130.0,32.5,2.7 -2019,7,21,11,0,933.0,971.1789267415704,127.0,34.6,3.5 -2019,7,21,11,15,933.0,989.4220449515896,127.0,34.6,3.5 -2019,7,21,11,30,933.0,1004.7533702389477,127.0,34.6,3.5 -2019,7,21,11,45,933.0,1017.1072515150562,127.0,34.6,3.5 -2019,7,21,12,0,931.0,1024.5027472902402,127.0,36.0,3.4 -2019,7,21,12,15,931.0,1030.742608655556,127.0,36.0,3.4 -2019,7,21,12,30,931.0,1033.8920614369554,127.0,36.0,3.4 -2019,7,21,12,45,931.0,1033.9376191941149,127.0,36.0,3.4 -2019,7,21,13,0,908.0,1011.5490986598131,130.0,34.9,5.6 -2019,7,21,13,15,908.0,1005.5514949820234,130.0,34.9,5.6 -2019,7,21,13,30,908.0,996.5649427630357,130.0,34.9,5.6 -2019,7,21,13,45,908.0,984.6279237990924,130.0,34.9,5.6 -2019,7,21,14,0,860.0,928.3972870536138,133.0,34.4,4.6 -2019,7,21,14,15,860.0,911.6593111179212,133.0,34.4,4.6 -2019,7,21,14,30,860.0,892.3071019156492,133.0,34.4,4.6 -2019,7,21,14,45,860.0,870.4235285776072,133.0,34.4,4.6 -2019,7,21,15,0,783.0,779.2547684195915,130.0,33.9,4.6 -2019,7,21,15,15,783.0,754.9865604403151,130.0,33.9,4.6 -2019,7,21,15,30,783.0,728.6976949477937,130.0,33.9,4.6 -2019,7,21,15,45,783.0,700.5007449000067,130.0,33.9,4.6 -2019,7,21,16,0,665.0,574.0593127552303,115.0,33.2,4.9 -2019,7,21,16,15,665.0,547.1847904929054,115.0,33.2,4.9 -2019,7,21,16,30,665.0,519.016412329928,115.0,33.2,4.9 -2019,7,21,16,45,665.0,489.67479958608004,115.0,33.2,4.9 -2019,7,21,17,0,477.0,330.9537293716968,84.0,31.9,5.0 -2019,7,21,17,15,477.0,308.497673934206,84.0,31.9,5.0 -2019,7,21,17,30,477.0,285.4796923141417,84.0,31.9,5.0 -2019,7,21,17,45,477.0,261.9983510425858,84.0,31.9,5.0 -2019,7,21,18,0,247.0,107.82408302822374,28.0,29.9,3.9 -2019,7,21,18,15,247.0,95.34211416656102,28.0,29.9,3.9 -2019,7,21,18,30,247.0,82.7785970161135,28.0,29.9,3.9 -2019,7,21,18,45,247.0,70.1873304861056,28.0,29.9,3.9 -2019,7,21,19,0,0.0,0.0,0.0,28.6,2.6 -2019,7,21,19,15,0.0,0.0,0.0,28.6,2.6 -2019,7,21,19,30,0.0,0.0,0.0,28.6,2.6 -2019,7,21,19,45,0.0,0.0,0.0,28.6,2.6 -2019,7,21,20,0,0.0,0.0,0.0,26.0,2.5 -2019,7,21,20,15,0.0,0.0,0.0,26.0,2.5 -2019,7,21,20,30,0.0,0.0,0.0,26.0,2.5 -2019,7,21,20,45,0.0,0.0,0.0,26.0,2.5 -2019,7,21,21,0,0.0,0.0,0.0,25.3,1.6 -2019,7,21,21,15,0.0,0.0,0.0,25.3,1.6 -2019,7,21,21,30,0.0,0.0,0.0,25.3,1.6 -2019,7,21,21,45,0.0,0.0,0.0,25.3,1.6 -2019,7,21,22,0,0.0,0.0,0.0,23.2,2.1 -2019,7,21,22,15,0.0,0.0,0.0,23.2,2.1 -2019,7,21,22,30,0.0,0.0,0.0,23.2,2.1 -2019,7,21,22,45,0.0,0.0,0.0,23.2,2.1 -2019,7,21,23,0,0.0,0.0,0.0,22.1,2.1 -2019,7,21,23,15,0.0,0.0,0.0,22.1,2.1 -2019,7,21,23,30,0.0,0.0,0.0,22.1,2.1 -2019,7,21,23,45,0.0,0.0,0.0,22.1,2.1 -2019,7,22,0,0,0.0,0.0,0.0,21.5,2.0 -2019,7,22,0,15,0.0,0.0,0.0,21.5,2.0 -2019,7,22,0,30,0.0,0.0,0.0,21.5,2.0 -2019,7,22,0,45,0.0,0.0,0.0,21.5,2.0 -2019,7,22,1,0,0.0,0.0,0.0,19.9,1.5 -2019,7,22,1,15,0.0,0.0,0.0,19.9,1.5 -2019,7,22,1,30,0.0,0.0,0.0,19.9,1.5 -2019,7,22,1,45,0.0,0.0,0.0,19.9,1.5 -2019,7,22,2,0,0.0,0.0,0.0,19.3,1.3 -2019,7,22,2,15,0.0,0.0,0.0,19.3,1.3 -2019,7,22,2,30,0.0,0.0,0.0,19.3,1.3 -2019,7,22,2,45,0.0,0.0,0.0,19.3,1.3 -2019,7,22,3,0,0.0,0.0,0.0,18.9,0.0 -2019,7,22,3,15,0.0,0.0,0.0,18.9,0.0 -2019,7,22,3,30,0.0,0.0,0.0,18.9,0.0 -2019,7,22,3,45,0.0,0.0,0.0,18.9,0.0 -2019,7,22,4,0,0.0,0.0,0.0,18.9,0.2 -2019,7,22,4,15,0.0,0.0,0.0,18.9,0.2 -2019,7,22,4,30,0.0,0.0,0.0,18.9,0.2 -2019,7,22,4,45,0.0,0.0,0.0,18.9,0.2 -2019,7,22,5,0,231.0,7.24743309601546,37.0,19.1,2.0 -2019,7,22,5,15,231.0,18.136152329659133,37.0,19.1,2.0 -2019,7,22,5,30,231.0,29.297344012843528,37.0,19.1,2.0 -2019,7,22,5,45,231.0,40.68321420928394,37.0,19.1,2.0 -2019,7,22,6,0,472.0,124.14997075718497,93.0,20.9,1.3 -2019,7,22,6,15,472.0,148.03236521749932,93.0,20.9,1.3 -2019,7,22,6,30,472.0,172.07079022250628,93.0,20.9,1.3 -2019,7,22,6,45,472.0,196.1623095458886,93.0,20.9,1.3 -2019,7,22,7,0,640.0,300.47967403838095,128.0,23.1,0.0 -2019,7,22,7,15,640.0,332.8707677487488,128.0,23.1,0.0 -2019,7,22,7,30,640.0,364.91567518440456,128.0,23.1,0.0 -2019,7,22,7,45,640.0,396.4771751320853,128.0,23.1,0.0 -2019,7,22,8,0,747.0,495.4794171148332,146.0,25.9,0.2 -2019,7,22,8,15,747.0,530.7190022512079,146.0,25.9,0.2 -2019,7,22,8,30,747.0,564.9310569449717,146.0,25.9,0.2 -2019,7,22,8,45,747.0,597.9690799255956,146.0,25.9,0.2 -2019,7,22,9,0,818.0,681.6649619769586,152.0,28.2,2.2 -2019,7,22,9,15,818.0,714.8133126504466,152.0,28.2,2.2 -2019,7,22,9,30,818.0,746.2304248091637,152.0,28.2,2.2 -2019,7,22,9,45,818.0,775.7817655556033,152.0,28.2,2.2 -2019,7,22,10,0,862.0,837.3762375100792,151.0,31.4,2.8 -2019,7,22,10,15,862.0,864.1938153809431,151.0,31.4,2.8 -2019,7,22,10,30,862.0,888.6727155866113,151.0,31.4,2.8 -2019,7,22,10,45,862.0,910.7081157183338,151.0,31.4,2.8 -2019,7,22,11,0,882.0,947.2846743692033,150.0,33.4,4.3 -2019,7,22,11,15,882.0,964.5524239024971,150.0,33.4,4.3 -2019,7,22,11,30,882.0,979.0640595794591,150.0,33.4,4.3 -2019,7,22,11,45,882.0,990.7574403482541,150.0,33.4,4.3 -2019,7,22,12,0,880.0,997.6560024425871,150.0,34.3,5.5 -2019,7,22,12,15,880.0,1003.5615158385569,150.0,34.3,5.5 -2019,7,22,12,30,880.0,1006.5422127645993,150.0,34.3,5.5 -2019,7,22,12,45,880.0,1006.5853294188717,150.0,34.3,5.5 -2019,7,22,13,0,857.0,982.378311093227,151.0,33.8,4.3 -2019,7,22,13,15,857.0,976.7104073701464,151.0,33.8,4.3 -2019,7,22,13,30,857.0,968.2178634282583,151.0,33.8,4.3 -2019,7,22,13,45,857.0,956.9370456445209,151.0,33.8,4.3 -2019,7,22,14,0,810.0,899.4856135031074,151.0,32.7,5.6 -2019,7,22,14,15,810.0,883.7008080435633,151.0,32.7,5.6 -2019,7,22,14,30,810.0,865.450640959808,151.0,32.7,5.6 -2019,7,22,14,45,810.0,844.813262269111,151.0,32.7,5.6 -2019,7,22,15,0,735.0,753.7587995439138,145.0,32.1,5.0 -2019,7,22,15,15,735.0,730.9494441386582,145.0,32.1,5.0 -2019,7,22,15,30,735.0,706.2409004863241,145.0,32.1,5.0 -2019,7,22,15,45,735.0,679.7389743641554,145.0,32.1,5.0 -2019,7,22,16,0,622.0,552.6782965673742,124.0,31.3,4.5 -2019,7,22,16,15,622.0,527.5096872680206,124.0,31.3,4.5 -2019,7,22,16,30,622.0,501.12935210670287,124.0,31.3,4.5 -2019,7,22,16,45,622.0,473.65025572856456,124.0,31.3,4.5 -2019,7,22,17,0,443.0,315.75755635760964,87.0,30.4,4.0 -2019,7,22,17,15,443.0,294.8757268316176,87.0,30.4,4.0 -2019,7,22,17,30,443.0,273.47136356040255,87.0,30.4,4.0 -2019,7,22,17,45,443.0,251.63612331354926,87.0,30.4,4.0 -2019,7,22,18,0,231.0,101.28684048442983,27.0,28.6,3.5 -2019,7,22,18,15,231.0,89.59863472101327,27.0,28.6,3.5 -2019,7,22,18,30,231.0,77.83406655118993,27.0,28.6,3.5 -2019,7,22,18,45,231.0,66.04351366199222,27.0,28.6,3.5 -2019,7,22,19,0,0.0,0.0,0.0,26.4,3.0 -2019,7,22,19,15,0.0,0.0,0.0,26.4,3.0 -2019,7,22,19,30,0.0,0.0,0.0,26.4,3.0 -2019,7,22,19,45,0.0,0.0,0.0,26.4,3.0 -2019,7,22,20,0,0.0,0.0,0.0,23.8,2.5 -2019,7,22,20,15,0.0,0.0,0.0,23.8,2.5 -2019,7,22,20,30,0.0,0.0,0.0,23.8,2.5 -2019,7,22,20,45,0.0,0.0,0.0,23.8,2.5 -2019,7,22,21,0,0.0,0.0,0.0,22.6,2.1 -2019,7,22,21,15,0.0,0.0,0.0,22.6,2.1 -2019,7,22,21,30,0.0,0.0,0.0,22.6,2.1 -2019,7,22,21,45,0.0,0.0,0.0,22.6,2.1 -2019,7,22,22,0,0.0,0.0,0.0,21.0,1.9 -2019,7,22,22,15,0.0,0.0,0.0,21.0,1.9 -2019,7,22,22,30,0.0,0.0,0.0,21.0,1.9 -2019,7,22,22,45,0.0,0.0,0.0,21.0,1.9 -2019,7,22,23,0,0.0,0.0,0.0,20.5,0.0 -2019,7,22,23,15,0.0,0.0,0.0,20.5,0.0 -2019,7,22,23,30,0.0,0.0,0.0,20.5,0.0 -2019,7,22,23,45,0.0,0.0,0.0,20.5,0.0 -2019,7,23,0,0,0.0,0.0,0.0,19.3,0.2 -2019,7,23,0,15,0.0,0.0,0.0,19.3,0.2 -2019,7,23,0,30,0.0,0.0,0.0,19.3,0.2 -2019,7,23,0,45,0.0,0.0,0.0,19.3,0.2 -2019,7,23,1,0,0.0,0.0,0.0,18.8,1.3 -2019,7,23,1,15,0.0,0.0,0.0,18.8,1.3 -2019,7,23,1,30,0.0,0.0,0.0,18.8,1.3 -2019,7,23,1,45,0.0,0.0,0.0,18.8,1.3 -2019,7,23,2,0,0.0,0.0,0.0,18.3,0.2 -2019,7,23,2,15,0.0,0.0,0.0,18.3,0.2 -2019,7,23,2,30,0.0,0.0,0.0,18.3,0.2 -2019,7,23,2,45,0.0,0.0,0.0,18.3,0.2 -2019,7,23,3,0,0.0,0.0,0.0,18.3,1.3 -2019,7,23,3,15,0.0,0.0,0.0,18.3,1.3 -2019,7,23,3,30,0.0,0.0,0.0,18.3,1.3 -2019,7,23,3,45,0.0,0.0,0.0,18.3,1.3 -2019,7,23,4,0,0.0,0.0,0.0,18.3,0.2 -2019,7,23,4,15,0.0,0.0,0.0,18.3,0.2 -2019,7,23,4,30,0.0,0.0,0.0,18.3,0.2 -2019,7,23,4,45,0.0,0.0,0.0,18.3,0.2 -2019,7,23,5,0,219.0,8.306333382836701,37.0,18.4,1.5 -2019,7,23,5,15,219.0,18.642750844852227,37.0,18.4,1.5 -2019,7,23,5,30,219.0,29.237820304859348,37.0,18.4,1.5 -2019,7,23,5,45,219.0,40.04617204884559,37.0,18.4,1.5 -2019,7,23,6,0,303.0,130.3996414874905,111.0,19.6,1.5 -2019,7,23,6,15,303.0,145.75074512075892,111.0,19.6,1.5 -2019,7,23,6,30,303.0,161.20214192461006,111.0,19.6,1.5 -2019,7,23,6,45,303.0,176.68766664578834,111.0,19.6,1.5 -2019,7,23,7,0,458.0,289.64878420345207,167.0,21.4,1.5 -2019,7,23,7,15,458.0,312.85862828916606,167.0,21.4,1.5 -2019,7,23,7,30,458.0,335.8204125368108,167.0,21.4,1.5 -2019,7,23,7,45,458.0,358.4358110610808,167.0,21.4,1.5 -2019,7,23,8,0,585.0,469.8398887190104,197.0,24.2,1.5 -2019,7,23,8,15,585.0,497.47283277137507,197.0,24.2,1.5 -2019,7,23,8,30,585.0,524.3000439774851,197.0,24.2,1.5 -2019,7,23,8,45,585.0,550.206644100367,197.0,24.2,1.5 -2019,7,23,9,0,581.0,619.4965231037694,244.0,27.0,1.6 -2019,7,23,9,15,581.0,643.0712060012193,244.0,27.0,1.6 -2019,7,23,9,30,581.0,665.4146542165099,244.0,27.0,1.6 -2019,7,23,9,45,581.0,686.4311896741547,244.0,27.0,1.6 -2019,7,23,10,0,802.0,814.7774779809484,177.0,29.7,2.8 -2019,7,23,10,15,802.0,839.7606604146118,177.0,29.7,2.8 -2019,7,23,10,30,802.0,862.5651371111478,177.0,29.7,2.8 -2019,7,23,10,45,802.0,883.0932558003344,177.0,29.7,2.8 -2019,7,23,11,0,935.0,970.3645880937582,126.0,31.8,4.2 -2019,7,23,11,15,935.0,988.6936345877829,126.0,31.8,4.2 -2019,7,23,11,30,935.0,1004.0971731041682,126.0,31.8,4.2 -2019,7,23,11,45,935.0,1016.509243326193,126.0,31.8,4.2 -2019,7,23,12,0,889.0,1001.6046863462752,146.0,32.2,5.0 -2019,7,23,12,15,889.0,1007.5783099491258,146.0,32.2,5.0 -2019,7,23,12,30,889.0,1010.5933842223466,146.0,32.2,5.0 -2019,7,23,12,45,889.0,1010.6369981550171,146.0,32.2,5.0 -2019,7,23,13,0,833.0,968.4280853014512,161.0,32.1,4.3 -2019,7,23,13,15,833.0,962.911786907005,161.0,32.1,4.3 -2019,7,23,13,30,833.0,954.6464018898544,161.0,32.1,4.3 -2019,7,23,13,45,833.0,943.6673238975683,161.0,32.1,4.3 -2019,7,23,14,0,736.0,858.4716366534801,179.0,31.0,6.2 -2019,7,23,14,15,736.0,844.1103571144969,179.0,31.0,6.2 -2019,7,23,14,30,736.0,827.5060504098815,179.0,31.0,6.2 -2019,7,23,14,45,736.0,808.7298187300827,179.0,31.0,6.2 -2019,7,23,15,0,785.0,778.3977185511687,129.0,31.2,6.1 -2019,7,23,15,15,785.0,754.0052116581085,129.0,31.2,6.1 -2019,7,23,15,30,785.0,727.5816976811122,129.0,31.2,6.1 -2019,7,23,15,45,785.0,699.2403261636415,129.0,31.2,6.1 -2019,7,23,16,0,702.0,589.996084541561,107.0,30.9,5.2 -2019,7,23,16,15,702.0,561.5536312841236,107.0,30.9,5.2 -2019,7,23,16,30,702.0,531.7418351369054,107.0,30.9,5.2 -2019,7,23,16,45,702.0,500.6883547877989,107.0,30.9,5.2 -2019,7,23,17,0,523.0,346.34214362065626,77.0,29.3,4.9 -2019,7,23,17,15,523.0,321.6574571702721,77.0,29.3,4.9 -2019,7,23,17,30,523.0,296.3550766790223,77.0,29.3,4.9 -2019,7,23,17,45,523.0,270.5433508246625,77.0,29.3,4.9 -2019,7,23,18,0,301.0,121.30435109632258,25.0,28.5,3.2 -2019,7,23,18,15,301.0,106.05457487977546,25.0,28.5,3.2 -2019,7,23,18,30,301.0,90.70516749377147,25.0,28.5,3.2 -2019,7,23,18,45,301.0,75.32185745722145,25.0,28.5,3.2 -2019,7,23,19,0,0.0,0.0,0.0,25.4,3.4 -2019,7,23,19,15,0.0,0.0,0.0,25.4,3.4 -2019,7,23,19,30,0.0,0.0,0.0,25.4,3.4 -2019,7,23,19,45,0.0,0.0,0.0,25.4,3.4 -2019,7,23,20,0,0.0,0.0,0.0,23.8,2.1 -2019,7,23,20,15,0.0,0.0,0.0,23.8,2.1 -2019,7,23,20,30,0.0,0.0,0.0,23.8,2.1 -2019,7,23,20,45,0.0,0.0,0.0,23.8,2.1 -2019,7,23,21,0,0.0,0.0,0.0,22.7,2.1 -2019,7,23,21,15,0.0,0.0,0.0,22.7,2.1 -2019,7,23,21,30,0.0,0.0,0.0,22.7,2.1 -2019,7,23,21,45,0.0,0.0,0.0,22.7,2.1 -2019,7,23,22,0,0.0,0.0,0.0,21.6,2.2 -2019,7,23,22,15,0.0,0.0,0.0,21.6,2.2 -2019,7,23,22,30,0.0,0.0,0.0,21.6,2.2 -2019,7,23,22,45,0.0,0.0,0.0,21.6,2.2 -2019,7,23,23,0,0.0,0.0,0.0,20.9,2.7 -2019,7,23,23,15,0.0,0.0,0.0,20.9,2.7 -2019,7,23,23,30,0.0,0.0,0.0,20.9,2.7 -2019,7,23,23,45,0.0,0.0,0.0,20.9,2.7 -2019,7,24,0,0,0.0,0.0,0.0,19.2,0.2 -2019,7,24,0,15,0.0,0.0,0.0,19.2,0.2 -2019,7,24,0,30,0.0,0.0,0.0,19.2,0.2 -2019,7,24,0,45,0.0,0.0,0.0,19.2,0.2 -2019,7,24,1,0,0.0,0.0,0.0,17.8,1.3 -2019,7,24,1,15,0.0,0.0,0.0,17.8,1.3 -2019,7,24,1,30,0.0,0.0,0.0,17.8,1.3 -2019,7,24,1,45,0.0,0.0,0.0,17.8,1.3 -2019,7,24,2,0,0.0,0.0,0.0,17.7,0.0 -2019,7,24,2,15,0.0,0.0,0.0,17.7,0.0 -2019,7,24,2,30,0.0,0.0,0.0,17.7,0.0 -2019,7,24,2,45,0.0,0.0,0.0,17.7,0.0 -2019,7,24,3,0,0.0,0.0,0.0,17.1,0.0 -2019,7,24,3,15,0.0,0.0,0.0,17.1,0.0 -2019,7,24,3,30,0.0,0.0,0.0,17.1,0.0 -2019,7,24,3,45,0.0,0.0,0.0,17.1,0.0 -2019,7,24,4,0,0.0,0.0,0.0,16.7,0.0 -2019,7,24,4,15,0.0,0.0,0.0,16.7,0.0 -2019,7,24,4,30,0.0,0.0,0.0,16.7,0.0 -2019,7,24,4,45,0.0,0.0,0.0,16.7,0.0 -2019,7,24,5,0,238.0,4.272455913895673,36.0,16.8,0.2 -2019,7,24,5,15,238.0,15.520439527229193,36.0,16.8,0.2 -2019,7,24,5,30,238.0,27.04988559558227,36.0,16.8,0.2 -2019,7,24,5,45,238.0,38.81142326085731,36.0,16.8,0.2 -2019,7,24,6,0,488.0,120.2533094655316,90.0,18.0,1.9 -2019,7,24,6,15,488.0,145.0097720321808,90.0,18.0,1.9 -2019,7,24,6,30,488.0,169.92797568159114,90.0,18.0,1.9 -2019,7,24,6,45,488.0,194.9012168402238,90.0,18.0,1.9 -2019,7,24,7,0,662.0,298.1117463957476,122.0,19.7,0.0 -2019,7,24,7,15,662.0,331.7037977971244,122.0,19.7,0.0 -2019,7,24,7,30,662.0,364.93682744892504,122.0,19.7,0.0 -2019,7,24,7,45,662.0,397.6685264161534,122.0,19.7,0.0 -2019,7,24,8,0,772.0,496.8968905134902,138.0,22.5,0.2 -2019,7,24,8,15,772.0,533.4109722726453,138.0,22.5,0.2 -2019,7,24,8,30,772.0,568.8603612879353,138.0,22.5,0.2 -2019,7,24,8,45,772.0,603.0932578333075,138.0,22.5,0.2 -2019,7,24,9,0,845.0,686.0502530113209,141.0,25.3,2.2 -2019,7,24,9,15,845.0,720.3821837737056,141.0,25.3,2.2 -2019,7,24,9,30,845.0,752.9210611981506,141.0,25.3,2.2 -2019,7,24,9,45,845.0,783.5275488160653,141.0,25.3,2.2 -2019,7,24,10,0,889.0,845.0139053483704,139.0,27.5,2.8 -2019,7,24,10,15,889.0,872.7437185285978,139.0,27.5,2.8 -2019,7,24,10,30,889.0,898.0553008358906,139.0,27.5,2.8 -2019,7,24,10,45,889.0,920.8402641889044,139.0,27.5,2.8 -2019,7,24,11,0,909.0,957.0438079277664,137.0,30.2,4.0 -2019,7,24,11,15,909.0,974.886646111626,137.0,30.2,4.0 -2019,7,24,11,30,909.0,989.8815802614363,137.0,30.2,4.0 -2019,7,24,11,45,909.0,1001.9643997671038,137.0,30.2,4.0 -2019,7,24,12,0,908.0,1010.1217762811766,137.0,31.8,3.8 -2019,7,24,12,15,908.0,1016.2311083776063,137.0,31.8,3.8 -2019,7,24,12,30,908.0,1019.3146789630914,137.0,31.8,3.8 -2019,7,24,12,45,908.0,1019.3592837149858,137.0,31.8,3.8 -2019,7,24,13,0,884.0,996.1216109691001,140.0,32.1,5.8 -2019,7,24,13,15,884.0,990.2598675325318,140.0,32.1,5.8 -2019,7,24,13,30,884.0,981.4768824743322,140.0,32.1,5.8 -2019,7,24,13,45,884.0,969.8102658849091,140.0,32.1,5.8 -2019,7,24,14,0,837.0,912.9620474189511,141.0,31.7,6.5 -2019,7,24,14,15,837.0,896.6084775387608,141.0,31.7,6.5 -2019,7,24,14,30,837.0,877.7007131387322,141.0,31.7,6.5 -2019,7,24,14,45,837.0,856.3197201687998,141.0,31.7,6.5 -2019,7,24,15,0,760.0,763.9371111657475,136.0,31.6,4.6 -2019,7,24,15,15,760.0,740.2903228504055,136.0,31.6,4.6 -2019,7,24,15,30,760.0,714.6746186384174,136.0,31.6,4.6 -2019,7,24,15,45,760.0,687.1996889078139,136.0,31.6,4.6 -2019,7,24,16,0,644.0,561.3120677349598,119.0,30.8,4.9 -2019,7,24,16,15,644.0,535.1851847644845,119.0,30.8,4.9 -2019,7,24,16,30,644.0,507.800440487042,119.0,30.8,4.9 -2019,7,24,16,45,644.0,479.2751005818106,119.0,30.8,4.9 -2019,7,24,17,0,457.0,318.69597969663715,84.0,29.7,5.1 -2019,7,24,17,15,457.0,297.09796074162267,84.0,29.7,5.1 -2019,7,24,17,30,457.0,274.95948656835657,84.0,29.7,5.1 -2019,7,24,17,45,457.0,252.3753575220091,84.0,29.7,5.1 -2019,7,24,18,0,246.0,104.29059397886755,26.0,27.5,5.0 -2019,7,24,18,15,246.0,91.81090178338452,26.0,27.5,5.0 -2019,7,24,18,30,246.0,79.24967617323088,26.0,27.5,5.0 -2019,7,24,18,45,246.0,66.66070624490385,26.0,27.5,5.0 -2019,7,24,19,0,0.0,0.0,0.0,24.7,3.8 -2019,7,24,19,15,0.0,0.0,0.0,24.7,3.8 -2019,7,24,19,30,0.0,0.0,0.0,24.7,3.8 -2019,7,24,19,45,0.0,0.0,0.0,24.7,3.8 -2019,7,24,20,0,0.0,0.0,0.0,22.1,1.3 -2019,7,24,20,15,0.0,0.0,0.0,22.1,1.3 -2019,7,24,20,30,0.0,0.0,0.0,22.1,1.3 -2019,7,24,20,45,0.0,0.0,0.0,22.1,1.3 -2019,7,24,21,0,0.0,0.0,0.0,21.0,0.0 -2019,7,24,21,15,0.0,0.0,0.0,21.0,0.0 -2019,7,24,21,30,0.0,0.0,0.0,21.0,0.0 -2019,7,24,21,45,0.0,0.0,0.0,21.0,0.0 -2019,7,24,22,0,0.0,0.0,0.0,20.4,0.2 -2019,7,24,22,15,0.0,0.0,0.0,20.4,0.2 -2019,7,24,22,30,0.0,0.0,0.0,20.4,0.2 -2019,7,24,22,45,0.0,0.0,0.0,20.4,0.2 -2019,7,24,23,0,0.0,0.0,0.0,18.9,1.3 -2019,7,24,23,15,0.0,0.0,0.0,18.9,1.3 -2019,7,24,23,30,0.0,0.0,0.0,18.9,1.3 -2019,7,24,23,45,0.0,0.0,0.0,18.9,1.3 -2019,7,25,0,0,0.0,0.0,0.0,18.7,0.0 -2019,7,25,0,15,0.0,0.0,0.0,18.7,0.0 -2019,7,25,0,30,0.0,0.0,0.0,18.7,0.0 -2019,7,25,0,45,0.0,0.0,0.0,18.7,0.0 -2019,7,25,1,0,0.0,0.0,0.0,17.1,0.2 -2019,7,25,1,15,0.0,0.0,0.0,17.1,0.2 -2019,7,25,1,30,0.0,0.0,0.0,17.1,0.2 -2019,7,25,1,45,0.0,0.0,0.0,17.1,0.2 -2019,7,25,2,0,0.0,0.0,0.0,16.6,1.3 -2019,7,25,2,15,0.0,0.0,0.0,16.6,1.3 -2019,7,25,2,30,0.0,0.0,0.0,16.6,1.3 -2019,7,25,2,45,0.0,0.0,0.0,16.6,1.3 -2019,7,25,3,0,0.0,0.0,0.0,16.0,0.0 -2019,7,25,3,15,0.0,0.0,0.0,16.0,0.0 -2019,7,25,3,30,0.0,0.0,0.0,16.0,0.0 -2019,7,25,3,45,0.0,0.0,0.0,16.0,0.0 -2019,7,25,4,0,0.0,0.0,0.0,15.1,0.2 -2019,7,25,4,15,0.0,0.0,0.0,15.1,0.2 -2019,7,25,4,30,0.0,0.0,0.0,15.1,0.2 -2019,7,25,4,45,0.0,0.0,0.0,15.1,0.2 -2019,7,25,5,0,5.0,49.32169382271168,50.0,15.7,2.0 -2019,7,25,5,15,5.0,49.558312756734736,50.0,15.7,2.0 -2019,7,25,5,30,5.0,49.80085269387832,50.0,15.7,2.0 -2019,7,25,5,45,5.0,50.04827504089617,50.0,15.7,2.0 -2019,7,25,6,0,9.0,73.53913653516412,73.0,16.8,0.0 -2019,7,25,6,15,9.0,73.99632266626627,73.0,16.8,0.0 -2019,7,25,6,30,9.0,74.45649572571767,73.0,16.8,0.0 -2019,7,25,6,45,9.0,74.91768518183073,73.0,16.8,0.0 -2019,7,25,7,0,4.0,117.05685162246722,116.0,18.0,2.6 -2019,7,25,7,15,4.0,117.26009682320678,116.0,18.0,2.6 -2019,7,25,7,30,4.0,117.46116980032443,116.0,18.0,2.6 -2019,7,25,7,45,4.0,117.65920952846285,116.0,18.0,2.6 -2019,7,25,8,0,450.0,445.50389674903977,237.0,20.4,0.0 -2019,7,25,8,15,450.0,466.8165425982513,237.0,20.4,0.0 -2019,7,25,8,30,450.0,487.50774547820254,237.0,20.4,0.0 -2019,7,25,8,45,450.0,507.48890248159006,237.0,20.4,0.0 -2019,7,25,9,0,666.0,638.7181878153126,210.0,23.6,0.3 -2019,7,25,9,15,666.0,665.8137096470027,210.0,23.6,0.3 -2019,7,25,9,30,666.0,691.4941139835605,210.0,23.6,0.3 -2019,7,25,9,45,666.0,715.6494333910891,210.0,23.6,0.3 -2019,7,25,10,0,866.0,835.7877118893475,149.0,26.4,2.7 -2019,7,25,10,15,866.0,862.8363152825095,149.0,26.4,2.7 -2019,7,25,10,30,866.0,887.526093992289,149.0,26.4,2.7 -2019,7,25,10,45,866.0,909.751322595807,149.0,26.4,2.7 -2019,7,25,11,0,996.0,998.5694710566926,101.0,29.1,3.2 -2019,7,25,11,15,996.0,1018.1462466854553,101.0,29.1,3.2 -2019,7,25,11,30,996.0,1034.5983636857904,101.0,29.1,3.2 -2019,7,25,11,45,996.0,1047.8553715669282,101.0,29.1,3.2 -2019,7,25,12,0,990.0,1054.0962818955918,103.0,30.8,3.5 -2019,7,25,12,15,990.0,1060.7662667977988,103.0,30.8,3.5 -2019,7,25,12,30,990.0,1064.1328163527155,103.0,30.8,3.5 -2019,7,25,12,45,990.0,1064.1815144783054,103.0,30.8,3.5 -2019,7,25,13,0,1052.0,1091.9026106859478,74.0,32.1,3.3 -2019,7,25,13,15,1052.0,1084.9175199508884,74.0,32.1,3.3 -2019,7,25,13,30,1052.0,1074.4513594612522,74.0,32.1,3.3 -2019,7,25,13,45,1052.0,1060.5489469230502,74.0,32.1,3.3 -2019,7,25,14,0,963.0,983.2688511985426,96.0,31.5,4.8 -2019,7,25,14,15,963.0,964.4282320154341,96.0,31.5,4.8 -2019,7,25,14,30,963.0,942.6449766605043,96.0,31.5,4.8 -2019,7,25,14,45,963.0,918.0123643774098,96.0,31.5,4.8 -2019,7,25,15,0,642.0,701.7572505290758,172.0,30.4,6.1 -2019,7,25,15,15,642.0,681.7551608240983,172.0,30.4,6.1 -2019,7,25,15,30,642.0,660.0876258222338,172.0,30.4,6.1 -2019,7,25,15,45,642.0,636.8474292348209,172.0,30.4,6.1 -2019,7,25,16,0,393.0,438.4278770039841,169.0,28.8,5.3 -2019,7,25,16,15,393.0,422.46261484776085,169.0,28.8,5.3 -2019,7,25,16,30,393.0,405.7287158225856,169.0,28.8,5.3 -2019,7,25,16,45,393.0,388.297837053119,169.0,28.8,5.3 -2019,7,25,17,0,222.0,217.68016715750676,104.0,27.6,4.7 -2019,7,25,17,15,222.0,207.17428648688326,104.0,27.6,4.7 -2019,7,25,17,30,222.0,196.40551327770822,104.0,27.6,4.7 -2019,7,25,17,45,222.0,185.41996107011545,104.0,27.6,4.7 -2019,7,25,18,0,133.0,68.09550150509162,26.0,25.8,5.5 -2019,7,25,18,15,133.0,61.33930645658212,26.0,25.8,5.5 -2019,7,25,18,30,133.0,54.538971244689044,26.0,25.8,5.5 -2019,7,25,18,45,133.0,47.72361594879614,26.0,25.8,5.5 -2019,7,25,19,0,0.0,0.0,0.0,23.6,3.8 -2019,7,25,19,15,0.0,0.0,0.0,23.6,3.8 -2019,7,25,19,30,0.0,0.0,0.0,23.6,3.8 -2019,7,25,19,45,0.0,0.0,0.0,23.6,3.8 -2019,7,25,20,0,0.0,0.0,0.0,21.6,1.6 -2019,7,25,20,15,0.0,0.0,0.0,21.6,1.6 -2019,7,25,20,30,0.0,0.0,0.0,21.6,1.6 -2019,7,25,20,45,0.0,0.0,0.0,21.6,1.6 -2019,7,25,21,0,0.0,0.0,0.0,20.5,2.2 -2019,7,25,21,15,0.0,0.0,0.0,20.5,2.2 -2019,7,25,21,30,0.0,0.0,0.0,20.5,2.2 -2019,7,25,21,45,0.0,0.0,0.0,20.5,2.2 -2019,7,25,22,0,0.0,0.0,0.0,19.3,2.5 -2019,7,25,22,15,0.0,0.0,0.0,19.3,2.5 -2019,7,25,22,30,0.0,0.0,0.0,19.3,2.5 -2019,7,25,22,45,0.0,0.0,0.0,19.3,2.5 -2019,7,25,23,0,0.0,0.0,0.0,18.2,2.0 -2019,7,25,23,15,0.0,0.0,0.0,18.2,2.0 -2019,7,25,23,30,0.0,0.0,0.0,18.2,2.0 -2019,7,25,23,45,0.0,0.0,0.0,18.2,2.0 -2019,7,26,0,0,0.0,0.0,0.0,17.7,1.3 -2019,7,26,0,15,0.0,0.0,0.0,17.7,1.3 -2019,7,26,0,30,0.0,0.0,0.0,17.7,1.3 -2019,7,26,0,45,0.0,0.0,0.0,17.7,1.3 -2019,7,26,1,0,0.0,0.0,0.0,16.6,0.2 -2019,7,26,1,15,0.0,0.0,0.0,16.6,0.2 -2019,7,26,1,30,0.0,0.0,0.0,16.6,0.2 -2019,7,26,1,45,0.0,0.0,0.0,16.6,0.2 -2019,7,26,2,0,0.0,0.0,0.0,15.5,1.5 -2019,7,26,2,15,0.0,0.0,0.0,15.5,1.5 -2019,7,26,2,30,0.0,0.0,0.0,15.5,1.5 -2019,7,26,2,45,0.0,0.0,0.0,15.5,1.5 -2019,7,26,3,0,0.0,0.0,0.0,14.9,1.3 -2019,7,26,3,15,0.0,0.0,0.0,14.9,1.3 -2019,7,26,3,30,0.0,0.0,0.0,14.9,1.3 -2019,7,26,3,45,0.0,0.0,0.0,14.9,1.3 -2019,7,26,4,0,0.0,0.0,0.0,14.3,0.0 -2019,7,26,4,15,0.0,0.0,0.0,14.3,0.0 -2019,7,26,4,30,0.0,0.0,0.0,14.3,0.0 -2019,7,26,4,45,0.0,0.0,0.0,14.3,0.0 -2019,7,26,5,0,1.0,12.861922893765582,13.0,14.5,1.3 -2019,7,26,5,15,1.0,12.909311127734316,13.0,14.5,1.3 -2019,7,26,5,30,1.0,12.957885175012384,13.0,14.5,1.3 -2019,7,26,5,45,1.0,13.00743703407212,13.0,14.5,1.3 -2019,7,26,6,0,2.0,42.11550903249138,42.0,15.8,0.0 -2019,7,26,6,15,2.0,42.21724430869909,42.0,15.8,0.0 -2019,7,26,6,30,2.0,42.319644250695966,42.0,15.8,0.0 -2019,7,26,6,45,2.0,42.42227036620966,42.0,15.8,0.0 -2019,7,26,7,0,24.0,178.29619833349693,172.0,17.0,0.4 -2019,7,26,7,15,24.0,179.51733025585565,172.0,17.0,0.4 -2019,7,26,7,30,24.0,180.7254110872289,172.0,17.0,0.4 -2019,7,26,7,45,24.0,181.9152676400288,172.0,17.0,0.4 -2019,7,26,8,0,517.0,455.72054433050414,217.0,20.3,1.9 -2019,7,26,8,15,517.0,480.2397520303993,217.0,20.3,1.9 -2019,7,26,8,30,517.0,504.0440185003439,217.0,20.3,1.9 -2019,7,26,8,45,517.0,527.0314102168163,217.0,20.3,1.9 -2019,7,26,9,0,686.0,642.6634337807096,202.0,23.1,0.0 -2019,7,26,9,15,686.0,670.6106426588635,202.0,23.1,0.0 -2019,7,26,9,30,686.0,697.09825299268,202.0,23.1,0.0 -2019,7,26,9,45,686.0,722.0128407682578,202.0,23.1,0.0 -2019,7,26,10,0,901.0,848.5075711721602,135.0,25.9,0.2 -2019,7,26,10,15,901.0,876.6876873862243,135.0,25.9,0.2 -2019,7,26,10,30,901.0,902.410303198507,135.0,25.9,0.2 -2019,7,26,10,45,901.0,925.5652704190924,135.0,25.9,0.2 -2019,7,26,11,0,984.0,990.7675704203665,105.0,28.6,1.6 -2019,7,26,11,15,984.0,1010.1348204016114,105.0,28.6,1.6 -2019,7,26,11,30,984.0,1026.4108542443878,105.0,28.6,1.6 -2019,7,26,11,45,984.0,1039.525975473039,105.0,28.6,1.6 -2019,7,26,12,0,1107.0,1120.4770260156179,58.0,31.2,2.3 -2019,7,26,12,15,1107.0,1127.945438770709,58.0,31.2,2.3 -2019,7,26,12,30,1107.0,1131.7149797824536,58.0,31.2,2.3 -2019,7,26,12,45,1107.0,1131.7695072975287,58.0,31.2,2.3 -2019,7,26,13,0,1091.0,1115.6419941395045,61.0,32.2,4.0 -2019,7,26,13,15,1091.0,1108.3880852324824,61.0,32.2,4.0 -2019,7,26,13,30,1091.0,1097.5191391188646,61.0,32.2,4.0 -2019,7,26,13,45,1091.0,1083.0816982945403,61.0,32.2,4.0 -2019,7,26,14,0,1054.0,1036.0834241492812,66.0,32.0,3.8 -2019,7,26,14,15,1054.0,1015.4343525552135,66.0,32.0,3.8 -2019,7,26,14,30,1054.0,991.5601902994915,66.0,32.0,3.8 -2019,7,26,14,45,1054.0,964.5631702101228,66.0,32.0,3.8 -2019,7,26,15,0,890.0,831.4131109372779,98.0,31.3,5.7 -2019,7,26,15,15,890.0,803.6465953239021,98.0,31.3,5.7 -2019,7,26,15,30,890.0,773.5681406320947,98.0,31.3,5.7 -2019,7,26,15,45,890.0,741.3065474225745,98.0,31.3,5.7 -2019,7,26,16,0,677.0,574.250535014685,111.0,29.9,5.4 -2019,7,26,16,15,677.0,546.7105812137365,111.0,29.9,5.4 -2019,7,26,16,30,677.0,517.8447347557487,111.0,29.9,5.4 -2019,7,26,16,45,677.0,487.77660362681996,111.0,29.9,5.4 -2019,7,26,17,0,475.0,323.50605389332236,81.0,29.1,5.0 -2019,7,26,17,15,475.0,300.99664275817406,81.0,29.1,5.0 -2019,7,26,17,30,475.0,277.92397030109163,81.0,29.1,5.0 -2019,7,26,17,45,475.0,254.3868372477173,81.0,29.1,5.0 -2019,7,26,18,0,216.0,92.9768066831552,25.0,26.9,4.0 -2019,7,26,18,15,216.0,81.98939685272236,25.0,26.9,4.0 -2019,7,26,18,30,216.0,70.93020311705962,25.0,26.9,4.0 -2019,7,26,18,45,216.0,59.846582641581236,25.0,26.9,4.0 -2019,7,26,19,0,0.0,0.0,0.0,24.2,3.4 -2019,7,26,19,15,0.0,0.0,0.0,24.2,3.4 -2019,7,26,19,30,0.0,0.0,0.0,24.2,3.4 -2019,7,26,19,45,0.0,0.0,0.0,24.2,3.4 -2019,7,26,20,0,0.0,0.0,0.0,22.6,2.2 -2019,7,26,20,15,0.0,0.0,0.0,22.6,2.2 -2019,7,26,20,30,0.0,0.0,0.0,22.6,2.2 -2019,7,26,20,45,0.0,0.0,0.0,22.6,2.2 -2019,7,26,21,0,0.0,0.0,0.0,21.0,2.5 -2019,7,26,21,15,0.0,0.0,0.0,21.0,2.5 -2019,7,26,21,30,0.0,0.0,0.0,21.0,2.5 -2019,7,26,21,45,0.0,0.0,0.0,21.0,2.5 -2019,7,26,22,0,0.0,0.0,0.0,19.9,1.6 -2019,7,26,22,15,0.0,0.0,0.0,19.9,1.6 -2019,7,26,22,30,0.0,0.0,0.0,19.9,1.6 -2019,7,26,22,45,0.0,0.0,0.0,19.9,1.6 -2019,7,26,23,0,0.0,0.0,0.0,18.8,2.0 -2019,7,26,23,15,0.0,0.0,0.0,18.8,2.0 -2019,7,26,23,30,0.0,0.0,0.0,18.8,2.0 -2019,7,26,23,45,0.0,0.0,0.0,18.8,2.0 -2019,7,27,0,0,0.0,0.0,0.0,17.6,1.3 -2019,7,27,0,15,0.0,0.0,0.0,17.6,1.3 -2019,7,27,0,30,0.0,0.0,0.0,17.6,1.3 -2019,7,27,0,45,0.0,0.0,0.0,17.6,1.3 -2019,7,27,1,0,0.0,0.0,0.0,16.0,0.0 -2019,7,27,1,15,0.0,0.0,0.0,16.0,0.0 -2019,7,27,1,30,0.0,0.0,0.0,16.0,0.0 -2019,7,27,1,45,0.0,0.0,0.0,16.0,0.0 -2019,7,27,2,0,0.0,0.0,0.0,15.5,0.2 -2019,7,27,2,15,0.0,0.0,0.0,15.5,0.2 -2019,7,27,2,30,0.0,0.0,0.0,15.5,0.2 -2019,7,27,2,45,0.0,0.0,0.0,15.5,0.2 -2019,7,27,3,0,0.0,0.0,0.0,14.9,1.5 -2019,7,27,3,15,0.0,0.0,0.0,14.9,1.5 -2019,7,27,3,30,0.0,0.0,0.0,14.9,1.5 -2019,7,27,3,45,0.0,0.0,0.0,14.9,1.5 -2019,7,27,4,0,0.0,0.0,0.0,14.3,1.3 -2019,7,27,4,15,0.0,0.0,0.0,14.3,1.3 -2019,7,27,4,30,0.0,0.0,0.0,14.3,1.3 -2019,7,27,4,45,0.0,0.0,0.0,14.3,1.3 -2019,7,27,5,0,3.0,12.578332865312941,13.0,14.5,0.0 -2019,7,27,5,15,3.0,12.720693970782314,13.0,14.5,0.0 -2019,7,27,5,30,3.0,12.866617430858712,13.0,14.5,0.0 -2019,7,27,5,45,3.0,13.01547837888351,13.0,14.5,0.0 -2019,7,27,6,0,18.0,85.9998362165423,85.0,15.3,0.4 -2019,7,27,6,15,18.0,86.9167186474671,85.0,15.3,0.4 -2019,7,27,6,30,18.0,87.83959133474389,85.0,15.3,0.4 -2019,7,27,6,45,18.0,88.76450239584373,85.0,15.3,0.4 -2019,7,27,7,0,428.0,282.4581245551259,171.0,17.5,1.3 -2019,7,27,7,15,428.0,304.26506235616347,171.0,17.5,1.3 -2019,7,27,7,30,428.0,325.83893415987114,171.0,17.5,1.3 -2019,7,27,7,45,428.0,347.0873573351043,171.0,17.5,1.3 -2019,7,27,8,0,479.0,448.38403092417946,228.0,19.7,0.2 -2019,7,27,8,15,479.0,471.13243719513764,228.0,19.7,0.2 -2019,7,27,8,30,479.0,493.21753599883033,228.0,19.7,0.2 -2019,7,27,8,45,479.0,514.5447555516141,228.0,19.7,0.2 -2019,7,27,9,0,683.0,640.7798570300151,203.0,22.5,2.0 -2019,7,27,9,15,683.0,668.6432886108328,203.0,22.5,2.0 -2019,7,27,9,30,683.0,695.0514970832204,203.0,22.5,2.0 -2019,7,27,9,45,683.0,719.8913984442376,203.0,22.5,2.0 -2019,7,27,10,0,846.0,825.9427588018439,157.0,25.4,1.5 -2019,7,27,10,15,846.0,852.4392230720323,157.0,25.4,1.5 -2019,7,27,10,30,846.0,876.6250129966949,157.0,25.4,1.5 -2019,7,27,10,45,846.0,898.3965613103043,157.0,25.4,1.5 -2019,7,27,11,0,1023.0,1009.8059498762002,90.0,28.6,1.7 -2019,7,27,11,15,1023.0,1029.9686210075738,90.0,28.6,1.7 -2019,7,27,11,30,1023.0,1046.9131184459193,90.0,28.6,1.7 -2019,7,27,11,45,1023.0,1060.56688325184,90.0,28.6,1.7 -2019,7,27,12,0,1096.0,1112.8652071431734,62.0,30.7,3.7 -2019,7,27,12,15,1096.0,1120.2696232740564,62.0,30.7,3.7 -2019,7,27,12,30,1096.0,1124.006863192185,62.0,30.7,3.7 -2019,7,27,12,45,1096.0,1124.0609234624778,62.0,30.7,3.7 -2019,7,27,13,0,1109.0,1125.9859616815047,55.0,31.6,4.3 -2019,7,27,13,15,1109.0,1118.602186481368,55.0,31.6,4.3 -2019,7,27,13,30,1109.0,1107.5386542818303,55.0,31.6,4.3 -2019,7,27,13,45,1109.0,1092.842740826274,55.0,31.6,4.3 -2019,7,27,14,0,984.0,993.6565719133606,89.0,31.0,5.6 -2019,7,27,14,15,984.0,974.3522482448681,89.0,31.0,5.6 -2019,7,27,14,30,984.0,952.0328643733449,89.0,31.0,5.6 -2019,7,27,14,45,984.0,926.7939953270633,89.0,31.0,5.6 -2019,7,27,15,0,875.0,822.0464970434637,102.0,30.7,4.6 -2019,7,27,15,15,875.0,794.7102428971136,102.0,30.7,4.6 -2019,7,27,15,30,875.0,765.0978747759716,102.0,30.7,4.6 -2019,7,27,15,45,875.0,733.3361973865057,102.0,30.7,4.6 -2019,7,27,16,0,700.0,584.0489752859512,106.0,29.7,4.6 -2019,7,27,16,15,700.0,555.534055664793,106.0,29.7,4.6 -2019,7,27,16,30,700.0,525.6463043092381,106.0,29.7,4.6 -2019,7,27,16,45,700.0,494.51370515904216,106.0,29.7,4.6 -2019,7,27,17,0,498.0,331.4603532087115,78.0,28.7,4.6 -2019,7,27,17,15,498.0,307.82840970079565,78.0,28.7,4.6 -2019,7,27,17,30,498.0,283.6051153281137,78.0,28.7,4.6 -2019,7,27,17,45,498.0,258.89419795599724,78.0,28.7,4.6 -2019,7,27,18,0,252.0,101.83929985669349,23.0,26.9,4.5 -2019,7,27,18,15,252.0,89.00294582374626,23.0,26.9,4.5 -2019,7,27,18,30,252.0,76.08272820187138,23.0,26.9,4.5 -2019,7,27,18,45,252.0,63.133973346473425,23.0,26.9,4.5 -2019,7,27,19,0,0.0,0.0,0.0,24.1,3.6 -2019,7,27,19,15,0.0,0.0,0.0,24.1,3.6 -2019,7,27,19,30,0.0,0.0,0.0,24.1,3.6 -2019,7,27,19,45,0.0,0.0,0.0,24.1,3.6 -2019,7,27,20,0,0.0,0.0,0.0,22.0,3.4 -2019,7,27,20,15,0.0,0.0,0.0,22.0,3.4 -2019,7,27,20,30,0.0,0.0,0.0,22.0,3.4 -2019,7,27,20,45,0.0,0.0,0.0,22.0,3.4 -2019,7,27,21,0,0.0,0.0,0.0,20.5,2.0 -2019,7,27,21,15,0.0,0.0,0.0,20.5,2.0 -2019,7,27,21,30,0.0,0.0,0.0,20.5,2.0 -2019,7,27,21,45,0.0,0.0,0.0,20.5,2.0 -2019,7,27,22,0,0.0,0.0,0.0,19.3,1.5 -2019,7,27,22,15,0.0,0.0,0.0,19.3,1.5 -2019,7,27,22,30,0.0,0.0,0.0,19.3,1.5 -2019,7,27,22,45,0.0,0.0,0.0,19.3,1.5 -2019,7,27,23,0,0.0,0.0,0.0,18.2,1.3 -2019,7,27,23,15,0.0,0.0,0.0,18.2,1.3 -2019,7,27,23,30,0.0,0.0,0.0,18.2,1.3 -2019,7,27,23,45,0.0,0.0,0.0,18.2,1.3 -2019,7,28,0,0,0.0,0.0,0.0,17.7,0.0 -2019,7,28,0,15,0.0,0.0,0.0,17.7,0.0 -2019,7,28,0,30,0.0,0.0,0.0,17.7,0.0 -2019,7,28,0,45,0.0,0.0,0.0,17.7,0.0 -2019,7,28,1,0,0.0,0.0,0.0,16.6,0.0 -2019,7,28,1,15,0.0,0.0,0.0,16.6,0.0 -2019,7,28,1,30,0.0,0.0,0.0,16.6,0.0 -2019,7,28,1,45,0.0,0.0,0.0,16.6,0.0 -2019,7,28,2,0,0.0,0.0,0.0,16.0,0.0 -2019,7,28,2,15,0.0,0.0,0.0,16.0,0.0 -2019,7,28,2,30,0.0,0.0,0.0,16.0,0.0 -2019,7,28,2,45,0.0,0.0,0.0,16.0,0.0 -2019,7,28,3,0,0.0,0.0,0.0,14.9,0.0 -2019,7,28,3,15,0.0,0.0,0.0,14.9,0.0 -2019,7,28,3,30,0.0,0.0,0.0,14.9,0.0 -2019,7,28,3,45,0.0,0.0,0.0,14.9,0.0 -2019,7,28,4,0,0.0,0.0,0.0,14.5,0.0 -2019,7,28,4,15,0.0,0.0,0.0,14.5,0.0 -2019,7,28,4,30,0.0,0.0,0.0,14.5,0.0 -2019,7,28,4,45,0.0,0.0,0.0,14.5,0.0 -2019,7,28,5,0,275.0,-7.351431667077783,32.0,15.3,0.0 -2019,7,28,5,15,275.0,5.71659969869043,32.0,15.3,0.0 -2019,7,28,5,30,275.0,19.111637247693213,32.0,15.3,0.0 -2019,7,28,5,45,275.0,32.77632137270211,32.0,15.3,0.0 -2019,7,28,6,0,555.0,108.5706781023333,79.0,18.0,0.0 -2019,7,28,6,15,555.0,136.88078480931145,79.0,18.0,0.0 -2019,7,28,6,30,555.0,165.37584957722189,79.0,18.0,0.0 -2019,7,28,6,45,555.0,193.9338521640865,79.0,18.0,0.0 -2019,7,28,7,0,751.0,295.0861434535345,101.0,19.9,0.0 -2019,7,28,7,15,751.0,333.4037373394111,101.0,19.9,0.0 -2019,7,28,7,30,751.0,371.31180429785877,101.0,19.9,0.0 -2019,7,28,7,45,751.0,408.64801616640887,101.0,19.9,0.0 -2019,7,28,8,0,871.0,506.2595497808658,107.0,23.7,0.2 -2019,7,28,8,15,871.0,547.6824969348149,107.0,23.7,0.2 -2019,7,28,8,30,871.0,587.8976166112659,107.0,23.7,0.2 -2019,7,28,8,45,871.0,626.7327014938265,107.0,23.7,0.2 -2019,7,28,9,0,947.0,708.6249331070612,103.0,27.0,1.6 -2019,7,28,9,15,947.0,747.3124854997146,103.0,27.0,1.6 -2019,7,28,9,30,947.0,783.9795035555586,103.0,27.0,1.6 -2019,7,28,9,45,947.0,818.4689734740551,103.0,27.0,1.6 -2019,7,28,10,0,993.0,880.9490745593903,97.0,29.5,2.0 -2019,7,28,10,15,993.0,912.093059998022,97.0,29.5,2.0 -2019,7,28,10,30,993.0,940.5210752061864,97.0,29.5,2.0 -2019,7,28,10,45,993.0,966.1113870584136,97.0,29.5,2.0 -2019,7,28,11,0,1014.0,1003.6132685855041,93.0,30.8,1.6 -2019,7,28,11,15,1014.0,1023.6265252503049,93.0,30.8,1.6 -2019,7,28,11,30,1014.0,1040.4454563373672,93.0,30.8,1.6 -2019,7,28,11,45,1014.0,1053.9980406016873,93.0,30.8,1.6 -2019,7,28,12,0,1012.0,1062.3106101798585,93.0,32.3,2.3 -2019,7,28,12,15,1012.0,1069.1571029513234,93.0,32.3,2.3 -2019,7,28,12,30,1012.0,1072.6127415367857,93.0,32.3,2.3 -2019,7,28,12,45,1012.0,1072.6627283613025,93.0,32.3,2.3 -2019,7,28,13,0,988.0,1051.1533272540848,98.0,33.2,3.8 -2019,7,28,13,15,988.0,1044.5659696276741,98.0,33.2,3.8 -2019,7,28,13,30,988.0,1034.6957553762545,98.0,33.2,3.8 -2019,7,28,13,45,988.0,1021.5849502725534,98.0,33.2,3.8 -2019,7,28,14,0,939.0,966.2925357208761,104.0,32.1,5.6 -2019,7,28,14,15,939.0,947.8452505352947,104.0,32.1,5.6 -2019,7,28,14,30,939.0,926.5167623419236,104.0,32.1,5.6 -2019,7,28,14,45,939.0,902.3984030016163,104.0,32.1,5.6 -2019,7,28,15,0,858.0,812.0342715498106,107.0,31.7,4.7 -2019,7,28,15,15,858.0,785.1916075228568,107.0,31.7,4.7 -2019,7,28,15,30,858.0,756.1139275941155,107.0,31.7,4.7 -2019,7,28,15,45,858.0,724.9257468531281,107.0,31.7,4.7 -2019,7,28,16,0,730.0,596.5236026234086,99.0,30.8,5.2 -2019,7,28,16,15,730.0,566.744997616476,99.0,30.8,5.2 -2019,7,28,16,30,730.0,535.5327215874006,99.0,30.8,5.2 -2019,7,28,16,45,730.0,503.0204302939349,99.0,30.8,5.2 -2019,7,28,17,0,520.0,338.80906863912736,75.0,30.3,5.6 -2019,7,28,17,15,520.0,314.0986093293111,75.0,30.3,5.6 -2019,7,28,17,30,520.0,288.7698110548331,75.0,30.3,5.6 -2019,7,28,17,45,520.0,262.9311356184526,75.0,30.3,5.6 -2019,7,28,18,0,306.0,116.15024582256814,21.0,28.0,4.9 -2019,7,28,18,15,306.0,100.54143023277476,21.0,28.0,4.9 -2019,7,28,18,30,306.0,84.83063776614307,21.0,28.0,4.9 -2019,7,28,18,45,306.0,69.08514444797989,21.0,28.0,4.9 -2019,7,28,19,0,0.0,0.0,0.0,25.8,3.4 -2019,7,28,19,15,0.0,0.0,0.0,25.8,3.4 -2019,7,28,19,30,0.0,0.0,0.0,25.8,3.4 -2019,7,28,19,45,0.0,0.0,0.0,25.8,3.4 -2019,7,28,20,0,0.0,0.0,0.0,23.8,2.1 -2019,7,28,20,15,0.0,0.0,0.0,23.8,2.1 -2019,7,28,20,30,0.0,0.0,0.0,23.8,2.1 -2019,7,28,20,45,0.0,0.0,0.0,23.8,2.1 -2019,7,28,21,0,0.0,0.0,0.0,22.7,1.9 -2019,7,28,21,15,0.0,0.0,0.0,22.7,1.9 -2019,7,28,21,30,0.0,0.0,0.0,22.7,1.9 -2019,7,28,21,45,0.0,0.0,0.0,22.7,1.9 -2019,7,28,22,0,0.0,0.0,0.0,21.5,0.2 -2019,7,28,22,15,0.0,0.0,0.0,21.5,0.2 -2019,7,28,22,30,0.0,0.0,0.0,21.5,0.2 -2019,7,28,22,45,0.0,0.0,0.0,21.5,0.2 -2019,7,28,23,0,0.0,0.0,0.0,20.0,1.3 -2019,7,28,23,15,0.0,0.0,0.0,20.0,1.3 -2019,7,28,23,30,0.0,0.0,0.0,20.0,1.3 -2019,7,28,23,45,0.0,0.0,0.0,20.0,1.3 -2019,7,29,0,0,0.0,0.0,0.0,19.7,0.0 -2019,7,29,0,15,0.0,0.0,0.0,19.7,0.0 -2019,7,29,0,30,0.0,0.0,0.0,19.7,0.0 -2019,7,29,0,45,0.0,0.0,0.0,19.7,0.0 -2019,7,29,1,0,0.0,0.0,0.0,17.8,0.0 -2019,7,29,1,15,0.0,0.0,0.0,17.8,0.0 -2019,7,29,1,30,0.0,0.0,0.0,17.8,0.0 -2019,7,29,1,45,0.0,0.0,0.0,17.8,0.0 -2019,7,29,2,0,0.0,0.0,0.0,17.7,0.0 -2019,7,29,2,15,0.0,0.0,0.0,17.7,0.0 -2019,7,29,2,30,0.0,0.0,0.0,17.7,0.0 -2019,7,29,2,45,0.0,0.0,0.0,17.7,0.0 -2019,7,29,3,0,0.0,0.0,0.0,16.6,0.0 -2019,7,29,3,15,0.0,0.0,0.0,16.6,0.0 -2019,7,29,3,30,0.0,0.0,0.0,16.6,0.0 -2019,7,29,3,45,0.0,0.0,0.0,16.6,0.0 -2019,7,29,4,0,0.0,0.0,0.0,16.1,0.0 -2019,7,29,4,15,0.0,0.0,0.0,16.1,0.0 -2019,7,29,4,30,0.0,0.0,0.0,16.1,0.0 -2019,7,29,4,45,0.0,0.0,0.0,16.1,0.0 -2019,7,29,5,0,258.0,-5.589917374357256,32.0,16.4,0.0 -2019,7,29,5,15,258.0,6.687630059431097,32.0,16.4,0.0 -2019,7,29,5,30,258.0,19.27240310459358,32.0,16.4,0.0 -2019,7,29,5,45,258.0,32.11051183090121,32.0,16.4,0.0 -2019,7,29,6,0,527.0,108.85449319008039,82.0,18.6,0.0 -2019,7,29,6,15,527.0,135.77440165084855,82.0,18.6,0.0 -2019,7,29,6,30,527.0,162.8701856079866,82.0,18.6,0.0 -2019,7,29,6,45,527.0,190.02581675476995,82.0,18.6,0.0 -2019,7,29,7,0,718.0,292.0982116620624,108.0,21.5,0.0 -2019,7,29,7,15,718.0,328.7839427068975,108.0,21.5,0.0 -2019,7,29,7,30,718.0,365.07758768390624,108.0,21.5,0.0 -2019,7,29,7,45,718.0,400.82373163339537,108.0,21.5,0.0 -2019,7,29,8,0,835.0,498.29647479953985,117.0,24.7,0.0 -2019,7,29,8,15,835.0,538.0635596199955,117.0,24.7,0.0 -2019,7,29,8,30,835.0,576.6710992838107,117.0,24.7,0.0 -2019,7,29,8,45,835.0,613.9537703790072,117.0,24.7,0.0 -2019,7,29,9,0,911.0,697.2419181514018,116.0,27.5,0.2 -2019,7,29,9,15,911.0,734.5114633293047,116.0,27.5,0.2 -2019,7,29,9,30,911.0,769.8345324162691,116.0,27.5,0.2 -2019,7,29,9,45,911.0,803.0598666075688,116.0,27.5,0.2 -2019,7,29,10,0,956.0,865.5139424421634,112.0,29.7,2.2 -2019,7,29,10,15,956.0,895.5399280291948,112.0,29.7,2.2 -2019,7,29,10,30,956.0,922.9474406800791,112.0,29.7,2.2 -2019,7,29,10,45,956.0,947.6191172179671,112.0,29.7,2.2 -2019,7,29,11,0,977.0,984.2844933183316,108.0,31.9,2.7 -2019,7,29,11,15,977.0,1003.5947841267558,108.0,31.9,2.7 -2019,7,29,11,30,977.0,1019.8229500778397,108.0,31.9,2.7 -2019,7,29,11,45,977.0,1032.8994996735873,108.0,31.9,2.7 -2019,7,29,12,0,976.0,1042.811662876331,109.0,33.3,3.2 -2019,7,29,12,15,976.0,1049.4239529829101,109.0,33.3,3.2 -2019,7,29,12,30,976.0,1052.7613821737796,109.0,33.3,3.2 -2019,7,29,12,45,976.0,1052.8096590647724,109.0,33.3,3.2 -2019,7,29,13,0,952.0,1029.4398414286293,112.0,33.2,3.8 -2019,7,29,13,15,952.0,1023.083522409659,112.0,33.2,3.8 -2019,7,29,13,30,952.0,1013.559486502443,112.0,33.2,3.8 -2019,7,29,13,45,952.0,1000.9085170908921,112.0,33.2,3.8 -2019,7,29,14,0,903.0,945.2414529139917,117.0,32.7,5.1 -2019,7,29,14,15,903.0,927.4762954942236,117.0,32.7,5.1 -2019,7,29,14,30,903.0,906.9364737009845,117.0,32.7,5.1 -2019,7,29,14,45,903.0,883.7099422045243,117.0,32.7,5.1 -2019,7,29,15,0,822.0,791.4370365399083,117.0,32.0,5.1 -2019,7,29,15,15,822.0,765.6842287949895,117.0,32.0,5.1 -2019,7,29,15,30,822.0,737.7871504676957,117.0,32.0,5.1 -2019,7,29,15,45,822.0,707.865261130262,117.0,32.0,5.1 -2019,7,29,16,0,697.0,579.0335079827817,105.0,30.8,5.4 -2019,7,29,16,15,697.0,550.5608043600238,105.0,30.8,5.4 -2019,7,29,16,30,697.0,520.7173014638784,105.0,30.8,5.4 -2019,7,29,16,45,697.0,489.6307937554042,105.0,30.8,5.4 -2019,7,29,17,0,492.0,325.7772224233623,77.0,29.7,5.6 -2019,7,29,17,15,492.0,302.3642249914868,77.0,29.7,5.6 -2019,7,29,17,30,492.0,278.3653554635025,77.0,29.7,5.6 -2019,7,29,17,45,492.0,253.88338068310193,77.0,29.7,5.6 -2019,7,29,18,0,295.0,112.15208371204574,21.0,27.5,4.9 -2019,7,29,18,15,295.0,97.08306474444305,21.0,27.5,4.9 -2019,7,29,18,30,295.0,81.91559554642456,21.0,27.5,4.9 -2019,7,29,18,45,295.0,66.71462554964829,21.0,27.5,4.9 -2019,7,29,19,0,0.0,0.0,0.0,25.3,3.4 -2019,7,29,19,15,0.0,0.0,0.0,25.3,3.4 -2019,7,29,19,30,0.0,0.0,0.0,25.3,3.4 -2019,7,29,19,45,0.0,0.0,0.0,25.3,3.4 -2019,7,29,20,0,0.0,0.0,0.0,23.2,2.0 -2019,7,29,20,15,0.0,0.0,0.0,23.2,2.0 -2019,7,29,20,30,0.0,0.0,0.0,23.2,2.0 -2019,7,29,20,45,0.0,0.0,0.0,23.2,2.0 -2019,7,29,21,0,0.0,0.0,0.0,22.7,1.3 -2019,7,29,21,15,0.0,0.0,0.0,22.7,1.3 -2019,7,29,21,30,0.0,0.0,0.0,22.7,1.3 -2019,7,29,21,45,0.0,0.0,0.0,22.7,1.3 -2019,7,29,22,0,0.0,0.0,0.0,21.6,0.2 -2019,7,29,22,15,0.0,0.0,0.0,21.6,0.2 -2019,7,29,22,30,0.0,0.0,0.0,21.6,0.2 -2019,7,29,22,45,0.0,0.0,0.0,21.6,0.2 -2019,7,29,23,0,0.0,0.0,0.0,21.0,1.9 -2019,7,29,23,15,0.0,0.0,0.0,21.0,1.9 -2019,7,29,23,30,0.0,0.0,0.0,21.0,1.9 -2019,7,29,23,45,0.0,0.0,0.0,21.0,1.9 -2019,7,30,0,0,0.0,0.0,0.0,20.4,0.0 -2019,7,30,0,15,0.0,0.0,0.0,20.4,0.0 -2019,7,30,0,30,0.0,0.0,0.0,20.4,0.0 -2019,7,30,0,45,0.0,0.0,0.0,20.4,0.0 -2019,7,30,1,0,0.0,0.0,0.0,18.9,0.0 -2019,7,30,1,15,0.0,0.0,0.0,18.9,0.0 -2019,7,30,1,30,0.0,0.0,0.0,18.9,0.0 -2019,7,30,1,45,0.0,0.0,0.0,18.9,0.0 -2019,7,30,2,0,0.0,0.0,0.0,18.8,0.0 -2019,7,30,2,15,0.0,0.0,0.0,18.8,0.0 -2019,7,30,2,30,0.0,0.0,0.0,18.8,0.0 -2019,7,30,2,45,0.0,0.0,0.0,18.8,0.0 -2019,7,30,3,0,0.0,0.0,0.0,18.2,0.2 -2019,7,30,3,15,0.0,0.0,0.0,18.2,0.2 -2019,7,30,3,30,0.0,0.0,0.0,18.2,0.2 -2019,7,30,3,45,0.0,0.0,0.0,18.2,0.2 -2019,7,30,4,0,0.0,0.0,0.0,17.9,1.3 -2019,7,30,4,15,0.0,0.0,0.0,17.9,1.3 -2019,7,30,4,30,0.0,0.0,0.0,17.9,1.3 -2019,7,30,4,45,0.0,0.0,0.0,17.9,1.3 -2019,7,30,5,0,183.0,4.8504055854430455,32.0,18.4,0.0 -2019,7,30,5,15,183.0,13.571354852564657,32.0,18.4,0.0 -2019,7,30,5,30,183.0,22.510531659413,32.0,18.4,0.0 -2019,7,30,5,45,183.0,31.62965707853374,32.0,18.4,0.0 -2019,7,30,6,0,442.0,113.47125286219006,92.0,19.7,0.0 -2019,7,30,6,15,442.0,136.0815353575431,92.0,19.7,0.0 -2019,7,30,6,30,442.0,158.83953732462948,92.0,19.7,0.0 -2019,7,30,6,45,442.0,181.64780550515434,92.0,19.7,0.0 -2019,7,30,7,0,595.0,285.31936533697217,134.0,22.0,0.0 -2019,7,30,7,15,595.0,315.76397812819715,134.0,22.0,0.0 -2019,7,30,7,30,595.0,345.88320804777567,134.0,22.0,0.0 -2019,7,30,7,45,595.0,375.54807992920405,134.0,22.0,0.0 -2019,7,30,8,0,678.0,473.3835303404804,165.0,24.7,0.0 -2019,7,30,8,15,678.0,505.71963706821026,165.0,24.7,0.0 -2019,7,30,8,30,678.0,537.1128741812818,165.0,24.7,0.0 -2019,7,30,8,45,678.0,567.428811018799,165.0,24.7,0.0 -2019,7,30,9,0,823.0,672.8281261946684,149.0,27.5,0.3 -2019,7,30,9,15,823.0,706.5456992125513,149.0,27.5,0.3 -2019,7,30,9,30,823.0,738.50230494708,149.0,27.5,0.3 -2019,7,30,9,45,823.0,768.5611003064322,149.0,27.5,0.3 -2019,7,30,10,0,723.0,779.9064468103813,211.0,30.3,2.7 -2019,7,30,10,15,723.0,802.6468642375347,211.0,30.3,2.7 -2019,7,30,10,30,723.0,823.4041604972881,211.0,30.3,2.7 -2019,7,30,10,45,723.0,842.0894496603388,211.0,30.3,2.7 -2019,7,30,11,0,815.0,909.0311418210882,179.0,32.3,3.2 -2019,7,30,11,15,815.0,925.1625624199463,179.0,32.3,3.2 -2019,7,30,11,30,815.0,938.7192391734004,179.0,32.3,3.2 -2019,7,30,11,45,815.0,949.6431203103335,179.0,32.3,3.2 -2019,7,30,12,0,899.0,1000.1653961436714,141.0,33.2,4.2 -2019,7,30,12,15,899.0,1006.2647317326707,141.0,33.2,4.2 -2019,7,30,12,30,899.0,1009.3432567688576,141.0,33.2,4.2 -2019,7,30,12,45,899.0,1009.3877885354034,141.0,33.2,4.2 -2019,7,30,13,0,531.0,803.1528480498081,292.0,32.7,4.8 -2019,7,30,13,15,531.0,799.6023930357925,292.0,32.7,4.8 -2019,7,30,13,30,531.0,794.282543459407,292.0,32.7,4.8 -2019,7,30,13,45,531.0,787.2160797332558,292.0,32.7,4.8 -2019,7,30,14,0,751.0,859.968699466004,172.0,31.6,6.6 -2019,7,30,14,15,751.0,845.172778511506,172.0,31.6,6.6 -2019,7,30,14,30,751.0,828.0659455974293,172.0,31.6,6.6 -2019,7,30,14,45,751.0,808.721454808601,172.0,31.6,6.6 -2019,7,30,15,0,326.0,525.0604771839602,258.0,31.1,6.0 -2019,7,30,15,15,326.0,514.8324676588998,258.0,31.1,6.0 -2019,7,30,15,30,326.0,503.75283759762146,258.0,31.1,6.0 -2019,7,30,15,45,326.0,491.8690316770239,258.0,31.1,6.0 -2019,7,30,16,0,270.0,367.2289058533537,184.0,30.2,4.7 -2019,7,30,16,15,270.0,356.1835312596561,184.0,30.2,4.7 -2019,7,30,16,30,270.0,344.606384493286,184.0,30.2,4.7 -2019,7,30,16,45,270.0,332.5470406740527,184.0,30.2,4.7 -2019,7,30,17,0,160.0,181.6264531932293,101.0,29.1,3.5 -2019,7,30,17,15,160.0,174.0015795170574,101.0,29.1,3.5 -2019,7,30,17,30,160.0,166.1859058061518,101.0,29.1,3.5 -2019,7,30,17,45,160.0,158.21289997522655,101.0,29.1,3.5 -2019,7,30,18,0,3.0,8.920938193611647,8.0,27.0,3.1 -2019,7,30,18,15,3.0,8.767474737760834,8.0,27.0,3.1 -2019,7,30,18,30,3.0,8.613008661061153,8.0,27.0,3.1 -2019,7,30,18,45,3.0,8.458201410967094,8.0,27.0,3.1 -2019,7,30,19,0,0.0,0.0,0.0,25.3,3.0 -2019,7,30,19,15,0.0,0.0,0.0,25.3,3.0 -2019,7,30,19,30,0.0,0.0,0.0,25.3,3.0 -2019,7,30,19,45,0.0,0.0,0.0,25.3,3.0 -2019,7,30,20,0,0.0,0.0,0.0,23.2,2.0 -2019,7,30,20,15,0.0,0.0,0.0,23.2,2.0 -2019,7,30,20,30,0.0,0.0,0.0,23.2,2.0 -2019,7,30,20,45,0.0,0.0,0.0,23.2,2.0 -2019,7,30,21,0,0.0,0.0,0.0,22.8,1.6 -2019,7,30,21,15,0.0,0.0,0.0,22.8,1.6 -2019,7,30,21,30,0.0,0.0,0.0,22.8,1.6 -2019,7,30,21,45,0.0,0.0,0.0,22.8,1.6 -2019,7,30,22,0,0.0,0.0,0.0,22.7,2.5 -2019,7,30,22,15,0.0,0.0,0.0,22.7,2.5 -2019,7,30,22,30,0.0,0.0,0.0,22.7,2.5 -2019,7,30,22,45,0.0,0.0,0.0,22.7,2.5 -2019,7,30,23,0,0.0,0.0,0.0,21.6,2.1 -2019,7,30,23,15,0.0,0.0,0.0,21.6,2.1 -2019,7,30,23,30,0.0,0.0,0.0,21.6,2.1 -2019,7,30,23,45,0.0,0.0,0.0,21.6,2.1 -2019,7,31,0,0,0.0,0.0,0.0,21.0,1.9 -2019,7,31,0,15,0.0,0.0,0.0,21.0,1.9 -2019,7,31,0,30,0.0,0.0,0.0,21.0,1.9 -2019,7,31,0,45,0.0,0.0,0.0,21.0,1.9 -2019,7,31,1,0,0.0,0.0,0.0,20.5,0.0 -2019,7,31,1,15,0.0,0.0,0.0,20.5,0.0 -2019,7,31,1,30,0.0,0.0,0.0,20.5,0.0 -2019,7,31,1,45,0.0,0.0,0.0,20.5,0.0 -2019,7,31,2,0,0.0,0.0,0.0,20.0,0.0 -2019,7,31,2,15,0.0,0.0,0.0,20.0,0.0 -2019,7,31,2,30,0.0,0.0,0.0,20.0,0.0 -2019,7,31,2,45,0.0,0.0,0.0,20.0,0.0 -2019,7,31,3,0,0.0,0.0,0.0,20.0,0.0 -2019,7,31,3,15,0.0,0.0,0.0,20.0,0.0 -2019,7,31,3,30,0.0,0.0,0.0,20.0,0.0 -2019,7,31,3,45,0.0,0.0,0.0,20.0,0.0 -2019,7,31,4,0,0.0,0.0,0.0,19.9,0.0 -2019,7,31,4,15,0.0,0.0,0.0,19.9,0.0 -2019,7,31,4,30,0.0,0.0,0.0,19.9,0.0 -2019,7,31,4,45,0.0,0.0,0.0,19.9,0.0 -2019,7,31,5,0,9.0,46.64029479890578,48.0,19.5,0.2 -2019,7,31,5,15,9.0,47.06981292607953,48.0,19.5,0.2 -2019,7,31,5,30,9.0,47.510079044244875,48.0,19.5,0.2 -2019,7,31,5,45,9.0,47.95920786629294,48.0,19.5,0.2 -2019,7,31,6,0,18.0,82.83055230731243,82.0,20.8,1.6 -2019,7,31,6,15,18.0,83.75266190382266,82.0,20.8,1.6 -2019,7,31,6,30,18.0,84.68079590725945,82.0,20.8,1.6 -2019,7,31,6,45,18.0,85.6109799053304,82.0,20.8,1.6 -2019,7,31,7,0,259.0,262.31448628910994,197.0,22.5,2.0 -2019,7,31,7,15,259.0,275.58597282377616,197.0,22.5,2.0 -2019,7,31,7,30,259.0,288.7156176989909,197.0,22.5,2.0 -2019,7,31,7,45,259.0,301.6471977596989,197.0,22.5,2.0 -2019,7,31,8,0,573.0,456.56532305410565,197.0,24.7,1.6 -2019,7,31,8,15,573.0,483.9330655713318,197.0,24.7,1.6 -2019,7,31,8,30,573.0,510.502808098684,197.0,24.7,1.6 -2019,7,31,8,45,573.0,536.1607749195989,197.0,24.7,1.6 -2019,7,31,9,0,680.0,635.7312816459432,204.0,27.0,2.2 -2019,7,31,9,15,680.0,663.630478530803,204.0,27.0,2.2 -2019,7,31,9,30,680.0,690.0725843931257,204.0,27.0,2.2 -2019,7,31,9,45,680.0,714.9443700761431,204.0,27.0,2.2 -2019,7,31,10,0,746.0,785.9822658209999,200.0,29.7,2.6 -2019,7,31,10,15,746.0,809.4799617826957,200.0,29.7,2.6 -2019,7,31,10,30,746.0,830.928496668257,200.0,29.7,2.6 -2019,7,31,10,45,746.0,850.2360245584648,200.0,29.7,2.6 -2019,7,31,11,0,947.0,968.1205290469792,121.0,32.3,2.8 -2019,7,31,11,15,947.0,986.8916973074314,121.0,32.3,2.8 -2019,7,31,11,30,947.0,1002.666790321227,121.0,32.3,2.8 -2019,7,31,11,45,947.0,1015.378256718245,121.0,32.3,2.8 -2019,7,31,12,0,754.0,926.740902525973,207.0,32.8,5.0 -2019,7,31,12,15,754.0,931.8638570515396,207.0,32.8,5.0 -2019,7,31,12,30,754.0,934.4495720914941,207.0,32.8,5.0 -2019,7,31,12,45,754.0,934.4869752170687,207.0,32.8,5.0 -2019,7,31,13,0,734.0,908.7457761227532,203.0,32.8,7.8 -2019,7,31,13,15,734.0,903.8309079832793,203.0,32.8,7.8 -2019,7,31,13,30,734.0,896.4666802754062,203.0,32.8,7.8 -2019,7,31,13,45,734.0,886.6846277527558,203.0,32.8,7.8 -2019,7,31,14,0,483.0,713.8901450622304,272.0,32.7,4.7 -2019,7,31,14,15,483.0,704.3605265855855,272.0,32.7,4.7 -2019,7,31,14,30,483.0,693.342517533212,272.0,32.7,4.7 -2019,7,31,14,45,483.0,680.8832987113879,272.0,32.7,4.7 -2019,7,31,15,0,470.0,604.4037774983533,220.0,32.2,5.6 -2019,7,31,15,15,470.0,589.6365930574661,220.0,32.2,5.6 -2019,7,31,15,30,470.0,573.6398401945746,220.0,32.2,5.6 -2019,7,31,15,45,470.0,556.4820194613039,220.0,32.2,5.6 -2019,7,31,16,0,358.0,412.4014978176465,170.0,31.1,5.1 -2019,7,31,16,15,358.0,397.735013264033,170.0,31.1,5.1 -2019,7,31,16,30,358.0,382.3624206205232,170.0,31.1,5.1 -2019,7,31,16,45,358.0,366.3495476888601,170.0,31.1,5.1 -2019,7,31,17,0,205.0,201.93803807291062,99.0,30.3,4.7 -2019,7,31,17,15,205.0,192.15456962061955,99.0,30.3,4.7 -2019,7,31,17,30,205.0,182.12628581796446,99.0,30.3,4.7 -2019,7,31,17,45,205.0,171.89612931575843,99.0,30.3,4.7 -2019,7,31,18,0,66.0,35.12449695692976,15.0,27.5,5.5 -2019,7,31,18,15,66.0,31.74342843639227,15.0,27.5,5.5 -2019,7,31,18,30,66.0,28.34027042379069,15.0,27.5,5.5 -2019,7,31,18,45,66.0,24.929595764197266,15.0,27.5,5.5 -2019,7,31,19,0,0.0,0.0,0.0,25.4,3.8 -2019,7,31,19,15,0.0,0.0,0.0,25.4,3.8 -2019,7,31,19,30,0.0,0.0,0.0,25.4,3.8 -2019,7,31,19,45,0.0,0.0,0.0,25.4,3.8 -2019,7,31,20,0,0.0,0.0,0.0,23.7,1.6 -2019,7,31,20,15,0.0,0.0,0.0,23.7,1.6 -2019,7,31,20,30,0.0,0.0,0.0,23.7,1.6 -2019,7,31,20,45,0.0,0.0,0.0,23.7,1.6 -2019,7,31,21,0,0.0,0.0,0.0,22.1,2.5 -2019,7,31,21,15,0.0,0.0,0.0,22.1,2.5 -2019,7,31,21,30,0.0,0.0,0.0,22.1,2.5 -2019,7,31,21,45,0.0,0.0,0.0,22.1,2.5 -2019,7,31,22,0,0.0,0.0,0.0,21.7,1.6 -2019,7,31,22,15,0.0,0.0,0.0,21.7,1.6 -2019,7,31,22,30,0.0,0.0,0.0,21.7,1.6 -2019,7,31,22,45,0.0,0.0,0.0,21.7,1.6 -2019,7,31,23,0,0.0,0.0,0.0,21.6,1.9 -2019,7,31,23,15,0.0,0.0,0.0,21.6,1.9 -2019,7,31,23,30,0.0,0.0,0.0,21.6,1.9 -2019,7,31,23,45,0.0,0.0,0.0,21.6,1.9 -2019,8,1,0,0,0.0,0.0,0.0,20.6,0.0 -2019,8,1,0,15,0.0,0.0,0.0,20.6,0.0 -2019,8,1,0,30,0.0,0.0,0.0,20.6,0.0 -2019,8,1,0,45,0.0,0.0,0.0,20.6,0.0 -2019,8,1,1,0,0.0,0.0,0.0,20.5,0.0 -2019,8,1,1,15,0.0,0.0,0.0,20.5,0.0 -2019,8,1,1,30,0.0,0.0,0.0,20.5,0.0 -2019,8,1,1,45,0.0,0.0,0.0,20.5,0.0 -2019,8,1,2,0,0.0,0.0,0.0,19.3,0.0 -2019,8,1,2,15,0.0,0.0,0.0,19.3,0.0 -2019,8,1,2,30,0.0,0.0,0.0,19.3,0.0 -2019,8,1,2,45,0.0,0.0,0.0,19.3,0.0 -2019,8,1,3,0,0.0,0.0,0.0,18.8,0.2 -2019,8,1,3,15,0.0,0.0,0.0,18.8,0.2 -2019,8,1,3,30,0.0,0.0,0.0,18.8,0.2 -2019,8,1,3,45,0.0,0.0,0.0,18.8,0.2 -2019,8,1,4,0,0.0,0.0,0.0,18.3,1.9 -2019,8,1,4,15,0.0,0.0,0.0,18.3,1.9 -2019,8,1,4,30,0.0,0.0,0.0,18.3,1.9 -2019,8,1,4,45,0.0,0.0,0.0,18.3,1.9 -2019,8,1,5,0,139.0,8.614007401768532,30.0,18.6,0.0 -2019,8,1,5,15,139.0,15.257323385495932,30.0,18.6,0.0 -2019,8,1,5,30,139.0,22.066877522703003,30.0,18.6,0.0 -2019,8,1,5,45,139.0,29.013510257152397,30.0,18.6,0.0 -2019,8,1,6,0,271.0,118.82939378498848,107.0,21.4,0.0 -2019,8,1,6,15,271.0,132.73245545703205,107.0,21.4,0.0 -2019,8,1,6,30,271.0,146.72634982548675,107.0,21.4,0.0 -2019,8,1,6,45,271.0,160.75115288628518,107.0,21.4,0.0 -2019,8,1,7,0,387.0,272.7454420819296,176.0,24.3,0.2 -2019,8,1,7,15,387.0,292.6046486574248,176.0,24.3,0.2 -2019,8,1,7,30,387.0,312.2516060015548,176.0,24.3,0.2 -2019,8,1,7,45,387.0,331.6021828267162,176.0,24.3,0.2 -2019,8,1,8,0,660.0,468.7222770409428,171.0,27.4,2.2 -2019,8,1,8,15,660.0,500.2911742105417,171.0,27.4,2.2 -2019,8,1,8,30,660.0,530.9395723800562,171.0,27.4,2.2 -2019,8,1,8,45,660.0,560.5362304032967,171.0,27.4,2.2 -2019,8,1,9,0,662.0,630.2209393645642,211.0,28.9,2.4 -2019,8,1,9,15,662.0,657.421127010417,211.0,28.9,2.4 -2019,8,1,9,30,662.0,683.2007307809108,211.0,28.9,2.4 -2019,8,1,9,45,662.0,707.449358454944,211.0,28.9,2.4 -2019,8,1,10,0,20.0,380.6816668787341,365.0,30.1,2.1 -2019,8,1,10,15,20.0,381.312548055765,365.0,30.1,2.1 -2019,8,1,10,30,20.0,381.88841204499386,365.0,30.1,2.1 -2019,8,1,10,45,20.0,382.4067929084107,365.0,30.1,2.1 -2019,8,1,11,0,10.0,362.9327354297875,354.0,30.7,2.5 -2019,8,1,11,15,10.0,363.1312408845412,354.0,30.7,2.5 -2019,8,1,11,30,10.0,363.29806278763414,354.0,30.7,2.5 -2019,8,1,11,45,10.0,363.43248678206623,354.0,30.7,2.5 -2019,8,1,12,0,107.0,553.0131285071213,451.0,31.2,5.0 -2019,8,1,12,15,107.0,553.7411832816921,451.0,31.2,5.0 -2019,8,1,12,30,107.0,554.1086552495035,451.0,31.2,5.0 -2019,8,1,12,45,107.0,554.113970839174,451.0,31.2,5.0 -2019,8,1,13,0,836.0,961.8499223664785,159.0,31.8,4.7 -2019,8,1,13,15,836.0,956.2439208634298,159.0,31.8,4.7 -2019,8,1,13,30,836.0,947.8441285541393,159.0,31.8,4.7 -2019,8,1,13,45,836.0,936.6865146388349,159.0,31.8,4.7 -2019,8,1,14,0,871.0,923.7969199589245,128.0,32.1,4.8 -2019,8,1,14,15,871.0,906.5870471878063,128.0,32.1,4.8 -2019,8,1,14,30,871.0,886.6892375905919,128.0,32.1,4.8 -2019,8,1,14,45,871.0,864.1886966427443,128.0,32.1,4.8 -2019,8,1,15,0,713.0,730.1729112020181,148.0,32.0,2.7 -2019,8,1,15,15,713.0,707.7381995101239,148.0,32.0,2.7 -2019,8,1,15,30,713.0,683.4354937423416,148.0,32.0,2.7 -2019,8,1,15,45,713.0,657.3688618157883,148.0,32.0,2.7 -2019,8,1,16,0,723.0,587.4051834660465,99.0,31.1,3.7 -2019,8,1,16,15,723.0,557.7423644826474,99.0,31.1,3.7 -2019,8,1,16,30,723.0,526.651448917771,99.0,31.1,3.7 -2019,8,1,16,45,723.0,494.26557284503036,99.0,31.1,3.7 -2019,8,1,17,0,515.0,329.6591425203811,72.0,30.4,4.6 -2019,8,1,17,15,515.0,305.0454178324703,72.0,30.4,4.6 -2019,8,1,17,30,515.0,279.8157748061276,72.0,30.4,4.6 -2019,8,1,17,45,515.0,254.07825064611714,72.0,30.4,4.6 -2019,8,1,18,0,257.0,104.82012766450966,27.0,28.5,4.5 -2019,8,1,18,15,257.0,91.63530534083735,27.0,28.5,4.5 -2019,8,1,18,30,257.0,78.36434278477515,27.0,28.5,4.5 -2019,8,1,18,45,257.0,65.06406829538324,27.0,28.5,4.5 -2019,8,1,19,0,0.0,0.0,0.0,25.5,3.4 -2019,8,1,19,15,0.0,0.0,0.0,25.5,3.4 -2019,8,1,19,30,0.0,0.0,0.0,25.5,3.4 -2019,8,1,19,45,0.0,0.0,0.0,25.5,3.4 -2019,8,1,20,0,0.0,0.0,0.0,24.3,2.0 -2019,8,1,20,15,0.0,0.0,0.0,24.3,2.0 -2019,8,1,20,30,0.0,0.0,0.0,24.3,2.0 -2019,8,1,20,45,0.0,0.0,0.0,24.3,2.0 -2019,8,1,21,0,0.0,0.0,0.0,23.3,1.3 -2019,8,1,21,15,0.0,0.0,0.0,23.3,1.3 -2019,8,1,21,30,0.0,0.0,0.0,23.3,1.3 -2019,8,1,21,45,0.0,0.0,0.0,23.3,1.3 -2019,8,1,22,0,0.0,0.0,0.0,23.2,0.0 -2019,8,1,22,15,0.0,0.0,0.0,23.2,0.0 -2019,8,1,22,30,0.0,0.0,0.0,23.2,0.0 -2019,8,1,22,45,0.0,0.0,0.0,23.2,0.0 -2019,8,1,23,0,0.0,0.0,0.0,22.7,0.0 -2019,8,1,23,15,0.0,0.0,0.0,22.7,0.0 -2019,8,1,23,30,0.0,0.0,0.0,22.7,0.0 -2019,8,1,23,45,0.0,0.0,0.0,22.7,0.0 -2019,8,2,0,0,0.0,0.0,0.0,21.4,0.2 -2019,8,2,0,15,0.0,0.0,0.0,21.4,0.2 -2019,8,2,0,30,0.0,0.0,0.0,21.4,0.2 -2019,8,2,0,45,0.0,0.0,0.0,21.4,0.2 -2019,8,2,1,0,0.0,0.0,0.0,19.5,1.3 -2019,8,2,1,15,0.0,0.0,0.0,19.5,1.3 -2019,8,2,1,30,0.0,0.0,0.0,19.5,1.3 -2019,8,2,1,45,0.0,0.0,0.0,19.5,1.3 -2019,8,2,2,0,0.0,0.0,0.0,20.0,0.0 -2019,8,2,2,15,0.0,0.0,0.0,20.0,0.0 -2019,8,2,2,30,0.0,0.0,0.0,20.0,0.0 -2019,8,2,2,45,0.0,0.0,0.0,20.0,0.0 -2019,8,2,3,0,0.0,0.0,0.0,19.9,0.0 -2019,8,2,3,15,0.0,0.0,0.0,19.9,0.0 -2019,8,2,3,30,0.0,0.0,0.0,19.9,0.0 -2019,8,2,3,45,0.0,0.0,0.0,19.9,0.0 -2019,8,2,4,0,0.0,0.0,0.0,19.3,0.0 -2019,8,2,4,15,0.0,0.0,0.0,19.3,0.0 -2019,8,2,4,30,0.0,0.0,0.0,19.3,0.0 -2019,8,2,4,45,0.0,0.0,0.0,19.3,0.0 -2019,8,2,5,0,231.0,-7.195503509643579,29.0,19.2,0.0 -2019,8,2,5,15,231.0,3.860985887849587,29.0,19.2,0.0 -2019,8,2,5,30,231.0,15.1941459097581,29.0,19.2,0.0 -2019,8,2,5,45,231.0,26.75544622496988,29.0,19.2,0.0 -2019,8,2,6,0,449.0,107.45638713075674,89.0,21.4,0.0 -2019,8,2,6,15,449.0,130.52506282960292,89.0,21.4,0.0 -2019,8,2,6,30,449.0,153.74445281468246,89.0,21.4,0.0 -2019,8,2,6,45,449.0,177.0151280933738,89.0,21.4,0.0 -2019,8,2,7,0,624.0,281.5927897514699,127.0,23.6,0.2 -2019,8,2,7,15,624.0,313.66070169638056,127.0,23.6,0.2 -2019,8,2,7,30,624.0,345.3858814361591,127.0,23.6,0.2 -2019,8,2,7,45,624.0,376.63247688062137,127.0,23.6,0.2 -2019,8,2,8,0,733.0,476.2235261746318,147.0,25.9,1.6 -2019,8,2,8,15,733.0,511.3354490544679,147.0,25.9,1.6 -2019,8,2,8,30,733.0,545.4235639207301,147.0,25.9,1.6 -2019,8,2,8,45,733.0,578.3419002322582,147.0,25.9,1.6 -2019,8,2,9,0,805.0,663.4233898751675,155.0,28.6,1.9 -2019,8,2,9,15,805.0,696.5475561032788,155.0,28.6,1.9 -2019,8,2,9,30,805.0,727.941746897359,155.0,28.6,1.9 -2019,8,2,9,45,805.0,757.4715275127041,155.0,28.6,1.9 -2019,8,2,10,0,850.0,821.2284221875044,156.0,30.7,0.3 -2019,8,2,10,15,850.0,848.0801146455058,156.0,30.7,0.3 -2019,8,2,10,30,850.0,872.5901544111341,156.0,30.7,0.3 -2019,8,2,10,45,850.0,894.6535857312632,156.0,30.7,0.3 -2019,8,2,11,0,870.0,930.0153632435229,154.0,31.9,2.8 -2019,8,2,11,15,870.0,947.3106139694648,154.0,31.9,2.8 -2019,8,2,11,30,870.0,961.8453613604128,154.0,31.9,2.8 -2019,8,2,11,45,870.0,973.5573653966237,154.0,31.9,2.8 -2019,8,2,12,0,868.0,981.4921137696085,155.0,33.2,4.1 -2019,8,2,12,15,868.0,987.4068470621231,155.0,33.2,4.1 -2019,8,2,12,30,868.0,990.3921975577108,155.0,33.2,4.1 -2019,8,2,12,45,868.0,990.43538152723,155.0,33.2,4.1 -2019,8,2,13,0,845.0,966.4759226641684,156.0,32.6,4.2 -2019,8,2,13,15,845.0,960.8012762523291,156.0,32.6,4.2 -2019,8,2,13,30,845.0,952.2986293546805,156.0,32.6,4.2 -2019,8,2,13,45,845.0,941.0043916105884,156.0,32.6,4.2 -2019,8,2,14,0,797.0,881.1723556969903,154.0,31.0,4.8 -2019,8,2,14,15,797.0,865.4015823417953,154.0,31.0,4.8 -2019,8,2,14,30,797.0,847.1676389770821,154.0,31.0,4.8 -2019,8,2,14,45,797.0,826.5486061476644,154.0,31.0,4.8 -2019,8,2,15,0,720.0,731.8702634337247,145.0,30.5,6.5 -2019,8,2,15,15,720.0,709.1821375198195,145.0,30.5,6.5 -2019,8,2,15,30,720.0,684.6049173584724,145.0,30.5,6.5 -2019,8,2,15,45,720.0,658.2438463795778,145.0,30.5,6.5 -2019,8,2,16,0,604.0,529.0387934286107,122.0,29.7,5.2 -2019,8,2,16,15,604.0,504.22196791513494,122.0,29.7,5.2 -2019,8,2,16,30,604.0,478.2103529347933,122.0,29.7,5.2 -2019,8,2,16,45,604.0,451.1153342163075,122.0,29.7,5.2 -2019,8,2,17,0,415.0,287.8492860391657,81.0,29.2,4.2 -2019,8,2,17,15,415.0,267.9858959960503,81.0,29.2,4.2 -2019,8,2,17,30,415.0,247.62545699565183,81.0,29.2,4.2 -2019,8,2,17,45,415.0,226.85515556356145,81.0,29.2,4.2 -2019,8,2,18,0,360.0,119.22895420462974,11.0,27.5,4.8 -2019,8,2,18,15,360.0,100.73291132804931,11.0,27.5,4.8 -2019,8,2,18,30,360.0,82.1160284892327,11.0,27.5,4.8 -2019,8,2,18,45,360.0,63.45802603861161,11.0,27.5,4.8 -2019,8,2,19,0,0.0,0.0,0.0,25.5,2.5 -2019,8,2,19,15,0.0,0.0,0.0,25.5,2.5 -2019,8,2,19,30,0.0,0.0,0.0,25.5,2.5 -2019,8,2,19,45,0.0,0.0,0.0,25.5,2.5 -2019,8,2,20,0,0.0,0.0,0.0,24.3,2.0 -2019,8,2,20,15,0.0,0.0,0.0,24.3,2.0 -2019,8,2,20,30,0.0,0.0,0.0,24.3,2.0 -2019,8,2,20,45,0.0,0.0,0.0,24.3,2.0 -2019,8,2,21,0,0.0,0.0,0.0,23.2,1.7 -2019,8,2,21,15,0.0,0.0,0.0,23.2,1.7 -2019,8,2,21,30,0.0,0.0,0.0,23.2,1.7 -2019,8,2,21,45,0.0,0.0,0.0,23.2,1.7 -2019,8,2,22,0,0.0,0.0,0.0,22.1,2.7 -2019,8,2,22,15,0.0,0.0,0.0,22.1,2.7 -2019,8,2,22,30,0.0,0.0,0.0,22.1,2.7 -2019,8,2,22,45,0.0,0.0,0.0,22.1,2.7 -2019,8,2,23,0,0.0,0.0,0.0,21.6,0.0 -2019,8,2,23,15,0.0,0.0,0.0,21.6,0.0 -2019,8,2,23,30,0.0,0.0,0.0,21.6,0.0 -2019,8,2,23,45,0.0,0.0,0.0,21.6,0.0 -2019,8,3,0,0,0.0,0.0,0.0,20.9,0.0 -2019,8,3,0,15,0.0,0.0,0.0,20.9,0.0 -2019,8,3,0,30,0.0,0.0,0.0,20.9,0.0 -2019,8,3,0,45,0.0,0.0,0.0,20.9,0.0 -2019,8,3,1,0,0.0,0.0,0.0,19.3,0.2 -2019,8,3,1,15,0.0,0.0,0.0,19.3,0.2 -2019,8,3,1,30,0.0,0.0,0.0,19.3,0.2 -2019,8,3,1,45,0.0,0.0,0.0,19.3,0.2 -2019,8,3,2,0,0.0,0.0,0.0,18.2,2.0 -2019,8,3,2,15,0.0,0.0,0.0,18.2,2.0 -2019,8,3,2,30,0.0,0.0,0.0,18.2,2.0 -2019,8,3,2,45,0.0,0.0,0.0,18.2,2.0 -2019,8,3,3,0,0.0,0.0,0.0,17.8,1.5 -2019,8,3,3,15,0.0,0.0,0.0,17.8,1.5 -2019,8,3,3,30,0.0,0.0,0.0,17.8,1.5 -2019,8,3,3,45,0.0,0.0,0.0,17.8,1.5 -2019,8,3,4,0,0.0,0.0,0.0,17.8,1.5 -2019,8,3,4,15,0.0,0.0,0.0,17.8,1.5 -2019,8,3,4,30,0.0,0.0,0.0,17.8,1.5 -2019,8,3,4,45,0.0,0.0,0.0,17.8,1.5 -2019,8,3,5,0,113.0,20.967397569874958,39.0,17.9,1.6 -2019,8,3,5,15,113.0,26.383940136307174,39.0,17.9,1.6 -2019,8,3,5,30,113.0,31.936022851167248,39.0,17.9,1.6 -2019,8,3,5,45,113.0,37.599870843898934,39.0,17.9,1.6 -2019,8,3,6,0,226.0,116.70246129573518,108.0,18.5,2.0 -2019,8,3,6,15,226.0,128.33094811485554,108.0,18.5,2.0 -2019,8,3,6,30,226.0,140.03540717936175,108.0,18.5,2.0 -2019,8,3,6,45,226.0,151.7657181986383,108.0,18.5,2.0 -2019,8,3,7,0,81.0,217.88143214417025,198.0,20.3,1.5 -2019,8,3,7,15,81.0,222.05021769282754,198.0,20.3,1.5 -2019,8,3,7,30,81.0,226.17444851443338,198.0,20.3,1.5 -2019,8,3,7,45,81.0,230.23646401944626,198.0,20.3,1.5 -2019,8,3,8,0,127.0,350.7876110407462,294.0,22.5,1.6 -2019,8,3,8,15,127.0,356.88007267943794,294.0,22.5,1.6 -2019,8,3,8,30,127.0,362.7948877942001,294.0,22.5,1.6 -2019,8,3,8,45,127.0,368.5067282386524,294.0,22.5,1.6 -2019,8,3,9,0,8.0,275.03881165575524,270.0,24.7,2.2 -2019,8,3,9,15,8.0,275.3684801960127,270.0,24.7,2.2 -2019,8,3,9,30,8.0,275.68093114135496,270.0,24.7,2.2 -2019,8,3,9,45,8.0,275.9748265288658,270.0,24.7,2.2 -2019,8,3,10,0,124.0,521.8580717273303,425.0,27.0,2.5 -2019,8,3,10,15,124.0,525.7810225769408,425.0,27.0,2.5 -2019,8,3,10,30,124.0,529.3618650684505,425.0,27.0,2.5 -2019,8,3,10,45,124.0,532.5852654845695,425.0,27.0,2.5 -2019,8,3,11,0,888.0,936.8744323234484,146.0,29.5,2.3 -2019,8,3,11,15,888.0,954.5534861664926,146.0,29.5,2.3 -2019,8,3,11,30,888.0,969.4107776733563,146.0,29.5,2.3 -2019,8,3,11,45,888.0,981.3826856408741,146.0,29.5,2.3 -2019,8,3,12,0,839.0,965.822810195113,168.0,30.1,4.3 -2019,8,3,12,15,839.0,971.5483421766576,168.0,30.1,4.3 -2019,8,3,12,30,839.0,974.4381968654968,168.0,30.1,4.3 -2019,8,3,12,45,839.0,974.4799994601947,168.0,30.1,4.3 -2019,8,3,13,0,44.0,435.14736248158215,393.0,30.4,5.7 -2019,8,3,13,15,44.0,434.85144323244043,393.0,30.4,5.7 -2019,8,3,13,30,44.0,434.40805051630224,393.0,30.4,5.7 -2019,8,3,13,45,44.0,433.8190830088489,393.0,30.4,5.7 -2019,8,3,14,0,112.0,462.03979611475336,360.0,28.8,5.7 -2019,8,3,14,15,112.0,459.8203166315032,360.0,28.8,5.7 -2019,8,3,14,30,112.0,457.2541860882984,360.0,28.8,5.7 -2019,8,3,14,45,112.0,454.3523930500846,360.0,28.8,5.7 -2019,8,3,15,0,685.0,713.3414638973005,156.0,28.6,5.7 -2019,8,3,15,15,685.0,691.7244778688283,156.0,28.6,5.7 -2019,8,3,15,30,685.0,668.3075845184215,156.0,28.6,5.7 -2019,8,3,15,45,685.0,643.1910585784328,156.0,28.6,5.7 -2019,8,3,16,0,566.0,509.4862311296286,129.0,28.0,5.4 -2019,8,3,16,15,566.0,486.19651673102203,129.0,28.0,5.4 -2019,8,3,16,30,566.0,461.78553460884393,129.0,28.0,5.4 -2019,8,3,16,45,566.0,436.3578163361836,129.0,28.0,5.4 -2019,8,3,17,0,417.0,287.0428924501353,80.0,27.6,4.9 -2019,8,3,17,15,417.0,267.05441235985006,80.0,27.6,4.9 -2019,8,3,17,30,417.0,246.5657531377558,80.0,27.6,4.9 -2019,8,3,17,45,417.0,225.66465036811766,80.0,27.6,4.9 -2019,8,3,18,0,209.0,86.36951225034599,24.0,25.8,3.4 -2019,8,3,18,15,209.0,75.6157346167347,24.0,25.8,3.4 -2019,8,3,18,30,209.0,64.79169946416036,24.0,25.8,3.4 -2019,8,3,18,45,209.0,53.9437569728825,24.0,25.8,3.4 -2019,8,3,19,0,0.0,0.0,0.0,23.8,2.1 -2019,8,3,19,15,0.0,0.0,0.0,23.8,2.1 -2019,8,3,19,30,0.0,0.0,0.0,23.8,2.1 -2019,8,3,19,45,0.0,0.0,0.0,23.8,2.1 -2019,8,3,20,0,0.0,0.0,0.0,22.6,2.2 -2019,8,3,20,15,0.0,0.0,0.0,22.6,2.2 -2019,8,3,20,30,0.0,0.0,0.0,22.6,2.2 -2019,8,3,20,45,0.0,0.0,0.0,22.6,2.2 -2019,8,3,21,0,0.0,0.0,0.0,21.0,2.5 -2019,8,3,21,15,0.0,0.0,0.0,21.0,2.5 -2019,8,3,21,30,0.0,0.0,0.0,21.0,2.5 -2019,8,3,21,45,0.0,0.0,0.0,21.0,2.5 -2019,8,3,22,0,0.0,0.0,0.0,20.5,2.0 -2019,8,3,22,15,0.0,0.0,0.0,20.5,2.0 -2019,8,3,22,30,0.0,0.0,0.0,20.5,2.0 -2019,8,3,22,45,0.0,0.0,0.0,20.5,2.0 -2019,8,3,23,0,0.0,0.0,0.0,19.3,1.3 -2019,8,3,23,15,0.0,0.0,0.0,19.3,1.3 -2019,8,3,23,30,0.0,0.0,0.0,19.3,1.3 -2019,8,3,23,45,0.0,0.0,0.0,19.3,1.3 -2019,8,4,0,0,0.0,0.0,0.0,18.8,0.2 -2019,8,4,0,15,0.0,0.0,0.0,18.8,0.2 -2019,8,4,0,30,0.0,0.0,0.0,18.8,0.2 -2019,8,4,0,45,0.0,0.0,0.0,18.8,0.2 -2019,8,4,1,0,0.0,0.0,0.0,18.2,2.0 -2019,8,4,1,15,0.0,0.0,0.0,18.2,2.0 -2019,8,4,1,30,0.0,0.0,0.0,18.2,2.0 -2019,8,4,1,45,0.0,0.0,0.0,18.2,2.0 -2019,8,4,2,0,0.0,0.0,0.0,17.7,1.3 -2019,8,4,2,15,0.0,0.0,0.0,17.7,1.3 -2019,8,4,2,30,0.0,0.0,0.0,17.7,1.3 -2019,8,4,2,45,0.0,0.0,0.0,17.7,1.3 -2019,8,4,3,0,0.0,0.0,0.0,17.2,0.0 -2019,8,4,3,15,0.0,0.0,0.0,17.2,0.0 -2019,8,4,3,30,0.0,0.0,0.0,17.2,0.0 -2019,8,4,3,45,0.0,0.0,0.0,17.2,0.0 -2019,8,4,4,0,0.0,0.0,0.0,17.1,0.0 -2019,8,4,4,15,0.0,0.0,0.0,17.1,0.0 -2019,8,4,4,30,0.0,0.0,0.0,17.1,0.0 -2019,8,4,4,45,0.0,0.0,0.0,17.1,0.0 -2019,8,4,5,0,1.0,10.837474871478598,11.0,17.9,0.2 -2019,8,4,5,15,1.0,10.885479672402647,11.0,17.9,0.2 -2019,8,4,5,30,1.0,10.934685715219047,11.0,17.9,0.2 -2019,8,4,5,45,1.0,10.984882292098206,11.0,17.9,0.2 -2019,8,4,6,0,1.0,37.03585445359161,37.0,19.0,2.0 -2019,8,4,6,15,1.0,37.087383929078364,37.0,19.0,2.0 -2019,8,4,6,30,1.0,37.13925006143347,37.0,19.0,2.0 -2019,8,4,6,45,1.0,37.19123075191556,37.0,19.0,2.0 -2019,8,4,7,0,1.0,78.24310341122776,78.0,19.5,1.3 -2019,8,4,7,15,1.0,78.29464591267927,78.0,19.5,1.3 -2019,8,4,7,30,1.0,78.34563754336592,78.0,19.5,1.3 -2019,8,4,7,45,1.0,78.39585994929675,78.0,19.5,1.3 -2019,8,4,8,0,0.0,105.0,105.0,20.9,1.2 -2019,8,4,8,15,0.0,105.0,105.0,20.9,1.2 -2019,8,4,8,30,0.0,105.0,105.0,20.9,1.2 -2019,8,4,8,45,0.0,105.0,105.0,20.9,1.2 -2019,8,4,9,0,187.0,482.4496190144197,365.0,23.2,0.2 -2019,8,4,9,15,187.0,490.1670024878428,365.0,23.2,0.2 -2019,8,4,9,30,187.0,497.48133026675947,365.0,23.2,0.2 -2019,8,4,9,45,187.0,504.3612812767043,365.0,23.2,0.2 -2019,8,4,10,0,612.0,736.0896547640039,259.0,26.3,1.6 -2019,8,4,10,15,612.0,755.479911525761,259.0,26.3,1.6 -2019,8,4,10,30,612.0,773.1792042254581,259.0,26.3,1.6 -2019,8,4,10,45,612.0,789.1117417745099,259.0,26.3,1.6 -2019,8,4,11,0,839.0,914.0647083763774,168.0,28.1,2.2 -2019,8,4,11,15,839.0,930.792899031768,168.0,28.1,2.2 -2019,8,4,11,30,839.0,944.8510950843422,168.0,28.1,2.2 -2019,8,4,11,45,839.0,956.1790971803493,168.0,28.1,2.2 -2019,8,4,12,0,864.0,977.4688141518614,157.0,30.1,3.2 -2019,8,4,12,15,864.0,983.3736602471645,157.0,30.1,3.2 -2019,8,4,12,30,864.0,986.3540203657335,157.0,30.1,3.2 -2019,8,4,12,45,864.0,986.3971321479871,157.0,30.1,3.2 -2019,8,4,13,0,916.0,1002.2460357177225,126.0,30.6,4.1 -2019,8,4,13,15,916.0,996.0764362619652,126.0,30.6,4.1 -2019,8,4,13,30,916.0,986.8321729431473,126.0,30.6,4.1 -2019,8,4,13,45,916.0,974.5528311160047,126.0,30.6,4.1 -2019,8,4,14,0,891.0,930.5483347067616,120.0,30.5,4.3 -2019,8,4,14,15,891.0,912.865504686509,120.0,30.5,4.3 -2019,8,4,14,30,891.0,892.420868659137,120.0,30.5,4.3 -2019,8,4,14,45,891.0,869.3019736948326,120.0,30.5,4.3 -2019,8,4,15,0,772.0,756.9643499935545,130.0,29.9,5.6 -2019,8,4,15,15,772.0,732.5658668657906,130.0,29.9,5.6 -2019,8,4,15,30,772.0,706.1358790514838,130.0,29.9,5.6 -2019,8,4,15,45,772.0,677.7875638160609,130.0,29.9,5.6 -2019,8,4,16,0,517.0,484.6594246369082,138.0,28.8,4.5 -2019,8,4,16,15,517.0,463.3545378472073,138.0,28.8,4.5 -2019,8,4,16,30,517.0,441.0239415317139,138.0,28.8,4.5 -2019,8,4,16,45,517.0,417.76325873210635,138.0,28.8,4.5 -2019,8,4,17,0,163.0,175.6084168818142,95.0,28.1,3.7 -2019,8,4,17,15,163.0,167.7836343311942,95.0,28.1,3.7 -2019,8,4,17,30,163.0,159.7630493521212,95.0,28.1,3.7 -2019,8,4,17,45,163.0,151.58100732081803,95.0,28.1,3.7 -2019,8,4,18,0,82.0,50.284347790099446,26.0,26.4,4.0 -2019,8,4,18,15,82.0,46.05893080018602,26.0,26.4,4.0 -2019,8,4,18,30,82.0,41.80590794706716,26.0,26.4,4.0 -2019,8,4,18,45,82.0,37.54349132753585,26.0,26.4,4.0 -2019,8,4,19,0,0.0,0.0,0.0,24.3,3.0 -2019,8,4,19,15,0.0,0.0,0.0,24.3,3.0 -2019,8,4,19,30,0.0,0.0,0.0,24.3,3.0 -2019,8,4,19,45,0.0,0.0,0.0,24.3,3.0 -2019,8,4,20,0,0.0,0.0,0.0,23.2,2.1 -2019,8,4,20,15,0.0,0.0,0.0,23.2,2.1 -2019,8,4,20,30,0.0,0.0,0.0,23.2,2.1 -2019,8,4,20,45,0.0,0.0,0.0,23.2,2.1 -2019,8,4,21,0,0.0,0.0,0.0,22.1,2.0 -2019,8,4,21,15,0.0,0.0,0.0,22.1,2.0 -2019,8,4,21,30,0.0,0.0,0.0,22.1,2.0 -2019,8,4,21,45,0.0,0.0,0.0,22.1,2.0 -2019,8,4,22,0,0.0,0.0,0.0,21.6,1.6 -2019,8,4,22,15,0.0,0.0,0.0,21.6,1.6 -2019,8,4,22,30,0.0,0.0,0.0,21.6,1.6 -2019,8,4,22,45,0.0,0.0,0.0,21.6,1.6 -2019,8,4,23,0,0.0,0.0,0.0,20.5,1.9 -2019,8,4,23,15,0.0,0.0,0.0,20.5,1.9 -2019,8,4,23,30,0.0,0.0,0.0,20.5,1.9 -2019,8,4,23,45,0.0,0.0,0.0,20.5,1.9 -2019,8,5,0,0,0.0,0.0,0.0,19.9,0.0 -2019,8,5,0,15,0.0,0.0,0.0,19.9,0.0 -2019,8,5,0,30,0.0,0.0,0.0,19.9,0.0 -2019,8,5,0,45,0.0,0.0,0.0,19.9,0.0 -2019,8,5,1,0,0.0,0.0,0.0,19.3,0.2 -2019,8,5,1,15,0.0,0.0,0.0,19.3,0.2 -2019,8,5,1,30,0.0,0.0,0.0,19.3,0.2 -2019,8,5,1,45,0.0,0.0,0.0,19.3,0.2 -2019,8,5,2,0,0.0,0.0,0.0,18.8,1.5 -2019,8,5,2,15,0.0,0.0,0.0,18.8,1.5 -2019,8,5,2,30,0.0,0.0,0.0,18.8,1.5 -2019,8,5,2,45,0.0,0.0,0.0,18.8,1.5 -2019,8,5,3,0,0.0,0.0,0.0,18.2,1.3 -2019,8,5,3,15,0.0,0.0,0.0,18.2,1.3 -2019,8,5,3,30,0.0,0.0,0.0,18.2,1.3 -2019,8,5,3,45,0.0,0.0,0.0,18.2,1.3 -2019,8,5,4,0,0.0,0.0,0.0,17.9,0.0 -2019,8,5,4,15,0.0,0.0,0.0,17.9,0.0 -2019,8,5,4,30,0.0,0.0,0.0,17.9,0.0 -2019,8,5,4,45,0.0,0.0,0.0,17.9,0.0 -2019,8,5,5,0,302.0,-24.98796968215943,25.0,19.1,0.0 -2019,8,5,5,15,302.0,-10.469049470219964,25.0,19.1,0.0 -2019,8,5,5,30,302.0,4.413183053291565,25.0,19.1,0.0 -2019,8,5,5,45,302.0,19.59499988394751,25.0,19.1,0.0 -2019,8,5,6,0,390.0,105.92861642058418,93.0,20.8,0.0 -2019,8,5,6,15,390.0,126.05487422899466,93.0,20.8,0.0 -2019,8,5,6,30,390.0,146.3126226621703,93.0,20.8,0.0 -2019,8,5,6,45,390.0,166.61511493129404,93.0,20.8,0.0 -2019,8,5,7,0,485.0,270.7425003437782,154.0,22.5,0.0 -2019,8,5,7,15,485.0,295.7776350802552,154.0,22.5,0.0 -2019,8,5,7,30,485.0,320.54520182076317,154.0,22.5,0.0 -2019,8,5,7,45,485.0,344.93914204213314,154.0,22.5,0.0 -2019,8,5,8,0,504.0,439.27199703555664,216.0,24.7,0.2 -2019,8,5,8,15,504.0,463.52152434978706,216.0,24.7,0.2 -2019,8,5,8,30,504.0,487.06397388662964,216.0,24.7,0.2 -2019,8,5,8,45,504.0,509.79853326286496,216.0,24.7,0.2 -2019,8,5,9,0,673.0,626.4633785399712,205.0,27.5,2.2 -2019,8,5,9,15,673.0,654.2788381880282,205.0,27.5,2.2 -2019,8,5,9,30,673.0,680.6415801572145,205.0,27.5,2.2 -2019,8,5,9,45,673.0,705.4387151391368,205.0,27.5,2.2 -2019,8,5,10,0,848.0,815.7062721837375,156.0,30.3,2.9 -2019,8,5,10,15,848.0,842.6136076117944,156.0,30.3,2.9 -2019,8,5,10,30,848.0,867.1744378968983,156.0,30.3,2.9 -2019,8,5,10,45,848.0,889.2835897931212,156.0,30.3,2.9 -2019,8,5,11,0,796.0,894.6812797879204,188.0,32.5,1.7 -2019,8,5,11,15,796.0,910.5756300449026,188.0,32.5,1.7 -2019,8,5,11,30,796.0,923.9330753684311,188.0,32.5,1.7 -2019,8,5,11,45,796.0,934.6964171269582,188.0,32.5,1.7 -2019,8,5,12,0,990.0,1040.7831273721972,102.0,35.1,3.1 -2019,8,5,12,15,990.0,1047.5591170750076,102.0,35.1,3.1 -2019,8,5,12,30,990.0,1050.979170561271,102.0,35.1,3.1 -2019,8,5,12,45,990.0,1051.0286426369025,102.0,35.1,3.1 -2019,8,5,13,0,1095.0,1106.009613124337,60.0,36.0,3.4 -2019,8,5,13,15,1095.0,1098.623459815688,60.0,36.0,3.4 -2019,8,5,13,30,1095.0,1087.55636436031,60.0,36.0,3.4 -2019,8,5,13,45,1095.0,1072.855717759995,60.0,36.0,3.4 -2019,8,5,14,0,1009.0,996.4709869171993,80.0,35.4,5.7 -2019,8,5,14,15,1009.0,976.4166670791756,80.0,35.4,5.7 -2019,8,5,14,30,1009.0,953.2301483265035,80.0,35.4,5.7 -2019,8,5,14,45,1009.0,927.0107188921414,80.0,35.4,5.7 -2019,8,5,15,0,819.0,779.8613141250064,116.0,34.3,5.6 -2019,8,5,15,15,819.0,753.939097783982,116.0,34.3,5.6 -2019,8,5,15,30,819.0,725.8585052969241,116.0,34.3,5.6 -2019,8,5,15,45,819.0,695.7397820718737,116.0,34.3,5.6 -2019,8,5,16,0,555.0,501.1600795037883,130.0,32.7,4.8 -2019,8,5,16,15,555.0,478.25539186723654,130.0,32.7,4.8 -2019,8,5,16,30,555.0,454.24797336306665,130.0,32.7,4.8 -2019,8,5,16,45,555.0,429.2406274429994,130.0,32.7,4.8 -2019,8,5,17,0,263.0,220.52889290555763,91.0,31.5,4.2 -2019,8,5,17,15,263.0,207.88493258853748,91.0,31.5,4.2 -2019,8,5,17,30,263.0,194.92457777501588,91.0,31.5,4.2 -2019,8,5,17,45,263.0,181.7033266940142,91.0,31.5,4.2 -2019,8,5,18,0,131.0,64.49198142656891,26.0,29.8,4.4 -2019,8,5,18,15,131.0,57.73162303451306,26.0,29.8,4.4 -2019,8,5,18,30,131.0,50.927097278754076,26.0,29.8,4.4 -2019,8,5,18,45,131.0,44.107542183227906,26.0,29.8,4.4 -2019,8,5,19,0,0.0,0.0,0.0,28.2,2.9 -2019,8,5,19,15,0.0,0.0,0.0,28.2,2.9 -2019,8,5,19,30,0.0,0.0,0.0,28.2,2.9 -2019,8,5,19,45,0.0,0.0,0.0,28.2,2.9 -2019,8,5,20,0,0.0,0.0,0.0,27.1,1.5 -2019,8,5,20,15,0.0,0.0,0.0,27.1,1.5 -2019,8,5,20,30,0.0,0.0,0.0,27.1,1.5 -2019,8,5,20,45,0.0,0.0,0.0,27.1,1.5 -2019,8,5,21,0,0.0,0.0,0.0,25.9,1.7 -2019,8,5,21,15,0.0,0.0,0.0,25.9,1.7 -2019,8,5,21,30,0.0,0.0,0.0,25.9,1.7 -2019,8,5,21,45,0.0,0.0,0.0,25.9,1.7 -2019,8,5,22,0,0.0,0.0,0.0,24.3,2.7 -2019,8,5,22,15,0.0,0.0,0.0,24.3,2.7 -2019,8,5,22,30,0.0,0.0,0.0,24.3,2.7 -2019,8,5,22,45,0.0,0.0,0.0,24.3,2.7 -2019,8,5,23,0,0.0,0.0,0.0,23.3,0.0 -2019,8,5,23,15,0.0,0.0,0.0,23.3,0.0 -2019,8,5,23,30,0.0,0.0,0.0,23.3,0.0 -2019,8,5,23,45,0.0,0.0,0.0,23.3,0.0 -2019,8,6,0,0,0.0,0.0,0.0,23.2,0.0 -2019,8,6,0,15,0.0,0.0,0.0,23.2,0.0 -2019,8,6,0,30,0.0,0.0,0.0,23.2,0.0 -2019,8,6,0,45,0.0,0.0,0.0,23.2,0.0 -2019,8,6,1,0,0.0,0.0,0.0,22.1,0.0 -2019,8,6,1,15,0.0,0.0,0.0,22.1,0.0 -2019,8,6,1,30,0.0,0.0,0.0,22.1,0.0 -2019,8,6,1,45,0.0,0.0,0.0,22.1,0.0 -2019,8,6,2,0,0.0,0.0,0.0,21.0,0.0 -2019,8,6,2,15,0.0,0.0,0.0,21.0,0.0 -2019,8,6,2,30,0.0,0.0,0.0,21.0,0.0 -2019,8,6,2,45,0.0,0.0,0.0,21.0,0.0 -2019,8,6,3,0,0.0,0.0,0.0,20.5,0.0 -2019,8,6,3,15,0.0,0.0,0.0,20.5,0.0 -2019,8,6,3,30,0.0,0.0,0.0,20.5,0.0 -2019,8,6,3,45,0.0,0.0,0.0,20.5,0.0 -2019,8,6,4,0,0.0,0.0,0.0,20.1,0.0 -2019,8,6,4,15,0.0,0.0,0.0,20.1,0.0 -2019,8,6,4,30,0.0,0.0,0.0,20.1,0.0 -2019,8,6,4,45,0.0,0.0,0.0,20.1,0.0 -2019,8,6,5,0,374.0,-41.04639064031017,22.0,20.9,0.0 -2019,8,6,5,15,374.0,-23.039336892369214,22.0,20.9,0.0 -2019,8,6,5,30,374.0,-4.5816859769897675,22.0,20.9,0.0 -2019,8,6,5,45,374.0,14.247523610938456,22.0,20.9,0.0 -2019,8,6,6,0,490.0,96.89346130901376,82.0,23.1,0.0 -2019,8,6,6,15,490.0,122.21780433414003,82.0,23.1,0.0 -2019,8,6,6,30,490.0,147.70759856822127,82.0,23.1,0.0 -2019,8,6,6,45,490.0,173.25369279908273,82.0,23.1,0.0 -2019,8,6,7,0,696.0,274.8279582277688,109.0,26.0,0.0 -2019,8,6,7,15,696.0,310.8079547550902,109.0,26.0,0.0 -2019,8,6,7,30,696.0,346.40340789300575,109.0,26.0,0.0 -2019,8,6,7,45,696.0,381.46189244646587,109.0,26.0,0.0 -2019,8,6,8,0,839.0,484.8751783094253,115.0,29.4,0.0 -2019,8,6,8,15,839.0,525.3028178589045,115.0,29.4,0.0 -2019,8,6,8,30,839.0,564.5516515229219,115.0,29.4,0.0 -2019,8,6,8,45,839.0,602.4536097701373,115.0,29.4,0.0 -2019,8,6,9,0,985.0,705.0044037396592,90.0,33.2,0.2 -2019,8,6,9,15,985.0,745.7753780805051,90.0,33.2,0.2 -2019,8,6,9,30,985.0,784.4170072313333,90.0,33.2,0.2 -2019,8,6,9,45,985.0,820.7638218037491,90.0,33.2,0.2 -2019,8,6,10,0,1017.0,877.5019311709336,88.0,36.4,2.2 -2019,8,6,10,15,1017.0,909.8195590814015,88.0,36.4,2.2 -2019,8,6,10,30,1017.0,939.3188670470086,88.0,36.4,2.2 -2019,8,6,10,45,1017.0,965.8735345022297,88.0,36.4,2.2 -2019,8,6,11,0,1064.0,1017.0260773868918,74.0,38.6,3.3 -2019,8,6,11,15,1064.0,1038.3033041629283,74.0,38.6,3.3 -2019,8,6,11,30,1064.0,1056.184462480323,74.0,38.6,3.3 -2019,8,6,11,45,1064.0,1070.5929824739956,74.0,38.6,3.3 -2019,8,6,12,0,1140.0,1126.4291049813892,47.0,41.0,4.8 -2019,8,6,12,15,1140.0,1134.2433329521969,47.0,41.0,4.8 -2019,8,6,12,30,1140.0,1138.187417696442,47.0,41.0,4.8 -2019,8,6,12,45,1140.0,1138.2444700377425,47.0,41.0,4.8 -2019,8,6,13,0,995.0,1044.1027845972535,95.0,39.9,6.3 -2019,8,6,13,15,995.0,1037.3812109373976,95.0,39.9,6.3 -2019,8,6,13,30,995.0,1027.3098931356308,95.0,39.9,6.3 -2019,8,6,13,45,995.0,1013.9319581209569,95.0,39.9,6.3 -2019,8,6,14,0,787.0,870.6822038316557,157.0,38.7,6.6 -2019,8,6,14,15,787.0,855.0170311649613,157.0,38.7,6.6 -2019,8,6,14,30,787.0,836.9051818111141,157.0,38.7,6.6 -2019,8,6,14,45,787.0,816.424213489629,157.0,38.7,6.6 -2019,8,6,15,0,658.0,694.3042990902912,162.0,37.2,5.7 -2019,8,6,15,15,658.0,673.4470126406434,162.0,37.2,5.7 -2019,8,6,15,30,658.0,650.8530741643451,162.0,37.2,5.7 -2019,8,6,15,45,658.0,626.6192343746368,162.0,37.2,5.7 -2019,8,6,16,0,541.0,492.816797971161,132.0,35.6,6.0 -2019,8,6,16,15,541.0,470.4567702083436,132.0,35.6,6.0 -2019,8,6,16,30,541.0,447.0202338632608,132.0,35.6,6.0 -2019,8,6,16,45,541.0,422.6075477825846,132.0,35.6,6.0 -2019,8,6,17,0,212.0,195.97140328509317,92.0,34.2,5.9 -2019,8,6,17,15,212.0,185.7641963477577,92.0,34.2,5.9 -2019,8,6,17,30,212.0,175.3015706951897,92.0,34.2,5.9 -2019,8,6,17,45,212.0,164.62832889668488,92.0,34.2,5.9 -2019,8,6,18,0,106.0,55.895087706105215,25.0,32.7,3.4 -2019,8,6,18,15,106.0,50.41676043944523,25.0,32.7,3.4 -2019,8,6,18,30,106.0,44.90264168676643,25.0,32.7,3.4 -2019,8,6,18,45,106.0,39.376343751110696,25.0,32.7,3.4 -2019,8,6,19,0,0.0,0.0,0.0,31.5,1.3 -2019,8,6,19,15,0.0,0.0,0.0,31.5,1.3 -2019,8,6,19,30,0.0,0.0,0.0,31.5,1.3 -2019,8,6,19,45,0.0,0.0,0.0,31.5,1.3 -2019,8,6,20,0,0.0,0.0,0.0,29.9,0.0 -2019,8,6,20,15,0.0,0.0,0.0,29.9,0.0 -2019,8,6,20,30,0.0,0.0,0.0,29.9,0.0 -2019,8,6,20,45,0.0,0.0,0.0,29.9,0.0 -2019,8,6,21,0,0.0,0.0,0.0,28.8,0.0 -2019,8,6,21,15,0.0,0.0,0.0,28.8,0.0 -2019,8,6,21,30,0.0,0.0,0.0,28.8,0.0 -2019,8,6,21,45,0.0,0.0,0.0,28.8,0.0 -2019,8,6,22,0,0.0,0.0,0.0,27.7,0.0 -2019,8,6,22,15,0.0,0.0,0.0,27.7,0.0 -2019,8,6,22,30,0.0,0.0,0.0,27.7,0.0 -2019,8,6,22,45,0.0,0.0,0.0,27.7,0.0 -2019,8,6,23,0,0.0,0.0,0.0,27.0,0.0 -2019,8,6,23,15,0.0,0.0,0.0,27.0,0.0 -2019,8,6,23,30,0.0,0.0,0.0,27.0,0.0 -2019,8,6,23,45,0.0,0.0,0.0,27.0,0.0 -2019,8,7,0,0,0.0,0.0,0.0,25.5,0.0 -2019,8,7,0,15,0.0,0.0,0.0,25.5,0.0 -2019,8,7,0,30,0.0,0.0,0.0,25.5,0.0 -2019,8,7,0,45,0.0,0.0,0.0,25.5,0.0 -2019,8,7,1,0,0.0,0.0,0.0,24.9,0.0 -2019,8,7,1,15,0.0,0.0,0.0,24.9,0.0 -2019,8,7,1,30,0.0,0.0,0.0,24.9,0.0 -2019,8,7,1,45,0.0,0.0,0.0,24.9,0.0 -2019,8,7,2,0,0.0,0.0,0.0,24.2,0.0 -2019,8,7,2,15,0.0,0.0,0.0,24.2,0.0 -2019,8,7,2,30,0.0,0.0,0.0,24.2,0.0 -2019,8,7,2,45,0.0,0.0,0.0,24.2,0.0 -2019,8,7,3,0,0.0,0.0,0.0,22.9,0.0 -2019,8,7,3,15,0.0,0.0,0.0,22.9,0.0 -2019,8,7,3,30,0.0,0.0,0.0,22.9,0.0 -2019,8,7,3,45,0.0,0.0,0.0,22.9,0.0 -2019,8,7,4,0,0.0,0.0,0.0,23.3,0.0 -2019,8,7,4,15,0.0,0.0,0.0,23.3,0.0 -2019,8,7,4,30,0.0,0.0,0.0,23.3,0.0 -2019,8,7,4,45,0.0,0.0,0.0,23.3,0.0 -2019,8,7,5,0,419.0,-51.9315800890371,20.0,23.5,0.0 -2019,8,7,5,15,419.0,-31.72796992983188,20.0,23.5,0.0 -2019,8,7,5,30,419.0,-11.018797359518139,20.0,23.5,0.0 -2019,8,7,5,45,419.0,10.107257765628049,20.0,23.5,0.0 -2019,8,7,6,0,504.0,92.90478314761774,79.0,25.3,0.0 -2019,8,7,6,15,504.0,118.99132688281124,79.0,25.3,0.0 -2019,8,7,6,30,504.0,145.24830150318738,79.0,25.3,0.0 -2019,8,7,6,45,504.0,171.56327061237775,79.0,25.3,0.0 -2019,8,7,7,0,608.0,271.34269460199835,128.0,27.5,0.0 -2019,8,7,7,15,608.0,302.82013099888627,128.0,27.5,0.0 -2019,8,7,7,30,608.0,333.9611460158369,128.0,27.5,0.0 -2019,8,7,7,45,608.0,364.6323890456921,128.0,27.5,0.0 -2019,8,7,8,0,756.0,470.62352954687447,139.0,30.4,0.2 -2019,8,7,8,15,756.0,507.10582178425153,139.0,30.4,0.2 -2019,8,7,8,30,756.0,542.5243482098275,139.0,30.4,0.2 -2019,8,7,8,45,756.0,576.7274412558967,139.0,30.4,0.2 -2019,8,7,9,0,797.0,653.0888948513016,157.0,33.6,2.2 -2019,8,7,9,15,797.0,686.1271482263459,157.0,33.6,2.2 -2019,8,7,9,30,797.0,717.4399131369104,157.0,33.6,2.2 -2019,8,7,9,45,797.0,746.8931035164248,157.0,33.6,2.2 -2019,8,7,10,0,870.0,819.9067989526909,146.0,35.9,2.7 -2019,8,7,10,15,870.0,847.5941670375627,146.0,35.9,2.7 -2019,8,7,10,30,870.0,872.8670057544225,146.0,35.9,2.7 -2019,8,7,10,45,870.0,895.6170929279284,146.0,35.9,2.7 -2019,8,7,11,0,867.0,922.0927091604493,155.0,37.9,3.7 -2019,8,7,11,15,867.0,939.4561739305587,155.0,37.9,3.7 -2019,8,7,11,30,867.0,954.0482476890859,155.0,37.9,3.7 -2019,8,7,11,45,867.0,965.8064449359806,155.0,37.9,3.7 -2019,8,7,12,0,842.0,962.0448784931199,166.0,39.0,4.7 -2019,8,7,12,15,842.0,967.825003294513,166.0,39.0,4.7 -2019,8,7,12,30,842.0,970.742412683409,166.0,39.0,4.7 -2019,8,7,12,45,842.0,970.7846138649155,166.0,39.0,4.7 -2019,8,7,13,0,815.0,943.2356440541357,167.0,39.1,5.2 -2019,8,7,13,15,815.0,937.7218646271511,167.0,39.1,5.2 -2019,8,7,13,30,815.0,929.4602539228512,167.0,39.1,5.2 -2019,8,7,13,45,815.0,918.4861894266172,167.0,39.1,5.2 -2019,8,7,14,0,536.0,735.2586647599037,250.0,37.1,5.6 -2019,8,7,14,15,536.0,724.5737972387493,250.0,37.1,5.6 -2019,8,7,14,30,536.0,712.2201057074446,250.0,37.1,5.6 -2019,8,7,14,45,536.0,698.2504905697006,250.0,37.1,5.6 -2019,8,7,15,0,743.0,735.840495323895,136.0,36.4,5.1 -2019,8,7,15,15,743.0,712.2539343102757,136.0,36.4,5.1 -2019,8,7,15,30,743.0,686.7034721398638,136.0,36.4,5.1 -2019,8,7,15,45,743.0,659.2985198142519,136.0,36.4,5.1 -2019,8,7,16,0,535.0,487.81923258064825,132.0,35.4,5.1 -2019,8,7,16,15,535.0,465.67438203112533,132.0,35.4,5.1 -2019,8,7,16,30,535.0,442.4633824623606,132.0,35.4,5.1 -2019,8,7,16,45,535.0,418.285626937925,132.0,35.4,5.1 -2019,8,7,17,0,153.0,166.7110863416411,92.0,34.1,5.0 -2019,8,7,17,15,153.0,159.33363442193132,92.0,34.1,5.0 -2019,8,7,17,30,153.0,151.77157379363058,92.0,34.1,5.0 -2019,8,7,17,45,153.0,144.057286361298,92.0,34.1,5.0 -2019,8,7,18,0,77.0,43.25642518548301,21.0,32.0,4.3 -2019,8,7,18,15,77.0,39.27098100371734,21.0,32.0,4.3 -2019,8,7,18,30,77.0,35.25949877004876,21.0,32.0,4.3 -2019,8,7,18,45,77.0,31.2391562672558,21.0,32.0,4.3 -2019,8,7,19,0,0.0,0.0,0.0,30.5,2.1 -2019,8,7,19,15,0.0,0.0,0.0,30.5,2.1 -2019,8,7,19,30,0.0,0.0,0.0,30.5,2.1 -2019,8,7,19,45,0.0,0.0,0.0,30.5,2.1 -2019,8,7,20,0,0.0,0.0,0.0,29.2,2.0 -2019,8,7,20,15,0.0,0.0,0.0,29.2,2.0 -2019,8,7,20,30,0.0,0.0,0.0,29.2,2.0 -2019,8,7,20,45,0.0,0.0,0.0,29.2,2.0 -2019,8,7,21,0,0.0,0.0,0.0,27.7,1.3 -2019,8,7,21,15,0.0,0.0,0.0,27.7,1.3 -2019,8,7,21,30,0.0,0.0,0.0,27.7,1.3 -2019,8,7,21,45,0.0,0.0,0.0,27.7,1.3 -2019,8,7,22,0,0.0,0.0,0.0,27.2,0.0 -2019,8,7,22,15,0.0,0.0,0.0,27.2,0.0 -2019,8,7,22,30,0.0,0.0,0.0,27.2,0.0 -2019,8,7,22,45,0.0,0.0,0.0,27.2,0.0 -2019,8,7,23,0,0.0,0.0,0.0,27.1,0.0 -2019,8,7,23,15,0.0,0.0,0.0,27.1,0.0 -2019,8,7,23,30,0.0,0.0,0.0,27.1,0.0 -2019,8,7,23,45,0.0,0.0,0.0,27.1,0.0 -2019,8,8,0,0,0.0,0.0,0.0,25.9,0.0 -2019,8,8,0,15,0.0,0.0,0.0,25.9,0.0 -2019,8,8,0,30,0.0,0.0,0.0,25.9,0.0 -2019,8,8,0,45,0.0,0.0,0.0,25.9,0.0 -2019,8,8,1,0,0.0,0.0,0.0,24.3,0.0 -2019,8,8,1,15,0.0,0.0,0.0,24.3,0.0 -2019,8,8,1,30,0.0,0.0,0.0,24.3,0.0 -2019,8,8,1,45,0.0,0.0,0.0,24.3,0.0 -2019,8,8,2,0,0.0,0.0,0.0,23.8,0.0 -2019,8,8,2,15,0.0,0.0,0.0,23.8,0.0 -2019,8,8,2,30,0.0,0.0,0.0,23.8,0.0 -2019,8,8,2,45,0.0,0.0,0.0,23.8,0.0 -2019,8,8,3,0,0.0,0.0,0.0,23.2,0.0 -2019,8,8,3,15,0.0,0.0,0.0,23.2,0.0 -2019,8,8,3,30,0.0,0.0,0.0,23.2,0.0 -2019,8,8,3,45,0.0,0.0,0.0,23.2,0.0 -2019,8,8,4,0,0.0,0.0,0.0,22.8,0.0 -2019,8,8,4,15,0.0,0.0,0.0,22.8,0.0 -2019,8,8,4,30,0.0,0.0,0.0,22.8,0.0 -2019,8,8,4,45,0.0,0.0,0.0,22.8,0.0 -2019,8,8,5,0,337.0,-36.91616043416458,22.0,23.0,0.0 -2019,8,8,5,15,337.0,-20.642389134472147,22.0,23.0,0.0 -2019,8,8,5,30,337.0,-3.9613932352517374,22.0,23.0,0.0 -2019,8,8,5,45,337.0,13.055396678143095,22.0,23.0,0.0 -2019,8,8,6,0,420.0,98.38797353564397,88.0,24.7,0.0 -2019,8,8,6,15,420.0,120.15898701982235,88.0,24.7,0.0 -2019,8,8,6,30,420.0,142.07223679015266,88.0,24.7,0.0 -2019,8,8,6,45,420.0,164.03388694693487,88.0,24.7,0.0 -2019,8,8,7,0,614.0,269.193416952873,126.0,27.5,0.0 -2019,8,8,7,15,614.0,301.0286107158691,126.0,27.5,0.0 -2019,8,8,7,30,614.0,332.52355949571995,126.0,27.5,0.0 -2019,8,8,7,45,614.0,363.54339708655766,126.0,27.5,0.0 -2019,8,8,8,0,708.0,461.977763161806,153.0,29.7,0.2 -2019,8,8,8,15,708.0,496.19436929405475,153.0,29.7,0.2 -2019,8,8,8,30,708.0,529.4132734298796,153.0,29.7,0.2 -2019,8,8,8,45,708.0,561.4922271219116,153.0,29.7,0.2 -2019,8,8,9,0,864.0,669.0874264800437,133.0,32.5,2.2 -2019,8,8,9,15,864.0,704.9561441941598,133.0,32.5,2.2 -2019,8,8,9,30,864.0,738.9515468165603,133.0,32.5,2.2 -2019,8,8,9,45,864.0,770.9280608141471,133.0,32.5,2.2 -2019,8,8,10,0,798.0,793.740172176154,177.0,35.3,2.7 -2019,8,8,10,15,798.0,819.1738206047108,177.0,35.3,2.7 -2019,8,8,10,30,798.0,842.3894795559657,177.0,35.3,2.7 -2019,8,8,10,45,798.0,863.2877360141563,177.0,35.3,2.7 -2019,8,8,11,0,955.0,961.4386477658089,118.0,37.5,3.2 -2019,8,8,11,15,955.0,980.5928476368307,118.0,37.5,3.2 -2019,8,8,11,30,955.0,996.6898364005405,118.0,37.5,3.2 -2019,8,8,11,45,955.0,1009.6606842797971,118.0,37.5,3.2 -2019,8,8,12,0,1123.0,1113.0295072570875,53.0,39.9,3.8 -2019,8,8,12,15,1123.0,1120.7500570973189,53.0,39.9,3.8 -2019,8,8,12,30,1123.0,1124.6468595653039,53.0,39.9,3.8 -2019,8,8,12,45,1123.0,1124.7032279546265,53.0,39.9,3.8 -2019,8,8,13,0,1038.0,1067.0880141414987,80.0,39.3,5.5 -2019,8,8,13,15,1038.0,1060.0551458539753,80.0,39.3,5.5 -2019,8,8,13,30,1038.0,1049.5173975280663,80.0,39.3,5.5 -2019,8,8,13,45,1038.0,1035.5198934198884,80.0,39.3,5.5 -2019,8,8,14,0,805.0,877.5420725026299,150.0,38.8,3.7 -2019,8,8,14,15,805.0,861.4710472657096,150.0,38.8,3.7 -2019,8,8,14,30,805.0,842.8899569549826,150.0,38.8,3.7 -2019,8,8,14,45,805.0,821.8783686517808,150.0,38.8,3.7 -2019,8,8,15,0,761.0,744.0788592937448,131.0,38.2,4.6 -2019,8,8,15,15,761.0,719.8850742489917,131.0,38.2,4.6 -2019,8,8,15,30,761.0,693.6768284098422,131.0,38.2,4.6 -2019,8,8,15,45,761.0,665.5663495085428,131.0,38.2,4.6 -2019,8,8,16,0,717.0,571.4944360548966,96.0,36.9,4.9 -2019,8,8,16,15,717.0,541.7722000778979,96.0,36.9,4.9 -2019,8,8,16,30,717.0,510.6190069280033,96.0,36.9,4.9 -2019,8,8,16,45,717.0,478.16825936100565,96.0,36.9,4.9 -2019,8,8,17,0,471.0,299.96966478747623,71.0,35.8,5.0 -2019,8,8,17,15,471.0,277.22501706594767,71.0,35.8,5.0 -2019,8,8,17,30,471.0,253.91122161036068,71.0,35.8,5.0 -2019,8,8,17,45,471.0,230.12811167205513,71.0,35.8,5.0 -2019,8,8,18,0,235.0,87.34547684092041,20.0,33.6,4.4 -2019,8,8,18,15,235.0,75.16407643905869,20.0,33.6,4.4 -2019,8,8,18,30,235.0,62.90309144851678,20.0,33.6,4.4 -2019,8,8,18,45,235.0,50.61502528936475,20.0,33.6,4.4 -2019,8,8,19,0,0.0,0.0,0.0,30.9,2.9 -2019,8,8,19,15,0.0,0.0,0.0,30.9,2.9 -2019,8,8,19,30,0.0,0.0,0.0,30.9,2.9 -2019,8,8,19,45,0.0,0.0,0.0,30.9,2.9 -2019,8,8,20,0,0.0,0.0,0.0,29.1,1.6 -2019,8,8,20,15,0.0,0.0,0.0,29.1,1.6 -2019,8,8,20,30,0.0,0.0,0.0,29.1,1.6 -2019,8,8,20,45,0.0,0.0,0.0,29.1,1.6 -2019,8,8,21,0,0.0,0.0,0.0,27.1,2.3 -2019,8,8,21,15,0.0,0.0,0.0,27.1,2.3 -2019,8,8,21,30,0.0,0.0,0.0,27.1,2.3 -2019,8,8,21,45,0.0,0.0,0.0,27.1,2.3 -2019,8,8,22,0,0.0,0.0,0.0,26.6,0.0 -2019,8,8,22,15,0.0,0.0,0.0,26.6,0.0 -2019,8,8,22,30,0.0,0.0,0.0,26.6,0.0 -2019,8,8,22,45,0.0,0.0,0.0,26.6,0.0 -2019,8,8,23,0,0.0,0.0,0.0,26.0,0.0 -2019,8,8,23,15,0.0,0.0,0.0,26.0,0.0 -2019,8,8,23,30,0.0,0.0,0.0,26.0,0.0 -2019,8,8,23,45,0.0,0.0,0.0,26.0,0.0 -2019,8,9,0,0,0.0,0.0,0.0,25.4,0.0 -2019,8,9,0,15,0.0,0.0,0.0,25.4,0.0 -2019,8,9,0,30,0.0,0.0,0.0,25.4,0.0 -2019,8,9,0,45,0.0,0.0,0.0,25.4,0.0 -2019,8,9,1,0,0.0,0.0,0.0,23.9,0.0 -2019,8,9,1,15,0.0,0.0,0.0,23.9,0.0 -2019,8,9,1,30,0.0,0.0,0.0,23.9,0.0 -2019,8,9,1,45,0.0,0.0,0.0,23.9,0.0 -2019,8,9,2,0,0.0,0.0,0.0,23.9,0.0 -2019,8,9,2,15,0.0,0.0,0.0,23.9,0.0 -2019,8,9,2,30,0.0,0.0,0.0,23.9,0.0 -2019,8,9,2,45,0.0,0.0,0.0,23.9,0.0 -2019,8,9,3,0,0.0,0.0,0.0,23.8,0.0 -2019,8,9,3,15,0.0,0.0,0.0,23.8,0.0 -2019,8,9,3,30,0.0,0.0,0.0,23.8,0.0 -2019,8,9,3,45,0.0,0.0,0.0,23.8,0.0 -2019,8,9,4,0,0.0,0.0,0.0,23.0,0.0 -2019,8,9,4,15,0.0,0.0,0.0,23.0,0.0 -2019,8,9,4,30,0.0,0.0,0.0,23.0,0.0 -2019,8,9,4,45,0.0,0.0,0.0,23.0,0.0 -2019,8,9,5,0,524.0,-78.28507983759735,15.0,24.6,0.4 -2019,8,9,5,15,524.0,-52.943619548985396,15.0,24.6,0.4 -2019,8,9,5,30,524.0,-26.96803052478773,15.0,24.6,0.4 -2019,8,9,5,45,524.0,-0.4695442250510471,15.0,24.6,0.4 -2019,8,9,6,0,552.0,85.04957930839655,73.0,26.4,2.7 -2019,8,9,6,15,552.0,113.70524334781366,73.0,26.4,2.7 -2019,8,9,6,30,552.0,142.54812307349835,73.0,26.4,2.7 -2019,8,9,6,45,552.0,171.454708846426,73.0,26.4,2.7 -2019,8,9,7,0,772.0,270.0372110007241,92.0,29.2,0.2 -2019,8,9,7,15,772.0,310.1237414878449,92.0,29.2,0.2 -2019,8,9,7,30,772.0,349.78183918478095,92.0,29.2,0.2 -2019,8,9,7,45,772.0,388.8416820287723,92.0,29.2,0.2 -2019,8,9,8,0,829.0,476.88050790732814,117.0,32.0,1.6 -2019,8,9,8,15,829.0,517.004140616712,117.0,32.0,1.6 -2019,8,9,8,30,829.0,555.9578317981952,117.0,32.0,1.6 -2019,8,9,8,45,829.0,593.574775765859,117.0,32.0,1.6 -2019,8,9,9,0,985.0,699.1718728898882,90.0,34.8,2.2 -2019,8,9,9,15,985.0,740.1243693940994,90.0,34.8,2.2 -2019,8,9,9,30,985.0,778.9380403524344,90.0,34.8,2.2 -2019,8,9,9,45,985.0,815.4466796670667,90.0,34.8,2.2 -2019,8,9,10,0,1017.0,872.1678669229592,88.0,38.0,3.2 -2019,8,9,10,15,1017.0,904.6293806695637,88.0,38.0,3.2 -2019,8,9,10,30,1017.0,934.2600266344771,88.0,38.0,3.2 -2019,8,9,10,45,1017.0,960.9329218426977,88.0,38.0,3.2 -2019,8,9,11,0,647.0,826.3612588139079,256.0,39.4,3.7 -2019,8,9,11,15,647.0,839.3571769421203,256.0,39.4,3.7 -2019,8,9,11,30,647.0,850.2788102910768,256.0,39.4,3.7 -2019,8,9,11,45,647.0,859.0793907500572,256.0,39.4,3.7 -2019,8,9,12,0,680.0,880.8198429058172,240.0,39.3,4.7 -2019,8,9,12,15,680.0,885.5017137625669,240.0,39.3,4.7 -2019,8,9,12,30,680.0,887.8648001083475,240.0,39.3,4.7 -2019,8,9,12,45,680.0,887.8989828446386,240.0,39.3,4.7 -2019,8,9,13,0,798.0,931.6354180079136,174.0,38.3,5.9 -2019,8,9,13,15,798.0,926.2206473789586,174.0,38.3,5.9 -2019,8,9,13,30,798.0,918.1073872128788,174.0,38.3,5.9 -2019,8,9,13,45,798.0,907.3303797352759,174.0,38.3,5.9 -2019,8,9,14,0,425.0,670.4244409051895,287.0,38.2,7.1 -2019,8,9,14,15,425.0,661.9271854357005,287.0,38.2,7.1 -2019,8,9,14,30,425.0,652.1027797774248,287.0,38.2,7.1 -2019,8,9,14,45,425.0,640.9932935436614,287.0,38.2,7.1 -2019,8,9,15,0,564.0,640.3847359591825,187.0,37.4,6.1 -2019,8,9,15,15,564.0,622.4274661635025,187.0,37.4,6.1 -2019,8,9,15,30,564.0,602.975010066428,187.0,37.4,6.1 -2019,8,9,15,45,564.0,582.1106660713623,187.0,37.4,6.1 -2019,8,9,16,0,601.0,515.3886363120018,118.0,36.3,5.3 -2019,8,9,16,15,601.0,490.4381602235474,118.0,36.3,5.3 -2019,8,9,16,30,601.0,464.2864601506803,118.0,36.3,5.3 -2019,8,9,16,45,601.0,437.0455216879946,118.0,36.3,5.3 -2019,8,9,17,0,407.0,271.95278177945005,75.0,35.4,4.5 -2019,8,9,17,15,407.0,252.26962464688307,75.0,35.4,4.5 -2019,8,9,17,30,407.0,232.0939285918288,75.0,35.4,4.5 -2019,8,9,17,45,407.0,211.5120890422241,75.0,35.4,4.5 -2019,8,9,18,0,203.0,78.66409051780045,21.0,33.6,3.6 -2019,8,9,18,15,203.0,68.12586624243508,21.0,33.6,3.6 -2019,8,9,18,30,203.0,57.518792720127124,21.0,33.6,3.6 -2019,8,9,18,45,203.0,46.88829106812657,21.0,33.6,3.6 -2019,8,9,19,0,0.0,0.0,0.0,31.6,3.4 -2019,8,9,19,15,0.0,0.0,0.0,31.6,3.4 -2019,8,9,19,30,0.0,0.0,0.0,31.6,3.4 -2019,8,9,19,45,0.0,0.0,0.0,31.6,3.4 -2019,8,9,20,0,0.0,0.0,0.0,30.3,1.6 -2019,8,9,20,15,0.0,0.0,0.0,30.3,1.6 -2019,8,9,20,30,0.0,0.0,0.0,30.3,1.6 -2019,8,9,20,45,0.0,0.0,0.0,30.3,1.6 -2019,8,9,21,0,0.0,0.0,0.0,28.3,1.9 -2019,8,9,21,15,0.0,0.0,0.0,28.3,1.9 -2019,8,9,21,30,0.0,0.0,0.0,28.3,1.9 -2019,8,9,21,45,0.0,0.0,0.0,28.3,1.9 -2019,8,9,22,0,0.0,0.0,0.0,28.2,0.0 -2019,8,9,22,15,0.0,0.0,0.0,28.2,0.0 -2019,8,9,22,30,0.0,0.0,0.0,28.2,0.0 -2019,8,9,22,45,0.0,0.0,0.0,28.2,0.0 -2019,8,9,23,0,0.0,0.0,0.0,27.2,0.0 -2019,8,9,23,15,0.0,0.0,0.0,27.2,0.0 -2019,8,9,23,30,0.0,0.0,0.0,27.2,0.0 -2019,8,9,23,45,0.0,0.0,0.0,27.2,0.0 -2019,8,10,0,0,0.0,0.0,0.0,26.9,0.0 -2019,8,10,0,15,0.0,0.0,0.0,26.9,0.0 -2019,8,10,0,30,0.0,0.0,0.0,26.9,0.0 -2019,8,10,0,45,0.0,0.0,0.0,26.9,0.0 -2019,8,10,1,0,0.0,0.0,0.0,25.0,0.2 -2019,8,10,1,15,0.0,0.0,0.0,25.0,0.2 -2019,8,10,1,30,0.0,0.0,0.0,25.0,0.2 -2019,8,10,1,45,0.0,0.0,0.0,25.0,0.2 -2019,8,10,2,0,0.0,0.0,0.0,24.9,1.3 -2019,8,10,2,15,0.0,0.0,0.0,24.9,1.3 -2019,8,10,2,30,0.0,0.0,0.0,24.9,1.3 -2019,8,10,2,45,0.0,0.0,0.0,24.9,1.3 -2019,8,10,3,0,0.0,0.0,0.0,23.9,0.2 -2019,8,10,3,15,0.0,0.0,0.0,23.9,0.2 -2019,8,10,3,30,0.0,0.0,0.0,23.9,0.2 -2019,8,10,3,45,0.0,0.0,0.0,23.9,0.2 -2019,8,10,4,0,0.0,0.0,0.0,23.9,1.6 -2019,8,10,4,15,0.0,0.0,0.0,23.9,1.6 -2019,8,10,4,30,0.0,0.0,0.0,23.9,1.6 -2019,8,10,4,45,0.0,0.0,0.0,23.9,1.6 -2019,8,10,5,0,408.0,-55.958909727297254,18.0,24.2,1.9 -2019,8,10,5,15,408.0,-36.198293128181625,18.0,24.2,1.9 -2019,8,10,5,30,408.0,-15.943199309691998,18.0,24.2,1.9 -2019,8,10,5,45,408.0,4.719636306822377,18.0,24.2,1.9 -2019,8,10,6,0,590.0,79.13730894448723,68.0,27.1,0.0 -2019,8,10,6,15,590.0,109.81081285316263,68.0,27.1,0.0 -2019,8,10,6,30,590.0,140.6847155757199,68.0,27.1,0.0 -2019,8,10,6,45,590.0,171.62681032085334,68.0,27.1,0.0 -2019,8,10,7,0,816.0,269.0266986499231,83.0,30.6,0.0 -2019,8,10,7,15,816.0,311.4604381983538,83.0,30.6,0.0 -2019,8,10,7,30,816.0,353.440658691586,83.0,30.6,0.0 -2019,8,10,7,45,816.0,394.7875943805471,83.0,30.6,0.0 -2019,8,10,8,0,959.0,494.06727879169694,80.0,35.3,0.2 -2019,8,10,8,15,959.0,540.5513653727858,80.0,35.3,0.2 -2019,8,10,8,30,959.0,585.680049673337,80.0,35.3,0.2 -2019,8,10,8,45,959.0,629.2600837388942,80.0,35.3,0.2 -2019,8,10,9,0,985.0,697.1306344165426,90.0,37.5,1.9 -2019,8,10,9,15,985.0,738.1435232155295,90.0,37.5,1.9 -2019,8,10,9,30,985.0,777.0144323609824,90.0,37.5,1.9 -2019,8,10,9,45,985.0,813.5769106523697,90.0,37.5,1.9 -2019,8,10,10,0,1018.0,871.0584071060656,88.0,39.3,4.7 -2019,8,10,10,15,1018.0,903.599757531208,88.0,39.3,4.7 -2019,8,10,10,30,1018.0,933.3032778659133,88.0,39.3,4.7 -2019,8,10,10,45,1018.0,960.0417730759401,88.0,39.3,4.7 -2019,8,10,11,0,767.0,874.8550798396961,200.0,38.4,5.2 -2019,8,10,11,15,767.0,890.2840887043355,200.0,38.4,5.2 -2019,8,10,11,30,767.0,903.250466000263,200.0,38.4,5.2 -2019,8,10,11,45,767.0,913.6986877092634,200.0,38.4,5.2 -2019,8,10,12,0,739.0,907.241962925805,212.0,38.9,5.9 -2019,8,10,12,15,739.0,912.3375582959875,212.0,38.9,5.9 -2019,8,10,12,30,739.0,914.9094643163216,212.0,38.9,5.9 -2019,8,10,12,45,739.0,914.946667690382,212.0,38.9,5.9 -2019,8,10,13,0,360.0,697.2200856275227,356.0,38.9,3.8 -2019,8,10,13,15,360.0,694.7737296524774,356.0,38.9,3.8 -2019,8,10,13,30,360.0,691.1082147406821,356.0,38.9,3.8 -2019,8,10,13,45,360.0,686.239237189729,356.0,38.9,3.8 -2019,8,10,14,0,663.0,798.0455826890575,201.0,38.9,5.0 -2019,8,10,14,15,663.0,784.7703160624135,201.0,38.9,5.0 -2019,8,10,14,30,663.0,769.4216420075704,201.0,38.9,5.0 -2019,8,10,14,45,663.0,752.0652859032023,201.0,38.9,5.0 -2019,8,10,15,0,948.0,839.3668788439602,79.0,38.9,4.1 -2019,8,10,15,15,948.0,809.1388714621066,79.0,38.9,4.1 -2019,8,10,15,30,948.0,776.3939724218862,79.0,38.9,4.1 -2019,8,10,15,45,948.0,741.272400408077,79.0,38.9,4.1 -2019,8,10,16,0,867.0,637.5290992087886,66.0,38.6,3.8 -2019,8,10,16,15,867.0,601.4825711125889,66.0,38.6,3.8 -2019,8,10,16,30,867.0,563.7006070290977,66.0,38.6,3.8 -2019,8,10,16,45,867.0,524.3449951289132,66.0,38.6,3.8 -2019,8,10,17,0,579.0,336.87115087040036,58.0,38.0,3.6 -2019,8,10,17,15,579.0,308.8285111378319,58.0,38.0,3.6 -2019,8,10,17,30,579.0,280.0841500571811,58.0,38.0,3.6 -2019,8,10,17,45,579.0,250.7611553955101,58.0,38.0,3.6 -2019,8,10,18,0,480.0,138.11717531001696,3.0,35.3,3.7 -2019,8,10,18,15,480.0,113.16246026567082,3.0,35.3,3.7 -2019,8,10,18,30,480.0,88.04470889816662,3.0,35.3,3.7 -2019,8,10,18,45,480.0,62.87147927500734,3.0,35.3,3.7 -2019,8,10,19,0,0.0,0.0,0.0,33.0,3.6 -2019,8,10,19,15,0.0,0.0,0.0,33.0,3.6 -2019,8,10,19,30,0.0,0.0,0.0,33.0,3.6 -2019,8,10,19,45,0.0,0.0,0.0,33.0,3.6 -2019,8,10,20,0,0.0,0.0,0.0,30.9,0.0 -2019,8,10,20,15,0.0,0.0,0.0,30.9,0.0 -2019,8,10,20,30,0.0,0.0,0.0,30.9,0.0 -2019,8,10,20,45,0.0,0.0,0.0,30.9,0.0 -2019,8,10,21,0,0.0,0.0,0.0,29.1,0.2 -2019,8,10,21,15,0.0,0.0,0.0,29.1,0.2 -2019,8,10,21,30,0.0,0.0,0.0,29.1,0.2 -2019,8,10,21,45,0.0,0.0,0.0,29.1,0.2 -2019,8,10,22,0,0.0,0.0,0.0,27.1,2.1 -2019,8,10,22,15,0.0,0.0,0.0,27.1,2.1 -2019,8,10,22,30,0.0,0.0,0.0,27.1,2.1 -2019,8,10,22,45,0.0,0.0,0.0,27.1,2.1 -2019,8,10,23,0,0.0,0.0,0.0,26.6,1.9 -2019,8,10,23,15,0.0,0.0,0.0,26.6,1.9 -2019,8,10,23,30,0.0,0.0,0.0,26.6,1.9 -2019,8,10,23,45,0.0,0.0,0.0,26.6,1.9 -2019,8,11,0,0,0.0,0.0,0.0,26.1,0.0 -2019,8,11,0,15,0.0,0.0,0.0,26.1,0.0 -2019,8,11,0,30,0.0,0.0,0.0,26.1,0.0 -2019,8,11,0,45,0.0,0.0,0.0,26.1,0.0 -2019,8,11,1,0,0.0,0.0,0.0,26.0,0.0 -2019,8,11,1,15,0.0,0.0,0.0,26.0,0.0 -2019,8,11,1,30,0.0,0.0,0.0,26.0,0.0 -2019,8,11,1,45,0.0,0.0,0.0,26.0,0.0 -2019,8,11,2,0,0.0,0.0,0.0,25.0,0.0 -2019,8,11,2,15,0.0,0.0,0.0,25.0,0.0 -2019,8,11,2,30,0.0,0.0,0.0,25.0,0.0 -2019,8,11,2,45,0.0,0.0,0.0,25.0,0.0 -2019,8,11,3,0,0.0,0.0,0.0,24.9,0.0 -2019,8,11,3,15,0.0,0.0,0.0,24.9,0.0 -2019,8,11,3,30,0.0,0.0,0.0,24.9,0.0 -2019,8,11,3,45,0.0,0.0,0.0,24.9,0.0 -2019,8,11,4,0,0.0,0.0,0.0,24.5,0.2 -2019,8,11,4,15,0.0,0.0,0.0,24.5,0.2 -2019,8,11,4,30,0.0,0.0,0.0,24.5,0.2 -2019,8,11,4,45,0.0,0.0,0.0,24.5,0.2 -2019,8,11,5,0,235.0,-14.372716614209082,29.0,25.1,1.3 -2019,8,11,5,15,235.0,-2.974278282834039,29.0,25.1,1.3 -2019,8,11,5,30,235.0,8.709387387629064,29.0,25.1,1.3 -2019,8,11,5,45,235.0,20.628249147070257,29.0,25.1,1.3 -2019,8,11,6,0,471.0,87.47841493795926,80.0,26.4,0.0 -2019,8,11,6,15,471.0,112.00118057432277,80.0,26.4,0.0 -2019,8,11,6,30,471.0,136.68416048425814,80.0,26.4,0.0 -2019,8,11,6,45,471.0,161.42165835839097,80.0,26.4,0.0 -2019,8,11,7,0,581.0,261.8887463176319,131.0,29.2,0.2 -2019,8,11,7,15,581.0,292.1463439189424,131.0,29.2,0.2 -2019,8,11,7,30,581.0,322.08055741075066,131.0,29.2,0.2 -2019,8,11,7,45,581.0,351.5632038953007,131.0,29.2,0.2 -2019,8,11,8,0,744.0,461.4564843556647,142.0,31.5,1.5 -2019,8,11,8,15,744.0,497.5721640450882,142.0,31.5,1.5 -2019,8,11,8,30,744.0,532.6347677634735,142.0,31.5,1.5 -2019,8,11,8,45,744.0,566.4941520587896,142.0,31.5,1.5 -2019,8,11,9,0,863.0,663.1016078063751,133.0,34.7,1.5 -2019,8,11,9,15,863.0,699.0874845831238,133.0,34.7,1.5 -2019,8,11,9,30,863.0,733.1939274031918,133.0,34.7,1.5 -2019,8,11,9,45,863.0,765.2748872423074,133.0,34.7,1.5 -2019,8,11,10,0,974.0,852.3649719630863,105.0,37.0,1.7 -2019,8,11,10,15,974.0,883.5455321435334,105.0,37.0,1.7 -2019,8,11,10,30,974.0,912.006932523888,105.0,37.0,1.7 -2019,8,11,10,45,974.0,937.6272970182479,105.0,37.0,1.7 -2019,8,11,11,0,615.0,810.048873619005,270.0,38.9,3.5 -2019,8,11,11,15,615.0,822.4384068018667,270.0,38.9,3.5 -2019,8,11,11,30,615.0,832.85044059994,270.0,38.9,3.5 -2019,8,11,11,45,615.0,841.2403890860174,270.0,38.9,3.5 -2019,8,11,12,0,470.0,776.3967363413619,335.0,39.0,6.0 -2019,8,11,12,15,470.0,779.6422655103775,335.0,39.0,6.0 -2019,8,11,12,30,470.0,781.2803853771561,335.0,39.0,6.0 -2019,8,11,12,45,470.0,781.3040812609395,335.0,39.0,6.0 -2019,8,11,13,0,523.0,785.8617673086826,291.0,39.7,4.7 -2019,8,11,13,15,523.0,782.3025377177873,291.0,39.7,4.7 -2019,8,11,13,30,523.0,776.9695406915929,291.0,39.7,4.7 -2019,8,11,13,45,523.0,769.8856129421018,291.0,39.7,4.7 -2019,8,11,14,0,31.0,341.86331502294445,314.0,37.4,4.7 -2019,8,11,14,15,31.0,341.2416898677858,314.0,37.4,4.7 -2019,8,11,14,30,31.0,340.5229757237194,314.0,37.4,4.7 -2019,8,11,14,45,31.0,339.71025023504916,314.0,37.4,4.7 -2019,8,11,15,0,30.0,260.0067680165382,236.0,36.0,1.6 -2019,8,11,15,15,30.0,259.048781051628,236.0,36.0,1.6 -2019,8,11,15,30,30.0,258.011028676767,236.0,36.0,1.6 -2019,8,11,15,45,30.0,256.89795470694315,236.0,36.0,1.6 -2019,8,11,16,0,12.0,133.88573019831094,126.0,34.7,2.1 -2019,8,11,16,15,12.0,133.38608381010636,126.0,34.7,2.1 -2019,8,11,16,30,12.0,132.86238228070494,126.0,34.7,2.1 -2019,8,11,16,45,12.0,132.31686818045566,126.0,34.7,2.1 -2019,8,11,17,0,7.0,51.35526186594938,48.0,34.8,2.6 -2019,8,11,17,15,7.0,51.01573391565311,48.0,34.8,2.6 -2019,8,11,17,30,7.0,50.66770983185208,48.0,34.8,2.6 -2019,8,11,17,45,7.0,50.31267990710276,48.0,34.8,2.6 -2019,8,11,18,0,4.0,15.115522533741789,14.0,33.1,2.8 -2019,8,11,18,15,4.0,14.907261254452077,14.0,33.1,2.8 -2019,8,11,18,30,4.0,14.69763934438893,14.0,33.1,2.8 -2019,8,11,18,45,4.0,14.487554436752983,14.0,33.1,2.8 -2019,8,11,19,0,0.0,0.0,0.0,31.4,4.2 -2019,8,11,19,15,0.0,0.0,0.0,31.4,4.2 -2019,8,11,19,30,0.0,0.0,0.0,31.4,4.2 -2019,8,11,19,45,0.0,0.0,0.0,31.4,4.2 -2019,8,11,20,0,0.0,0.0,0.0,29.1,1.5 -2019,8,11,20,15,0.0,0.0,0.0,29.1,1.5 -2019,8,11,20,30,0.0,0.0,0.0,29.1,1.5 -2019,8,11,20,45,0.0,0.0,0.0,29.1,1.5 -2019,8,11,21,0,0.0,0.0,0.0,27.2,1.3 -2019,8,11,21,15,0.0,0.0,0.0,27.2,1.3 -2019,8,11,21,30,0.0,0.0,0.0,27.2,1.3 -2019,8,11,21,45,0.0,0.0,0.0,27.2,1.3 -2019,8,11,22,0,0.0,0.0,0.0,27.2,0.0 -2019,8,11,22,15,0.0,0.0,0.0,27.2,0.0 -2019,8,11,22,30,0.0,0.0,0.0,27.2,0.0 -2019,8,11,22,45,0.0,0.0,0.0,27.2,0.0 -2019,8,11,23,0,0.0,0.0,0.0,27.2,0.0 -2019,8,11,23,15,0.0,0.0,0.0,27.2,0.0 -2019,8,11,23,30,0.0,0.0,0.0,27.2,0.0 -2019,8,11,23,45,0.0,0.0,0.0,27.2,0.0 -2019,8,12,0,0,0.0,0.0,0.0,27.0,0.0 -2019,8,12,0,15,0.0,0.0,0.0,27.0,0.0 -2019,8,12,0,30,0.0,0.0,0.0,27.0,0.0 -2019,8,12,0,45,0.0,0.0,0.0,27.0,0.0 -2019,8,12,1,0,0.0,0.0,0.0,25.5,0.0 -2019,8,12,1,15,0.0,0.0,0.0,25.5,0.0 -2019,8,12,1,30,0.0,0.0,0.0,25.5,0.0 -2019,8,12,1,45,0.0,0.0,0.0,25.5,0.0 -2019,8,12,2,0,0.0,0.0,0.0,24.9,0.0 -2019,8,12,2,15,0.0,0.0,0.0,24.9,0.0 -2019,8,12,2,30,0.0,0.0,0.0,24.9,0.0 -2019,8,12,2,45,0.0,0.0,0.0,24.9,0.0 -2019,8,12,3,0,0.0,0.0,0.0,24.4,0.0 -2019,8,12,3,15,0.0,0.0,0.0,24.4,0.0 -2019,8,12,3,30,0.0,0.0,0.0,24.4,0.0 -2019,8,12,3,45,0.0,0.0,0.0,24.4,0.0 -2019,8,12,4,0,0.0,0.0,0.0,24.4,0.0 -2019,8,12,4,15,0.0,0.0,0.0,24.4,0.0 -2019,8,12,4,30,0.0,0.0,0.0,24.4,0.0 -2019,8,12,4,45,0.0,0.0,0.0,24.4,0.0 -2019,8,12,5,0,479.0,-80.00525149516878,10.0,24.7,0.0 -2019,8,12,5,15,479.0,-56.737918467309996,10.0,24.7,0.0 -2019,8,12,5,30,479.0,-32.88835835761118,10.0,24.7,0.0 -2019,8,12,5,45,479.0,-8.558698643913072,10.0,24.7,0.0 -2019,8,12,6,0,567.0,76.276157514323,69.0,27.5,0.0 -2019,8,12,6,15,567.0,105.8402941176792,69.0,27.5,0.0 -2019,8,12,6,30,567.0,135.59758171957782,69.0,27.5,0.0 -2019,8,12,6,45,567.0,165.42059504608548,69.0,27.5,0.0 -2019,8,12,7,0,697.0,262.1121592254169,107.0,29.7,0.0 -2019,8,12,7,15,697.0,298.4638562027177,107.0,29.7,0.0 -2019,8,12,7,30,697.0,334.4270371679149,107.0,29.7,0.0 -2019,8,12,7,45,697.0,369.8477022589475,107.0,29.7,0.0 -2019,8,12,8,0,819.0,468.6603287234769,119.0,32.5,0.0 -2019,8,12,8,15,819.0,508.47474563016533,119.0,32.5,0.0 -2019,8,12,8,30,819.0,547.1282372516067,119.0,32.5,0.0 -2019,8,12,8,45,819.0,584.4552834024862,119.0,32.5,0.0 -2019,8,12,9,0,827.0,651.1927085945101,145.0,34.6,0.4 -2019,8,12,9,15,827.0,685.7277835760323,145.0,34.6,0.4 -2019,8,12,9,30,827.0,718.4591956089076,145.0,34.6,0.4 -2019,8,12,9,45,827.0,749.2467837617941,145.0,34.6,0.4 -2019,8,12,10,0,708.0,756.8800088098933,215.0,36.4,3.2 -2019,8,12,10,15,708.0,779.5782295423674,215.0,36.4,3.2 -2019,8,12,10,30,708.0,800.2970089501126,215.0,36.4,3.2 -2019,8,12,10,45,708.0,818.9476260389004,215.0,36.4,3.2 -2019,8,12,11,0,719.0,852.0899792460469,222.0,38.4,3.7 -2019,8,12,11,15,719.0,866.595800403037,222.0,38.4,3.7 -2019,8,12,11,30,719.0,878.7863404279277,222.0,38.4,3.7 -2019,8,12,11,45,719.0,888.6093975568072,222.0,38.4,3.7 -2019,8,12,12,0,529.0,803.908370383966,308.0,39.5,4.0 -2019,8,12,12,15,529.0,807.5666502909742,308.0,39.5,4.0 -2019,8,12,12,30,529.0,809.4130983374494,308.0,39.5,4.0 -2019,8,12,12,45,529.0,809.4398077493846,308.0,39.5,4.0 -2019,8,12,13,0,629.0,839.0978293992872,245.0,40.5,3.7 -2019,8,12,13,15,629.0,834.8109767003884,245.0,40.5,3.7 -2019,8,12,13,30,629.0,828.3877404041283,245.0,40.5,3.7 -2019,8,12,13,45,629.0,819.8556257944407,245.0,40.5,3.7 -2019,8,12,14,0,580.0,750.2951952999297,230.0,39.9,4.6 -2019,8,12,14,15,580.0,738.6478089551058,230.0,39.9,4.6 -2019,8,12,14,30,580.0,725.1812668791272,230.0,39.9,4.6 -2019,8,12,14,45,580.0,709.9532348725847,230.0,39.9,4.6 -2019,8,12,15,0,559.0,632.2640814377007,186.0,39.3,4.6 -2019,8,12,15,15,559.0,614.3875295469952,186.0,39.3,4.6 -2019,8,12,15,30,559.0,595.0225122154252,186.0,39.3,4.6 -2019,8,12,15,45,559.0,574.251953420176,186.0,39.3,4.6 -2019,8,12,16,0,180.0,294.9063743450758,177.0,38.0,4.9 -2019,8,12,16,15,180.0,287.40073638009994,177.0,38.0,4.9 -2019,8,12,16,30,180.0,279.5337444950673,177.0,38.0,4.9 -2019,8,12,16,45,180.0,271.3390863569921,177.0,38.0,4.9 -2019,8,12,17,0,32.0,84.26255160001568,69.0,37.0,4.9 -2019,8,12,17,15,32.0,82.70815774429235,69.0,37.0,4.9 -2019,8,12,17,30,32.0,81.11486771608699,69.0,37.0,4.9 -2019,8,12,17,45,32.0,79.48950422790674,69.0,37.0,4.9 -2019,8,12,18,0,16.0,24.419513667869158,20.0,35.2,3.6 -2019,8,12,18,15,16.0,23.585252317509898,20.0,35.2,3.6 -2019,8,12,18,30,16.0,22.745540498055973,20.0,35.2,3.6 -2019,8,12,18,45,16.0,21.90397398443318,20.0,35.2,3.6 -2019,8,12,19,0,0.0,0.0,0.0,32.1,3.4 -2019,8,12,19,15,0.0,0.0,0.0,32.1,3.4 -2019,8,12,19,30,0.0,0.0,0.0,32.1,3.4 -2019,8,12,19,45,0.0,0.0,0.0,32.1,3.4 -2019,8,12,20,0,0.0,0.0,0.0,31.4,2.1 -2019,8,12,20,15,0.0,0.0,0.0,31.4,2.1 -2019,8,12,20,30,0.0,0.0,0.0,31.4,2.1 -2019,8,12,20,45,0.0,0.0,0.0,31.4,2.1 -2019,8,12,21,0,0.0,0.0,0.0,29.3,2.3 -2019,8,12,21,15,0.0,0.0,0.0,29.3,2.3 -2019,8,12,21,30,0.0,0.0,0.0,29.3,2.3 -2019,8,12,21,45,0.0,0.0,0.0,29.3,2.3 -2019,8,12,22,0,0.0,0.0,0.0,28.2,3.4 -2019,8,12,22,15,0.0,0.0,0.0,28.2,3.4 -2019,8,12,22,30,0.0,0.0,0.0,28.2,3.4 -2019,8,12,22,45,0.0,0.0,0.0,28.2,3.4 -2019,8,12,23,0,0.0,0.0,0.0,27.7,1.9 -2019,8,12,23,15,0.0,0.0,0.0,27.7,1.9 -2019,8,12,23,30,0.0,0.0,0.0,27.7,1.9 -2019,8,12,23,45,0.0,0.0,0.0,27.7,1.9 -2019,8,13,0,0,0.0,0.0,0.0,26.6,0.0 -2019,8,13,0,15,0.0,0.0,0.0,26.6,0.0 -2019,8,13,0,30,0.0,0.0,0.0,26.6,0.0 -2019,8,13,0,45,0.0,0.0,0.0,26.6,0.0 -2019,8,13,1,0,0.0,0.0,0.0,26.0,0.0 -2019,8,13,1,15,0.0,0.0,0.0,26.0,0.0 -2019,8,13,1,30,0.0,0.0,0.0,26.0,0.0 -2019,8,13,1,45,0.0,0.0,0.0,26.0,0.0 -2019,8,13,2,0,0.0,0.0,0.0,25.5,0.0 -2019,8,13,2,15,0.0,0.0,0.0,25.5,0.0 -2019,8,13,2,30,0.0,0.0,0.0,25.5,0.0 -2019,8,13,2,45,0.0,0.0,0.0,25.5,0.0 -2019,8,13,3,0,0.0,0.0,0.0,24.4,0.0 -2019,8,13,3,15,0.0,0.0,0.0,24.4,0.0 -2019,8,13,3,30,0.0,0.0,0.0,24.4,0.0 -2019,8,13,3,45,0.0,0.0,0.0,24.4,0.0 -2019,8,13,4,0,0.0,0.0,0.0,24.5,0.0 -2019,8,13,4,15,0.0,0.0,0.0,24.5,0.0 -2019,8,13,4,30,0.0,0.0,0.0,24.5,0.0 -2019,8,13,4,45,0.0,0.0,0.0,24.5,0.0 -2019,8,13,5,0,570.0,-102.03158065395122,7.0,25.3,0.0 -2019,8,13,5,15,570.0,-74.3037912048665,7.0,25.3,0.0 -2019,8,13,5,30,570.0,-45.882159022818215,7.0,25.3,0.0 -2019,8,13,5,45,570.0,-16.88838990017851,7.0,25.3,0.0 -2019,8,13,6,0,630.0,68.13792464430367,62.0,27.5,0.0 -2019,8,13,6,15,630.0,101.03459857726213,62.0,27.5,0.0 -2019,8,13,6,30,630.0,134.14619593261315,62.0,27.5,0.0 -2019,8,13,6,45,630.0,167.33092776709606,62.0,27.5,0.0 -2019,8,13,7,0,794.0,260.4867832059053,86.0,30.2,0.0 -2019,8,13,7,15,794.0,301.95751634936005,86.0,30.2,0.0 -2019,8,13,7,30,794.0,342.98502276064954,86.0,30.2,0.0 -2019,8,13,7,45,794.0,383.3936163586634,86.0,30.2,0.0 -2019,8,13,8,0,791.0,462.7369228230504,127.0,32.0,0.2 -2019,8,13,8,15,791.0,501.2459228027369,127.0,32.0,0.2 -2019,8,13,8,30,791.0,538.6320613854886,127.0,32.0,0.2 -2019,8,13,8,45,791.0,574.7352453862695,127.0,32.0,0.2 -2019,8,13,9,0,697.0,619.0738434559839,194.0,34.2,1.6 -2019,8,13,9,15,697.0,648.2223945004189,194.0,34.2,1.6 -2019,8,13,9,30,697.0,675.8486045175443,194.0,34.2,1.6 -2019,8,13,9,45,697.0,701.834173834814,194.0,34.2,1.6 -2019,8,13,10,0,712.0,756.5183554054297,213.0,36.4,2.2 -2019,8,13,10,15,712.0,779.3779145355614,213.0,36.4,2.2 -2019,8,13,10,30,712.0,800.243962520455,213.0,36.4,2.2 -2019,8,13,10,45,712.0,819.0271477392253,213.0,36.4,2.2 -2019,8,13,11,0,585.0,795.5849958705535,284.0,38.9,2.8 -2019,8,13,11,15,585.0,807.4044819567474,284.0,38.9,2.8 -2019,8,13,11,30,585.0,817.3374541510142,284.0,38.9,2.8 -2019,8,13,11,45,585.0,825.3413779414802,284.0,38.9,2.8 -2019,8,13,12,0,543.0,809.0827602711893,301.0,39.0,4.1 -2019,8,13,12,15,543.0,812.8433017956166,301.0,39.0,4.1 -2019,8,13,12,30,543.0,814.7413644720581,301.0,39.0,4.1 -2019,8,13,12,45,543.0,814.7688205047369,301.0,39.0,4.1 -2019,8,13,13,0,539.0,791.1544616978615,283.0,39.3,4.3 -2019,8,13,13,15,539.0,787.4756633736681,283.0,39.3,4.3 -2019,8,13,13,30,539.0,781.9635096837013,283.0,39.3,4.3 -2019,8,13,13,45,539.0,774.6416045163024,283.0,39.3,4.3 -2019,8,13,14,0,478.0,693.9308758183347,266.0,38.8,5.6 -2019,8,13,14,15,478.0,684.317903678154,266.0,38.8,5.6 -2019,8,13,14,30,478.0,673.2035223080811,266.0,38.8,5.6 -2019,8,13,14,45,478.0,660.6353251954538,266.0,38.8,5.6 -2019,8,13,15,0,496.0,597.0018768195546,202.0,38.0,5.0 -2019,8,13,15,15,496.0,581.1170340016347,202.0,38.0,5.0 -2019,8,13,15,30,496.0,563.9095625407531,202.0,38.0,5.0 -2019,8,13,15,45,496.0,545.4531474714445,202.0,38.0,5.0 -2019,8,13,16,0,372.0,397.8701164973869,155.0,36.9,4.5 -2019,8,13,16,15,372.0,382.33597179105436,155.0,36.9,4.5 -2019,8,13,16,30,372.0,366.05394607706376,155.0,36.9,4.5 -2019,8,13,16,45,372.0,349.0937614891842,155.0,36.9,4.5 -2019,8,13,17,0,235.0,193.51637197116952,82.0,35.9,4.2 -2019,8,13,17,15,235.0,182.08473947900296,82.0,35.9,4.2 -2019,8,13,17,30,235.0,170.3670490179831,82.0,35.9,4.2 -2019,8,13,17,45,235.0,158.41347753759655,82.0,35.9,4.2 -2019,8,13,18,0,117.0,49.00085026268066,17.0,34.1,4.9 -2019,8,13,18,15,117.0,42.891467960845524,17.0,34.1,4.9 -2019,8,13,18,30,117.0,36.742171309137476,17.0,34.1,4.9 -2019,8,13,18,45,117.0,30.57929253987634,17.0,34.1,4.9 -2019,8,13,19,0,0.0,0.0,0.0,32.0,3.0 -2019,8,13,19,15,0.0,0.0,0.0,32.0,3.0 -2019,8,13,19,30,0.0,0.0,0.0,32.0,3.0 -2019,8,13,19,45,0.0,0.0,0.0,32.0,3.0 -2019,8,13,20,0,0.0,0.0,0.0,30.4,1.9 -2019,8,13,20,15,0.0,0.0,0.0,30.4,1.9 -2019,8,13,20,30,0.0,0.0,0.0,30.4,1.9 -2019,8,13,20,45,0.0,0.0,0.0,30.4,1.9 -2019,8,13,21,0,0.0,0.0,0.0,28.8,0.2 -2019,8,13,21,15,0.0,0.0,0.0,28.8,0.2 -2019,8,13,21,30,0.0,0.0,0.0,28.8,0.2 -2019,8,13,21,45,0.0,0.0,0.0,28.8,0.2 -2019,8,13,22,0,0.0,0.0,0.0,27.7,1.9 -2019,8,13,22,15,0.0,0.0,0.0,27.7,1.9 -2019,8,13,22,30,0.0,0.0,0.0,27.7,1.9 -2019,8,13,22,45,0.0,0.0,0.0,27.7,1.9 -2019,8,13,23,0,0.0,0.0,0.0,26.6,0.2 -2019,8,13,23,15,0.0,0.0,0.0,26.6,0.2 -2019,8,13,23,30,0.0,0.0,0.0,26.6,0.2 -2019,8,13,23,45,0.0,0.0,0.0,26.6,0.2 -2019,8,14,0,0,0.0,0.0,0.0,26.0,1.3 -2019,8,14,0,15,0.0,0.0,0.0,26.0,1.3 -2019,8,14,0,30,0.0,0.0,0.0,26.0,1.3 -2019,8,14,0,45,0.0,0.0,0.0,26.0,1.3 -2019,8,14,1,0,0.0,0.0,0.0,25.0,0.0 -2019,8,14,1,15,0.0,0.0,0.0,25.0,0.0 -2019,8,14,1,30,0.0,0.0,0.0,25.0,0.0 -2019,8,14,1,45,0.0,0.0,0.0,25.0,0.0 -2019,8,14,2,0,0.0,0.0,0.0,24.9,0.0 -2019,8,14,2,15,0.0,0.0,0.0,24.9,0.0 -2019,8,14,2,30,0.0,0.0,0.0,24.9,0.0 -2019,8,14,2,45,0.0,0.0,0.0,24.9,0.0 -2019,8,14,3,0,0.0,0.0,0.0,24.3,0.0 -2019,8,14,3,15,0.0,0.0,0.0,24.3,0.0 -2019,8,14,3,30,0.0,0.0,0.0,24.3,0.0 -2019,8,14,3,45,0.0,0.0,0.0,24.3,0.0 -2019,8,14,4,0,0.0,0.0,0.0,23.4,0.0 -2019,8,14,4,15,0.0,0.0,0.0,23.4,0.0 -2019,8,14,4,30,0.0,0.0,0.0,23.4,0.0 -2019,8,14,4,45,0.0,0.0,0.0,23.4,0.0 -2019,8,14,5,0,422.0,-72.1661955031957,10.0,24.1,0.0 -2019,8,14,5,15,422.0,-51.60837319040125,10.0,24.1,0.0 -2019,8,14,5,30,422.0,-30.53612488474223,10.0,24.1,0.0 -2019,8,14,5,45,422.0,-9.03968518853388,10.0,24.1,0.0 -2019,8,14,6,0,481.0,80.17881142086215,77.0,25.9,0.0 -2019,8,14,6,15,481.0,105.3312896780835,77.0,25.9,0.0 -2019,8,14,6,30,481.0,130.64809630235223,77.0,25.9,0.0 -2019,8,14,6,45,481.0,156.02082084099652,77.0,25.9,0.0 -2019,8,14,7,0,704.0,256.7150366489485,104.0,28.6,0.2 -2019,8,14,7,15,704.0,293.5379490686331,104.0,28.6,0.2 -2019,8,14,7,30,704.0,329.9673092671856,104.0,28.6,0.2 -2019,8,14,7,45,704.0,365.8471211314986,104.0,28.6,0.2 -2019,8,14,8,0,767.0,457.60399142,134.0,31.0,1.3 -2019,8,14,8,15,767.0,494.9982895697131,134.0,31.0,1.3 -2019,8,14,8,30,767.0,531.3022292608857,134.0,31.0,1.3 -2019,8,14,8,45,767.0,566.360351450278,134.0,31.0,1.3 -2019,8,14,9,0,808.0,642.9337754317797,152.0,34.6,0.4 -2019,8,14,9,15,808.0,676.7729545283615,152.0,34.6,0.4 -2019,8,14,9,30,808.0,708.8448152223692,152.0,34.6,0.4 -2019,8,14,9,45,808.0,739.0120208825496,152.0,34.6,0.4 -2019,8,14,10,0,803.0,785.3387981374234,174.0,36.3,3.0 -2019,8,14,10,15,803.0,811.157099580141,174.0,36.3,3.0 -2019,8,14,10,30,803.0,834.723867151003,174.0,36.3,3.0 -2019,8,14,10,45,803.0,855.9381843332351,174.0,36.3,3.0 -2019,8,14,11,0,831.0,896.1424059577864,171.0,37.9,2.3 -2019,8,14,11,15,831.0,912.9562887855514,171.0,37.9,2.3 -2019,8,14,11,30,831.0,927.0864996414133,171.0,37.9,2.3 -2019,8,14,11,45,831.0,938.4725307931782,171.0,37.9,2.3 -2019,8,14,12,0,714.0,888.8000681255251,222.0,38.8,4.4 -2019,8,14,12,15,714.0,893.7519814669585,222.0,38.8,4.4 -2019,8,14,12,30,714.0,896.2513666829688,222.0,38.8,4.4 -2019,8,14,12,45,714.0,896.2875210223485,222.0,38.8,4.4 -2019,8,14,13,0,702.0,873.5685200924363,213.0,38.2,6.6 -2019,8,14,13,15,702.0,868.7703173782094,213.0,38.2,6.6 -2019,8,14,13,30,702.0,861.5808961417966,213.0,38.2,6.6 -2019,8,14,13,45,702.0,852.0310425886724,213.0,38.2,6.6 -2019,8,14,14,0,637.0,778.0911274488093,209.0,37.1,6.2 -2019,8,14,14,15,637.0,765.2621073793578,209.0,37.1,6.2 -2019,8,14,14,30,637.0,750.4293772333695,209.0,37.1,6.2 -2019,8,14,14,45,637.0,733.6564530384918,209.0,37.1,6.2 -2019,8,14,15,0,677.0,688.7900512780076,151.0,36.3,6.1 -2019,8,14,15,15,677.0,667.0773339148263,151.0,36.3,6.1 -2019,8,14,15,30,677.0,643.5567382974973,151.0,36.3,6.1 -2019,8,14,15,45,677.0,618.3289832274011,151.0,36.3,6.1 -2019,8,14,16,0,642.0,523.7287249682585,106.0,35.2,5.3 -2019,8,14,16,15,642.0,496.8812343190665,106.0,35.2,5.3 -2019,8,14,16,30,642.0,468.74118918815753,106.0,35.2,5.3 -2019,8,14,16,45,642.0,439.42908956892046,106.0,35.2,5.3 -2019,8,14,17,0,433.0,271.40733137550774,67.0,34.2,4.5 -2019,8,14,17,15,433.0,250.31364165645556,67.0,34.2,4.5 -2019,8,14,17,30,433.0,228.69211673619404,67.0,34.2,4.5 -2019,8,14,17,45,433.0,206.63534330382865,67.0,34.2,4.5 -2019,8,14,18,0,217.0,72.75426441414055,14.0,32.5,3.5 -2019,8,14,18,15,217.0,61.406888568367094,14.0,32.5,3.5 -2019,8,14,18,30,217.0,49.98537705596312,14.0,32.5,3.5 -2019,8,14,18,45,217.0,38.538638542687,14.0,32.5,3.5 -2019,8,14,19,0,0.0,0.0,0.0,29.9,3.0 -2019,8,14,19,15,0.0,0.0,0.0,29.9,3.0 -2019,8,14,19,30,0.0,0.0,0.0,29.9,3.0 -2019,8,14,19,45,0.0,0.0,0.0,29.9,3.0 -2019,8,14,20,0,0.0,0.0,0.0,29.2,1.9 -2019,8,14,20,15,0.0,0.0,0.0,29.2,1.9 -2019,8,14,20,30,0.0,0.0,0.0,29.2,1.9 -2019,8,14,20,45,0.0,0.0,0.0,29.2,1.9 -2019,8,14,21,0,0.0,0.0,0.0,27.7,0.0 -2019,8,14,21,15,0.0,0.0,0.0,27.7,0.0 -2019,8,14,21,30,0.0,0.0,0.0,27.7,0.0 -2019,8,14,21,45,0.0,0.0,0.0,27.7,0.0 -2019,8,14,22,0,0.0,0.0,0.0,26.6,0.0 -2019,8,14,22,15,0.0,0.0,0.0,26.6,0.0 -2019,8,14,22,30,0.0,0.0,0.0,26.6,0.0 -2019,8,14,22,45,0.0,0.0,0.0,26.6,0.0 -2019,8,14,23,0,0.0,0.0,0.0,25.5,0.0 -2019,8,14,23,15,0.0,0.0,0.0,25.5,0.0 -2019,8,14,23,30,0.0,0.0,0.0,25.5,0.0 -2019,8,14,23,45,0.0,0.0,0.0,25.5,0.0 -2019,8,15,0,0,0.0,0.0,0.0,24.8,0.0 -2019,8,15,0,15,0.0,0.0,0.0,24.8,0.0 -2019,8,15,0,30,0.0,0.0,0.0,24.8,0.0 -2019,8,15,0,45,0.0,0.0,0.0,24.8,0.0 -2019,8,15,1,0,0.0,0.0,0.0,23.1,0.0 -2019,8,15,1,15,0.0,0.0,0.0,23.1,0.0 -2019,8,15,1,30,0.0,0.0,0.0,23.1,0.0 -2019,8,15,1,45,0.0,0.0,0.0,23.1,0.0 -2019,8,15,2,0,0.0,0.0,0.0,21.7,0.0 -2019,8,15,2,15,0.0,0.0,0.0,21.7,0.0 -2019,8,15,2,30,0.0,0.0,0.0,21.7,0.0 -2019,8,15,2,45,0.0,0.0,0.0,21.7,0.0 -2019,8,15,3,0,0.0,0.0,0.0,21.6,0.0 -2019,8,15,3,15,0.0,0.0,0.0,21.6,0.0 -2019,8,15,3,30,0.0,0.0,0.0,21.6,0.0 -2019,8,15,3,45,0.0,0.0,0.0,21.6,0.0 -2019,8,15,4,0,0.0,0.0,0.0,21.2,0.2 -2019,8,15,4,15,0.0,0.0,0.0,21.2,0.2 -2019,8,15,4,30,0.0,0.0,0.0,21.2,0.2 -2019,8,15,4,45,0.0,0.0,0.0,21.2,0.2 -2019,8,15,5,0,187.0,-15.057882342566785,22.0,21.8,1.9 -2019,8,15,5,15,187.0,-5.935153424900058,22.0,21.8,1.9 -2019,8,15,5,30,187.0,3.415856913322802,22.0,21.8,1.9 -2019,8,15,5,45,187.0,12.955106210240316,22.0,21.8,1.9 -2019,8,15,6,0,374.0,88.28349187174172,87.0,23.2,0.0 -2019,8,15,6,15,374.0,107.86859282357852,87.0,23.2,0.0 -2019,8,15,6,30,374.0,127.58164886695596,87.0,23.2,0.0 -2019,8,15,6,45,374.0,147.33824566949278,87.0,23.2,0.0 -2019,8,15,7,0,388.0,249.05044810382338,166.0,26.4,0.2 -2019,8,15,7,15,388.0,269.3738173554284,166.0,26.4,0.2 -2019,8,15,7,30,388.0,289.4799765444859,166.0,26.4,0.2 -2019,8,15,7,45,388.0,309.2828280105947,166.0,26.4,0.2 -2019,8,15,8,0,473.0,418.3400824314359,220.0,29.2,1.6 -2019,8,15,8,15,473.0,441.43357769683735,220.0,29.2,1.6 -2019,8,15,8,30,473.0,463.85370324691246,220.0,29.2,1.6 -2019,8,15,8,45,473.0,485.50445266205577,220.0,29.2,1.6 -2019,8,15,9,0,573.0,586.8201995447766,240.0,31.9,2.3 -2019,8,15,9,15,573.0,610.8517386702122,240.0,31.9,2.3 -2019,8,15,9,30,573.0,633.6281828887252,240.0,31.9,2.3 -2019,8,15,9,45,573.0,655.0519999694687,240.0,31.9,2.3 -2019,8,15,10,0,491.0,679.7756402631437,307.0,33.4,4.1 -2019,8,15,10,15,491.0,695.5849213185079,307.0,33.4,4.1 -2019,8,15,10,30,491.0,710.0155240799184,307.0,33.4,4.1 -2019,8,15,10,45,491.0,723.0056544909237,307.0,33.4,4.1 -2019,8,15,11,0,514.0,763.5251303968945,316.0,34.0,4.2 -2019,8,15,11,15,514.0,773.9398748517979,316.0,34.0,4.2 -2019,8,15,11,30,514.0,782.6923169060924,316.0,34.0,4.2 -2019,8,15,11,45,514.0,789.7449772592017,316.0,34.0,4.2 -2019,8,15,12,0,696.0,879.6986150085171,231.0,34.3,4.4 -2019,8,15,12,15,696.0,884.5325696408232,231.0,34.3,4.4 -2019,8,15,12,30,696.0,886.9724174147653,231.0,34.3,4.4 -2019,8,15,12,45,696.0,887.0077105276032,231.0,34.3,4.4 -2019,8,15,13,0,25.0,380.4783871353739,357.0,33.9,3.4 -2019,8,15,13,15,25.0,380.30726744135177,357.0,33.9,3.4 -2019,8,15,13,30,25.0,380.05086902814526,357.0,33.9,3.4 -2019,8,15,13,45,25.0,379.7102898331226,357.0,33.9,3.4 -2019,8,15,14,0,200.0,520.2959061494696,342.0,33.8,5.7 -2019,8,15,14,15,200.0,516.2622158169107,342.0,33.8,5.7 -2019,8,15,14,30,200.0,511.5985205485717,342.0,33.8,5.7 -2019,8,15,14,45,200.0,506.32479100357506,342.0,33.8,5.7 -2019,8,15,15,0,822.0,762.2854375170424,111.0,33.0,5.6 -2019,8,15,15,15,822.0,735.8847136698766,111.0,33.0,5.6 -2019,8,15,15,30,822.0,707.2857714358225,111.0,33.0,5.6 -2019,8,15,15,45,822.0,676.6110758761158,111.0,33.0,5.6 -2019,8,15,16,0,360.0,387.42714485244136,154.0,31.9,4.8 -2019,8,15,16,15,360.0,372.351021614519,154.0,31.9,4.8 -2019,8,15,16,30,360.0,356.5490685062107,154.0,31.9,4.8 -2019,8,15,16,45,360.0,340.0889519166861,154.0,31.9,4.8 -2019,8,15,17,0,48.0,93.5388208789579,71.0,31.0,4.0 -2019,8,15,17,15,48.0,91.19715784126804,71.0,31.0,4.0 -2019,8,15,17,30,48.0,88.79689850311458,71.0,31.0,4.0 -2019,8,15,17,45,48.0,86.348321143478,71.0,31.0,4.0 -2019,8,15,18,0,24.0,24.430955473262355,18.0,30.3,3.0 -2019,8,15,18,15,24.0,23.174157551219345,18.0,30.3,3.0 -2019,8,15,18,30,24.0,21.9091486072593,18.0,30.3,3.0 -2019,8,15,18,45,24.0,20.641345603887956,18.0,30.3,3.0 -2019,8,15,19,0,0.0,0.0,0.0,28.2,2.0 -2019,8,15,19,15,0.0,0.0,0.0,28.2,2.0 -2019,8,15,19,30,0.0,0.0,0.0,28.2,2.0 -2019,8,15,19,45,0.0,0.0,0.0,28.2,2.0 -2019,8,15,20,0,0.0,0.0,0.0,27.1,1.5 -2019,8,15,20,15,0.0,0.0,0.0,27.1,1.5 -2019,8,15,20,30,0.0,0.0,0.0,27.1,1.5 -2019,8,15,20,45,0.0,0.0,0.0,27.1,1.5 -2019,8,15,21,0,0.0,0.0,0.0,26.1,1.3 -2019,8,15,21,15,0.0,0.0,0.0,26.1,1.3 -2019,8,15,21,30,0.0,0.0,0.0,26.1,1.3 -2019,8,15,21,45,0.0,0.0,0.0,26.1,1.3 -2019,8,15,22,0,0.0,0.0,0.0,26.0,0.0 -2019,8,15,22,15,0.0,0.0,0.0,26.0,0.0 -2019,8,15,22,30,0.0,0.0,0.0,26.0,0.0 -2019,8,15,22,45,0.0,0.0,0.0,26.0,0.0 -2019,8,15,23,0,0.0,0.0,0.0,25.5,0.0 -2019,8,15,23,15,0.0,0.0,0.0,25.5,0.0 -2019,8,15,23,30,0.0,0.0,0.0,25.5,0.0 -2019,8,15,23,45,0.0,0.0,0.0,25.5,0.0 -2019,8,16,0,0,0.0,0.0,0.0,24.3,0.0 -2019,8,16,0,15,0.0,0.0,0.0,24.3,0.0 -2019,8,16,0,30,0.0,0.0,0.0,24.3,0.0 -2019,8,16,0,45,0.0,0.0,0.0,24.3,0.0 -2019,8,16,1,0,0.0,0.0,0.0,23.9,0.0 -2019,8,16,1,15,0.0,0.0,0.0,23.9,0.0 -2019,8,16,1,30,0.0,0.0,0.0,23.9,0.0 -2019,8,16,1,45,0.0,0.0,0.0,23.9,0.0 -2019,8,16,2,0,0.0,0.0,0.0,23.9,0.0 -2019,8,16,2,15,0.0,0.0,0.0,23.9,0.0 -2019,8,16,2,30,0.0,0.0,0.0,23.9,0.0 -2019,8,16,2,45,0.0,0.0,0.0,23.9,0.0 -2019,8,16,3,0,0.0,0.0,0.0,24.0,0.0 -2019,8,16,3,15,0.0,0.0,0.0,24.0,0.0 -2019,8,16,3,30,0.0,0.0,0.0,24.0,0.0 -2019,8,16,3,45,0.0,0.0,0.0,24.0,0.0 -2019,8,16,4,0,0.0,0.0,0.0,24.3,0.0 -2019,8,16,4,15,0.0,0.0,0.0,24.3,0.0 -2019,8,16,4,30,0.0,0.0,0.0,24.3,0.0 -2019,8,16,4,45,0.0,0.0,0.0,24.3,0.0 -2019,8,16,5,0,14.0,6.176568120483777,9.0,23.6,0.0 -2019,8,16,5,15,14.0,6.860516351971549,9.0,23.6,0.0 -2019,8,16,5,30,14.0,7.561579273074674,9.0,23.6,0.0 -2019,8,16,5,45,14.0,8.276754824735848,9.0,23.6,0.0 -2019,8,16,6,0,14.0,67.00298051544712,67.0,25.8,0.0 -2019,8,16,6,15,14.0,67.73714653530865,67.0,25.8,0.0 -2019,8,16,6,30,14.0,68.47610907271219,67.0,25.8,0.0 -2019,8,16,6,45,14.0,69.21670377662497,67.0,25.8,0.0 -2019,8,16,7,0,14.0,142.95575930682668,140.0,27.5,0.0 -2019,8,16,7,15,14.0,143.69011091407512,140.0,27.5,0.0 -2019,8,16,7,30,14.0,144.41661399204835,140.0,27.5,0.0 -2019,8,16,7,45,14.0,145.13215754303172,140.0,27.5,0.0 -2019,8,16,8,0,26.0,251.8339724994199,241.0,30.3,0.2 -2019,8,16,8,15,26.0,253.10517257088736,241.0,30.3,0.2 -2019,8,16,8,30,26.0,254.33930646331137,241.0,30.3,0.2 -2019,8,16,8,45,26.0,255.53108942589685,241.0,30.3,0.2 -2019,8,16,9,0,35.0,348.101524312928,327.0,33.0,1.5 -2019,8,16,9,15,35.0,349.571489470144,327.0,33.0,1.5 -2019,8,16,9,30,35.0,350.9646827746482,327.0,33.0,1.5 -2019,8,16,9,45,35.0,352.2751383588238,327.0,33.0,1.5 -2019,8,16,10,0,39.0,414.5255011821803,385.0,34.8,1.6 -2019,8,16,10,15,39.0,415.78299907811623,385.0,34.8,1.6 -2019,8,16,10,30,39.0,416.9308344885952,385.0,34.8,1.6 -2019,8,16,10,45,39.0,417.96409220617056,385.0,34.8,1.6 -2019,8,16,11,0,72.0,496.54464183876996,434.0,37.9,2.2 -2019,8,16,11,15,72.0,498.0055739246664,434.0,37.9,2.2 -2019,8,16,11,30,72.0,499.2333259336029,434.0,37.9,2.2 -2019,8,16,11,45,72.0,500.2226404429892,434.0,37.9,2.2 -2019,8,16,12,0,70.0,495.1090232490968,430.0,38.2,3.5 -2019,8,16,12,15,70.0,495.5958824728907,430.0,38.2,3.5 -2019,8,16,12,30,70.0,495.84161551834757,430.0,38.2,3.5 -2019,8,16,12,45,70.0,495.845170118841,430.0,38.2,3.5 -2019,8,16,13,0,70.0,462.6065310530262,397.0,37.7,6.0 -2019,8,16,13,15,70.0,462.12672021001936,397.0,37.7,6.0 -2019,8,16,13,30,70.0,461.40779221351215,397.0,37.7,6.0 -2019,8,16,13,45,70.0,460.4528256235575,397.0,37.7,6.0 -2019,8,16,14,0,113.0,446.5149686024058,346.0,37.2,4.5 -2019,8,16,14,15,113.0,444.2327195581584,346.0,37.2,4.5 -2019,8,16,14,30,113.0,441.59401574321396,346.0,37.2,4.5 -2019,8,16,14,45,113.0,438.61015649240915,346.0,37.2,4.5 -2019,8,16,15,0,631.0,660.6235662222247,162.0,37.2,4.2 -2019,8,16,15,15,631.0,640.3287366848215,162.0,37.2,4.2 -2019,8,16,15,30,631.0,618.3440872884572,162.0,37.2,4.2 -2019,8,16,15,45,631.0,594.7637596769921,162.0,37.2,4.2 -2019,8,16,16,0,725.0,556.4220730811371,88.0,36.3,4.7 -2019,8,16,16,15,725.0,526.0176185435221,88.0,36.3,4.7 -2019,8,16,16,30,725.0,494.14936187667774,88.0,36.3,4.7 -2019,8,16,16,45,725.0,460.9537678481549,88.0,36.3,4.7 -2019,8,16,17,0,505.0,294.83359650947773,59.0,35.3,4.9 -2019,8,16,17,15,505.0,270.1626067308118,59.0,35.3,4.9 -2019,8,16,17,30,505.0,244.87426564816332,59.0,35.3,4.9 -2019,8,16,17,45,505.0,219.07686182038526,59.0,35.3,4.9 -2019,8,16,18,0,252.0,76.80787653499335,10.0,32.5,3.1 -2019,8,16,18,15,252.0,63.59288817748576,10.0,32.5,3.1 -2019,8,16,18,30,252.0,50.29156250422209,10.0,32.5,3.1 -2019,8,16,18,45,252.0,36.960857833791934,10.0,32.5,3.1 -2019,8,16,19,0,0.0,0.0,0.0,30.6,2.7 -2019,8,16,19,15,0.0,0.0,0.0,30.6,2.7 -2019,8,16,19,30,0.0,0.0,0.0,30.6,2.7 -2019,8,16,19,45,0.0,0.0,0.0,30.6,2.7 -2019,8,16,20,0,0.0,0.0,0.0,30.5,0.0 -2019,8,16,20,15,0.0,0.0,0.0,30.5,0.0 -2019,8,16,20,30,0.0,0.0,0.0,30.5,0.0 -2019,8,16,20,45,0.0,0.0,0.0,30.5,0.0 -2019,8,16,21,0,0.0,0.0,0.0,29.9,0.0 -2019,8,16,21,15,0.0,0.0,0.0,29.9,0.0 -2019,8,16,21,30,0.0,0.0,0.0,29.9,0.0 -2019,8,16,21,45,0.0,0.0,0.0,29.9,0.0 -2019,8,16,22,0,0.0,0.0,0.0,29.3,0.2 -2019,8,16,22,15,0.0,0.0,0.0,29.3,0.2 -2019,8,16,22,30,0.0,0.0,0.0,29.3,0.2 -2019,8,16,22,45,0.0,0.0,0.0,29.3,0.2 -2019,8,16,23,0,0.0,0.0,0.0,28.8,1.6 -2019,8,16,23,15,0.0,0.0,0.0,28.8,1.6 -2019,8,16,23,30,0.0,0.0,0.0,28.8,1.6 -2019,8,16,23,45,0.0,0.0,0.0,28.8,1.6 -2019,8,17,0,0,0.0,0.0,0.0,27.8,1.9 -2019,8,17,0,15,0.0,0.0,0.0,27.8,1.9 -2019,8,17,0,30,0.0,0.0,0.0,27.8,1.9 -2019,8,17,0,45,0.0,0.0,0.0,27.8,1.9 -2019,8,17,1,0,0.0,0.0,0.0,27.7,0.0 -2019,8,17,1,15,0.0,0.0,0.0,27.7,0.0 -2019,8,17,1,30,0.0,0.0,0.0,27.7,0.0 -2019,8,17,1,45,0.0,0.0,0.0,27.7,0.0 -2019,8,17,2,0,0.0,0.0,0.0,26.7,0.0 -2019,8,17,2,15,0.0,0.0,0.0,26.7,0.0 -2019,8,17,2,30,0.0,0.0,0.0,26.7,0.0 -2019,8,17,2,45,0.0,0.0,0.0,26.7,0.0 -2019,8,17,3,0,0.0,0.0,0.0,26.7,0.0 -2019,8,17,3,15,0.0,0.0,0.0,26.7,0.0 -2019,8,17,3,30,0.0,0.0,0.0,26.7,0.0 -2019,8,17,3,45,0.0,0.0,0.0,26.7,0.0 -2019,8,17,4,0,0.0,0.0,0.0,26.7,0.0 -2019,8,17,4,15,0.0,0.0,0.0,26.7,0.0 -2019,8,17,4,30,0.0,0.0,0.0,26.7,0.0 -2019,8,17,4,45,0.0,0.0,0.0,26.7,0.0 -2019,8,17,5,0,13.0,36.33220675538949,39.0,26.9,0.0 -2019,8,17,5,15,13.0,36.968186667610084,39.0,26.9,0.0 -2019,8,17,5,30,13.0,37.620080940447664,39.0,26.9,0.0 -2019,8,17,5,45,13.0,38.28509806254533,39.0,26.9,0.0 -2019,8,17,6,0,27.0,76.91773375917354,77.0,28.6,0.0 -2019,8,17,6,15,27.0,78.33559868419108,77.0,28.6,0.0 -2019,8,17,6,30,27.0,79.76272692813247,77.0,28.6,0.0 -2019,8,17,6,45,27.0,81.19300730876044,77.0,28.6,0.0 -2019,8,17,7,0,174.0,227.21980871805135,191.0,31.5,0.0 -2019,8,17,7,15,174.0,236.3594702578158,191.0,31.5,0.0 -2019,8,17,7,30,174.0,245.40144984188987,191.0,31.5,0.0 -2019,8,17,7,45,174.0,254.30702832554462,191.0,31.5,0.0 -2019,8,17,8,0,802.0,455.0375440512186,123.0,34.5,0.2 -2019,8,17,8,15,802.0,494.3038259219008,123.0,34.5,0.2 -2019,8,17,8,30,802.0,532.4251652561107,123.0,34.5,0.2 -2019,8,17,8,45,802.0,569.238320626325,123.0,34.5,0.2 -2019,8,17,9,0,421.0,545.8024434928643,293.0,35.8,1.5 -2019,8,17,9,15,421.0,563.5086670427422,293.0,35.8,1.5 -2019,8,17,9,30,421.0,580.290147866726,293.0,35.8,1.5 -2019,8,17,9,45,421.0,596.0750250875876,293.0,35.8,1.5 -2019,8,17,10,0,377.0,636.5819024941184,352.0,37.2,1.9 -2019,8,17,10,15,377.0,648.7546569343987,352.0,37.2,1.9 -2019,8,17,10,30,377.0,659.8658632710255,352.0,37.2,1.9 -2019,8,17,10,45,377.0,669.8679416126422,352.0,37.2,1.9 -2019,8,17,11,0,389.0,705.1175754189132,368.0,37.2,5.2 -2019,8,17,11,15,389.0,713.0216673572882,368.0,37.2,5.2 -2019,8,17,11,30,389.0,719.6641833577523,368.0,37.2,5.2 -2019,8,17,11,45,389.0,725.016679147014,368.0,37.2,5.2 -2019,8,17,12,0,650.0,854.3073327394416,251.0,37.0,6.2 -2019,8,17,12,15,650.0,858.8344690365657,251.0,37.0,6.2 -2019,8,17,12,30,650.0,861.1194560207323,251.0,37.0,6.2 -2019,8,17,12,45,650.0,861.1525090268774,251.0,37.0,6.2 -2019,8,17,13,0,564.0,797.4992098393267,270.0,35.6,6.2 -2019,8,17,13,15,564.0,793.6279174567941,270.0,35.6,6.2 -2019,8,17,13,30,564.0,787.8273389224987,270.0,35.6,6.2 -2019,8,17,13,45,564.0,780.1223132042454,270.0,35.6,6.2 -2019,8,17,14,0,146.0,474.573921672231,345.0,35.6,5.9 -2019,8,17,14,15,146.0,471.62106547818155,345.0,35.6,5.9 -2019,8,17,14,30,146.0,468.2070152351283,345.0,35.6,5.9 -2019,8,17,14,45,146.0,464.3463904303467,345.0,35.6,5.9 -2019,8,17,15,0,840.0,766.9644328468039,105.0,35.7,3.7 -2019,8,17,15,15,840.0,739.909890888045,105.0,35.7,3.7 -2019,8,17,15,30,840.0,710.6026913155453,105.0,35.7,3.7 -2019,8,17,15,45,840.0,679.1683320571974,105.0,35.7,3.7 -2019,8,17,16,0,869.0,621.4098736462977,62.0,35.6,4.8 -2019,8,17,16,15,869.0,584.9156745325248,62.0,35.6,4.8 -2019,8,17,16,30,869.0,546.664486609721,62.0,35.6,4.8 -2019,8,17,16,45,869.0,506.8201073370018,62.0,35.6,4.8 -2019,8,17,17,0,597.0,327.2396253264316,50.0,35.4,5.3 -2019,8,17,17,15,597.0,298.033470895994,50.0,35.4,5.3 -2019,8,17,17,30,597.0,268.09648005876033,50.0,35.4,5.3 -2019,8,17,17,45,597.0,237.55684760550605,50.0,35.4,5.3 -2019,8,17,18,0,580.0,152.08760867661132,0.0,33.6,2.7 -2019,8,17,18,15,580.0,121.62976954660498,0.0,33.6,2.7 -2019,8,17,18,30,580.0,90.97294060267888,0.0,33.6,2.7 -2019,8,17,18,45,580.0,60.24839909289267,0.0,33.6,2.7 -2019,8,17,19,0,0.0,0.0,0.0,31.4,3.0 -2019,8,17,19,15,0.0,0.0,0.0,31.4,3.0 -2019,8,17,19,30,0.0,0.0,0.0,31.4,3.0 -2019,8,17,19,45,0.0,0.0,0.0,31.4,3.0 -2019,8,17,20,0,0.0,0.0,0.0,29.3,2.3 -2019,8,17,20,15,0.0,0.0,0.0,29.3,2.3 -2019,8,17,20,30,0.0,0.0,0.0,29.3,2.3 -2019,8,17,20,45,0.0,0.0,0.0,29.3,2.3 -2019,8,17,21,0,0.0,0.0,0.0,28.8,0.0 -2019,8,17,21,15,0.0,0.0,0.0,28.8,0.0 -2019,8,17,21,30,0.0,0.0,0.0,28.8,0.0 -2019,8,17,21,45,0.0,0.0,0.0,28.8,0.0 -2019,8,17,22,0,0.0,0.0,0.0,28.2,0.0 -2019,8,17,22,15,0.0,0.0,0.0,28.2,0.0 -2019,8,17,22,30,0.0,0.0,0.0,28.2,0.0 -2019,8,17,22,45,0.0,0.0,0.0,28.2,0.0 -2019,8,17,23,0,0.0,0.0,0.0,27.2,0.0 -2019,8,17,23,15,0.0,0.0,0.0,27.2,0.0 -2019,8,17,23,30,0.0,0.0,0.0,27.2,0.0 -2019,8,17,23,45,0.0,0.0,0.0,27.2,0.0 -2019,8,18,0,0,0.0,0.0,0.0,27.1,0.0 -2019,8,18,0,15,0.0,0.0,0.0,27.1,0.0 -2019,8,18,0,30,0.0,0.0,0.0,27.1,0.0 -2019,8,18,0,45,0.0,0.0,0.0,27.1,0.0 -2019,8,18,1,0,0.0,0.0,0.0,26.0,0.0 -2019,8,18,1,15,0.0,0.0,0.0,26.0,0.0 -2019,8,18,1,30,0.0,0.0,0.0,26.0,0.0 -2019,8,18,1,45,0.0,0.0,0.0,26.0,0.0 -2019,8,18,2,0,0.0,0.0,0.0,25.6,0.0 -2019,8,18,2,15,0.0,0.0,0.0,25.6,0.0 -2019,8,18,2,30,0.0,0.0,0.0,25.6,0.0 -2019,8,18,2,45,0.0,0.0,0.0,25.6,0.0 -2019,8,18,3,0,0.0,0.0,0.0,25.4,0.0 -2019,8,18,3,15,0.0,0.0,0.0,25.4,0.0 -2019,8,18,3,30,0.0,0.0,0.0,25.4,0.0 -2019,8,18,3,45,0.0,0.0,0.0,25.4,0.0 -2019,8,18,4,0,0.0,0.0,0.0,24.0,0.0 -2019,8,18,4,15,0.0,0.0,0.0,24.0,0.0 -2019,8,18,4,30,0.0,0.0,0.0,24.0,0.0 -2019,8,18,4,45,0.0,0.0,0.0,24.0,0.0 -2019,8,18,5,0,266.0,-33.5388208719269,22.0,25.2,0.0 -2019,8,18,5,15,266.0,-20.507793510925055,22.0,25.2,0.0 -2019,8,18,5,30,266.0,-7.150685931589148,22.0,25.2,0.0 -2019,8,18,5,45,266.0,6.475304680805593,22.0,25.2,0.0 -2019,8,18,6,0,533.0,65.61731298038646,69.0,26.8,0.0 -2019,8,18,6,15,533.0,93.64551750310272,69.0,26.8,0.0 -2019,8,18,6,30,533.0,121.85683833878763,69.0,26.8,0.0 -2019,8,18,6,45,533.0,150.13047028054226,69.0,26.8,0.0 -2019,8,18,7,0,672.0,246.861293340977,109.0,28.1,0.0 -2019,8,18,7,15,672.0,282.20784993481413,109.0,28.1,0.0 -2019,8,18,7,30,672.0,317.1766331548798,109.0,28.1,0.0 -2019,8,18,7,45,672.0,351.61790130292036,109.0,28.1,0.0 -2019,8,18,8,0,692.0,439.60989097350415,155.0,30.8,0.2 -2019,8,18,8,15,692.0,473.53712698283874,155.0,30.8,0.2 -2019,8,18,8,30,692.0,506.4750985698389,155.0,30.8,0.2 -2019,8,18,8,45,692.0,538.2827602834396,155.0,30.8,0.2 -2019,8,18,9,0,732.0,616.7443638753514,179.0,32.5,1.6 -2019,8,18,9,15,732.0,647.5728289609995,179.0,32.5,1.6 -2019,8,18,9,30,732.0,676.7912161687689,179.0,32.5,1.6 -2019,8,18,9,45,732.0,704.2744078789476,179.0,32.5,1.6 -2019,8,18,10,0,833.0,787.9175261368376,161.0,34.6,2.3 -2019,8,18,10,15,833.0,814.8508210314711,161.0,34.6,2.3 -2019,8,18,10,30,833.0,839.4353469387069,161.0,34.6,2.3 -2019,8,18,10,45,833.0,861.5658291443251,161.0,34.6,2.3 -2019,8,18,11,0,812.0,880.9925224959209,179.0,36.1,4.0 -2019,8,18,11,15,812.0,897.5142473389374,179.0,36.1,4.0 -2019,8,18,11,30,812.0,911.398931687329,179.0,36.1,4.0 -2019,8,18,11,45,812.0,922.5871191911002,179.0,36.1,4.0 -2019,8,18,12,0,517.0,788.817703771173,310.0,36.1,3.7 -2019,8,18,12,15,517.0,792.4234713563417,310.0,36.1,3.7 -2019,8,18,12,30,517.0,794.2434147950391,310.0,36.1,3.7 -2019,8,18,12,45,517.0,794.269740810058,310.0,36.1,3.7 -2019,8,18,13,0,791.0,913.2192423703367,175.0,36.0,4.8 -2019,8,18,13,15,791.0,907.782355123852,175.0,36.0,4.8 -2019,8,18,13,30,791.0,899.6359563662587,175.0,36.0,4.8 -2019,8,18,13,45,791.0,888.8149302276948,175.0,36.0,4.8 -2019,8,18,14,0,730.0,819.3551178539224,173.0,34.9,6.6 -2019,8,18,14,15,730.0,804.570528195923,173.0,34.9,6.6 -2019,8,18,14,30,730.0,787.4767963653476,173.0,34.9,6.6 -2019,8,18,14,45,730.0,768.1471203461723,173.0,34.9,6.6 -2019,8,18,15,0,760.0,723.239516865451,126.0,34.3,6.1 -2019,8,18,15,15,760.0,698.7279278777895,126.0,34.3,6.1 -2019,8,18,15,30,760.0,672.1754166064644,126.0,34.3,6.1 -2019,8,18,15,45,760.0,643.6956849811553,126.0,34.3,6.1 -2019,8,18,16,0,592.0,490.66727243460775,111.0,33.6,5.6 -2019,8,18,16,15,592.0,465.77166418461496,111.0,33.6,5.6 -2019,8,18,16,30,592.0,439.6774735255966,111.0,33.6,5.6 -2019,8,18,16,45,592.0,412.4964397880076,111.0,33.6,5.6 -2019,8,18,17,0,257.0,192.66495570460074,74.0,33.2,5.3 -2019,8,18,17,15,257.0,180.07482776558766,74.0,33.2,5.3 -2019,8,18,17,30,257.0,167.16965239758264,74.0,33.2,5.3 -2019,8,18,17,45,257.0,154.00469154275015,74.0,33.2,5.3 -2019,8,18,18,0,128.0,43.188517147189785,10.0,31.4,5.0 -2019,8,18,18,15,128.0,36.45754120177202,10.0,31.4,5.0 -2019,8,18,18,30,128.0,29.682589856616886,10.0,31.4,5.0 -2019,8,18,18,45,128.0,22.89267449349382,10.0,31.4,5.0 -2019,8,18,19,0,0.0,0.0,0.0,29.3,3.9 -2019,8,18,19,15,0.0,0.0,0.0,29.3,3.9 -2019,8,18,19,30,0.0,0.0,0.0,29.3,3.9 -2019,8,18,19,45,0.0,0.0,0.0,29.3,3.9 -2019,8,18,20,0,0.0,0.0,0.0,28.8,2.3 -2019,8,18,20,15,0.0,0.0,0.0,28.8,2.3 -2019,8,18,20,30,0.0,0.0,0.0,28.8,2.3 -2019,8,18,20,45,0.0,0.0,0.0,28.8,2.3 -2019,8,18,21,0,0.0,0.0,0.0,27.6,0.2 -2019,8,18,21,15,0.0,0.0,0.0,27.6,0.2 -2019,8,18,21,30,0.0,0.0,0.0,27.6,0.2 -2019,8,18,21,45,0.0,0.0,0.0,27.6,0.2 -2019,8,18,22,0,0.0,0.0,0.0,26.0,1.6 -2019,8,18,22,15,0.0,0.0,0.0,26.0,1.6 -2019,8,18,22,30,0.0,0.0,0.0,26.0,1.6 -2019,8,18,22,45,0.0,0.0,0.0,26.0,1.6 -2019,8,18,23,0,0.0,0.0,0.0,25.5,2.5 -2019,8,18,23,15,0.0,0.0,0.0,25.5,2.5 -2019,8,18,23,30,0.0,0.0,0.0,25.5,2.5 -2019,8,18,23,45,0.0,0.0,0.0,25.5,2.5 -2019,8,19,0,0,0.0,0.0,0.0,24.3,1.9 -2019,8,19,0,15,0.0,0.0,0.0,24.3,1.9 -2019,8,19,0,30,0.0,0.0,0.0,24.3,1.9 -2019,8,19,0,45,0.0,0.0,0.0,24.3,1.9 -2019,8,19,1,0,0.0,0.0,0.0,23.9,0.0 -2019,8,19,1,15,0.0,0.0,0.0,23.9,0.0 -2019,8,19,1,30,0.0,0.0,0.0,23.9,0.0 -2019,8,19,1,45,0.0,0.0,0.0,23.9,0.0 -2019,8,19,2,0,0.0,0.0,0.0,23.8,0.0 -2019,8,19,2,15,0.0,0.0,0.0,23.8,0.0 -2019,8,19,2,30,0.0,0.0,0.0,23.8,0.0 -2019,8,19,2,45,0.0,0.0,0.0,23.8,0.0 -2019,8,19,3,0,0.0,0.0,0.0,23.2,0.0 -2019,8,19,3,15,0.0,0.0,0.0,23.2,0.0 -2019,8,19,3,30,0.0,0.0,0.0,23.2,0.0 -2019,8,19,3,45,0.0,0.0,0.0,23.2,0.0 -2019,8,19,4,0,0.0,0.0,0.0,22.9,0.0 -2019,8,19,4,15,0.0,0.0,0.0,22.9,0.0 -2019,8,19,4,30,0.0,0.0,0.0,22.9,0.0 -2019,8,19,4,45,0.0,0.0,0.0,22.9,0.0 -2019,8,19,5,0,280.0,-39.47350124458999,20.0,24.1,0.0 -2019,8,19,5,15,280.0,-25.738033188640244,20.0,24.1,0.0 -2019,8,19,5,30,280.0,-11.658857434246904,20.0,24.1,0.0 -2019,8,19,5,45,280.0,2.7037368265351915,20.0,24.1,0.0 -2019,8,19,6,0,559.0,60.586178353191464,66.0,25.8,0.0 -2019,8,19,6,15,559.0,90.02146630006192,66.0,25.8,0.0 -2019,8,19,6,30,559.0,119.6490634401823,66.0,25.8,0.0 -2019,8,19,6,45,559.0,149.3420998540871,66.0,25.8,0.0 -2019,8,19,7,0,649.0,244.16234899005337,113.0,27.5,0.2 -2019,8,19,7,15,649.0,278.34540979190604,113.0,27.5,0.2 -2019,8,19,7,30,649.0,312.1631323133331,113.0,27.5,0.2 -2019,8,19,7,45,649.0,345.4707038747069,113.0,27.5,0.2 -2019,8,19,8,0,684.0,436.42348150590607,157.0,30.1,1.5 -2019,8,19,8,15,684.0,470.003961455403,157.0,30.1,1.5 -2019,8,19,8,30,684.0,502.6052878396106,157.0,30.1,1.5 -2019,8,19,8,45,684.0,534.087856773905,157.0,30.1,1.5 -2019,8,19,9,0,612.0,588.4413966369423,224.0,31.4,1.7 -2019,8,19,9,15,612.0,614.2509598691609,224.0,31.4,1.7 -2019,8,19,9,30,612.0,638.7125673506648,224.0,31.4,1.7 -2019,8,19,9,45,612.0,661.721470722804,224.0,31.4,1.7 -2019,8,19,10,0,805.0,775.9856365601356,172.0,33.5,3.2 -2019,8,19,10,15,805.0,802.0488989961681,172.0,33.5,3.2 -2019,8,19,10,30,805.0,825.8392652730175,172.0,33.5,3.2 -2019,8,19,10,45,805.0,847.2548613899227,172.0,33.5,3.2 -2019,8,19,11,0,834.0,888.2125731495966,169.0,35.5,3.6 -2019,8,19,11,15,834.0,905.2049377594319,169.0,35.5,3.6 -2019,8,19,11,30,834.0,919.4851428337873,169.0,35.5,3.6 -2019,8,19,11,45,834.0,930.992038342197,169.0,35.5,3.6 -2019,8,19,12,0,897.0,969.8929088038327,141.0,36.1,5.3 -2019,8,19,12,15,897.0,976.1574322934792,141.0,36.1,5.3 -2019,8,19,12,30,897.0,979.3193328187498,141.0,36.1,5.3 -2019,8,19,12,45,897.0,979.3650706361711,141.0,36.1,5.3 -2019,8,19,13,0,718.0,873.6080435012043,205.0,35.9,6.7 -2019,8,19,13,15,718.0,868.6662260463256,205.0,35.9,6.7 -2019,8,19,13,30,718.0,861.2616186396325,205.0,35.9,6.7 -2019,8,19,13,45,718.0,851.4259289468164,205.0,35.9,6.7 -2019,8,19,14,0,680.0,790.6363049203039,190.0,34.3,6.6 -2019,8,19,14,15,680.0,776.8456865691396,190.0,34.3,6.6 -2019,8,19,14,30,680.0,760.9011701959668,190.0,34.3,6.6 -2019,8,19,14,45,680.0,742.871032667742,190.0,34.3,6.6 -2019,8,19,15,0,739.0,710.0635353694607,131.0,33.6,6.3 -2019,8,19,15,15,739.0,686.1969260703829,131.0,33.6,6.3 -2019,8,19,15,30,739.0,660.3430977958848,131.0,33.6,6.3 -2019,8,19,15,45,739.0,632.61276060779,131.0,33.6,6.3 -2019,8,19,16,0,600.0,491.3217808393855,108.0,32.7,6.8 -2019,8,19,16,15,600.0,466.0555361956602,108.0,32.7,6.8 -2019,8,19,16,30,600.0,439.57286510161447,108.0,32.7,6.8 -2019,8,19,16,45,600.0,411.9871704205668,108.0,32.7,6.8 -2019,8,19,17,0,352.0,228.5777259548754,67.0,32.0,6.8 -2019,8,19,17,15,352.0,211.3102803988242,67.0,32.0,6.8 -2019,8,19,17,30,352.0,193.61074516472976,67.0,32.0,6.8 -2019,8,19,17,45,352.0,175.55491237974655,67.0,32.0,6.8 -2019,8,19,18,0,176.0,53.11004994592083,8.0,30.4,3.4 -2019,8,19,18,15,176.0,43.84241009144999,8.0,30.4,3.4 -2019,8,19,18,30,176.0,34.51422208311158,8.0,30.4,3.4 -2019,8,19,18,45,176.0,25.165430654046713,8.0,30.4,3.4 -2019,8,19,19,0,0.0,0.0,0.0,28.8,2.1 -2019,8,19,19,15,0.0,0.0,0.0,28.8,2.1 -2019,8,19,19,30,0.0,0.0,0.0,28.8,2.1 -2019,8,19,19,45,0.0,0.0,0.0,28.8,2.1 -2019,8,19,20,0,0.0,0.0,0.0,28.1,2.1 -2019,8,19,20,15,0.0,0.0,0.0,28.1,2.1 -2019,8,19,20,30,0.0,0.0,0.0,28.1,2.1 -2019,8,19,20,45,0.0,0.0,0.0,28.1,2.1 -2019,8,19,21,0,0.0,0.0,0.0,26.6,2.2 -2019,8,19,21,15,0.0,0.0,0.0,26.6,2.2 -2019,8,19,21,30,0.0,0.0,0.0,26.6,2.2 -2019,8,19,21,45,0.0,0.0,0.0,26.6,2.2 -2019,8,19,22,0,0.0,0.0,0.0,25.6,2.3 -2019,8,19,22,15,0.0,0.0,0.0,25.6,2.3 -2019,8,19,22,30,0.0,0.0,0.0,25.6,2.3 -2019,8,19,22,45,0.0,0.0,0.0,25.6,2.3 -2019,8,19,23,0,0.0,0.0,0.0,25.5,0.0 -2019,8,19,23,15,0.0,0.0,0.0,25.5,0.0 -2019,8,19,23,30,0.0,0.0,0.0,25.5,0.0 -2019,8,19,23,45,0.0,0.0,0.0,25.5,0.0 -2019,8,20,0,0,0.0,0.0,0.0,24.8,0.0 -2019,8,20,0,15,0.0,0.0,0.0,24.8,0.0 -2019,8,20,0,30,0.0,0.0,0.0,24.8,0.0 -2019,8,20,0,45,0.0,0.0,0.0,24.8,0.0 -2019,8,20,1,0,0.0,0.0,0.0,23.3,0.0 -2019,8,20,1,15,0.0,0.0,0.0,23.3,0.0 -2019,8,20,1,30,0.0,0.0,0.0,23.3,0.0 -2019,8,20,1,45,0.0,0.0,0.0,23.3,0.0 -2019,8,20,2,0,0.0,0.0,0.0,23.2,0.0 -2019,8,20,2,15,0.0,0.0,0.0,23.2,0.0 -2019,8,20,2,30,0.0,0.0,0.0,23.2,0.0 -2019,8,20,2,45,0.0,0.0,0.0,23.2,0.0 -2019,8,20,3,0,0.0,0.0,0.0,22.8,0.0 -2019,8,20,3,15,0.0,0.0,0.0,22.8,0.0 -2019,8,20,3,30,0.0,0.0,0.0,22.8,0.0 -2019,8,20,3,45,0.0,0.0,0.0,22.8,0.0 -2019,8,20,4,0,0.0,0.0,0.0,22.7,0.0 -2019,8,20,4,15,0.0,0.0,0.0,22.7,0.0 -2019,8,20,4,30,0.0,0.0,0.0,22.7,0.0 -2019,8,20,4,45,0.0,0.0,0.0,22.7,0.0 -2019,8,20,5,0,219.0,-29.315350151209692,18.0,22.4,0.0 -2019,8,20,5,15,219.0,-18.557915337493228,18.0,22.4,0.0 -2019,8,20,5,30,219.0,-7.531293252843046,18.0,22.4,0.0 -2019,8,20,5,45,219.0,3.717298414136602,18.0,22.4,0.0 -2019,8,20,6,0,438.0,71.27938293402505,77.0,24.2,0.0 -2019,8,20,6,15,438.0,94.37394693026907,77.0,24.2,0.0 -2019,8,20,6,30,438.0,117.61939434843146,77.0,24.2,0.0 -2019,8,20,6,45,438.0,140.9161846139616,77.0,24.2,0.0 -2019,8,20,7,0,560.0,242.44326960008766,131.0,26.4,0.2 -2019,8,20,7,15,560.0,271.97803014072286,131.0,26.4,0.2 -2019,8,20,7,30,560.0,301.19713203711797,131.0,26.4,0.2 -2019,8,20,7,45,560.0,329.97545460915444,131.0,26.4,0.2 -2019,8,20,8,0,691.0,435.3359417518969,155.0,28.6,1.3 -2019,8,20,8,15,691.0,469.305353094811,155.0,28.6,1.3 -2019,8,20,8,30,691.0,502.2842702495175,155.0,28.6,1.3 -2019,8,20,8,45,691.0,534.1314724297448,155.0,28.6,1.3 -2019,8,20,9,0,651.0,594.9936191783532,209.0,31.3,0.2 -2019,8,20,9,15,651.0,622.4845470243723,209.0,31.3,0.2 -2019,8,20,9,30,651.0,648.5397065100705,209.0,31.3,0.2 -2019,8,20,9,45,651.0,673.0475254424691,209.0,31.3,0.2 -2019,8,20,10,0,777.0,765.1423590451759,184.0,33.0,1.6 -2019,8,20,10,15,777.0,790.332644669491,184.0,33.0,1.6 -2019,8,20,10,30,777.0,813.3261637307266,184.0,33.0,1.6 -2019,8,20,10,45,777.0,834.0244544502337,184.0,33.0,1.6 -2019,8,20,11,0,894.0,911.9767849564039,143.0,34.6,2.3 -2019,8,20,11,15,894.0,930.2159294039243,143.0,34.6,2.3 -2019,8,20,11,30,894.0,945.5439151829382,143.0,34.6,2.3 -2019,8,20,11,45,894.0,957.8951055051449,143.0,34.6,2.3 -2019,8,20,12,0,725.0,884.4083252137715,216.0,36.0,4.4 -2019,8,20,12,15,725.0,889.4783815134474,216.0,36.0,4.4 -2019,8,20,12,30,725.0,892.037397167805,216.0,36.0,4.4 -2019,8,20,12,45,725.0,892.0744140789451,216.0,36.0,4.4 -2019,8,20,13,0,708.0,866.7947666265076,209.0,35.5,6.5 -2019,8,20,13,15,708.0,861.9152737441875,209.0,35.5,6.5 -2019,8,20,13,30,708.0,854.6040508050107,209.0,35.5,6.5 -2019,8,20,13,45,708.0,844.8924055880422,209.0,35.5,6.5 -2019,8,20,14,0,642.0,768.669033549571,203.0,34.3,4.8 -2019,8,20,14,15,642.0,755.6316923529315,203.0,34.3,4.8 -2019,8,20,14,30,642.0,740.5581042889918,203.0,34.3,4.8 -2019,8,20,14,45,642.0,723.5128167759809,203.0,34.3,4.8 -2019,8,20,15,0,563.0,617.849292613867,178.0,33.6,6.1 -2019,8,20,15,15,563.0,599.6424827636365,178.0,33.6,6.1 -2019,8,20,15,30,563.0,579.9197090174521,178.0,33.6,6.1 -2019,8,20,15,45,563.0,558.7654273203898,178.0,33.6,6.1 -2019,8,20,16,0,457.0,422.8161494926003,132.0,32.4,5.3 -2019,8,20,16,15,457.0,403.5460115725737,132.0,32.4,5.3 -2019,8,20,16,30,457.0,383.34812575024614,132.0,32.4,5.3 -2019,8,20,16,45,457.0,362.3089824735446,132.0,32.4,5.3 -2019,8,20,17,0,240.0,180.50652494562854,71.0,31.4,4.7 -2019,8,20,17,15,240.0,168.71755528676118,71.0,31.4,4.7 -2019,8,20,17,30,240.0,156.63358587892537,71.0,31.4,4.7 -2019,8,20,17,45,240.0,144.3063621342901,71.0,31.4,4.7 -2019,8,20,18,0,120.0,37.3943355587199,7.0,29.1,4.7 -2019,8,20,18,15,120.0,31.06705775152975,7.0,29.1,4.7 -2019,8,20,18,30,120.0,24.698442020526365,7.0,29.1,4.7 -2019,8,20,18,45,120.0,18.315759755997576,7.0,29.1,4.7 -2019,8,20,19,0,0.0,0.0,0.0,27.1,1.6 -2019,8,20,19,15,0.0,0.0,0.0,27.1,1.6 -2019,8,20,19,30,0.0,0.0,0.0,27.1,1.6 -2019,8,20,19,45,0.0,0.0,0.0,27.1,1.6 -2019,8,20,20,0,0.0,0.0,0.0,26.0,2.0 -2019,8,20,20,15,0.0,0.0,0.0,26.0,2.0 -2019,8,20,20,30,0.0,0.0,0.0,26.0,2.0 -2019,8,20,20,45,0.0,0.0,0.0,26.0,2.0 -2019,8,20,21,0,0.0,0.0,0.0,25.5,1.3 -2019,8,20,21,15,0.0,0.0,0.0,25.5,1.3 -2019,8,20,21,30,0.0,0.0,0.0,25.5,1.3 -2019,8,20,21,45,0.0,0.0,0.0,25.5,1.3 -2019,8,20,22,0,0.0,0.0,0.0,24.3,0.2 -2019,8,20,22,15,0.0,0.0,0.0,24.3,0.2 -2019,8,20,22,30,0.0,0.0,0.0,24.3,0.2 -2019,8,20,22,45,0.0,0.0,0.0,24.3,0.2 -2019,8,20,23,0,0.0,0.0,0.0,23.8,1.3 -2019,8,20,23,15,0.0,0.0,0.0,23.8,1.3 -2019,8,20,23,30,0.0,0.0,0.0,23.8,1.3 -2019,8,20,23,45,0.0,0.0,0.0,23.8,1.3 -2019,8,21,0,0,0.0,0.0,0.0,22.7,0.0 -2019,8,21,0,15,0.0,0.0,0.0,22.7,0.0 -2019,8,21,0,30,0.0,0.0,0.0,22.7,0.0 -2019,8,21,0,45,0.0,0.0,0.0,22.7,0.0 -2019,8,21,1,0,0.0,0.0,0.0,21.7,0.0 -2019,8,21,1,15,0.0,0.0,0.0,21.7,0.0 -2019,8,21,1,30,0.0,0.0,0.0,21.7,0.0 -2019,8,21,1,45,0.0,0.0,0.0,21.7,0.0 -2019,8,21,2,0,0.0,0.0,0.0,21.7,0.0 -2019,8,21,2,15,0.0,0.0,0.0,21.7,0.0 -2019,8,21,2,30,0.0,0.0,0.0,21.7,0.0 -2019,8,21,2,45,0.0,0.0,0.0,21.7,0.0 -2019,8,21,3,0,0.0,0.0,0.0,21.7,0.0 -2019,8,21,3,15,0.0,0.0,0.0,21.7,0.0 -2019,8,21,3,30,0.0,0.0,0.0,21.7,0.0 -2019,8,21,3,45,0.0,0.0,0.0,21.7,0.0 -2019,8,21,4,0,0.0,0.0,0.0,21.6,0.2 -2019,8,21,4,15,0.0,0.0,0.0,21.6,0.2 -2019,8,21,4,30,0.0,0.0,0.0,21.6,0.2 -2019,8,21,4,45,0.0,0.0,0.0,21.6,0.2 -2019,8,21,5,0,146.0,-15.080652759452427,17.0,20.8,1.3 -2019,8,21,5,15,146.0,-7.899622712937916,17.0,20.8,1.3 -2019,8,21,5,30,146.0,-0.5388990950294108,17.0,20.8,1.3 -2019,8,21,5,45,146.0,6.9699983457022885,17.0,20.8,1.3 -2019,8,21,6,0,291.0,84.20630389774027,89.0,22.5,0.0 -2019,8,21,6,15,291.0,99.57007845734705,89.0,22.5,0.0 -2019,8,21,6,30,291.0,115.03422897033886,89.0,22.5,0.0 -2019,8,21,6,45,291.0,130.53253557011953,89.0,22.5,0.0 -2019,8,21,7,0,421.0,238.46193857763708,156.0,24.7,0.1 -2019,8,21,7,15,421.0,260.69487380614197,156.0,24.7,0.1 -2019,8,21,7,30,421.0,282.69019010484203,156.0,24.7,0.1 -2019,8,21,7,45,421.0,304.35370015256365,156.0,24.7,0.1 -2019,8,21,8,0,627.0,425.57620830367455,173.0,27.4,1.2 -2019,8,21,8,15,627.0,456.4398234099903,173.0,27.4,1.2 -2019,8,21,8,30,627.0,486.4035044232105,173.0,27.4,1.2 -2019,8,21,8,45,627.0,515.3389422611284,173.0,27.4,1.2 -2019,8,21,9,0,698.0,603.0339987141911,191.0,29.2,2.2 -2019,8,21,9,15,698.0,632.5483411537041,191.0,29.2,2.2 -2019,8,21,9,30,698.0,660.5212383830849,191.0,29.2,2.2 -2019,8,21,9,45,698.0,686.8329061619204,191.0,29.2,2.2 -2019,8,21,10,0,761.0,757.3382275498398,190.0,31.3,2.5 -2019,8,21,10,15,761.0,782.0421553659997,190.0,31.3,2.5 -2019,8,21,10,30,761.0,804.591730372802,190.0,31.3,2.5 -2019,8,21,10,45,761.0,824.8903918281939,190.0,31.3,2.5 -2019,8,21,11,0,606.0,790.8788935019643,271.0,32.8,2.5 -2019,8,21,11,15,606.0,803.2585572309757,271.0,32.8,2.5 -2019,8,21,11,30,606.0,813.6622968435022,271.0,32.8,2.5 -2019,8,21,11,45,606.0,822.0455619293119,271.0,32.8,2.5 -2019,8,21,12,0,556.0,802.3846278176875,291.0,32.9,5.7 -2019,8,21,12,15,556.0,806.2779365762792,291.0,32.9,5.7 -2019,8,21,12,30,556.0,808.2430110195593,291.0,32.9,5.7 -2019,8,21,12,45,556.0,808.2714363970775,291.0,32.9,5.7 -2019,8,21,13,0,659.0,838.8350305043804,228.0,33.1,5.6 -2019,8,21,13,15,659.0,834.2872852892791,228.0,33.1,5.6 -2019,8,21,13,30,659.0,827.4731388318359,228.0,33.1,5.6 -2019,8,21,13,45,659.0,818.4217703533084,228.0,33.1,5.6 -2019,8,21,14,0,630.0,759.6848584187575,206.0,31.6,5.0 -2019,8,21,14,15,630.0,746.8744247310538,206.0,31.6,5.0 -2019,8,21,14,30,630.0,732.0631838947214,206.0,31.6,5.0 -2019,8,21,14,45,630.0,715.314559916885,206.0,31.6,5.0 -2019,8,21,15,0,677.0,673.30807111942,146.0,31.3,4.2 -2019,8,21,15,15,677.0,651.3859077347973,146.0,31.3,4.2 -2019,8,21,15,30,677.0,627.6384268736003,146.0,31.3,4.2 -2019,8,21,15,45,677.0,602.1673188946561,146.0,31.3,4.2 -2019,8,21,16,0,562.0,469.19481551833377,113.0,30.5,5.0 -2019,8,21,16,15,562.0,445.46610061752517,113.0,30.5,5.0 -2019,8,21,16,30,562.0,420.59498260756965,113.0,30.5,5.0 -2019,8,21,16,45,562.0,394.6879634340695,113.0,30.5,5.0 -2019,8,21,17,0,344.0,220.9972552314458,65.0,29.7,5.5 -2019,8,21,17,15,344.0,204.07756799856224,65.0,29.7,5.5 -2019,8,21,17,30,344.0,186.7344931728053,65.0,29.7,5.5 -2019,8,21,17,45,344.0,169.04229646313604,65.0,29.7,5.5 -2019,8,21,18,0,172.0,49.038369286010344,6.0,27.5,3.4 -2019,8,21,18,15,172.0,39.957375388235924,6.0,27.5,3.4 -2019,8,21,18,30,172.0,30.817052748254497,6.0,27.5,3.4 -2019,8,21,18,45,172.0,21.656541630858364,6.0,27.5,3.4 -2019,8,21,19,0,0.0,0.0,0.0,24.8,2.1 -2019,8,21,19,15,0.0,0.0,0.0,24.8,2.1 -2019,8,21,19,30,0.0,0.0,0.0,24.8,2.1 -2019,8,21,19,45,0.0,0.0,0.0,24.8,2.1 -2019,8,21,20,0,0.0,0.0,0.0,23.2,2.2 -2019,8,21,20,15,0.0,0.0,0.0,23.2,2.2 -2019,8,21,20,30,0.0,0.0,0.0,23.2,2.2 -2019,8,21,20,45,0.0,0.0,0.0,23.2,2.2 -2019,8,21,21,0,0.0,0.0,0.0,22.7,2.5 -2019,8,21,21,15,0.0,0.0,0.0,22.7,2.5 -2019,8,21,21,30,0.0,0.0,0.0,22.7,2.5 -2019,8,21,21,45,0.0,0.0,0.0,22.7,2.5 -2019,8,21,22,0,0.0,0.0,0.0,22.1,1.9 -2019,8,21,22,15,0.0,0.0,0.0,22.1,1.9 -2019,8,21,22,30,0.0,0.0,0.0,22.1,1.9 -2019,8,21,22,45,0.0,0.0,0.0,22.1,1.9 -2019,8,21,23,0,0.0,0.0,0.0,21.6,0.2 -2019,8,21,23,15,0.0,0.0,0.0,21.6,0.2 -2019,8,21,23,30,0.0,0.0,0.0,21.6,0.2 -2019,8,21,23,45,0.0,0.0,0.0,21.6,0.2 -2019,8,22,0,0,0.0,0.0,0.0,21.0,2.0 -2019,8,22,0,15,0.0,0.0,0.0,21.0,2.0 -2019,8,22,0,30,0.0,0.0,0.0,21.0,2.0 -2019,8,22,0,45,0.0,0.0,0.0,21.0,2.0 -2019,8,22,1,0,0.0,0.0,0.0,20.7,1.5 -2019,8,22,1,15,0.0,0.0,0.0,20.7,1.5 -2019,8,22,1,30,0.0,0.0,0.0,20.7,1.5 -2019,8,22,1,45,0.0,0.0,0.0,20.7,1.5 -2019,8,22,2,0,0.0,0.0,0.0,21.0,1.3 -2019,8,22,2,15,0.0,0.0,0.0,21.0,1.3 -2019,8,22,2,30,0.0,0.0,0.0,21.0,1.3 -2019,8,22,2,45,0.0,0.0,0.0,21.0,1.3 -2019,8,22,3,0,0.0,0.0,0.0,20.6,0.0 -2019,8,22,3,15,0.0,0.0,0.0,20.6,0.0 -2019,8,22,3,30,0.0,0.0,0.0,20.6,0.0 -2019,8,22,3,45,0.0,0.0,0.0,20.6,0.0 -2019,8,22,4,0,0.0,0.0,0.0,20.6,0.0 -2019,8,22,4,15,0.0,0.0,0.0,20.6,0.0 -2019,8,22,4,30,0.0,0.0,0.0,20.6,0.0 -2019,8,22,4,45,0.0,0.0,0.0,20.6,0.0 -2019,8,22,5,0,9.0,3.9890408695096298,6.0,20.7,0.2 -2019,8,22,5,15,9.0,4.432276977619669,6.0,20.7,0.2 -2019,8,22,5,30,9.0,4.88660434683308,6.0,20.7,0.2 -2019,8,22,5,45,9.0,5.350077477605285,6.0,20.7,0.2 -2019,8,22,6,0,65.0,84.7051401049312,86.0,21.3,1.9 -2019,8,22,6,15,65.0,88.14132899142109,86.0,21.3,1.9 -2019,8,22,6,30,65.0,91.59996748716257,86.0,21.3,1.9 -2019,8,22,6,45,65.0,95.06624517113701,86.0,21.3,1.9 -2019,8,22,7,0,85.0,198.37926319019488,182.0,23.1,0.2 -2019,8,22,7,15,85.0,202.87387685614044,182.0,23.1,0.2 -2019,8,22,7,30,85.0,207.32045344204184,182.0,23.1,0.2 -2019,8,22,7,45,85.0,211.69995202430738,182.0,23.1,0.2 -2019,8,22,8,0,116.0,324.391291699388,278.0,25.2,2.2 -2019,8,22,8,15,116.0,330.10865748032353,278.0,25.2,2.2 -2019,8,22,8,30,116.0,335.6593139379592,278.0,25.2,2.2 -2019,8,22,8,45,116.0,341.0194923091911,278.0,25.2,2.2 -2019,8,22,9,0,193.0,465.4145191470133,352.0,27.0,2.6 -2019,8,22,9,15,193.0,473.58586765503514,352.0,27.0,2.6 -2019,8,22,9,30,193.0,481.3304512421097,352.0,27.0,2.6 -2019,8,22,9,45,193.0,488.615106412347,352.0,27.0,2.6 -2019,8,22,10,0,34.0,399.26369808929644,374.0,29.2,2.7 -2019,8,22,10,15,34.0,400.3688424330025,374.0,29.2,2.7 -2019,8,22,10,30,34.0,401.3776105713,374.0,29.2,2.7 -2019,8,22,10,45,34.0,402.28568280415186,374.0,29.2,2.7 -2019,8,22,11,0,347.0,677.8806531622341,381.0,31.2,3.2 -2019,8,22,11,15,347.0,684.9784642137613,381.0,31.2,3.2 -2019,8,22,11,30,347.0,690.9433902097682,381.0,31.2,3.2 -2019,8,22,11,45,347.0,695.7498884213876,381.0,31.2,3.2 -2019,8,22,12,0,492.0,770.416914493378,319.0,31.7,3.7 -2019,8,22,12,15,492.0,773.8665077743904,319.0,31.7,3.7 -2019,8,22,12,30,492.0,775.6076251674738,319.0,31.7,3.7 -2019,8,22,12,45,492.0,775.6328109406495,319.0,31.7,3.7 -2019,8,22,13,0,746.0,881.8103660659548,192.0,31.6,4.2 -2019,8,22,13,15,746.0,876.6556081554143,192.0,31.6,4.2 -2019,8,22,13,30,746.0,868.9319398992311,192.0,31.6,4.2 -2019,8,22,13,45,746.0,858.6724352306373,192.0,31.6,4.2 -2019,8,22,14,0,503.0,689.9145798158405,249.0,30.8,5.0 -2019,8,22,14,15,503.0,679.6733997166186,249.0,30.8,5.0 -2019,8,22,14,30,503.0,667.8326932584584,249.0,30.8,5.0 -2019,8,22,14,45,503.0,654.443164164232,249.0,30.8,5.0 -2019,8,22,15,0,559.0,611.0442166705633,177.0,29.9,4.2 -2019,8,22,15,15,559.0,592.919747963625,177.0,29.9,4.2 -2019,8,22,15,30,559.0,573.2861713778719,177.0,29.9,4.2 -2019,8,22,15,45,559.0,552.2275609024457,177.0,29.9,4.2 -2019,8,22,16,0,479.0,428.3390526344211,126.0,28.6,5.0 -2019,8,22,16,15,479.0,408.08872046110736,126.0,28.6,5.0 -2019,8,22,16,30,479.0,386.86344958872155,126.0,28.6,5.0 -2019,8,22,16,45,479.0,364.75412988570196,126.0,28.6,5.0 -2019,8,22,17,0,286.0,194.88236939466424,66.0,28.1,5.5 -2019,8,22,17,15,286.0,180.79731084805633,66.0,28.1,5.5 -2019,8,22,17,30,286.0,166.35979667083012,66.0,28.1,5.5 -2019,8,22,17,45,286.0,151.6316505151801,66.0,28.1,5.5 -2019,8,22,18,0,143.0,41.337970282025374,6.0,26.4,3.9 -2019,8,22,18,15,143.0,33.77835473174759,6.0,26.4,3.9 -2019,8,22,18,30,143.0,26.169350041116388,6.0,26.4,3.9 -2019,8,22,18,45,143.0,18.54353913637258,6.0,26.4,3.9 -2019,8,22,19,0,0.0,0.0,0.0,23.8,2.6 -2019,8,22,19,15,0.0,0.0,0.0,23.8,2.6 -2019,8,22,19,30,0.0,0.0,0.0,23.8,2.6 -2019,8,22,19,45,0.0,0.0,0.0,23.8,2.6 -2019,8,22,20,0,0.0,0.0,0.0,23.1,2.6 -2019,8,22,20,15,0.0,0.0,0.0,23.1,2.6 -2019,8,22,20,30,0.0,0.0,0.0,23.1,2.6 -2019,8,22,20,45,0.0,0.0,0.0,23.1,2.6 -2019,8,22,21,0,0.0,0.0,0.0,21.6,2.5 -2019,8,22,21,15,0.0,0.0,0.0,21.6,2.5 -2019,8,22,21,30,0.0,0.0,0.0,21.6,2.5 -2019,8,22,21,45,0.0,0.0,0.0,21.6,2.5 -2019,8,22,22,0,0.0,0.0,0.0,21.1,2.1 -2019,8,22,22,15,0.0,0.0,0.0,21.1,2.1 -2019,8,22,22,30,0.0,0.0,0.0,21.1,2.1 -2019,8,22,22,45,0.0,0.0,0.0,21.1,2.1 -2019,8,22,23,0,0.0,0.0,0.0,21.0,2.0 -2019,8,22,23,15,0.0,0.0,0.0,21.0,2.0 -2019,8,22,23,30,0.0,0.0,0.0,21.0,2.0 -2019,8,22,23,45,0.0,0.0,0.0,21.0,2.0 -2019,8,23,0,0,0.0,0.0,0.0,20.5,1.3 -2019,8,23,0,15,0.0,0.0,0.0,20.5,1.3 -2019,8,23,0,30,0.0,0.0,0.0,20.5,1.3 -2019,8,23,0,45,0.0,0.0,0.0,20.5,1.3 -2019,8,23,1,0,0.0,0.0,0.0,20.0,0.0 -2019,8,23,1,15,0.0,0.0,0.0,20.0,0.0 -2019,8,23,1,30,0.0,0.0,0.0,20.0,0.0 -2019,8,23,1,45,0.0,0.0,0.0,20.0,0.0 -2019,8,23,2,0,0.0,0.0,0.0,19.2,1.5 -2019,8,23,2,15,0.0,0.0,0.0,19.2,1.5 -2019,8,23,2,30,0.0,0.0,0.0,19.2,1.5 -2019,8,23,2,45,0.0,0.0,0.0,19.2,1.5 -2019,8,23,3,0,0.0,0.0,0.0,20.0,0.0 -2019,8,23,3,15,0.0,0.0,0.0,20.0,0.0 -2019,8,23,3,30,0.0,0.0,0.0,20.0,0.0 -2019,8,23,3,45,0.0,0.0,0.0,20.0,0.0 -2019,8,23,4,0,0.0,0.0,0.0,20.0,0.0 -2019,8,23,4,15,0.0,0.0,0.0,20.0,0.0 -2019,8,23,4,30,0.0,0.0,0.0,20.0,0.0 -2019,8,23,4,45,0.0,0.0,0.0,20.0,0.0 -2019,8,23,5,0,1.0,4.772821442217581,5.0,20.1,0.0 -2019,8,23,5,15,1.0,4.822132030050957,5.0,20.1,0.0 -2019,8,23,5,30,1.0,4.872676534965577,5.0,20.1,0.0 -2019,8,23,5,45,1.0,4.924238517631662,5.0,20.1,0.0 -2019,8,23,6,0,2.0,31.953194363446993,32.0,20.8,0.0 -2019,8,23,6,15,2.0,32.05905663880638,32.0,20.8,0.0 -2019,8,23,6,30,2.0,32.16561054282613,32.0,20.8,0.0 -2019,8,23,6,45,2.0,32.27239979533076,32.0,20.8,0.0 -2019,8,23,7,0,1.0,62.18948355417324,62.0,21.8,1.3 -2019,8,23,7,15,1.0,62.24242807213923,62.0,21.8,1.3 -2019,8,23,7,30,1.0,62.2948067350092,62.0,21.8,1.3 -2019,8,23,7,45,1.0,62.346395249307456,62.0,21.8,1.3 -2019,8,23,8,0,21.0,236.3364268070106,228.0,22.9,0.8 -2019,8,23,8,15,21.0,237.37277296081524,228.0,22.9,0.8 -2019,8,23,8,30,21.0,238.3789009035372,228.0,22.9,0.8 -2019,8,23,8,45,21.0,239.35050224086217,228.0,22.9,0.8 -2019,8,23,9,0,358.0,519.4030038456607,310.0,24.8,1.6 -2019,8,23,9,15,358.0,534.5793424468696,310.0,24.8,1.6 -2019,8,23,9,30,358.0,548.963066593187,310.0,24.8,1.6 -2019,8,23,9,45,358.0,562.4925829695891,310.0,24.8,1.6 -2019,8,23,10,0,465.0,658.3467307013577,314.0,28.1,2.2 -2019,8,23,10,15,465.0,673.4802730882752,314.0,28.1,2.2 -2019,8,23,10,30,465.0,687.2940662515302,314.0,28.1,2.2 -2019,8,23,10,45,465.0,699.7289574080658,314.0,28.1,2.2 -2019,8,23,11,0,637.0,799.4797675471139,256.0,30.2,2.7 -2019,8,23,11,15,637.0,812.5259049399725,256.0,30.2,2.7 -2019,8,23,11,30,637.0,823.4897420324513,256.0,30.2,2.7 -2019,8,23,11,45,637.0,832.3243299909211,256.0,30.2,2.7 -2019,8,23,12,0,732.0,881.9372452676816,212.0,31.7,3.8 -2019,8,23,12,15,732.0,887.0760418659252,212.0,31.7,3.8 -2019,8,23,12,30,732.0,889.6697528944013,212.0,31.7,3.8 -2019,8,23,12,45,732.0,889.7072716842924,212.0,31.7,3.8 -2019,8,23,13,0,655.0,832.1645172284414,228.0,31.6,5.8 -2019,8,23,13,15,655.0,827.6328469567751,228.0,31.6,5.8 -2019,8,23,13,30,655.0,820.8427865054031,228.0,31.6,5.8 -2019,8,23,13,45,655.0,811.8234119556072,228.0,31.6,5.8 -2019,8,23,14,0,594.0,736.2859959059698,217.0,30.9,6.5 -2019,8,23,14,15,594.0,724.1767800765518,217.0,30.9,6.5 -2019,8,23,14,30,594.0,710.1762773331677,217.0,30.9,6.5 -2019,8,23,14,45,594.0,694.344439977961,217.0,30.9,6.5 -2019,8,23,15,0,588.0,623.1051324461149,168.0,30.1,5.1 -2019,8,23,15,15,588.0,604.0163442447567,168.0,30.1,5.1 -2019,8,23,15,30,588.0,583.3381554856501,168.0,30.1,5.1 -2019,8,23,15,45,588.0,561.1591133476351,168.0,30.1,5.1 -2019,8,23,16,0,499.0,434.63524108022676,121.0,28.8,5.1 -2019,8,23,16,15,499.0,413.51276922523584,121.0,28.8,5.1 -2019,8,23,16,30,499.0,391.373370089485,121.0,28.8,5.1 -2019,8,23,16,45,499.0,368.31184797897583,121.0,28.8,5.1 -2019,8,23,17,0,262.0,183.31034556798792,66.0,28.0,5.2 -2019,8,23,17,15,262.0,170.39097155564338,66.0,28.0,5.2 -2019,8,23,17,30,262.0,157.14831126801306,66.0,28.0,5.2 -2019,8,23,17,45,262.0,143.6390718094989,66.0,28.0,5.2 -2019,8,23,18,0,131.0,36.96055090871917,5.0,25.8,5.5 -2019,8,23,18,15,131.0,30.026571872679238,5.0,25.8,5.5 -2019,8,23,18,30,131.0,23.047291159385832,5.0,25.8,5.5 -2019,8,23,18,45,131.0,16.052595120331937,5.0,25.8,5.5 -2019,8,23,19,0,0.0,0.0,0.0,23.8,3.9 -2019,8,23,19,15,0.0,0.0,0.0,23.8,3.9 -2019,8,23,19,30,0.0,0.0,0.0,23.8,3.9 -2019,8,23,19,45,0.0,0.0,0.0,23.8,3.9 -2019,8,23,20,0,0.0,0.0,0.0,22.7,2.6 -2019,8,23,20,15,0.0,0.0,0.0,22.7,2.6 -2019,8,23,20,30,0.0,0.0,0.0,22.7,2.6 -2019,8,23,20,45,0.0,0.0,0.0,22.7,2.6 -2019,8,23,21,0,0.0,0.0,0.0,22.1,2.6 -2019,8,23,21,15,0.0,0.0,0.0,22.1,2.6 -2019,8,23,21,30,0.0,0.0,0.0,22.1,2.6 -2019,8,23,21,45,0.0,0.0,0.0,22.1,2.6 -2019,8,23,22,0,0.0,0.0,0.0,21.0,2.3 -2019,8,23,22,15,0.0,0.0,0.0,21.0,2.3 -2019,8,23,22,30,0.0,0.0,0.0,21.0,2.3 -2019,8,23,22,45,0.0,0.0,0.0,21.0,2.3 -2019,8,23,23,0,0.0,0.0,0.0,19.9,0.2 -2019,8,23,23,15,0.0,0.0,0.0,19.9,0.2 -2019,8,23,23,30,0.0,0.0,0.0,19.9,0.2 -2019,8,23,23,45,0.0,0.0,0.0,19.9,0.2 -2019,8,24,0,0,0.0,0.0,0.0,19.1,2.1 -2019,8,24,0,15,0.0,0.0,0.0,19.1,2.1 -2019,8,24,0,30,0.0,0.0,0.0,19.1,2.1 -2019,8,24,0,45,0.0,0.0,0.0,19.1,2.1 -2019,8,24,1,0,0.0,0.0,0.0,19.5,1.3 -2019,8,24,1,15,0.0,0.0,0.0,19.5,1.3 -2019,8,24,1,30,0.0,0.0,0.0,19.5,1.3 -2019,8,24,1,45,0.0,0.0,0.0,19.5,1.3 -2019,8,24,2,0,0.0,0.0,0.0,20.0,0.0 -2019,8,24,2,15,0.0,0.0,0.0,20.0,0.0 -2019,8,24,2,30,0.0,0.0,0.0,20.0,0.0 -2019,8,24,2,45,0.0,0.0,0.0,20.0,0.0 -2019,8,24,3,0,0.0,0.0,0.0,20.0,0.0 -2019,8,24,3,15,0.0,0.0,0.0,20.0,0.0 -2019,8,24,3,30,0.0,0.0,0.0,20.0,0.0 -2019,8,24,3,45,0.0,0.0,0.0,20.0,0.0 -2019,8,24,4,0,0.0,0.0,0.0,20.0,0.2 -2019,8,24,4,15,0.0,0.0,0.0,20.0,0.2 -2019,8,24,4,30,0.0,0.0,0.0,20.0,0.2 -2019,8,24,4,45,0.0,0.0,0.0,20.0,0.2 -2019,8,24,5,0,1.0,4.769055034808205,5.0,20.0,1.3 -2019,8,24,5,15,1.0,4.818426491052298,5.0,20.0,1.3 -2019,8,24,5,30,1.0,4.8690333875103935,5.0,20.0,1.3 -2019,8,24,5,45,1.0,4.920659017682544,5.0,20.0,1.3 -2019,8,24,6,0,2.0,31.94616462538929,32.0,20.1,0.0 -2019,8,24,6,15,2.0,32.05215757589856,32.0,20.1,0.0 -2019,8,24,6,30,2.0,32.15884300880649,32.0,20.1,0.0 -2019,8,24,6,45,2.0,32.26576408071072,32.0,20.1,0.0 -2019,8,24,7,0,1.0,58.18623146958326,58.0,20.9,0.0 -2019,8,24,7,15,1.0,58.23924134164066,58.0,20.9,0.0 -2019,8,24,7,30,1.0,58.29168466011716,58.0,20.9,0.0 -2019,8,24,7,45,1.0,58.34333685467181,58.0,20.9,0.0 -2019,8,24,8,0,1.0,127.39397674267775,127.0,22.4,0.0 -2019,8,24,8,15,1.0,127.44338747636014,127.0,22.4,0.0 -2019,8,24,8,30,1.0,127.49135747137169,127.0,22.4,0.0 -2019,8,24,8,45,1.0,127.53768131282926,127.0,22.4,0.0 -2019,8,24,9,0,391.0,526.6248082584087,299.0,24.7,1.7 -2019,8,24,9,15,391.0,543.2205434240644,299.0,24.7,1.7 -2019,8,24,9,30,391.0,558.9495333274074,299.0,24.7,1.7 -2019,8,24,9,45,391.0,573.7444240189134,299.0,24.7,1.7 -2019,8,24,10,0,587.0,696.181771620471,263.0,27.0,3.0 -2019,8,24,10,15,587.0,715.309416636991,263.0,27.0,3.0 -2019,8,24,10,30,587.0,732.7689991460268,263.0,27.0,3.0 -2019,8,24,10,45,587.0,748.4857545348307,263.0,27.0,3.0 -2019,8,24,11,0,744.0,840.9607012700122,208.0,29.1,2.3 -2019,8,24,11,15,744.0,856.217071121537,208.0,29.1,2.3 -2019,8,24,11,30,744.0,869.0383644007477,208.0,29.1,2.3 -2019,8,24,11,45,744.0,879.3696783614623,208.0,29.1,2.3 -2019,8,24,12,0,843.0,932.5397707156036,163.0,30.7,4.3 -2019,8,24,12,15,843.0,938.4651162198259,163.0,30.7,4.3 -2019,8,24,12,30,843.0,941.4558230298769,163.0,30.7,4.3 -2019,8,24,12,45,843.0,941.499084480054,163.0,30.7,4.3 -2019,8,24,13,0,868.0,940.5957448353328,142.0,31.0,5.7 -2019,8,24,13,15,868.0,934.5830039965065,142.0,31.0,5.7 -2019,8,24,13,30,868.0,925.5737709043883,142.0,31.0,5.7 -2019,8,24,13,45,868.0,913.6066244782015,142.0,31.0,5.7 -2019,8,24,14,0,757.0,819.961678659289,160.0,29.9,5.5 -2019,8,24,14,15,757.0,804.5105143148783,160.0,29.9,5.5 -2019,8,24,14,30,757.0,786.64609833289,160.0,29.9,5.5 -2019,8,24,14,45,757.0,766.4449288851541,160.0,29.9,5.5 -2019,8,24,15,0,688.0,670.7629263020382,140.0,29.3,4.1 -2019,8,24,15,15,688.0,648.400175264522,140.0,29.3,4.1 -2019,8,24,15,30,688.0,624.1754218517428,140.0,29.3,4.1 -2019,8,24,15,45,688.0,598.1924001768668,140.0,29.3,4.1 -2019,8,24,16,0,573.0,466.5933721386147,108.0,28.5,4.1 -2019,8,24,16,15,573.0,442.3085697503711,108.0,28.5,4.1 -2019,8,24,16,30,573.0,416.85459179280923,108.0,28.5,4.1 -2019,8,24,16,45,573.0,390.34043610730896,108.0,28.5,4.1 -2019,8,24,17,0,333.0,209.12377006321344,61.0,27.7,4.0 -2019,8,24,17,15,333.0,192.68307513393046,61.0,27.7,4.0 -2019,8,24,17,30,333.0,175.83097861338484,61.0,27.7,4.0 -2019,8,24,17,45,333.0,158.63964376605844,61.0,27.7,4.0 -2019,8,24,18,0,166.0,42.97094883929979,3.0,26.4,3.6 -2019,8,24,18,15,166.0,34.17353394703026,3.0,26.4,3.6 -2019,8,24,18,30,166.0,25.318643015672166,3.0,26.4,3.6 -2019,8,24,18,45,166.0,16.4441940476212,3.0,26.4,3.6 -2019,8,24,19,0,0.0,0.0,0.0,24.2,3.6 -2019,8,24,19,15,0.0,0.0,0.0,24.2,3.6 -2019,8,24,19,30,0.0,0.0,0.0,24.2,3.6 -2019,8,24,19,45,0.0,0.0,0.0,24.2,3.6 -2019,8,24,20,0,0.0,0.0,0.0,22.6,3.4 -2019,8,24,20,15,0.0,0.0,0.0,22.6,3.4 -2019,8,24,20,30,0.0,0.0,0.0,22.6,3.4 -2019,8,24,20,45,0.0,0.0,0.0,22.6,3.4 -2019,8,24,21,0,0.0,0.0,0.0,21.0,2.2 -2019,8,24,21,15,0.0,0.0,0.0,21.0,2.2 -2019,8,24,21,30,0.0,0.0,0.0,21.0,2.2 -2019,8,24,21,45,0.0,0.0,0.0,21.0,2.2 -2019,8,24,22,0,0.0,0.0,0.0,19.9,2.5 -2019,8,24,22,15,0.0,0.0,0.0,19.9,2.5 -2019,8,24,22,30,0.0,0.0,0.0,19.9,2.5 -2019,8,24,22,45,0.0,0.0,0.0,19.9,2.5 -2019,8,24,23,0,0.0,0.0,0.0,19.3,1.6 -2019,8,24,23,15,0.0,0.0,0.0,19.3,1.6 -2019,8,24,23,30,0.0,0.0,0.0,19.3,1.6 -2019,8,24,23,45,0.0,0.0,0.0,19.3,1.6 -2019,8,25,0,0,0.0,0.0,0.0,18.7,1.9 -2019,8,25,0,15,0.0,0.0,0.0,18.7,1.9 -2019,8,25,0,30,0.0,0.0,0.0,18.7,1.9 -2019,8,25,0,45,0.0,0.0,0.0,18.7,1.9 -2019,8,25,1,0,0.0,0.0,0.0,18.4,1.5 -2019,8,25,1,15,0.0,0.0,0.0,18.4,1.5 -2019,8,25,1,30,0.0,0.0,0.0,18.4,1.5 -2019,8,25,1,45,0.0,0.0,0.0,18.4,1.5 -2019,8,25,2,0,0.0,0.0,0.0,18.8,1.3 -2019,8,25,2,15,0.0,0.0,0.0,18.8,1.3 -2019,8,25,2,30,0.0,0.0,0.0,18.8,1.3 -2019,8,25,2,45,0.0,0.0,0.0,18.8,1.3 -2019,8,25,3,0,0.0,0.0,0.0,18.4,0.0 -2019,8,25,3,15,0.0,0.0,0.0,18.4,0.0 -2019,8,25,3,30,0.0,0.0,0.0,18.4,0.0 -2019,8,25,3,45,0.0,0.0,0.0,18.4,0.0 -2019,8,25,4,0,0.0,0.0,0.0,18.9,0.0 -2019,8,25,4,15,0.0,0.0,0.0,18.9,0.0 -2019,8,25,4,30,0.0,0.0,0.0,18.9,0.0 -2019,8,25,4,45,0.0,0.0,0.0,18.9,0.0 -2019,8,25,5,0,1.0,4.7652623816318895,5.0,19.0,0.0 -2019,8,25,5,15,1.0,4.814693369569256,5.0,19.0,0.0 -2019,8,25,5,30,1.0,4.865361287404209,5.0,19.0,0.0 -2019,8,25,5,45,1.0,4.917049167333898,5.0,19.0,0.0 -2019,8,25,6,0,2.0,30.939071347842397,31.0,19.4,0.0 -2019,8,25,6,15,2.0,31.04519210377405,31.0,19.4,0.0 -2019,8,25,6,30,2.0,31.152006177093906,31.0,19.4,0.0 -2019,8,25,6,45,2.0,31.259056173541612,31.0,19.4,0.0 -2019,8,25,7,0,1.0,58.18294184429888,58.0,19.5,0.0 -2019,8,25,7,15,1.0,58.23601563522122,58.0,19.5,0.0 -2019,8,25,7,30,1.0,58.28852218941705,58.0,19.5,0.0 -2019,8,25,7,45,1.0,58.34023666576035,58.0,19.5,0.0 -2019,8,25,8,0,0.0,82.0,82.0,20.3,0.2 -2019,8,25,8,15,0.0,82.0,82.0,20.3,0.2 -2019,8,25,8,30,0.0,82.0,82.0,20.3,0.2 -2019,8,25,8,45,0.0,82.0,82.0,20.3,0.2 -2019,8,25,9,0,9.0,265.2141357598215,260.0,22.5,1.9 -2019,8,25,9,15,9.0,265.5965953902351,260.0,22.5,1.9 -2019,8,25,9,30,9.0,265.9590803060985,260.0,22.5,1.9 -2019,8,25,9,45,9.0,266.30003829135205,260.0,22.5,1.9 -2019,8,25,10,0,554.0,683.3752398448057,276.0,25.3,0.3 -2019,8,25,10,15,554.0,701.449333151101,276.0,25.3,0.3 -2019,8,25,10,30,554.0,717.9472409220118,276.0,25.3,0.3 -2019,8,25,10,45,554.0,732.7983165836586,276.0,25.3,0.3 -2019,8,25,11,0,785.0,854.8882454094087,189.0,27.5,2.7 -2019,8,25,11,15,785.0,871.0047658354398,189.0,27.5,2.7 -2019,8,25,11,30,785.0,884.5489206398601,189.0,27.5,2.7 -2019,8,25,11,45,785.0,895.4627116724599,189.0,27.5,2.7 -2019,8,25,12,0,894.0,954.9379204301188,141.0,30.0,3.2 -2019,8,25,12,15,894.0,961.2293157701969,141.0,30.0,3.2 -2019,8,25,12,30,894.0,964.4047793570691,141.0,30.0,3.2 -2019,8,25,12,45,894.0,964.45071336815,141.0,30.0,3.2 -2019,8,25,13,0,947.0,980.0016490920403,111.0,29.9,4.3 -2019,8,25,13,15,947.0,973.4337557377703,111.0,29.9,4.3 -2019,8,25,13,30,947.0,963.592705917246,111.0,29.9,4.3 -2019,8,25,13,45,947.0,950.5206405166242,111.0,29.9,4.3 -2019,8,25,14,0,889.0,887.8512920979244,115.0,29.3,5.6 -2019,8,25,14,15,889.0,869.6839896409908,115.0,29.3,5.6 -2019,8,25,14,30,889.0,848.6792134877513,115.0,29.3,5.6 -2019,8,25,14,45,889.0,824.9269093144063,115.0,29.3,5.6 -2019,8,25,15,0,635.0,641.2348486671041,153.0,29.0,4.7 -2019,8,25,15,15,635.0,620.5699219671271,153.0,29.0,4.7 -2019,8,25,15,30,635.0,598.1843597990257,153.0,29.0,4.7 -2019,8,25,15,45,635.0,574.1740205766979,153.0,29.0,4.7 -2019,8,25,16,0,529.0,442.59759057782657,113.0,28.0,5.8 -2019,8,25,16,15,529.0,420.1505559177372,113.0,28.0,5.8 -2019,8,25,16,30,529.0,396.62282378650326,113.0,28.0,5.8 -2019,8,25,16,45,529.0,372.115143545154,113.0,28.0,5.8 -2019,8,25,17,0,305.0,195.7606815824309,61.0,26.9,6.5 -2019,8,25,17,15,305.0,180.68423026153403,61.0,26.9,6.5 -2019,8,25,17,30,305.0,165.23051532187333,61.0,26.9,6.5 -2019,8,25,17,45,305.0,149.46571194331813,61.0,26.9,6.5 -2019,8,25,18,0,152.0,39.10988121310547,3.0,24.1,4.5 -2019,8,25,18,15,152.0,31.044703762299736,3.0,24.1,4.5 -2019,8,25,18,30,152.0,22.926834189990686,3.0,24.1,4.5 -2019,8,25,18,45,152.0,14.79103445996496,3.0,24.1,4.5 -2019,8,25,19,0,0.0,0.0,0.0,22.1,3.4 -2019,8,25,19,15,0.0,0.0,0.0,22.1,3.4 -2019,8,25,19,30,0.0,0.0,0.0,22.1,3.4 -2019,8,25,19,45,0.0,0.0,0.0,22.1,3.4 -2019,8,25,20,0,0.0,0.0,0.0,21.5,2.1 -2019,8,25,20,15,0.0,0.0,0.0,21.5,2.1 -2019,8,25,20,30,0.0,0.0,0.0,21.5,2.1 -2019,8,25,20,45,0.0,0.0,0.0,21.5,2.1 -2019,8,25,21,0,0.0,0.0,0.0,19.9,2.1 -2019,8,25,21,15,0.0,0.0,0.0,19.9,2.1 -2019,8,25,21,30,0.0,0.0,0.0,19.9,2.1 -2019,8,25,21,45,0.0,0.0,0.0,19.9,2.1 -2019,8,25,22,0,0.0,0.0,0.0,19.3,1.9 -2019,8,25,22,15,0.0,0.0,0.0,19.3,1.9 -2019,8,25,22,30,0.0,0.0,0.0,19.3,1.9 -2019,8,25,22,45,0.0,0.0,0.0,19.3,1.9 -2019,8,25,23,0,0.0,0.0,0.0,18.8,0.2 -2019,8,25,23,15,0.0,0.0,0.0,18.8,0.2 -2019,8,25,23,30,0.0,0.0,0.0,18.8,0.2 -2019,8,25,23,45,0.0,0.0,0.0,18.8,0.2 -2019,8,26,0,0,0.0,0.0,0.0,17.7,1.3 -2019,8,26,0,15,0.0,0.0,0.0,17.7,1.3 -2019,8,26,0,30,0.0,0.0,0.0,17.7,1.3 -2019,8,26,0,45,0.0,0.0,0.0,17.7,1.3 -2019,8,26,1,0,0.0,0.0,0.0,17.2,0.0 -2019,8,26,1,15,0.0,0.0,0.0,17.2,0.0 -2019,8,26,1,30,0.0,0.0,0.0,17.2,0.0 -2019,8,26,1,45,0.0,0.0,0.0,17.2,0.0 -2019,8,26,2,0,0.0,0.0,0.0,16.8,0.6 -2019,8,26,2,15,0.0,0.0,0.0,16.8,0.6 -2019,8,26,2,30,0.0,0.0,0.0,16.8,0.6 -2019,8,26,2,45,0.0,0.0,0.0,16.8,0.6 -2019,8,26,3,0,0.0,0.0,0.0,17.2,0.0 -2019,8,26,3,15,0.0,0.0,0.0,17.2,0.0 -2019,8,26,3,30,0.0,0.0,0.0,17.2,0.0 -2019,8,26,3,45,0.0,0.0,0.0,17.2,0.0 -2019,8,26,4,0,0.0,0.0,0.0,17.2,0.0 -2019,8,26,4,15,0.0,0.0,0.0,17.2,0.0 -2019,8,26,4,30,0.0,0.0,0.0,17.2,0.0 -2019,8,26,4,45,0.0,0.0,0.0,17.2,0.0 -2019,8,26,5,0,1.0,4.76144499987376,5.0,16.7,0.0 -2019,8,26,5,15,1.0,4.810934110570015,5.0,16.7,0.0 -2019,8,26,5,30,1.0,4.861661605591154,5.0,16.7,0.0 -2019,8,26,5,45,1.0,4.9134102620156686,5.0,16.7,0.0 -2019,8,26,6,0,2.0,30.931916968304304,31.0,17.4,0.0 -2019,8,26,6,15,2.0,31.03816250489213,31.0,17.4,0.0 -2019,8,26,6,30,2.0,31.145102174096035,31.0,17.4,0.0 -2019,8,26,6,45,2.0,31.252278043834814,31.0,17.4,0.0 -2019,8,26,7,0,8.0,119.4369246823212,118.0,18.9,0.0 -2019,8,26,7,15,8.0,119.86201425849613,118.0,18.9,0.0 -2019,8,26,7,30,8.0,120.28256060503793,118.0,18.9,0.0 -2019,8,26,7,45,8.0,120.69676287792723,118.0,18.9,0.0 -2019,8,26,8,0,320.0,375.11389597768186,251.0,21.0,0.2 -2019,8,26,8,15,320.0,390.9630101327208,251.0,21.0,0.2 -2019,8,26,8,30,320.0,406.34998924219394,251.0,21.0,0.2 -2019,8,26,8,45,320.0,421.20894389930237,251.0,21.0,0.2 -2019,8,26,9,0,680.0,588.0120222804097,196.0,24.8,1.6 -2019,8,26,9,15,680.0,616.9429502217027,196.0,24.8,1.6 -2019,8,26,9,30,680.0,644.3629029348953,196.0,24.8,1.6 -2019,8,26,9,45,680.0,670.1544639728816,196.0,24.8,1.6 -2019,8,26,10,0,990.0,823.331055900864,98.0,28.1,2.5 -2019,8,26,10,15,990.0,855.6675036079267,98.0,28.1,2.5 -2019,8,26,10,30,990.0,885.1839901541256,98.0,28.1,2.5 -2019,8,26,10,45,990.0,911.7541214126162,98.0,28.1,2.5 -2019,8,26,11,0,1069.0,978.0761053357406,74.0,30.2,2.1 -2019,8,26,11,15,1069.0,1000.0491222850118,74.0,30.2,2.1 -2019,8,26,11,30,1069.0,1018.5150153695007,74.0,30.2,2.1 -2019,8,26,11,45,1069.0,1033.3947108000843,74.0,30.2,2.1 -2019,8,26,12,0,1071.0,1044.4404399705813,72.0,31.8,2.3 -2019,8,26,12,15,1071.0,1051.9863094277196,72.0,31.8,2.3 -2019,8,26,12,30,1071.0,1055.7949452544635,72.0,31.8,2.3 -2019,8,26,12,45,1071.0,1055.850038287491,72.0,31.8,2.3 -2019,8,26,13,0,1001.0,1008.0891727008277,92.0,32.3,4.2 -2019,8,26,13,15,1001.0,1001.1386006427502,92.0,32.3,4.2 -2019,8,26,13,30,1001.0,990.7241614588046,92.0,32.3,4.2 -2019,8,26,13,45,1001.0,976.8904513764302,92.0,32.3,4.2 -2019,8,26,14,0,1014.0,954.9654968876259,76.0,32.5,4.7 -2019,8,26,14,15,1014.0,934.2193714284682,76.0,32.5,4.7 -2019,8,26,14,30,1014.0,910.2329968772856,76.0,32.5,4.7 -2019,8,26,14,45,1014.0,883.1090865723617,76.0,32.5,4.7 -2019,8,26,15,0,901.0,775.3790671842662,85.0,31.3,5.7 -2019,8,26,15,15,901.0,746.0231743142375,85.0,31.3,5.7 -2019,8,26,15,30,901.0,714.2230051492105,85.0,31.3,5.7 -2019,8,26,15,45,901.0,680.1147328956007,85.0,31.3,5.7 -2019,8,26,16,0,706.0,520.8958452548127,83.0,29.7,5.7 -2019,8,26,16,15,706.0,490.90295175038796,83.0,29.7,5.7 -2019,8,26,16,30,706.0,459.466070447425,83.0,29.7,5.7 -2019,8,26,16,45,706.0,426.71981889794074,83.0,29.7,5.7 -2019,8,26,17,0,358.0,213.0962930949788,56.0,28.8,5.5 -2019,8,26,17,15,358.0,195.3791914657195,56.0,28.8,5.5 -2019,8,26,17,30,358.0,177.21874824815183,56.0,28.8,5.5 -2019,8,26,17,45,358.0,158.69272924817545,56.0,28.8,5.5 -2019,8,26,18,0,179.0,43.94023286165719,2.0,27.5,4.0 -2019,8,26,18,15,179.0,34.431257337046745,2.0,27.5,4.0 -2019,8,26,18,30,179.0,24.860156943297167,2.0,27.5,4.0 -2019,8,26,18,45,179.0,15.267916601676614,2.0,27.5,4.0 -2019,8,26,19,0,0.0,0.0,0.0,25.4,3.0 -2019,8,26,19,15,0.0,0.0,0.0,25.4,3.0 -2019,8,26,19,30,0.0,0.0,0.0,25.4,3.0 -2019,8,26,19,45,0.0,0.0,0.0,25.4,3.0 -2019,8,26,20,0,0.0,0.0,0.0,23.8,2.5 -2019,8,26,20,15,0.0,0.0,0.0,23.8,2.5 -2019,8,26,20,30,0.0,0.0,0.0,23.8,2.5 -2019,8,26,20,45,0.0,0.0,0.0,23.8,2.5 -2019,8,26,21,0,0.0,0.0,0.0,23.2,1.3 -2019,8,26,21,15,0.0,0.0,0.0,23.2,1.3 -2019,8,26,21,30,0.0,0.0,0.0,23.2,1.3 -2019,8,26,21,45,0.0,0.0,0.0,23.2,1.3 -2019,8,26,22,0,0.0,0.0,0.0,22.7,0.0 -2019,8,26,22,15,0.0,0.0,0.0,22.7,0.0 -2019,8,26,22,30,0.0,0.0,0.0,22.7,0.0 -2019,8,26,22,45,0.0,0.0,0.0,22.7,0.0 -2019,8,26,23,0,0.0,0.0,0.0,21.6,0.0 -2019,8,26,23,15,0.0,0.0,0.0,21.6,0.0 -2019,8,26,23,30,0.0,0.0,0.0,21.6,0.0 -2019,8,26,23,45,0.0,0.0,0.0,21.6,0.0 -2019,8,27,0,0,0.0,0.0,0.0,20.4,0.0 -2019,8,27,0,15,0.0,0.0,0.0,20.4,0.0 -2019,8,27,0,30,0.0,0.0,0.0,20.4,0.0 -2019,8,27,0,45,0.0,0.0,0.0,20.4,0.0 -2019,8,27,1,0,0.0,0.0,0.0,18.8,0.0 -2019,8,27,1,15,0.0,0.0,0.0,18.8,0.0 -2019,8,27,1,30,0.0,0.0,0.0,18.8,0.0 -2019,8,27,1,45,0.0,0.0,0.0,18.8,0.0 -2019,8,27,2,0,0.0,0.0,0.0,18.2,0.0 -2019,8,27,2,15,0.0,0.0,0.0,18.2,0.0 -2019,8,27,2,30,0.0,0.0,0.0,18.2,0.0 -2019,8,27,2,45,0.0,0.0,0.0,18.2,0.0 -2019,8,27,3,0,0.0,0.0,0.0,17.2,0.0 -2019,8,27,3,15,0.0,0.0,0.0,17.2,0.0 -2019,8,27,3,30,0.0,0.0,0.0,17.2,0.0 -2019,8,27,3,45,0.0,0.0,0.0,17.2,0.0 -2019,8,27,4,0,0.0,0.0,0.0,17.1,0.0 -2019,8,27,4,15,0.0,0.0,0.0,17.1,0.0 -2019,8,27,4,30,0.0,0.0,0.0,17.1,0.0 -2019,8,27,4,45,0.0,0.0,0.0,17.1,0.0 -2019,8,27,5,0,284.0,-52.84034595034747,16.0,17.2,0.2 -2019,8,27,5,15,284.0,-38.76935183371673,16.0,17.2,0.2 -2019,8,27,5,30,284.0,-24.34625402590202,16.0,17.2,0.2 -2019,8,27,5,45,284.0,-9.632814445990718,16.0,17.2,0.2 -2019,8,27,6,0,569.0,38.57827537558856,60.0,21.0,1.3 -2019,8,27,6,15,569.0,68.83972697134277,60.0,21.0,1.3 -2019,8,27,6,30,569.0,99.29888532483119,60.0,21.0,1.3 -2019,8,27,6,45,569.0,129.82531964380922,60.0,21.0,1.3 -2019,8,27,7,0,814.0,221.47044849686444,78.0,24.7,0.0 -2019,8,27,7,15,814.0,264.7728183527641,78.0,24.7,0.0 -2019,8,27,7,30,814.0,307.6123854937983,78.0,24.7,0.0 -2019,8,27,7,45,814.0,349.80570431661965,78.0,24.7,0.0 -2019,8,27,8,0,952.0,446.2651546902673,80.0,27.6,0.2 -2019,8,27,8,15,952.0,493.4702365612442,80.0,27.6,0.2 -2019,8,27,8,30,952.0,539.2988930719148,80.0,27.6,0.2 -2019,8,27,8,45,952.0,583.5548788793571,80.0,27.6,0.2 -2019,8,27,9,0,1035.0,666.6558686607909,73.0,30.9,1.6 -2019,8,27,9,15,1035.0,710.7408430002326,73.0,30.9,1.6 -2019,8,27,9,30,1035.0,752.5233919113055,73.0,30.9,1.6 -2019,8,27,9,45,1035.0,791.8245961049985,73.0,30.9,1.6 -2019,8,27,10,0,1083.0,856.5127374106312,66.0,33.4,2.2 -2019,8,27,10,15,1083.0,891.9273391983687,66.0,33.4,2.2 -2019,8,27,10,30,1083.0,924.2535435692474,66.0,33.4,2.2 -2019,8,27,10,45,1083.0,953.3529247533422,66.0,33.4,2.2 -2019,8,27,11,0,1103.0,991.9633100928016,62.0,34.7,2.6 -2019,8,27,11,15,1103.0,1014.6611375137373,62.0,34.7,2.6 -2019,8,27,11,30,1103.0,1033.7361537198794,62.0,34.7,2.6 -2019,8,27,11,45,1103.0,1049.1066765633832,62.0,34.7,2.6 -2019,8,27,12,0,1099.0,1058.0851032902742,63.0,36.8,2.8 -2019,8,27,12,15,1099.0,1065.837112873427,63.0,36.8,2.8 -2019,8,27,12,30,1099.0,1069.7497940555445,63.0,36.8,2.8 -2019,8,27,12,45,1099.0,1069.806392135119,63.0,36.8,2.8 -2019,8,27,13,0,1071.0,1045.4523548205361,68.0,37.7,4.0 -2019,8,27,13,15,1071.0,1038.0072171108286,68.0,37.7,4.0 -2019,8,27,13,30,1071.0,1026.8517419577092,68.0,37.7,4.0 -2019,8,27,13,45,1071.0,1012.0336988184031,68.0,37.7,4.0 -2019,8,27,14,0,1014.0,952.3540358544724,76.0,37.1,3.7 -2019,8,27,14,15,1014.0,931.5841652187605,76.0,37.1,3.7 -2019,8,27,14,30,1014.0,907.5703368328976,76.0,37.1,3.7 -2019,8,27,14,45,1014.0,880.4153815967021,76.0,37.1,3.7 -2019,8,27,15,0,917.0,780.1716252051436,80.0,36.6,4.6 -2019,8,27,15,15,917.0,750.2602327901186,80.0,36.6,4.6 -2019,8,27,15,30,917.0,717.8583112076061,80.0,36.6,4.6 -2019,8,27,15,45,917.0,683.1046104602564,80.0,36.6,4.6 -2019,8,27,16,0,753.0,538.8957549359939,74.0,35.2,4.3 -2019,8,27,16,15,753.0,506.86955339932103,74.0,35.2,4.3 -2019,8,27,16,30,753.0,473.3014718087727,74.0,35.2,4.3 -2019,8,27,16,45,753.0,438.33525384318517,74.0,35.2,4.3 -2019,8,27,17,0,460.0,249.44553771495242,49.0,34.1,4.2 -2019,8,27,17,15,460.0,226.65449090632524,49.0,34.1,4.2 -2019,8,27,17,30,460.0,203.29313530211837,49.0,34.1,4.2 -2019,8,27,17,45,460.0,179.46150781352952,49.0,34.1,4.2 -2019,8,27,18,0,306.0,70.68710368090845,0.0,31.4,4.4 -2019,8,27,18,15,306.0,54.41293111798965,0.0,31.4,4.4 -2019,8,27,18,30,306.0,38.032434709962445,0.0,31.4,4.4 -2019,8,27,18,45,306.0,21.615758257225632,0.0,31.4,4.4 -2019,8,27,19,0,0.0,0.0,0.0,29.2,3.0 -2019,8,27,19,15,0.0,0.0,0.0,29.2,3.0 -2019,8,27,19,30,0.0,0.0,0.0,29.2,3.0 -2019,8,27,19,45,0.0,0.0,0.0,29.2,3.0 -2019,8,27,20,0,0.0,0.0,0.0,27.7,1.9 -2019,8,27,20,15,0.0,0.0,0.0,27.7,1.9 -2019,8,27,20,30,0.0,0.0,0.0,27.7,1.9 -2019,8,27,20,45,0.0,0.0,0.0,27.7,1.9 -2019,8,27,21,0,0.0,0.0,0.0,27.1,0.0 -2019,8,27,21,15,0.0,0.0,0.0,27.1,0.0 -2019,8,27,21,30,0.0,0.0,0.0,27.1,0.0 -2019,8,27,21,45,0.0,0.0,0.0,27.1,0.0 -2019,8,27,22,0,0.0,0.0,0.0,25.8,0.0 -2019,8,27,22,15,0.0,0.0,0.0,25.8,0.0 -2019,8,27,22,30,0.0,0.0,0.0,25.8,0.0 -2019,8,27,22,45,0.0,0.0,0.0,25.8,0.0 -2019,8,27,23,0,0.0,0.0,0.0,23.8,0.0 -2019,8,27,23,15,0.0,0.0,0.0,23.8,0.0 -2019,8,27,23,30,0.0,0.0,0.0,23.8,0.0 -2019,8,27,23,45,0.0,0.0,0.0,23.8,0.0 -2019,8,28,0,0,0.0,0.0,0.0,23.1,0.0 -2019,8,28,0,15,0.0,0.0,0.0,23.1,0.0 -2019,8,28,0,30,0.0,0.0,0.0,23.1,0.0 -2019,8,28,0,45,0.0,0.0,0.0,23.1,0.0 -2019,8,28,1,0,0.0,0.0,0.0,21.5,0.0 -2019,8,28,1,15,0.0,0.0,0.0,21.5,0.0 -2019,8,28,1,30,0.0,0.0,0.0,21.5,0.0 -2019,8,28,1,45,0.0,0.0,0.0,21.5,0.0 -2019,8,28,2,0,0.0,0.0,0.0,20.1,0.0 -2019,8,28,2,15,0.0,0.0,0.0,20.1,0.0 -2019,8,28,2,30,0.0,0.0,0.0,20.1,0.0 -2019,8,28,2,45,0.0,0.0,0.0,20.1,0.0 -2019,8,28,3,0,0.0,0.0,0.0,20.5,0.2 -2019,8,28,3,15,0.0,0.0,0.0,20.5,0.2 -2019,8,28,3,30,0.0,0.0,0.0,20.5,0.2 -2019,8,28,3,45,0.0,0.0,0.0,20.5,0.2 -2019,8,28,4,0,0.0,0.0,0.0,19.3,1.5 -2019,8,28,4,15,0.0,0.0,0.0,19.3,1.5 -2019,8,28,4,30,0.0,0.0,0.0,19.3,1.5 -2019,8,28,4,45,0.0,0.0,0.0,19.3,1.5 -2019,8,28,5,0,353.0,-82.92901643019819,4.0,19.4,1.3 -2019,8,28,5,15,353.0,-65.41991681270545,4.0,19.4,1.3 -2019,8,28,5,30,353.0,-47.472680518192895,4.0,19.4,1.3 -2019,8,28,5,45,353.0,-29.16416036778343,4.0,19.4,1.3 -2019,8,28,6,0,646.0,25.331443226412674,52.0,23.3,0.0 -2019,8,28,6,15,646.0,59.7262342477923,52.0,23.3,0.0 -2019,8,28,6,30,646.0,94.34573632092899,52.0,23.3,0.0 -2019,8,28,6,45,646.0,129.0417034230633,52.0,23.3,0.0 -2019,8,28,7,0,832.0,217.81694684866844,74.0,27.2,0.0 -2019,8,28,7,15,832.0,262.1260799618345,74.0,27.2,0.0 -2019,8,28,7,30,832.0,305.96165037701564,74.0,27.2,0.0 -2019,8,28,7,45,832.0,349.135947451935,74.0,27.2,0.0 -2019,8,28,8,0,958.0,443.541586953259,78.0,30.9,0.2 -2019,8,28,8,15,958.0,491.0970026937823,78.0,30.9,0.2 -2019,8,28,8,30,958.0,537.2657778936946,78.0,30.9,0.2 -2019,8,28,8,45,958.0,581.8502107696305,78.0,30.9,0.2 -2019,8,28,9,0,978.0,649.0718971698459,91.0,33.1,1.5 -2019,8,28,9,15,978.0,690.7753260295741,91.0,33.1,1.5 -2019,8,28,9,30,978.0,730.3007104082623,91.0,33.1,1.5 -2019,8,28,9,45,978.0,767.4787965419533,91.0,33.1,1.5 -2019,8,28,10,0,96.0,471.80617248178055,402.0,35.1,1.5 -2019,8,28,10,15,96.0,474.9489077991983,402.0,35.1,1.5 -2019,8,28,10,30,96.0,477.8175749315675,402.0,35.1,1.5 -2019,8,28,10,45,96.0,480.39988980582154,402.0,35.1,1.5 -2019,8,28,11,0,56.0,460.06613015604773,413.0,36.4,1.8 -2019,8,28,11,15,56.0,461.2197945021704,413.0,36.4,1.8 -2019,8,28,11,30,56.0,462.18932192392,413.0,36.4,1.8 -2019,8,28,11,45,56.0,462.9705607560321,413.0,36.4,1.8 -2019,8,28,12,0,108.0,522.5088908267871,425.0,39.0,4.0 -2019,8,28,12,15,108.0,523.2715368865917,425.0,39.0,4.0 -2019,8,28,12,30,108.0,523.6564681556781,425.0,39.0,4.0 -2019,8,28,12,45,108.0,523.6620362992564,425.0,39.0,4.0 -2019,8,28,13,0,148.0,524.691260982452,390.0,39.7,4.0 -2019,8,28,13,15,148.0,523.6612836983875,390.0,39.7,4.0 -2019,8,28,13,30,148.0,522.1180098935689,390.0,39.7,4.0 -2019,8,28,13,45,148.0,520.0680481033561,390.0,39.7,4.0 -2019,8,28,14,0,96.0,407.7157902133086,325.0,37.6,6.5 -2019,8,28,14,15,96.0,405.74722531702287,325.0,37.6,6.5 -2019,8,28,14,30,96.0,403.4711986428578,325.0,37.6,6.5 -2019,8,28,14,45,96.0,400.89745648645413,325.0,37.6,6.5 -2019,8,28,15,0,59.0,275.8873352125454,231.0,36.4,4.6 -2019,8,28,15,15,59.0,273.96068899895874,231.0,36.4,4.6 -2019,8,28,15,30,59.0,271.87362335307716,231.0,36.4,4.6 -2019,8,28,15,45,59.0,269.6350754104086,231.0,36.4,4.6 -2019,8,28,16,0,32.0,146.6635286654436,127.0,34.9,4.6 -2019,8,28,16,15,32.0,145.3010079897508,127.0,34.9,4.6 -2019,8,28,16,30,32.0,143.87288966737987,127.0,34.9,4.6 -2019,8,28,16,45,32.0,142.385289120236,127.0,34.9,4.6 -2019,8,28,17,0,7.0,34.02850110549056,31.0,33.7,4.4 -2019,8,28,17,15,7.0,33.681295164067194,31.0,33.7,4.4 -2019,8,28,17,30,7.0,33.32540095992672,31.0,33.7,4.4 -2019,8,28,17,45,7.0,32.96234248668914,31.0,33.7,4.4 -2019,8,28,18,0,3.0,2.6830033213462574,2.0,32.1,3.0 -2019,8,28,18,15,3.0,2.5232751896680243,2.0,32.1,3.0 -2019,8,28,18,30,3.0,2.3625035082138286,2.0,32.1,3.0 -2019,8,28,18,45,3.0,2.201376726005775,2.0,32.1,3.0 -2019,8,28,19,0,0.0,0.0,0.0,31.7,1.9 -2019,8,28,19,15,0.0,0.0,0.0,31.7,1.9 -2019,8,28,19,30,0.0,0.0,0.0,31.7,1.9 -2019,8,28,19,45,0.0,0.0,0.0,31.7,1.9 -2019,8,28,20,0,0.0,0.0,0.0,31.6,0.2 -2019,8,28,20,15,0.0,0.0,0.0,31.6,0.2 -2019,8,28,20,30,0.0,0.0,0.0,31.6,0.2 -2019,8,28,20,45,0.0,0.0,0.0,31.6,0.2 -2019,8,28,21,0,0.0,0.0,0.0,30.5,1.3 -2019,8,28,21,15,0.0,0.0,0.0,30.5,1.3 -2019,8,28,21,30,0.0,0.0,0.0,30.5,1.3 -2019,8,28,21,45,0.0,0.0,0.0,30.5,1.3 -2019,8,28,22,0,0.0,0.0,0.0,29.3,0.0 -2019,8,28,22,15,0.0,0.0,0.0,29.3,0.0 -2019,8,28,22,30,0.0,0.0,0.0,29.3,0.0 -2019,8,28,22,45,0.0,0.0,0.0,29.3,0.0 -2019,8,28,23,0,0.0,0.0,0.0,28.1,0.0 -2019,8,28,23,15,0.0,0.0,0.0,28.1,0.0 -2019,8,28,23,30,0.0,0.0,0.0,28.1,0.0 -2019,8,28,23,45,0.0,0.0,0.0,28.1,0.0 -2019,8,29,0,0,0.0,0.0,0.0,26.4,0.0 -2019,8,29,0,15,0.0,0.0,0.0,26.4,0.0 -2019,8,29,0,30,0.0,0.0,0.0,26.4,0.0 -2019,8,29,0,45,0.0,0.0,0.0,26.4,0.0 -2019,8,29,1,0,0.0,0.0,0.0,24.4,0.0 -2019,8,29,1,15,0.0,0.0,0.0,24.4,0.0 -2019,8,29,1,30,0.0,0.0,0.0,24.4,0.0 -2019,8,29,1,45,0.0,0.0,0.0,24.4,0.0 -2019,8,29,2,0,0.0,0.0,0.0,24.3,0.0 -2019,8,29,2,15,0.0,0.0,0.0,24.3,0.0 -2019,8,29,2,30,0.0,0.0,0.0,24.3,0.0 -2019,8,29,2,45,0.0,0.0,0.0,24.3,0.0 -2019,8,29,3,0,0.0,0.0,0.0,23.9,0.0 -2019,8,29,3,15,0.0,0.0,0.0,23.9,0.0 -2019,8,29,3,30,0.0,0.0,0.0,23.9,0.0 -2019,8,29,3,45,0.0,0.0,0.0,23.9,0.0 -2019,8,29,4,0,0.0,0.0,0.0,23.8,0.0 -2019,8,29,4,15,0.0,0.0,0.0,23.8,0.0 -2019,8,29,4,30,0.0,0.0,0.0,23.8,0.0 -2019,8,29,4,45,0.0,0.0,0.0,23.8,0.0 -2019,8,29,5,0,364.0,-87.05103894601991,4.0,23.1,0.0 -2019,8,29,5,15,364.0,-68.97686349376477,4.0,23.1,0.0 -2019,8,29,5,30,364.0,-50.45041126283321,4.0,23.1,0.0 -2019,8,29,5,45,364.0,-31.551015365910608,4.0,23.1,0.0 -2019,8,29,6,0,365.0,60.59545010998286,77.0,25.4,0.0 -2019,8,29,6,15,365.0,80.04999266446175,77.0,25.4,0.0 -2019,8,29,6,30,365.0,99.63163733496032,77.0,25.4,0.0 -2019,8,29,6,45,365.0,119.25653251277075,77.0,25.4,0.0 -2019,8,29,7,0,553.0,220.69280735693633,127.0,28.6,0.2 -2019,8,29,7,15,553.0,250.1752227081455,127.0,28.6,0.2 -2019,8,29,7,30,553.0,279.3425388647671,127.0,28.6,0.2 -2019,8,29,7,45,553.0,308.0698569011708,127.0,28.6,0.2 -2019,8,29,8,0,686.0,411.55630226658485,152.0,31.0,1.5 -2019,8,29,8,15,686.0,445.6462700873096,152.0,31.0,1.5 -2019,8,29,8,30,686.0,478.7422284840338,152.0,31.0,1.5 -2019,8,29,8,45,686.0,510.7024554819187,152.0,31.0,1.5 -2019,8,29,9,0,836.0,613.5336987102523,139.0,34.3,1.6 -2019,8,29,9,15,836.0,649.2204643457219,139.0,34.3,1.6 -2019,8,29,9,30,836.0,683.0434176985145,139.0,34.3,1.6 -2019,8,29,9,45,836.0,714.8577236897793,139.0,34.3,1.6 -2019,8,29,10,0,979.0,812.1041608336393,103.0,37.3,2.7 -2019,8,29,10,15,979.0,844.1880691604183,103.0,37.3,2.7 -2019,8,29,10,30,979.0,873.4740395012489,103.0,37.3,2.7 -2019,8,29,10,45,979.0,899.836664835067,103.0,37.3,2.7 -2019,8,29,11,0,1009.0,941.2957342799863,96.0,38.2,3.7 -2019,8,29,11,15,1009.0,962.1047056251408,96.0,38.2,3.7 -2019,8,29,11,30,1009.0,979.5923469874966,96.0,38.2,3.7 -2019,8,29,11,45,1009.0,993.6837736019884,96.0,38.2,3.7 -2019,8,29,12,0,789.0,895.2709712301456,185.0,37.3,4.6 -2019,8,29,12,15,789.0,900.8485316104384,185.0,37.3,4.6 -2019,8,29,12,30,789.0,903.6637004138315,185.0,37.3,4.6 -2019,8,29,12,45,789.0,903.7044226553161,185.0,37.3,4.6 -2019,8,29,13,0,368.0,668.9380897538767,335.0,37.7,4.7 -2019,8,29,13,15,368.0,666.3743038715586,335.0,37.7,4.7 -2019,8,29,13,30,368.0,662.5328370212103,335.0,37.7,4.7 -2019,8,29,13,45,368.0,657.4301389536379,335.0,37.7,4.7 -2019,8,29,14,0,511.0,677.9157575134034,239.0,37.0,5.6 -2019,8,29,14,15,511.0,667.4259527430411,239.0,37.0,5.6 -2019,8,29,14,30,511.0,655.2977899838777,239.0,37.0,5.6 -2019,8,29,14,45,511.0,641.5832038907972,239.0,37.0,5.6 -2019,8,29,15,0,880.0,755.0450327509149,88.0,36.3,4.7 -2019,8,29,15,15,880.0,726.2776311855465,88.0,36.3,4.7 -2019,8,29,15,30,880.0,695.114953209195,88.0,36.3,4.7 -2019,8,29,15,45,880.0,661.6904421931365,88.0,36.3,4.7 -2019,8,29,16,0,662.0,491.83348214832677,87.0,35.1,5.6 -2019,8,29,16,15,662.0,463.61594442747446,87.0,35.1,5.6 -2019,8,29,16,30,662.0,434.039892224927,87.0,35.1,5.6 -2019,8,29,16,45,662.0,403.23197473681324,87.0,35.1,5.6 -2019,8,29,17,0,208.0,147.33446551158818,58.0,33.6,4.4 -2019,8,29,17,15,208.0,137.00636525315664,58.0,33.6,4.4 -2019,8,29,17,30,208.0,126.41982112119572,58.0,33.6,4.4 -2019,8,29,17,45,208.0,115.62016632295428,58.0,33.6,4.4 -2019,8,29,18,0,104.0,24.32682331913574,1.0,31.4,3.0 -2019,8,29,18,15,104.0,18.783611194023937,1.0,31.4,3.0 -2019,8,29,18,30,104.0,13.204183671470943,1.0,31.4,3.0 -2019,8,29,18,45,104.0,7.61243271669754,1.0,31.4,3.0 -2019,8,29,19,0,0.0,0.0,0.0,28.8,2.1 -2019,8,29,19,15,0.0,0.0,0.0,28.8,2.1 -2019,8,29,19,30,0.0,0.0,0.0,28.8,2.1 -2019,8,29,19,45,0.0,0.0,0.0,28.8,2.1 -2019,8,29,20,0,0.0,0.0,0.0,27.7,2.0 -2019,8,29,20,15,0.0,0.0,0.0,27.7,2.0 -2019,8,29,20,30,0.0,0.0,0.0,27.7,2.0 -2019,8,29,20,45,0.0,0.0,0.0,27.7,2.0 -2019,8,29,21,0,0.0,0.0,0.0,26.7,1.5 -2019,8,29,21,15,0.0,0.0,0.0,26.7,1.5 -2019,8,29,21,30,0.0,0.0,0.0,26.7,1.5 -2019,8,29,21,45,0.0,0.0,0.0,26.7,1.5 -2019,8,29,22,0,0.0,0.0,0.0,26.6,1.3 -2019,8,29,22,15,0.0,0.0,0.0,26.6,1.3 -2019,8,29,22,30,0.0,0.0,0.0,26.6,1.3 -2019,8,29,22,45,0.0,0.0,0.0,26.6,1.3 -2019,8,29,23,0,0.0,0.0,0.0,26.1,0.0 -2019,8,29,23,15,0.0,0.0,0.0,26.1,0.0 -2019,8,29,23,30,0.0,0.0,0.0,26.1,0.0 -2019,8,29,23,45,0.0,0.0,0.0,26.1,0.0 -2019,8,30,0,0,0.0,0.0,0.0,25.8,0.0 -2019,8,30,0,15,0.0,0.0,0.0,25.8,0.0 -2019,8,30,0,30,0.0,0.0,0.0,25.8,0.0 -2019,8,30,0,45,0.0,0.0,0.0,25.8,0.0 -2019,8,30,1,0,0.0,0.0,0.0,23.3,0.0 -2019,8,30,1,15,0.0,0.0,0.0,23.3,0.0 -2019,8,30,1,30,0.0,0.0,0.0,23.3,0.0 -2019,8,30,1,45,0.0,0.0,0.0,23.3,0.0 -2019,8,30,2,0,0.0,0.0,0.0,23.2,0.0 -2019,8,30,2,15,0.0,0.0,0.0,23.2,0.0 -2019,8,30,2,30,0.0,0.0,0.0,23.2,0.0 -2019,8,30,2,45,0.0,0.0,0.0,23.2,0.0 -2019,8,30,3,0,0.0,0.0,0.0,22.8,0.0 -2019,8,30,3,15,0.0,0.0,0.0,22.8,0.0 -2019,8,30,3,30,0.0,0.0,0.0,22.8,0.0 -2019,8,30,3,45,0.0,0.0,0.0,22.8,0.0 -2019,8,30,4,0,0.0,0.0,0.0,22.8,0.0 -2019,8,30,4,15,0.0,0.0,0.0,22.8,0.0 -2019,8,30,4,30,0.0,0.0,0.0,22.8,0.0 -2019,8,30,4,45,0.0,0.0,0.0,22.8,0.0 -2019,8,30,5,0,120.0,-16.48494128834109,14.0,22.9,0.0 -2019,8,30,5,15,120.0,-10.520206055308009,14.0,22.9,0.0 -2019,8,30,5,30,120.0,-4.406213045953091,14.0,22.9,0.0 -2019,8,30,5,45,120.0,1.8308566830203414,14.0,22.9,0.0 -2019,8,30,6,0,239.0,72.37722095765508,84.0,24.2,0.0 -2019,8,30,6,15,239.0,85.1292377042673,84.0,24.2,0.0 -2019,8,30,6,30,239.0,97.96456704008452,84.0,24.2,0.0 -2019,8,30,6,45,239.0,110.82824611437523,84.0,24.2,0.0 -2019,8,30,7,0,337.0,218.9295784880594,163.0,26.4,0.2 -2019,8,30,7,15,337.0,236.91500098411842,163.0,26.4,0.2 -2019,8,30,7,30,337.0,254.70820068990344,163.0,26.4,0.2 -2019,8,30,7,45,337.0,272.2329843926128,163.0,26.4,0.2 -2019,8,30,8,0,292.0,363.53405939812893,254.0,29.2,1.6 -2019,8,30,8,15,292.0,378.0597952213163,254.0,29.2,1.6 -2019,8,30,8,30,292.0,392.16198361334375,254.0,29.2,1.6 -2019,8,30,8,45,292.0,405.78023683850944,254.0,29.2,1.6 -2019,8,30,9,0,401.0,518.3950411567196,292.0,31.4,2.2 -2019,8,30,9,15,401.0,535.5305931226306,292.0,31.4,2.2 -2019,8,30,9,30,401.0,551.7712068206487,292.0,31.4,2.2 -2019,8,30,9,45,401.0,567.0473374496144,292.0,31.4,2.2 -2019,8,30,10,0,633.0,697.6654114283567,241.0,34.1,2.7 -2019,8,30,10,15,633.0,718.431805897689,241.0,34.1,2.7 -2019,8,30,10,30,633.0,737.3872276100508,241.0,34.1,2.7 -2019,8,30,10,45,633.0,754.4505065395804,241.0,34.1,2.7 -2019,8,30,11,0,919.0,898.3556722317363,131.0,35.7,3.9 -2019,8,30,11,15,919.0,917.3283124749257,131.0,35.7,3.9 -2019,8,30,11,30,919.0,933.2727204308313,131.0,35.7,3.9 -2019,8,30,11,45,919.0,946.120619696756,131.0,35.7,3.9 -2019,8,30,12,0,862.0,927.6585946457074,154.0,36.0,5.7 -2019,8,30,12,15,862.0,933.7585598477033,154.0,36.0,5.7 -2019,8,30,12,30,862.0,936.8374026692202,154.0,36.0,5.7 -2019,8,30,12,45,862.0,936.8819390326238,154.0,36.0,5.7 -2019,8,30,13,0,25.0,360.6186768627137,338.0,34.5,2.4 -2019,8,30,13,15,25.0,360.4443249339227,338.0,34.5,2.4 -2019,8,30,13,30,25.0,360.1830834787122,338.0,34.5,2.4 -2019,8,30,13,45,25.0,359.8360711730999,338.0,34.5,2.4 -2019,8,30,14,0,30.0,310.68572877246345,285.0,30.8,8.5 -2019,8,30,14,15,30.0,310.069246525654,285.0,30.8,8.5 -2019,8,30,14,30,30.0,309.3564785389167,285.0,30.8,8.5 -2019,8,30,14,45,30.0,308.5504769941967,285.0,30.8,8.5 -2019,8,30,15,0,520.0,569.6813507733681,177.0,31.6,2.1 -2019,8,30,15,15,520.0,552.6646986059686,177.0,31.6,2.1 -2019,8,30,15,30,520.0,534.2311793142353,177.0,31.6,2.1 -2019,8,30,15,45,520.0,514.4597280577409,177.0,31.6,2.1 -2019,8,30,16,0,605.0,463.15996265732906,95.0,32.5,1.8 -2019,8,30,16,15,605.0,437.3451300103871,95.0,32.5,1.8 -2019,8,30,16,30,605.0,410.28745951060523,95.0,32.5,1.8 -2019,8,30,16,45,605.0,382.10281625703277,95.0,32.5,1.8 -2019,8,30,17,0,391.0,215.6835528374462,49.0,32.5,1.7 -2019,8,30,17,15,391.0,196.24845720314667,49.0,32.5,1.7 -2019,8,30,17,30,391.0,176.32702998099853,49.0,32.5,1.7 -2019,8,30,17,45,391.0,156.0045777807601,49.0,32.5,1.7 -2019,8,30,18,0,107.0,23.635266796701337,0.0,30.5,2.7 -2019,8,30,18,15,107.0,17.926204905958635,0.0,30.5,2.7 -2019,8,30,18,30,107.0,12.179844073605329,0.0,30.5,2.7 -2019,8,30,18,45,107.0,6.420791098922886,0.0,30.5,2.7 -2019,8,30,19,0,0.0,0.0,0.0,29.3,0.2 -2019,8,30,19,15,0.0,0.0,0.0,29.3,0.2 -2019,8,30,19,30,0.0,0.0,0.0,29.3,0.2 -2019,8,30,19,45,0.0,0.0,0.0,29.3,0.2 -2019,8,30,20,0,0.0,0.0,0.0,28.1,2.2 -2019,8,30,20,15,0.0,0.0,0.0,28.1,2.2 -2019,8,30,20,30,0.0,0.0,0.0,28.1,2.2 -2019,8,30,20,45,0.0,0.0,0.0,28.1,2.2 -2019,8,30,21,0,0.0,0.0,0.0,26.6,3.0 -2019,8,30,21,15,0.0,0.0,0.0,26.6,3.0 -2019,8,30,21,30,0.0,0.0,0.0,26.6,3.0 -2019,8,30,21,45,0.0,0.0,0.0,26.6,3.0 -2019,8,30,22,0,0.0,0.0,0.0,25.5,2.0 -2019,8,30,22,15,0.0,0.0,0.0,25.5,2.0 -2019,8,30,22,30,0.0,0.0,0.0,25.5,2.0 -2019,8,30,22,45,0.0,0.0,0.0,25.5,2.0 -2019,8,30,23,0,0.0,0.0,0.0,24.4,1.3 -2019,8,30,23,15,0.0,0.0,0.0,24.4,1.3 -2019,8,30,23,30,0.0,0.0,0.0,24.4,1.3 -2019,8,30,23,45,0.0,0.0,0.0,24.4,1.3 -2019,8,31,0,0,0.0,0.0,0.0,24.3,0.0 -2019,8,31,0,15,0.0,0.0,0.0,24.3,0.0 -2019,8,31,0,30,0.0,0.0,0.0,24.3,0.0 -2019,8,31,0,45,0.0,0.0,0.0,24.3,0.0 -2019,8,31,1,0,0.0,0.0,0.0,23.8,0.0 -2019,8,31,1,15,0.0,0.0,0.0,23.8,0.0 -2019,8,31,1,30,0.0,0.0,0.0,23.8,0.0 -2019,8,31,1,45,0.0,0.0,0.0,23.8,0.0 -2019,8,31,2,0,0.0,0.0,0.0,22.8,0.0 -2019,8,31,2,15,0.0,0.0,0.0,22.8,0.0 -2019,8,31,2,30,0.0,0.0,0.0,22.8,0.0 -2019,8,31,2,45,0.0,0.0,0.0,22.8,0.0 -2019,8,31,3,0,0.0,0.0,0.0,22.7,0.0 -2019,8,31,3,15,0.0,0.0,0.0,22.7,0.0 -2019,8,31,3,30,0.0,0.0,0.0,22.7,0.0 -2019,8,31,3,45,0.0,0.0,0.0,22.7,0.0 -2019,8,31,4,0,0.0,0.0,0.0,22.3,0.0 -2019,8,31,4,15,0.0,0.0,0.0,22.3,0.0 -2019,8,31,4,30,0.0,0.0,0.0,22.3,0.0 -2019,8,31,4,45,0.0,0.0,0.0,22.3,0.0 -2019,8,31,5,0,207.0,-41.39754753280509,12.0,22.9,0.0 -2019,8,31,5,15,207.0,-31.098017874334744,12.0,22.9,0.0 -2019,8,31,5,30,207.0,-20.54075927502719,12.0,22.9,0.0 -2019,8,31,5,45,207.0,-9.770979536984463,12.0,22.9,0.0 -2019,8,31,6,0,414.0,49.33040697909707,71.0,24.1,0.2 -2019,8,31,6,15,414.0,71.44191877979746,71.0,24.1,0.2 -2019,8,31,6,30,414.0,93.69789143998055,71.0,24.1,0.2 -2019,8,31,6,45,414.0,116.0030214679166,71.0,24.1,0.2 -2019,8,31,7,0,530.0,216.10809488505868,130.0,25.9,1.6 -2019,8,31,7,15,530.0,244.42225838024945,130.0,25.9,1.6 -2019,8,31,7,30,530.0,272.4338086055817,130.0,25.9,1.6 -2019,8,31,7,45,530.0,300.02279580257925,130.0,25.9,1.6 -2019,8,31,8,0,568.0,395.2007042742546,184.0,28.1,1.9 -2019,8,31,8,15,568.0,423.4846990394073,184.0,28.1,1.9 -2019,8,31,8,30,568.0,450.9439773515321,184.0,28.1,1.9 -2019,8,31,8,45,568.0,477.46095436527133,184.0,28.1,1.9 -2019,8,31,9,0,766.0,593.0956223954125,163.0,30.9,0.4 -2019,8,31,9,15,766.0,625.8613350155426,163.0,30.9,0.4 -2019,8,31,9,30,766.0,656.9157931539452,163.0,30.9,0.4 -2019,8,31,9,45,766.0,686.1260168533042,163.0,30.9,0.4 -2019,8,31,10,0,728.0,724.0641256821792,201.0,32.9,2.9 -2019,8,31,10,15,728.0,747.9711702511232,201.0,32.9,2.9 -2019,8,31,10,30,728.0,769.793355723416,201.0,32.9,2.9 -2019,8,31,10,45,728.0,789.437236150662,201.0,32.9,2.9 -2019,8,31,11,0,729.0,818.6508619560078,212.0,34.1,1.6 -2019,8,31,11,15,729.0,833.7161316660303,212.0,34.1,1.6 -2019,8,31,11,30,729.0,846.3768263897692,212.0,34.1,1.6 -2019,8,31,11,45,729.0,856.5787310887126,212.0,34.1,1.6 -2019,8,31,12,0,514.0,761.9053142048383,302.0,35.6,3.0 -2019,8,31,12,15,514.0,765.5463113060193,302.0,35.6,3.0 -2019,8,31,12,30,514.0,767.3840361809853,302.0,35.6,3.0 -2019,8,31,12,45,514.0,767.410619409689,302.0,35.6,3.0 -2019,8,31,13,0,692.0,833.1812362525209,209.0,35.5,5.6 -2019,8,31,13,15,692.0,828.3503149311023,209.0,35.5,5.6 -2019,8,31,13,30,692.0,821.1118695363996,209.0,35.5,5.6 -2019,8,31,13,45,692.0,811.4968962028594,209.0,35.5,5.6 -2019,8,31,14,0,929.0,892.8002332574016,100.0,34.9,4.5 -2019,8,31,14,15,929.0,873.6906086307629,100.0,34.9,4.5 -2019,8,31,14,30,929.0,851.5963330162899,100.0,34.9,4.5 -2019,8,31,14,45,929.0,826.6120174941393,100.0,34.9,4.5 -2019,8,31,15,0,1003.0,813.5114991229879,59.0,34.9,3.7 -2019,8,31,15,15,1003.0,780.6559421739308,59.0,34.9,3.7 -2019,8,31,15,30,1003.0,745.0647144222481,59.0,34.9,3.7 -2019,8,31,15,45,1003.0,706.8902229692375,59.0,34.9,3.7 -2019,8,31,16,0,838.0,565.3918196197267,58.0,34.1,4.8 -2019,8,31,16,15,838.0,529.5990685203155,58.0,34.1,4.8 -2019,8,31,16,30,838.0,492.0830993573973,58.0,34.1,4.8 -2019,8,31,16,45,838.0,453.00456127048386,58.0,34.1,4.8 -2019,8,31,17,0,397.0,214.9579062529434,47.0,31.4,4.5 -2019,8,31,17,15,397.0,195.20470202872724,47.0,31.4,4.5 -2019,8,31,17,30,397.0,174.9572060677364,47.0,31.4,4.5 -2019,8,31,17,45,397.0,154.30212125612792,47.0,31.4,4.5 -2019,8,31,18,0,177.0,38.488759605395835,0.0,29.1,3.5 -2019,8,31,18,15,177.0,29.035287168864492,0.0,29.1,3.5 -2019,8,31,18,30,177.0,19.520052480815206,0.0,29.1,3.5 -2019,8,31,18,45,177.0,9.983801236987498,0.0,29.1,3.5 -2019,8,31,19,0,0.0,0.0,0.0,27.1,2.5 -2019,8,31,19,15,0.0,0.0,0.0,27.1,2.5 -2019,8,31,19,30,0.0,0.0,0.0,27.1,2.5 -2019,8,31,19,45,0.0,0.0,0.0,27.1,2.5 -2019,8,31,20,0,0.0,0.0,0.0,26.0,1.5 -2019,8,31,20,15,0.0,0.0,0.0,26.0,1.5 -2019,8,31,20,30,0.0,0.0,0.0,26.0,1.5 -2019,8,31,20,45,0.0,0.0,0.0,26.0,1.5 -2019,8,31,21,0,0.0,0.0,0.0,25.5,1.5 -2019,8,31,21,15,0.0,0.0,0.0,25.5,1.5 -2019,8,31,21,30,0.0,0.0,0.0,25.5,1.5 -2019,8,31,21,45,0.0,0.0,0.0,25.5,1.5 -2019,8,31,22,0,0.0,0.0,0.0,24.3,1.3 -2019,8,31,22,15,0.0,0.0,0.0,24.3,1.3 -2019,8,31,22,30,0.0,0.0,0.0,24.3,1.3 -2019,8,31,22,45,0.0,0.0,0.0,24.3,1.3 -2019,8,31,23,0,0.0,0.0,0.0,23.2,0.0 -2019,8,31,23,15,0.0,0.0,0.0,23.2,0.0 -2019,8,31,23,30,0.0,0.0,0.0,23.2,0.0 -2019,8,31,23,45,0.0,0.0,0.0,23.2,0.0 -2019,9,1,0,0,0.0,0.0,0.0,21.9,0.0 -2019,9,1,0,15,0.0,0.0,0.0,21.9,0.0 -2019,9,1,0,30,0.0,0.0,0.0,21.9,0.0 -2019,9,1,0,45,0.0,0.0,0.0,21.9,0.0 -2019,9,1,1,0,0.0,0.0,0.0,19.9,0.0 -2019,9,1,1,15,0.0,0.0,0.0,19.9,0.0 -2019,9,1,1,30,0.0,0.0,0.0,19.9,0.0 -2019,9,1,1,45,0.0,0.0,0.0,19.9,0.0 -2019,9,1,2,0,0.0,0.0,0.0,19.4,0.0 -2019,9,1,2,15,0.0,0.0,0.0,19.4,0.0 -2019,9,1,2,30,0.0,0.0,0.0,19.4,0.0 -2019,9,1,2,45,0.0,0.0,0.0,19.4,0.0 -2019,9,1,3,0,0.0,0.0,0.0,19.3,0.0 -2019,9,1,3,15,0.0,0.0,0.0,19.3,0.0 -2019,9,1,3,30,0.0,0.0,0.0,19.3,0.0 -2019,9,1,3,45,0.0,0.0,0.0,19.3,0.0 -2019,9,1,4,0,0.0,0.0,0.0,18.3,0.0 -2019,9,1,4,15,0.0,0.0,0.0,18.3,0.0 -2019,9,1,4,30,0.0,0.0,0.0,18.3,0.0 -2019,9,1,4,45,0.0,0.0,0.0,18.3,0.0 -2019,9,1,5,0,267.0,-57.92533215476465,12.0,18.6,0.0 -2019,9,1,5,15,267.0,-44.62754881018334,12.0,18.6,0.0 -2019,9,1,5,30,267.0,-30.9970101136075,12.0,18.6,0.0 -2019,9,1,5,45,267.0,-17.092084124334317,12.0,18.6,0.0 -2019,9,1,6,0,535.0,29.999296177743524,60.0,21.0,0.0 -2019,9,1,6,15,535.0,58.60106040952791,60.0,21.0,0.0 -2019,9,1,6,30,535.0,87.38968818465058,60.0,21.0,0.0 -2019,9,1,6,45,535.0,116.24190217926812,60.0,21.0,0.0 -2019,9,1,7,0,778.0,206.6571418049113,83.0,24.2,0.0 -2019,9,1,7,15,778.0,248.26050185171474,83.0,24.2,0.0 -2019,9,1,7,30,778.0,289.4192176898698,83.0,24.2,0.0 -2019,9,1,7,45,778.0,329.9570413793566,83.0,24.2,0.0 -2019,9,1,8,0,914.0,425.8176744657972,89.0,27.0,0.0 -2019,9,1,8,15,914.0,471.3751397250342,89.0,27.0,0.0 -2019,9,1,8,30,914.0,515.6042215126467,89.0,27.0,0.0 -2019,9,1,8,45,914.0,558.3155241102481,89.0,27.0,0.0 -2019,9,1,9,0,996.0,641.1103354029599,85.0,29.8,0.4 -2019,9,1,9,15,996.0,683.7556311971435,85.0,29.8,0.4 -2019,9,1,9,30,996.0,724.1736916371489,85.0,29.8,0.4 -2019,9,1,9,45,996.0,762.1914403830783,85.0,29.8,0.4 -2019,9,1,10,0,1043.0,825.2749608643915,79.0,33.0,3.0 -2019,9,1,10,15,1043.0,859.5596143760323,79.0,33.0,3.0 -2019,9,1,10,30,1043.0,890.8544097501209,79.0,33.0,3.0 -2019,9,1,10,45,1043.0,919.0253378684008,79.0,33.0,3.0 -2019,9,1,11,0,1063.0,957.537610528066,76.0,34.5,2.7 -2019,9,1,11,15,1063.0,979.5265149627953,76.0,34.5,2.7 -2019,9,1,11,30,1063.0,998.0057597235029,76.0,34.5,2.7 -2019,9,1,11,45,1063.0,1012.8962138471381,76.0,34.5,2.7 -2019,9,1,12,0,1059.0,1021.5663469956571,77.0,35.1,3.2 -2019,9,1,12,15,1059.0,1029.07520892501,77.0,35.1,3.2 -2019,9,1,12,30,1059.0,1032.8651658974504,77.0,35.1,3.2 -2019,9,1,12,45,1059.0,1032.9199887353784,77.0,35.1,3.2 -2019,9,1,13,0,1030.0,1008.1630084602021,82.0,35.5,4.0 -2019,9,1,13,15,1030.0,1000.9655024015832,82.0,35.5,4.0 -2019,9,1,13,30,1030.0,990.1810678978854,82.0,35.5,4.0 -2019,9,1,13,45,1030.0,975.8558855533104,82.0,35.5,4.0 -2019,9,1,14,0,971.0,912.8697187921946,87.0,34.3,3.3 -2019,9,1,14,15,971.0,892.8767809125385,87.0,34.3,3.3 -2019,9,1,14,30,971.0,869.761231105224,87.0,34.3,3.3 -2019,9,1,14,45,971.0,843.62205370329,87.0,34.3,3.3 -2019,9,1,15,0,873.0,742.1396917933159,88.0,33.6,4.6 -2019,9,1,15,15,873.0,713.5148504225145,88.0,33.6,4.6 -2019,9,1,15,30,873.0,682.5066027107612,88.0,33.6,4.6 -2019,9,1,15,45,873.0,649.2477307352303,88.0,33.6,4.6 -2019,9,1,16,0,706.0,502.282636642327,77.0,32.5,4.9 -2019,9,1,16,15,706.0,472.0986425459713,77.0,32.5,4.9 -2019,9,1,16,30,706.0,440.46146024088665,77.0,32.5,4.9 -2019,9,1,16,45,706.0,407.50656499873224,77.0,32.5,4.9 -2019,9,1,17,0,412.0,217.95542605239083,45.0,31.4,5.0 -2019,9,1,17,15,412.0,197.43600006749384,45.0,31.4,5.0 -2019,9,1,17,30,412.0,176.4031088952495,45.0,31.4,5.0 -2019,9,1,17,45,412.0,154.94681860468566,45.0,31.4,5.0 -2019,9,1,18,0,0.0,0.0,0.0,29.1,4.0 -2019,9,1,18,15,0.0,0.0,0.0,29.1,4.0 -2019,9,1,18,30,0.0,0.0,0.0,29.1,4.0 -2019,9,1,18,45,0.0,0.0,0.0,29.1,4.0 -2019,9,1,19,0,0.0,0.0,0.0,26.4,2.9 -2019,9,1,19,15,0.0,0.0,0.0,26.4,2.9 -2019,9,1,19,30,0.0,0.0,0.0,26.4,2.9 -2019,9,1,19,45,0.0,0.0,0.0,26.4,2.9 -2019,9,1,20,0,0.0,0.0,0.0,24.4,1.3 -2019,9,1,20,15,0.0,0.0,0.0,24.4,1.3 -2019,9,1,20,30,0.0,0.0,0.0,24.4,1.3 -2019,9,1,20,45,0.0,0.0,0.0,24.4,1.3 -2019,9,1,21,0,0.0,0.0,0.0,24.2,0.0 -2019,9,1,21,15,0.0,0.0,0.0,24.2,0.0 -2019,9,1,21,30,0.0,0.0,0.0,24.2,0.0 -2019,9,1,21,45,0.0,0.0,0.0,24.2,0.0 -2019,9,1,22,0,0.0,0.0,0.0,22.5,0.0 -2019,9,1,22,15,0.0,0.0,0.0,22.5,0.0 -2019,9,1,22,30,0.0,0.0,0.0,22.5,0.0 -2019,9,1,22,45,0.0,0.0,0.0,22.5,0.0 -2019,9,1,23,0,0.0,0.0,0.0,20.5,0.0 -2019,9,1,23,15,0.0,0.0,0.0,20.5,0.0 -2019,9,1,23,30,0.0,0.0,0.0,20.5,0.0 -2019,9,1,23,45,0.0,0.0,0.0,20.5,0.0 -2019,9,2,0,0,0.0,0.0,0.0,19.2,0.0 -2019,9,2,0,15,0.0,0.0,0.0,19.2,0.0 -2019,9,2,0,30,0.0,0.0,0.0,19.2,0.0 -2019,9,2,0,45,0.0,0.0,0.0,19.2,0.0 -2019,9,2,1,0,0.0,0.0,0.0,17.7,0.2 -2019,9,2,1,15,0.0,0.0,0.0,17.7,0.2 -2019,9,2,1,30,0.0,0.0,0.0,17.7,0.2 -2019,9,2,1,45,0.0,0.0,0.0,17.7,0.2 -2019,9,2,2,0,0.0,0.0,0.0,16.7,1.6 -2019,9,2,2,15,0.0,0.0,0.0,16.7,1.6 -2019,9,2,2,30,0.0,0.0,0.0,16.7,1.6 -2019,9,2,2,45,0.0,0.0,0.0,16.7,1.6 -2019,9,2,3,0,0.0,0.0,0.0,16.5,2.0 -2019,9,2,3,15,0.0,0.0,0.0,16.5,2.0 -2019,9,2,3,30,0.0,0.0,0.0,16.5,2.0 -2019,9,2,3,45,0.0,0.0,0.0,16.5,2.0 -2019,9,2,4,0,0.0,0.0,0.0,15.1,1.5 -2019,9,2,4,15,0.0,0.0,0.0,15.1,1.5 -2019,9,2,4,30,0.0,0.0,0.0,15.1,1.5 -2019,9,2,4,45,0.0,0.0,0.0,15.1,1.5 -2019,9,2,5,0,617.0,-164.0232851375636,0.0,15.9,1.6 -2019,9,2,5,15,617.0,-133.26533030287726,0.0,15.9,1.6 -2019,9,2,5,30,617.0,-101.73770778580858,0.0,15.9,1.6 -2019,9,2,5,45,617.0,-69.57542370618425,0.0,15.9,1.6 -2019,9,2,6,0,631.0,13.24615332218724,51.0,18.8,1.9 -2019,9,2,6,15,631.0,47.01161551937975,51.0,18.8,1.9 -2019,9,2,6,30,631.0,80.99767718230758,51.0,18.8,1.9 -2019,9,2,6,45,631.0,115.05880477729535,51.0,18.8,1.9 -2019,9,2,7,0,955.0,199.39450376721817,51.0,22.7,0.0 -2019,9,2,7,15,955.0,250.51045901536355,51.0,22.7,0.0 -2019,9,2,7,30,955.0,301.0801022962769,51.0,22.7,0.0 -2019,9,2,7,45,955.0,350.88688663383704,51.0,22.7,0.0 -2019,9,2,8,0,1014.0,433.26133735630196,63.0,27.0,0.0 -2019,9,2,8,15,1014.0,483.8502810373917,63.0,27.0,0.0 -2019,9,2,8,30,1014.0,532.9641313117147,63.0,27.0,0.0 -2019,9,2,8,45,1014.0,580.3925751323014,63.0,27.0,0.0 -2019,9,2,9,0,996.0,637.9396317109262,85.0,29.7,0.2 -2019,9,2,9,15,996.0,680.6246459280045,85.0,29.7,0.2 -2019,9,2,9,30,996.0,721.0803504173065,85.0,29.7,0.2 -2019,9,2,9,45,996.0,759.133507641336,85.0,29.7,0.2 -2019,9,2,10,0,1039.0,821.2574233898065,81.0,32.4,2.2 -2019,9,2,10,15,1039.0,855.4424012681303,81.0,32.4,2.2 -2019,9,2,10,30,1039.0,886.6462134112703,81.0,32.4,2.2 -2019,9,2,10,45,1039.0,914.7352403051331,81.0,32.4,2.2 -2019,9,2,11,0,1099.0,972.170867436241,64.0,34.0,2.6 -2019,9,2,11,15,1099.0,994.9256305678834,64.0,34.0,2.6 -2019,9,2,11,30,1099.0,1014.0484949484035,64.0,34.0,2.6 -2019,9,2,11,45,1099.0,1029.457573536728,64.0,34.0,2.6 -2019,9,2,12,0,1115.0,1049.311987039452,58.0,35.1,2.6 -2019,9,2,12,15,1115.0,1057.2252814785284,58.0,35.1,2.6 -2019,9,2,12,30,1115.0,1061.219368161241,58.0,35.1,2.6 -2019,9,2,12,45,1115.0,1061.2771437952306,58.0,35.1,2.6 -2019,9,2,13,0,1062.0,1022.8933267774861,71.0,36.0,2.8 -2019,9,2,13,15,1062.0,1015.4652970955465,71.0,36.0,2.8 -2019,9,2,13,30,1062.0,1004.3354558777718,71.0,36.0,2.8 -2019,9,2,13,45,1062.0,989.5514628129409,71.0,36.0,2.8 -2019,9,2,14,0,971.0,910.042846607717,87.0,34.9,4.2 -2019,9,2,14,15,971.0,890.031287964696,87.0,34.9,4.2 -2019,9,2,14,30,971.0,866.8942090961898,87.0,34.9,4.2 -2019,9,2,14,45,971.0,840.7306865259825,87.0,34.9,4.2 -2019,9,2,15,0,849.0,726.6047273396289,93.0,34.1,5.1 -2019,9,2,15,15,849.0,698.7408958822668,93.0,34.1,5.1 -2019,9,2,15,30,849.0,668.5570224823689,93.0,34.1,5.1 -2019,9,2,15,45,849.0,636.182359119746,93.0,34.1,5.1 -2019,9,2,16,0,544.0,426.98705919411316,101.0,32.7,4.8 -2019,9,2,16,15,544.0,403.7074757357179,101.0,32.7,4.8 -2019,9,2,16,30,544.0,379.30711230109193,101.0,32.7,4.8 -2019,9,2,16,45,544.0,353.8904549924743,101.0,32.7,4.8 -2019,9,2,17,0,172.0,122.63494631658347,51.0,31.4,4.5 -2019,9,2,17,15,172.0,114.0606055847098,51.0,31.4,4.5 -2019,9,2,17,30,172.0,105.27170595272304,51.0,31.4,4.5 -2019,9,2,17,45,172.0,96.30588283814382,51.0,31.4,4.5 -2019,9,2,18,0,0.0,0.0,0.0,29.1,3.9 -2019,9,2,18,15,0.0,0.0,0.0,29.1,3.9 -2019,9,2,18,30,0.0,0.0,0.0,29.1,3.9 -2019,9,2,18,45,0.0,0.0,0.0,29.1,3.9 -2019,9,2,19,0,0.0,0.0,0.0,26.9,2.5 -2019,9,2,19,15,0.0,0.0,0.0,26.9,2.5 -2019,9,2,19,30,0.0,0.0,0.0,26.9,2.5 -2019,9,2,19,45,0.0,0.0,0.0,26.9,2.5 -2019,9,2,20,0,0.0,0.0,0.0,24.9,1.3 -2019,9,2,20,15,0.0,0.0,0.0,24.9,1.3 -2019,9,2,20,30,0.0,0.0,0.0,24.9,1.3 -2019,9,2,20,45,0.0,0.0,0.0,24.9,1.3 -2019,9,2,21,0,0.0,0.0,0.0,24.3,0.0 -2019,9,2,21,15,0.0,0.0,0.0,24.3,0.0 -2019,9,2,21,30,0.0,0.0,0.0,24.3,0.0 -2019,9,2,21,45,0.0,0.0,0.0,24.3,0.0 -2019,9,2,22,0,0.0,0.0,0.0,23.8,0.0 -2019,9,2,22,15,0.0,0.0,0.0,23.8,0.0 -2019,9,2,22,30,0.0,0.0,0.0,23.8,0.0 -2019,9,2,22,45,0.0,0.0,0.0,23.8,0.0 -2019,9,2,23,0,0.0,0.0,0.0,22.6,0.2 -2019,9,2,23,15,0.0,0.0,0.0,22.6,0.2 -2019,9,2,23,30,0.0,0.0,0.0,22.6,0.2 -2019,9,2,23,45,0.0,0.0,0.0,22.6,0.2 -2019,9,3,0,0,0.0,0.0,0.0,20.9,1.3 -2019,9,3,0,15,0.0,0.0,0.0,20.9,1.3 -2019,9,3,0,30,0.0,0.0,0.0,20.9,1.3 -2019,9,3,0,45,0.0,0.0,0.0,20.9,1.3 -2019,9,3,1,0,0.0,0.0,0.0,19.3,0.0 -2019,9,3,1,15,0.0,0.0,0.0,19.3,0.0 -2019,9,3,1,30,0.0,0.0,0.0,19.3,0.0 -2019,9,3,1,45,0.0,0.0,0.0,19.3,0.0 -2019,9,3,2,0,0.0,0.0,0.0,18.8,0.2 -2019,9,3,2,15,0.0,0.0,0.0,18.8,0.2 -2019,9,3,2,30,0.0,0.0,0.0,18.8,0.2 -2019,9,3,2,45,0.0,0.0,0.0,18.8,0.2 -2019,9,3,3,0,0.0,0.0,0.0,17.8,1.3 -2019,9,3,3,15,0.0,0.0,0.0,17.8,1.3 -2019,9,3,3,30,0.0,0.0,0.0,17.8,1.3 -2019,9,3,3,45,0.0,0.0,0.0,17.8,1.3 -2019,9,3,4,0,0.0,0.0,0.0,17.8,0.2 -2019,9,3,4,15,0.0,0.0,0.0,17.8,0.2 -2019,9,3,4,30,0.0,0.0,0.0,17.8,0.2 -2019,9,3,4,45,0.0,0.0,0.0,17.8,0.2 -2019,9,3,5,0,164.0,-31.247157840717286,13.0,18.2,1.3 -2019,9,3,5,15,164.0,-23.06433129669236,13.0,18.2,1.3 -2019,9,3,5,30,164.0,-14.67674285691307,13.0,18.2,1.3 -2019,9,3,5,45,164.0,-6.120309462764606,13.0,18.2,1.3 -2019,9,3,6,0,328.0,54.13665784870362,75.0,21.5,0.2 -2019,9,3,6,15,328.0,71.7039324419168,75.0,21.5,0.2 -2019,9,3,6,30,328.0,89.3859790873253,75.0,21.5,0.2 -2019,9,3,6,45,328.0,107.10708054659612,75.0,21.5,0.2 -2019,9,3,7,0,637.0,204.69844951918344,108.0,24.8,1.3 -2019,9,3,7,15,637.0,238.82400649550374,108.0,24.8,1.3 -2019,9,3,7,30,637.0,272.5848397750035,108.0,24.8,1.3 -2019,9,3,7,45,637.0,305.8363802865228,108.0,24.8,1.3 -2019,9,3,8,0,1014.0,429.8168715640878,63.0,28.1,0.2 -2019,9,3,8,15,1014.0,480.45093922981835,63.0,28.1,0.2 -2019,9,3,8,30,1014.0,529.6085977449186,63.0,28.1,0.2 -2019,9,3,8,45,1014.0,577.0793464688055,63.0,28.1,0.2 -2019,9,3,9,0,923.0,618.4340191551246,109.0,30.9,1.6 -2019,9,3,9,15,923.0,658.025796588586,109.0,30.9,1.6 -2019,9,3,9,30,923.0,695.5498147348293,109.0,30.9,1.6 -2019,9,3,9,45,923.0,730.8453899873613,109.0,30.9,1.6 -2019,9,3,10,0,873.0,761.292184022147,142.0,33.6,2.5 -2019,9,3,10,15,873.0,790.0410822692833,142.0,33.6,2.5 -2019,9,3,10,30,873.0,816.2828784002882,142.0,33.6,2.5 -2019,9,3,10,45,873.0,839.9052010154147,142.0,33.6,2.5 -2019,9,3,11,0,1078.0,958.5988929753355,71.0,35.8,1.6 -2019,9,3,11,15,1078.0,980.9387605221232,71.0,35.8,1.6 -2019,9,3,11,30,1078.0,999.7129510027941,71.0,35.8,1.6 -2019,9,3,11,45,1078.0,1014.8410704514437,71.0,35.8,1.6 -2019,9,3,12,0,1157.0,1070.2633552823384,45.0,37.3,3.0 -2019,9,3,12,15,1157.0,1078.4820532995284,45.0,37.3,3.0 -2019,9,3,12,30,1157.0,1082.6302866999686,45.0,37.3,3.0 -2019,9,3,12,45,1157.0,1082.6902921113895,45.0,37.3,3.0 -2019,9,3,13,0,998.0,983.611485701162,92.0,37.6,5.8 -2019,9,3,13,15,998.0,976.6248699053391,92.0,37.6,5.8 -2019,9,3,13,30,998.0,966.1564243300381,92.0,37.6,5.8 -2019,9,3,13,45,998.0,952.2509764663573,92.0,37.6,5.8 -2019,9,3,14,0,885.0,860.5217869193532,113.0,35.9,6.1 -2019,9,3,14,15,885.0,842.2663528822834,113.0,35.9,6.1 -2019,9,3,14,30,885.0,821.1596802522728,113.0,35.9,6.1 -2019,9,3,14,45,885.0,797.2921510418792,113.0,35.9,6.1 -2019,9,3,15,0,706.0,651.7262989726843,127.0,34.8,5.1 -2019,9,3,15,15,706.0,628.5350012267311,127.0,34.8,5.1 -2019,9,3,15,30,706.0,603.4127133527769,127.0,34.8,5.1 -2019,9,3,15,45,706.0,576.4670128443419,127.0,34.8,5.1 -2019,9,3,16,0,501.0,403.6224588515848,105.0,33.2,5.4 -2019,9,3,16,15,501.0,382.16386609366174,105.0,33.2,5.4 -2019,9,3,16,30,501.0,359.6721637389046,105.0,33.2,5.4 -2019,9,3,16,45,501.0,336.2436647097855,105.0,33.2,5.4 -2019,9,3,17,0,361.0,193.14033598878225,44.0,31.9,5.6 -2019,9,3,17,15,361.0,175.1281385351663,44.0,31.9,5.6 -2019,9,3,17,30,361.0,156.66521520126196,44.0,31.9,5.6 -2019,9,3,17,45,361.0,137.83062705926443,44.0,31.9,5.6 -2019,9,3,18,0,0.0,0.0,0.0,29.8,4.3 -2019,9,3,18,15,0.0,0.0,0.0,29.8,4.3 -2019,9,3,18,30,0.0,0.0,0.0,29.8,4.3 -2019,9,3,18,45,0.0,0.0,0.0,29.8,4.3 -2019,9,3,19,0,0.0,0.0,0.0,28.2,2.0 -2019,9,3,19,15,0.0,0.0,0.0,28.2,2.0 -2019,9,3,19,30,0.0,0.0,0.0,28.2,2.0 -2019,9,3,19,45,0.0,0.0,0.0,28.2,2.0 -2019,9,3,20,0,0.0,0.0,0.0,27.1,1.3 -2019,9,3,20,15,0.0,0.0,0.0,27.1,1.3 -2019,9,3,20,30,0.0,0.0,0.0,27.1,1.3 -2019,9,3,20,45,0.0,0.0,0.0,27.1,1.3 -2019,9,3,21,0,0.0,0.0,0.0,26.0,0.0 -2019,9,3,21,15,0.0,0.0,0.0,26.0,0.0 -2019,9,3,21,30,0.0,0.0,0.0,26.0,0.0 -2019,9,3,21,45,0.0,0.0,0.0,26.0,0.0 -2019,9,3,22,0,0.0,0.0,0.0,25.5,0.2 -2019,9,3,22,15,0.0,0.0,0.0,25.5,0.2 -2019,9,3,22,30,0.0,0.0,0.0,25.5,0.2 -2019,9,3,22,45,0.0,0.0,0.0,25.5,0.2 -2019,9,3,23,0,0.0,0.0,0.0,24.3,1.5 -2019,9,3,23,15,0.0,0.0,0.0,24.3,1.5 -2019,9,3,23,30,0.0,0.0,0.0,24.3,1.5 -2019,9,3,23,45,0.0,0.0,0.0,24.3,1.5 -2019,9,4,0,0,0.0,0.0,0.0,23.7,1.3 -2019,9,4,0,15,0.0,0.0,0.0,23.7,1.3 -2019,9,4,0,30,0.0,0.0,0.0,23.7,1.3 -2019,9,4,0,45,0.0,0.0,0.0,23.7,1.3 -2019,9,4,1,0,0.0,0.0,0.0,22.1,0.0 -2019,9,4,1,15,0.0,0.0,0.0,22.1,0.0 -2019,9,4,1,30,0.0,0.0,0.0,22.1,0.0 -2019,9,4,1,45,0.0,0.0,0.0,22.1,0.0 -2019,9,4,2,0,0.0,0.0,0.0,21.5,0.0 -2019,9,4,2,15,0.0,0.0,0.0,21.5,0.0 -2019,9,4,2,30,0.0,0.0,0.0,21.5,0.0 -2019,9,4,2,45,0.0,0.0,0.0,21.5,0.0 -2019,9,4,3,0,0.0,0.0,0.0,20.0,0.2 -2019,9,4,3,15,0.0,0.0,0.0,20.0,0.2 -2019,9,4,3,30,0.0,0.0,0.0,20.0,0.2 -2019,9,4,3,45,0.0,0.0,0.0,20.0,0.2 -2019,9,4,4,0,0.0,0.0,0.0,20.1,1.3 -2019,9,4,4,15,0.0,0.0,0.0,20.1,1.3 -2019,9,4,4,30,0.0,0.0,0.0,20.1,1.3 -2019,9,4,4,45,0.0,0.0,0.0,20.1,1.3 -2019,9,4,5,0,10.0,12.262297262845328,15.0,20.7,0.0 -2019,9,4,5,15,10.0,12.76167500638483,15.0,20.7,0.0 -2019,9,4,5,30,10.0,13.273548863940007,15.0,20.7,0.0 -2019,9,4,5,45,10.0,13.795726913068513,15.0,20.7,0.0 -2019,9,4,6,0,20.0,57.65194621439549,59.0,22.2,0.0 -2019,9,4,6,15,20.0,58.72403370143911,59.0,22.2,0.0 -2019,9,4,6,30,20.0,59.80312544405852,59.0,22.2,0.0 -2019,9,4,6,45,20.0,60.88460060574664,59.0,22.2,0.0 -2019,9,4,7,0,131.0,193.41307434208676,174.0,25.9,0.2 -2019,9,4,7,15,131.0,200.43702249399522,174.0,25.9,0.2 -2019,9,4,7,30,131.0,207.38590079904327,174.0,25.9,0.2 -2019,9,4,7,45,131.0,214.22995309351742,174.0,25.9,0.2 -2019,9,4,8,0,655.0,392.69936047387426,158.0,28.3,1.9 -2019,9,4,8,15,655.0,425.43462449763274,158.0,28.3,1.9 -2019,9,4,8,30,655.0,457.215380112704,158.0,28.3,1.9 -2019,9,4,8,45,655.0,487.9055372444738,158.0,28.3,1.9 -2019,9,4,9,0,996.0,631.467452251529,85.0,32.0,0.2 -2019,9,4,9,15,996.0,674.2269231061367,85.0,32.0,0.2 -2019,9,4,9,30,996.0,714.7531955870489,85.0,32.0,0.2 -2019,9,4,9,45,996.0,752.8727299737958,85.0,32.0,0.2 -2019,9,4,10,0,833.0,746.3039856516806,158.0,34.1,1.6 -2019,9,4,10,15,833.0,773.7589983457489,158.0,34.1,1.6 -2019,9,4,10,30,833.0,798.8197446636935,158.0,34.1,1.6 -2019,9,4,10,45,833.0,821.3789106423857,158.0,34.1,1.6 -2019,9,4,11,0,979.0,910.1089516037134,107.0,35.8,2.3 -2019,9,4,11,15,979.0,930.4144760209795,107.0,35.8,2.3 -2019,9,4,11,30,979.0,947.4790258631507,107.0,35.8,2.3 -2019,9,4,11,45,979.0,961.229528108006,107.0,35.8,2.3 -2019,9,4,12,0,935.0,948.7483548818309,123.0,37.2,4.3 -2019,9,4,12,15,935.0,955.3957418387682,123.0,37.2,4.3 -2019,9,4,12,30,935.0,958.75088550541,123.0,37.2,4.3 -2019,9,4,12,45,935.0,958.7994186414845,123.0,37.2,4.3 -2019,9,4,13,0,640.0,795.8677276890028,226.0,37.1,5.5 -2019,9,4,13,15,640.0,791.3835173102549,226.0,37.1,5.5 -2019,9,4,13,30,640.0,784.6645687277111,226.0,37.1,5.5 -2019,9,4,13,45,640.0,775.7396535107137,226.0,37.1,5.5 -2019,9,4,14,0,662.0,741.162979781026,184.0,36.0,3.8 -2019,9,4,14,15,662.0,727.4958736399217,184.0,36.0,3.8 -2019,9,4,14,30,662.0,711.6941603235402,184.0,36.0,3.8 -2019,9,4,14,45,662.0,693.8255051942255,184.0,36.0,3.8 -2019,9,4,15,0,683.0,636.509166141602,131.0,35.8,5.0 -2019,9,4,15,15,683.0,614.0542860784078,131.0,35.8,5.0 -2019,9,4,15,30,683.0,589.7297326488301,131.0,35.8,5.0 -2019,9,4,15,45,683.0,563.639667325028,131.0,35.8,5.0 -2019,9,4,16,0,473.0,388.4036880940279,108.0,34.9,4.5 -2019,9,4,16,15,473.0,368.1271252483507,108.0,34.9,4.5 -2019,9,4,16,30,473.0,346.8743608454234,108.0,34.9,4.5 -2019,9,4,16,45,473.0,324.73640248520326,108.0,34.9,4.5 -2019,9,4,17,0,256.0,150.89399654512016,46.0,34.1,4.0 -2019,9,4,17,15,256.0,138.10992631050897,46.0,34.1,4.0 -2019,9,4,17,30,256.0,125.0059555570963,46.0,34.1,4.0 -2019,9,4,17,45,256.0,111.6381974994066,46.0,34.1,4.0 -2019,9,4,18,0,0.0,0.0,0.0,31.9,3.6 -2019,9,4,18,15,0.0,0.0,0.0,31.9,3.6 -2019,9,4,18,30,0.0,0.0,0.0,31.9,3.6 -2019,9,4,18,45,0.0,0.0,0.0,31.9,3.6 -2019,9,4,19,0,0.0,0.0,0.0,29.3,3.4 -2019,9,4,19,15,0.0,0.0,0.0,29.3,3.4 -2019,9,4,19,30,0.0,0.0,0.0,29.3,3.4 -2019,9,4,19,45,0.0,0.0,0.0,29.3,3.4 -2019,9,4,20,0,0.0,0.0,0.0,28.2,2.1 -2019,9,4,20,15,0.0,0.0,0.0,28.2,2.1 -2019,9,4,20,30,0.0,0.0,0.0,28.2,2.1 -2019,9,4,20,45,0.0,0.0,0.0,28.2,2.1 -2019,9,4,21,0,0.0,0.0,0.0,27.1,1.9 -2019,9,4,21,15,0.0,0.0,0.0,27.1,1.9 -2019,9,4,21,30,0.0,0.0,0.0,27.1,1.9 -2019,9,4,21,45,0.0,0.0,0.0,27.1,1.9 -2019,9,4,22,0,0.0,0.0,0.0,26.6,0.0 -2019,9,4,22,15,0.0,0.0,0.0,26.6,0.0 -2019,9,4,22,30,0.0,0.0,0.0,26.6,0.0 -2019,9,4,22,45,0.0,0.0,0.0,26.6,0.0 -2019,9,4,23,0,0.0,0.0,0.0,26.0,0.0 -2019,9,4,23,15,0.0,0.0,0.0,26.0,0.0 -2019,9,4,23,30,0.0,0.0,0.0,26.0,0.0 -2019,9,4,23,45,0.0,0.0,0.0,26.0,0.0 -2019,9,5,0,0,0.0,0.0,0.0,25.5,0.0 -2019,9,5,0,15,0.0,0.0,0.0,25.5,0.0 -2019,9,5,0,30,0.0,0.0,0.0,25.5,0.0 -2019,9,5,0,45,0.0,0.0,0.0,25.5,0.0 -2019,9,5,1,0,0.0,0.0,0.0,24.3,0.0 -2019,9,5,1,15,0.0,0.0,0.0,24.3,0.0 -2019,9,5,1,30,0.0,0.0,0.0,24.3,0.0 -2019,9,5,1,45,0.0,0.0,0.0,24.3,0.0 -2019,9,5,2,0,0.0,0.0,0.0,23.8,0.0 -2019,9,5,2,15,0.0,0.0,0.0,23.8,0.0 -2019,9,5,2,30,0.0,0.0,0.0,23.8,0.0 -2019,9,5,2,45,0.0,0.0,0.0,23.8,0.0 -2019,9,5,3,0,0.0,0.0,0.0,23.3,0.0 -2019,9,5,3,15,0.0,0.0,0.0,23.3,0.0 -2019,9,5,3,30,0.0,0.0,0.0,23.3,0.0 -2019,9,5,3,45,0.0,0.0,0.0,23.3,0.0 -2019,9,5,4,0,0.0,0.0,0.0,23.3,0.0 -2019,9,5,4,15,0.0,0.0,0.0,23.3,0.0 -2019,9,5,4,30,0.0,0.0,0.0,23.3,0.0 -2019,9,5,4,45,0.0,0.0,0.0,23.3,0.0 -2019,9,5,5,0,7.0,13.055749709369763,15.0,23.4,0.0 -2019,9,5,5,15,7.0,13.405597373913935,15.0,23.4,0.0 -2019,9,5,5,30,7.0,13.76419940599014,15.0,23.4,0.0 -2019,9,5,5,45,7.0,14.130020216643445,15.0,23.4,0.0 -2019,9,5,6,0,14.0,52.0029866100016,53.0,24.0,0.0 -2019,9,5,6,15,14.0,52.754055932536545,53.0,24.0,0.0 -2019,9,5,6,30,14.0,53.51003220674637,53.0,24.0,0.0 -2019,9,5,6,45,14.0,54.26767822616531,53.0,24.0,0.0 -2019,9,5,7,0,3.0,86.43366063590477,86.0,24.4,0.0 -2019,9,5,7,15,3.0,86.59464474651583,86.0,24.4,0.0 -2019,9,5,7,30,3.0,86.75390830733504,86.0,24.4,0.0 -2019,9,5,7,45,3.0,86.91076932734443,86.0,24.4,0.0 -2019,9,5,8,0,0.0,94.0,94.0,24.7,0.2 -2019,9,5,8,15,0.0,94.0,94.0,24.7,0.2 -2019,9,5,8,30,0.0,94.0,94.0,24.7,0.2 -2019,9,5,8,45,0.0,94.0,94.0,24.7,0.2 -2019,9,5,9,0,2.0,185.0906974620423,184.0,27.0,1.3 -2019,9,5,9,15,2.0,185.17662942565133,184.0,27.0,1.3 -2019,9,5,9,30,2.0,185.25807342162315,184.0,27.0,1.3 -2019,9,5,9,45,2.0,185.33468069426345,184.0,27.0,1.3 -2019,9,5,10,0,29.0,371.38878639231353,351.0,29.0,0.0 -2019,9,5,10,15,29.0,372.3453776372729,351.0,29.0,0.0 -2019,9,5,10,30,29.0,373.21854753112893,351.0,29.0,0.0 -2019,9,5,10,45,29.0,374.0045570263445,351.0,29.0,0.0 -2019,9,5,11,0,66.0,461.9380227735516,408.0,30.4,0.2 -2019,9,5,11,15,66.0,463.3080437299535,408.0,30.4,0.2 -2019,9,5,11,30,66.0,464.4593949787526,408.0,30.4,0.2 -2019,9,5,11,45,66.0,465.38714625714283,408.0,30.4,0.2 -2019,9,5,12,0,144.0,540.735981363751,414.0,33.1,2.3 -2019,9,5,12,15,144.0,541.7605795865527,414.0,33.1,2.3 -2019,9,5,12,30,144.0,542.2777262880093,414.0,33.1,2.3 -2019,9,5,12,45,144.0,542.2852069665512,414.0,33.1,2.3 -2019,9,5,13,0,82.0,443.76531351582435,371.0,31.8,3.7 -2019,9,5,13,15,82.0,443.19030852484843,371.0,31.8,3.7 -2019,9,5,13,30,82.0,442.3287456982284,371.0,31.8,3.7 -2019,9,5,13,45,82.0,441.1843143802573,371.0,31.8,3.7 -2019,9,5,14,0,190.0,469.3263888816055,310.0,32.1,4.2 -2019,9,5,14,15,190.0,465.4006271683652,310.0,32.1,4.2 -2019,9,5,14,30,190.0,460.86171743132275,310.0,32.1,4.2 -2019,9,5,14,45,190.0,455.72909597879845,310.0,32.1,4.2 -2019,9,5,15,0,402.0,491.2628740868322,195.0,31.6,4.5 -2019,9,5,15,15,402.0,478.03567636303677,195.0,31.6,4.5 -2019,9,5,15,30,402.0,463.70713500140096,195.0,31.6,4.5 -2019,9,5,15,45,402.0,448.33860701579306,195.0,31.6,4.5 -2019,9,5,16,0,377.0,340.25735163315915,118.0,30.8,3.8 -2019,9,5,16,15,377.0,324.08302147350764,118.0,30.8,3.8 -2019,9,5,16,30,377.0,307.1299890057036,118.0,30.8,3.8 -2019,9,5,16,45,377.0,289.4708497174512,118.0,30.8,3.8 -2019,9,5,17,0,214.0,132.95167551568233,46.0,30.4,3.0 -2019,9,5,17,15,214.0,122.25633262818916,46.0,30.4,3.0 -2019,9,5,17,30,214.0,111.29335621900228,46.0,30.4,3.0 -2019,9,5,17,45,214.0,100.10969143617272,46.0,30.4,3.0 -2019,9,5,18,0,0.0,0.0,0.0,28.8,2.5 -2019,9,5,18,15,0.0,0.0,0.0,28.8,2.5 -2019,9,5,18,30,0.0,0.0,0.0,28.8,2.5 -2019,9,5,18,45,0.0,0.0,0.0,28.8,2.5 -2019,9,5,19,0,0.0,0.0,0.0,27.7,1.3 -2019,9,5,19,15,0.0,0.0,0.0,27.7,1.3 -2019,9,5,19,30,0.0,0.0,0.0,27.7,1.3 -2019,9,5,19,45,0.0,0.0,0.0,27.7,1.3 -2019,9,5,20,0,0.0,0.0,0.0,26.6,0.0 -2019,9,5,20,15,0.0,0.0,0.0,26.6,0.0 -2019,9,5,20,30,0.0,0.0,0.0,26.6,0.0 -2019,9,5,20,45,0.0,0.0,0.0,26.6,0.0 -2019,9,5,21,0,0.0,0.0,0.0,26.0,0.0 -2019,9,5,21,15,0.0,0.0,0.0,26.0,0.0 -2019,9,5,21,30,0.0,0.0,0.0,26.0,0.0 -2019,9,5,21,45,0.0,0.0,0.0,26.0,0.0 -2019,9,5,22,0,0.0,0.0,0.0,25.4,0.2 -2019,9,5,22,15,0.0,0.0,0.0,25.4,0.2 -2019,9,5,22,30,0.0,0.0,0.0,25.4,0.2 -2019,9,5,22,45,0.0,0.0,0.0,25.4,0.2 -2019,9,5,23,0,0.0,0.0,0.0,23.8,1.3 -2019,9,5,23,15,0.0,0.0,0.0,23.8,1.3 -2019,9,5,23,30,0.0,0.0,0.0,23.8,1.3 -2019,9,5,23,45,0.0,0.0,0.0,23.8,1.3 -2019,9,6,0,0,0.0,0.0,0.0,23.2,0.0 -2019,9,6,0,15,0.0,0.0,0.0,23.2,0.0 -2019,9,6,0,30,0.0,0.0,0.0,23.2,0.0 -2019,9,6,0,45,0.0,0.0,0.0,23.2,0.0 -2019,9,6,1,0,0.0,0.0,0.0,22.0,0.0 -2019,9,6,1,15,0.0,0.0,0.0,22.0,0.0 -2019,9,6,1,30,0.0,0.0,0.0,22.0,0.0 -2019,9,6,1,45,0.0,0.0,0.0,22.0,0.0 -2019,9,6,2,0,0.0,0.0,0.0,20.6,0.0 -2019,9,6,2,15,0.0,0.0,0.0,20.6,0.0 -2019,9,6,2,30,0.0,0.0,0.0,20.6,0.0 -2019,9,6,2,45,0.0,0.0,0.0,20.6,0.0 -2019,9,6,3,0,0.0,0.0,0.0,20.5,0.0 -2019,9,6,3,15,0.0,0.0,0.0,20.5,0.0 -2019,9,6,3,30,0.0,0.0,0.0,20.5,0.0 -2019,9,6,3,45,0.0,0.0,0.0,20.5,0.0 -2019,9,6,4,0,0.0,0.0,0.0,20.1,0.0 -2019,9,6,4,15,0.0,0.0,0.0,20.1,0.0 -2019,9,6,4,30,0.0,0.0,0.0,20.1,0.0 -2019,9,6,4,45,0.0,0.0,0.0,20.1,0.0 -2019,9,6,5,0,202.0,-46.91097278694997,10.0,20.9,0.0 -2019,9,6,5,15,202.0,-36.807614637930506,10.0,20.9,0.0 -2019,9,6,5,30,202.0,-26.45143642032624,10.0,20.9,0.0 -2019,9,6,5,45,202.0,-15.886784879174314,10.0,20.9,0.0 -2019,9,6,6,0,405.0,36.60715699461913,67.0,23.1,0.0 -2019,9,6,6,15,405.0,58.35120764124259,67.0,23.1,0.0 -2019,9,6,6,30,405.0,80.23731841805335,67.0,23.1,0.0 -2019,9,6,6,45,405.0,102.17176963868846,67.0,23.1,0.0 -2019,9,6,7,0,610.0,196.94317806297664,111.0,25.2,0.0 -2019,9,6,7,15,610.0,229.7017554068251,111.0,25.2,0.0 -2019,9,6,7,30,610.0,262.1102189213311,111.0,25.2,0.0 -2019,9,6,7,45,610.0,294.0297905902877,111.0,25.2,0.0 -2019,9,6,8,0,728.0,392.78314121410915,137.0,27.0,0.0 -2019,9,6,8,15,728.0,429.2242114809402,137.0,27.0,0.0 -2019,9,6,8,30,728.0,464.6027179032882,137.0,27.0,0.0 -2019,9,6,8,45,728.0,498.7671642852455,137.0,27.0,0.0 -2019,9,6,9,0,802.0,583.678770720263,149.0,29.1,0.4 -2019,9,6,9,15,802.0,618.1639547814523,149.0,29.1,0.4 -2019,9,6,9,30,802.0,650.8480815464955,149.0,29.1,0.4 -2019,9,6,9,45,802.0,681.5911925668262,149.0,29.1,0.4 -2019,9,6,10,0,846.0,744.0540503598613,152.0,30.7,3.5 -2019,9,6,10,15,846.0,771.9815597651747,152.0,30.7,3.5 -2019,9,6,10,30,846.0,797.4735978238489,152.0,30.7,3.5 -2019,9,6,10,45,846.0,820.4210037153081,152.0,30.7,3.5 -2019,9,6,11,0,865.0,856.1933437975856,152.0,31.8,3.1 -2019,9,6,11,15,865.0,874.1627125966413,152.0,31.8,3.1 -2019,9,6,11,30,865.0,889.2639817489468,152.0,31.8,3.1 -2019,9,6,11,45,865.0,901.4324853016028,152.0,31.8,3.1 -2019,9,6,12,0,860.0,906.2310516007617,152.0,32.8,3.2 -2019,9,6,12,15,860.0,912.3548797852502,152.0,32.8,3.2 -2019,9,6,12,30,860.0,915.4457669988112,152.0,32.8,3.2 -2019,9,6,12,45,860.0,915.4904775878745,152.0,32.8,3.2 -2019,9,6,13,0,831.0,885.8444296497751,151.0,32.7,3.8 -2019,9,6,13,15,831.0,880.0127692473625,151.0,32.7,3.8 -2019,9,6,13,30,831.0,871.2748593178094,151.0,32.7,3.8 -2019,9,6,13,45,831.0,859.6681169329025,151.0,32.7,3.8 -2019,9,6,14,0,776.0,793.2935996409824,145.0,32.2,5.0 -2019,9,6,14,15,776.0,777.2476473968596,145.0,32.2,5.0 -2019,9,6,14,30,776.0,758.6955461230276,145.0,32.2,5.0 -2019,9,6,14,45,776.0,737.7167387653116,145.0,32.2,5.0 -2019,9,6,15,0,686.0,631.3622770890643,128.0,31.5,4.6 -2019,9,6,15,15,686.0,608.7731552423602,128.0,31.5,4.6 -2019,9,6,15,30,686.0,584.3031825798018,128.0,31.5,4.6 -2019,9,6,15,45,686.0,558.0571432810286,128.0,31.5,4.6 -2019,9,6,16,0,538.0,410.3867575519499,95.0,30.6,4.9 -2019,9,6,16,15,538.0,387.28735915396885,95.0,30.6,4.9 -2019,9,6,16,30,538.0,363.0758556689832,95.0,30.6,4.9 -2019,9,6,16,45,538.0,337.8559244719331,95.0,30.6,4.9 -2019,9,6,17,0,293.0,160.0362814605043,42.0,29.3,5.0 -2019,9,6,17,15,293.0,145.38141048197605,42.0,29.3,5.0 -2019,9,6,17,30,293.0,130.35982524555004,42.0,29.3,5.0 -2019,9,6,17,45,293.0,115.0358504853643,42.0,29.3,5.0 -2019,9,6,18,0,0.0,0.0,0.0,28.2,4.4 -2019,9,6,18,15,0.0,0.0,0.0,28.2,4.4 -2019,9,6,18,30,0.0,0.0,0.0,28.2,4.4 -2019,9,6,18,45,0.0,0.0,0.0,28.2,4.4 -2019,9,6,19,0,0.0,0.0,0.0,27.1,2.5 -2019,9,6,19,15,0.0,0.0,0.0,27.1,2.5 -2019,9,6,19,30,0.0,0.0,0.0,27.1,2.5 -2019,9,6,19,45,0.0,0.0,0.0,27.1,2.5 -2019,9,6,20,0,0.0,0.0,0.0,26.0,1.5 -2019,9,6,20,15,0.0,0.0,0.0,26.0,1.5 -2019,9,6,20,30,0.0,0.0,0.0,26.0,1.5 -2019,9,6,20,45,0.0,0.0,0.0,26.0,1.5 -2019,9,6,21,0,0.0,0.0,0.0,25.5,1.5 -2019,9,6,21,15,0.0,0.0,0.0,25.5,1.5 -2019,9,6,21,30,0.0,0.0,0.0,25.5,1.5 -2019,9,6,21,45,0.0,0.0,0.0,25.5,1.5 -2019,9,6,22,0,0.0,0.0,0.0,24.3,1.3 -2019,9,6,22,15,0.0,0.0,0.0,24.3,1.3 -2019,9,6,22,30,0.0,0.0,0.0,24.3,1.3 -2019,9,6,22,45,0.0,0.0,0.0,24.3,1.3 -2019,9,6,23,0,0.0,0.0,0.0,23.8,0.2 -2019,9,6,23,15,0.0,0.0,0.0,23.8,0.2 -2019,9,6,23,30,0.0,0.0,0.0,23.8,0.2 -2019,9,6,23,45,0.0,0.0,0.0,23.8,0.2 -2019,9,7,0,0,0.0,0.0,0.0,22.7,1.3 -2019,9,7,0,15,0.0,0.0,0.0,22.7,1.3 -2019,9,7,0,30,0.0,0.0,0.0,22.7,1.3 -2019,9,7,0,45,0.0,0.0,0.0,22.7,1.3 -2019,9,7,1,0,0.0,0.0,0.0,22.1,0.0 -2019,9,7,1,15,0.0,0.0,0.0,22.1,0.0 -2019,9,7,1,30,0.0,0.0,0.0,22.1,0.0 -2019,9,7,1,45,0.0,0.0,0.0,22.1,0.0 -2019,9,7,2,0,0.0,0.0,0.0,21.0,0.0 -2019,9,7,2,15,0.0,0.0,0.0,21.0,0.0 -2019,9,7,2,30,0.0,0.0,0.0,21.0,0.0 -2019,9,7,2,45,0.0,0.0,0.0,21.0,0.0 -2019,9,7,3,0,0.0,0.0,0.0,20.6,0.0 -2019,9,7,3,15,0.0,0.0,0.0,20.6,0.0 -2019,9,7,3,30,0.0,0.0,0.0,20.6,0.0 -2019,9,7,3,45,0.0,0.0,0.0,20.6,0.0 -2019,9,7,4,0,0.0,0.0,0.0,20.5,0.0 -2019,9,7,4,15,0.0,0.0,0.0,20.5,0.0 -2019,9,7,4,30,0.0,0.0,0.0,20.5,0.0 -2019,9,7,4,45,0.0,0.0,0.0,20.5,0.0 -2019,9,7,5,0,240.0,-60.57545488011296,8.0,20.3,0.0 -2019,9,7,5,15,240.0,-48.56276191133725,8.0,20.3,0.0 -2019,9,7,5,30,240.0,-36.249470882445344,8.0,20.3,0.0 -2019,9,7,5,45,240.0,-23.688309195993742,8.0,20.3,0.0 -2019,9,7,6,0,480.0,23.13386865050299,61.0,22.9,0.0 -2019,9,7,6,15,480.0,48.92327954062367,61.0,22.9,0.0 -2019,9,7,6,30,480.0,74.88118006168041,61.0,22.9,0.0 -2019,9,7,6,45,480.0,100.8964144985129,61.0,22.9,0.0 -2019,9,7,7,0,546.0,196.91299909653912,122.0,24.2,0.0 -2019,9,7,7,15,546.0,226.255869596146,122.0,24.2,0.0 -2019,9,7,7,30,546.0,255.28513231460045,122.0,24.2,0.0 -2019,9,7,7,45,546.0,283.8764794922883,122.0,24.2,0.0 -2019,9,7,8,0,704.0,387.86238997836034,143.0,26.8,0.0 -2019,9,7,8,15,704.0,423.1276556503236,143.0,26.8,0.0 -2019,9,7,8,30,704.0,457.3646420759655,143.0,26.8,0.0 -2019,9,7,8,45,704.0,490.42674122325366,143.0,26.8,0.0 -2019,9,7,9,0,446.0,511.2143178183278,271.0,28.1,0.3 -2019,9,7,9,15,446.0,530.405768101122,271.0,28.1,0.3 -2019,9,7,9,30,446.0,548.5949067391786,271.0,28.1,0.3 -2019,9,7,9,45,446.0,565.703845048402,271.0,28.1,0.3 -2019,9,7,10,0,613.0,671.9824285113732,245.0,30.7,2.7 -2019,9,7,10,15,613.0,692.2329902471638,245.0,30.7,2.7 -2019,9,7,10,30,613.0,710.7175633963932,245.0,30.7,2.7 -2019,9,7,10,45,613.0,727.3569941790333,245.0,30.7,2.7 -2019,9,7,11,0,635.0,764.9197700631197,250.0,31.3,3.3 -2019,9,7,11,15,635.0,778.1207203775206,250.0,31.3,3.3 -2019,9,7,11,30,635.0,789.2146606262429,250.0,31.3,3.3 -2019,9,7,11,45,635.0,798.1540848539689,250.0,31.3,3.3 -2019,9,7,12,0,858.0,902.7713571925634,153.0,32.8,5.0 -2019,9,7,12,15,858.0,908.8853734663347,153.0,32.8,5.0 -2019,9,7,12,30,858.0,911.9713083023204,153.0,32.8,5.0 -2019,9,7,12,45,858.0,912.0159472537911,153.0,32.8,5.0 -2019,9,7,13,0,364.0,644.7353754054136,324.0,32.7,4.6 -2019,9,7,13,15,364.0,642.179101763616,324.0,32.7,4.6 -2019,9,7,13,30,364.0,638.3488909323958,324.0,32.7,4.6 -2019,9,7,13,45,364.0,633.261144462557,324.0,32.7,4.6 -2019,9,7,14,0,495.0,644.9619126056496,233.0,32.1,4.7 -2019,9,7,14,15,495.0,634.718993814799,233.0,32.1,4.7 -2019,9,7,14,30,495.0,622.8762771061598,233.0,32.1,4.7 -2019,9,7,14,45,495.0,609.4844748108058,233.0,32.1,4.7 -2019,9,7,15,0,614.0,592.5312579127614,144.0,31.3,5.6 -2019,9,7,15,15,614.0,572.2983474345787,144.0,31.3,5.6 -2019,9,7,15,30,614.0,550.380772699049,144.0,31.3,5.6 -2019,9,7,15,45,614.0,526.8723881260371,144.0,31.3,5.6 -2019,9,7,16,0,431.0,359.2111298990083,108.0,30.4,5.1 -2019,9,7,16,15,431.0,340.6924331393865,108.0,30.4,5.1 -2019,9,7,16,30,431.0,321.2821661095678,108.0,30.4,5.1 -2019,9,7,16,45,431.0,301.0634465528923,108.0,30.4,5.1 -2019,9,7,17,0,100.0,80.93569701404545,41.0,29.3,4.6 -2019,9,7,17,15,100.0,75.93040827705558,41.0,29.3,4.6 -2019,9,7,17,30,100.0,70.79987034835061,41.0,29.3,4.6 -2019,9,7,17,45,100.0,65.56605297899578,41.0,29.3,4.6 -2019,9,7,18,0,0.0,0.0,0.0,28.2,4.5 -2019,9,7,18,15,0.0,0.0,0.0,28.2,4.5 -2019,9,7,18,30,0.0,0.0,0.0,28.2,4.5 -2019,9,7,18,45,0.0,0.0,0.0,28.2,4.5 -2019,9,7,19,0,0.0,0.0,0.0,27.1,3.5 -2019,9,7,19,15,0.0,0.0,0.0,27.1,3.5 -2019,9,7,19,30,0.0,0.0,0.0,27.1,3.5 -2019,9,7,19,45,0.0,0.0,0.0,27.1,3.5 -2019,9,7,20,0,0.0,0.0,0.0,26.0,2.3 -2019,9,7,20,15,0.0,0.0,0.0,26.0,2.3 -2019,9,7,20,30,0.0,0.0,0.0,26.0,2.3 -2019,9,7,20,45,0.0,0.0,0.0,26.0,2.3 -2019,9,7,21,0,0.0,0.0,0.0,24.9,0.0 -2019,9,7,21,15,0.0,0.0,0.0,24.9,0.0 -2019,9,7,21,30,0.0,0.0,0.0,24.9,0.0 -2019,9,7,21,45,0.0,0.0,0.0,24.9,0.0 -2019,9,7,22,0,0.0,0.0,0.0,24.3,0.0 -2019,9,7,22,15,0.0,0.0,0.0,24.3,0.0 -2019,9,7,22,30,0.0,0.0,0.0,24.3,0.0 -2019,9,7,22,45,0.0,0.0,0.0,24.3,0.0 -2019,9,7,23,0,0.0,0.0,0.0,23.9,0.0 -2019,9,7,23,15,0.0,0.0,0.0,23.9,0.0 -2019,9,7,23,30,0.0,0.0,0.0,23.9,0.0 -2019,9,7,23,45,0.0,0.0,0.0,23.9,0.0 -2019,9,8,0,0,0.0,0.0,0.0,23.7,0.0 -2019,9,8,0,15,0.0,0.0,0.0,23.7,0.0 -2019,9,8,0,30,0.0,0.0,0.0,23.7,0.0 -2019,9,8,0,45,0.0,0.0,0.0,23.7,0.0 -2019,9,8,1,0,0.0,0.0,0.0,22.1,0.0 -2019,9,8,1,15,0.0,0.0,0.0,22.1,0.0 -2019,9,8,1,30,0.0,0.0,0.0,22.1,0.0 -2019,9,8,1,45,0.0,0.0,0.0,22.1,0.0 -2019,9,8,2,0,0.0,0.0,0.0,21.6,0.0 -2019,9,8,2,15,0.0,0.0,0.0,21.6,0.0 -2019,9,8,2,30,0.0,0.0,0.0,21.6,0.0 -2019,9,8,2,45,0.0,0.0,0.0,21.6,0.0 -2019,9,8,3,0,0.0,0.0,0.0,21.0,0.0 -2019,9,8,3,15,0.0,0.0,0.0,21.0,0.0 -2019,9,8,3,30,0.0,0.0,0.0,21.0,0.0 -2019,9,8,3,45,0.0,0.0,0.0,21.0,0.0 -2019,9,8,4,0,0.0,0.0,0.0,20.6,0.0 -2019,9,8,4,15,0.0,0.0,0.0,20.6,0.0 -2019,9,8,4,30,0.0,0.0,0.0,20.6,0.0 -2019,9,8,4,45,0.0,0.0,0.0,20.6,0.0 -2019,9,8,5,0,137.0,-29.692901803210667,10.0,20.9,0.0 -2019,9,8,5,15,137.0,-22.830985287351197,10.0,20.9,0.0 -2019,9,8,5,30,137.0,-15.797360496027785,10.0,20.9,0.0 -2019,9,8,5,45,137.0,-8.622146490418555,10.0,20.9,0.0 -2019,9,8,6,0,275.0,51.245117696533114,74.0,23.1,0.0 -2019,9,8,6,15,275.0,66.03036542247412,74.0,23.1,0.0 -2019,9,8,6,30,275.0,80.91220941977849,74.0,23.1,0.0 -2019,9,8,6,45,275.0,95.82692334774757,74.0,23.1,0.0 -2019,9,8,7,0,654.0,189.30457684720724,102.0,25.4,0.0 -2019,9,8,7,15,654.0,224.47547265326375,102.0,25.4,0.0 -2019,9,8,7,30,654.0,259.27047249525504,102.0,25.4,0.0 -2019,9,8,7,45,654.0,293.54057884203263,102.0,25.4,0.0 -2019,9,8,8,0,429.0,362.68294946187007,215.0,28.5,0.0 -2019,9,8,8,15,429.0,384.18735890636754,215.0,28.5,0.0 -2019,9,8,8,30,429.0,405.0647338591397,215.0,28.5,0.0 -2019,9,8,8,45,429.0,425.225674195486,215.0,28.5,0.0 -2019,9,8,9,0,388.0,495.6422678261173,288.0,30.2,0.2 -2019,9,8,9,15,388.0,512.3493415705373,288.0,30.2,0.2 -2019,9,8,9,30,388.0,528.1838551740212,288.0,30.2,0.2 -2019,9,8,9,45,388.0,543.0780028183602,288.0,30.2,0.2 -2019,9,8,10,0,538.0,646.9504818208543,274.0,32.0,2.1 -2019,9,8,10,15,538.0,664.7355118702368,274.0,32.0,2.1 -2019,9,8,10,30,538.0,680.9695646929805,274.0,32.0,2.1 -2019,9,8,10,45,538.0,695.583123582601,274.0,32.0,2.1 -2019,9,8,11,0,887.0,859.3821059280735,143.0,34.5,2.2 -2019,9,8,11,15,887.0,877.8344191681089,143.0,34.5,2.2 -2019,9,8,11,30,887.0,893.3415497655435,143.0,34.5,2.2 -2019,9,8,11,45,887.0,905.8370938064612,143.0,34.5,2.2 -2019,9,8,12,0,517.0,744.1266290475353,294.0,35.1,2.8 -2019,9,8,12,15,517.0,747.8132252639283,294.0,35.1,2.8 -2019,9,8,12,30,517.0,749.6739654355214,294.0,35.1,2.8 -2019,9,8,12,45,517.0,749.7008815872335,294.0,35.1,2.8 -2019,9,8,13,0,654.0,792.1713412627099,218.0,35.5,4.5 -2019,9,8,13,15,654.0,787.5753474637067,218.0,35.5,4.5 -2019,9,8,13,30,654.0,780.6889073966785,218.0,35.5,4.5 -2019,9,8,13,45,654.0,771.541509855218,218.0,35.5,4.5 -2019,9,8,14,0,753.0,775.2442829146004,151.0,34.7,3.8 -2019,9,8,14,15,753.0,759.6520169479159,151.0,34.7,3.8 -2019,9,8,14,30,753.0,741.6244612814452,151.0,34.7,3.8 -2019,9,8,14,45,753.0,721.2388126761929,151.0,34.7,3.8 -2019,9,8,15,0,32.0,214.27043253584694,191.0,33.7,5.2 -2019,9,8,15,15,32.0,213.21523031989094,191.0,33.7,5.2 -2019,9,8,15,30,32.0,212.07216820560683,191.0,33.7,5.2 -2019,9,8,15,45,32.0,210.8461409604541,191.0,33.7,5.2 -2019,9,8,16,0,13.0,94.5328494399111,87.0,32.2,6.0 -2019,9,8,16,15,13.0,93.97390038030306,87.0,32.2,6.0 -2019,9,8,16,30,13.0,93.38804109204507,87.0,32.2,6.0 -2019,9,8,16,45,13.0,92.77778031455216,87.0,32.2,6.0 -2019,9,8,17,0,4.0,17.583301931742312,16.0,31.4,6.3 -2019,9,8,17,15,4.0,17.382954004271962,16.0,31.4,6.3 -2019,9,8,17,30,4.0,17.177592696496095,16.0,31.4,6.3 -2019,9,8,17,45,4.0,16.968097397062248,16.0,31.4,6.3 -2019,9,8,18,0,0.0,0.0,0.0,29.2,3.0 -2019,9,8,18,15,0.0,0.0,0.0,29.2,3.0 -2019,9,8,18,30,0.0,0.0,0.0,29.2,3.0 -2019,9,8,18,45,0.0,0.0,0.0,29.2,3.0 -2019,9,8,19,0,0.0,0.0,0.0,27.6,2.2 -2019,9,8,19,15,0.0,0.0,0.0,27.6,2.2 -2019,9,8,19,30,0.0,0.0,0.0,27.6,2.2 -2019,9,8,19,45,0.0,0.0,0.0,27.6,2.2 -2019,9,8,20,0,0.0,0.0,0.0,26.1,2.3 -2019,9,8,20,15,0.0,0.0,0.0,26.1,2.3 -2019,9,8,20,30,0.0,0.0,0.0,26.1,2.3 -2019,9,8,20,45,0.0,0.0,0.0,26.1,2.3 -2019,9,8,21,0,0.0,0.0,0.0,26.0,0.0 -2019,9,8,21,15,0.0,0.0,0.0,26.0,0.0 -2019,9,8,21,30,0.0,0.0,0.0,26.0,0.0 -2019,9,8,21,45,0.0,0.0,0.0,26.0,0.0 -2019,9,8,22,0,0.0,0.0,0.0,24.9,0.0 -2019,9,8,22,15,0.0,0.0,0.0,24.9,0.0 -2019,9,8,22,30,0.0,0.0,0.0,24.9,0.0 -2019,9,8,22,45,0.0,0.0,0.0,24.9,0.0 -2019,9,8,23,0,0.0,0.0,0.0,24.4,0.0 -2019,9,8,23,15,0.0,0.0,0.0,24.4,0.0 -2019,9,8,23,30,0.0,0.0,0.0,24.4,0.0 -2019,9,8,23,45,0.0,0.0,0.0,24.4,0.0 -2019,9,9,0,0,0.0,0.0,0.0,24.3,0.0 -2019,9,9,0,15,0.0,0.0,0.0,24.3,0.0 -2019,9,9,0,30,0.0,0.0,0.0,24.3,0.0 -2019,9,9,0,45,0.0,0.0,0.0,24.3,0.0 -2019,9,9,1,0,0.0,0.0,0.0,23.8,0.0 -2019,9,9,1,15,0.0,0.0,0.0,23.8,0.0 -2019,9,9,1,30,0.0,0.0,0.0,23.8,0.0 -2019,9,9,1,45,0.0,0.0,0.0,23.8,0.0 -2019,9,9,2,0,0.0,0.0,0.0,22.8,0.0 -2019,9,9,2,15,0.0,0.0,0.0,22.8,0.0 -2019,9,9,2,30,0.0,0.0,0.0,22.8,0.0 -2019,9,9,2,45,0.0,0.0,0.0,22.8,0.0 -2019,9,9,3,0,0.0,0.0,0.0,22.7,0.0 -2019,9,9,3,15,0.0,0.0,0.0,22.7,0.0 -2019,9,9,3,30,0.0,0.0,0.0,22.7,0.0 -2019,9,9,3,45,0.0,0.0,0.0,22.7,0.0 -2019,9,9,4,0,0.0,0.0,0.0,22.2,0.0 -2019,9,9,4,15,0.0,0.0,0.0,22.2,0.0 -2019,9,9,4,30,0.0,0.0,0.0,22.2,0.0 -2019,9,9,4,45,0.0,0.0,0.0,22.2,0.0 -2019,9,9,5,0,237.0,-62.61410217350473,7.0,22.5,0.0 -2019,9,9,5,15,237.0,-50.73593090923852,7.0,22.5,0.0 -2019,9,9,5,30,237.0,-38.56052777123276,7.0,22.5,0.0 -2019,9,9,5,45,237.0,-26.1400297049264,7.0,22.5,0.0 -2019,9,9,6,0,474.0,18.944753620262453,60.0,24.7,0.0 -2019,9,9,6,15,474.0,44.44536702590139,60.0,24.7,0.0 -2019,9,9,6,30,474.0,70.11258326553539,60.0,24.7,0.0 -2019,9,9,6,45,474.0,95.83649137872395,60.0,24.7,0.0 -2019,9,9,7,0,410.0,196.20220344536975,143.0,27.1,0.0 -2019,9,9,7,15,410.0,218.26527189383364,143.0,27.1,0.0 -2019,9,9,7,30,410.0,240.0925368975856,143.0,27.1,0.0 -2019,9,9,7,45,410.0,261.5905307568972,143.0,27.1,0.0 -2019,9,9,8,0,818.0,389.6530881293019,111.0,30.4,0.0 -2019,9,9,8,15,818.0,430.68293592274705,111.0,30.4,0.0 -2019,9,9,8,30,818.0,470.5164183929257,111.0,30.4,0.0 -2019,9,9,8,45,818.0,508.9829624525528,111.0,30.4,0.0 -2019,9,9,9,0,900.0,593.515970182184,115.0,33.6,0.4 -2019,9,9,9,15,900.0,632.2941613592099,115.0,33.6,0.4 -2019,9,9,9,30,900.0,669.0470844087171,115.0,33.6,0.4 -2019,9,9,9,45,900.0,703.6173576717968,115.0,33.6,0.4 -2019,9,9,10,0,595.0,661.4554253655017,251.0,36.2,3.6 -2019,9,9,10,15,595.0,681.1372640226155,251.0,36.2,3.6 -2019,9,9,10,30,595.0,699.1027106662884,251.0,36.2,3.6 -2019,9,9,10,45,595.0,715.2748344958868,251.0,36.2,3.6 -2019,9,9,11,0,58.0,444.65192314567093,398.0,37.2,4.0 -2019,9,9,11,15,58.0,445.85926864116124,398.0,37.2,4.0 -2019,9,9,11,30,58.0,446.87390913805956,398.0,37.2,4.0 -2019,9,9,11,45,58.0,447.6914997899877,398.0,37.2,4.0 -2019,9,9,12,0,34.0,398.4912128386324,369.0,37.1,6.6 -2019,9,9,12,15,34.0,398.73381257296876,369.0,37.1,6.6 -2019,9,9,12,30,34.0,398.85626023059126,369.0,37.1,6.6 -2019,9,9,12,45,34.0,398.8580314718315,369.0,37.1,6.6 -2019,9,9,13,0,91.0,445.59587655260594,366.0,35.9,5.6 -2019,9,9,13,15,91.0,444.9559657348446,366.0,35.9,5.6 -2019,9,9,13,30,91.0,443.99715080003944,366.0,35.9,5.6 -2019,9,9,13,45,91.0,442.72353754094115,366.0,35.9,5.6 -2019,9,9,14,0,528.0,655.9805067686648,220.0,34.4,4.4 -2019,9,9,14,15,528.0,645.040324578393,220.0,34.4,4.4 -2019,9,9,14,30,528.0,632.3914418657803,220.0,34.4,4.4 -2019,9,9,14,45,528.0,618.0880230884941,220.0,34.4,4.4 -2019,9,9,15,0,19.0,186.75309665899837,173.0,34.4,3.3 -2019,9,9,15,15,19.0,186.12617151096063,173.0,34.4,3.3 -2019,9,9,15,30,19.0,185.44704634009028,173.0,34.4,3.3 -2019,9,9,15,45,19.0,184.71862926463018,173.0,34.4,3.3 -2019,9,9,16,0,24.0,112.82404986735926,99.0,34.4,4.8 -2019,9,9,16,15,24.0,111.79148702344438,99.0,34.4,4.8 -2019,9,9,16,30,24.0,110.70921213198672,99.0,34.4,4.8 -2019,9,9,16,45,24.0,109.58185966022538,99.0,34.4,4.8 -2019,9,9,17,0,13.0,29.09938926494764,24.0,34.1,6.0 -2019,9,9,17,15,13.0,28.44784400572628,24.0,34.1,6.0 -2019,9,9,17,30,13.0,27.77999488845171,24.0,34.1,6.0 -2019,9,9,17,45,13.0,27.098701745574143,24.0,34.1,6.0 -2019,9,9,18,0,0.0,0.0,0.0,31.9,4.4 -2019,9,9,18,15,0.0,0.0,0.0,31.9,4.4 -2019,9,9,18,30,0.0,0.0,0.0,31.9,4.4 -2019,9,9,18,45,0.0,0.0,0.0,31.9,4.4 -2019,9,9,19,0,0.0,0.0,0.0,29.7,2.5 -2019,9,9,19,15,0.0,0.0,0.0,29.7,2.5 -2019,9,9,19,30,0.0,0.0,0.0,29.7,2.5 -2019,9,9,19,45,0.0,0.0,0.0,29.7,2.5 -2019,9,9,20,0,0.0,0.0,0.0,26.9,2.2 -2019,9,9,20,15,0.0,0.0,0.0,26.9,2.2 -2019,9,9,20,30,0.0,0.0,0.0,26.9,2.2 -2019,9,9,20,45,0.0,0.0,0.0,26.9,2.2 -2019,9,9,21,0,0.0,0.0,0.0,25.0,2.3 -2019,9,9,21,15,0.0,0.0,0.0,25.0,2.3 -2019,9,9,21,30,0.0,0.0,0.0,25.0,2.3 -2019,9,9,21,45,0.0,0.0,0.0,25.0,2.3 -2019,9,9,22,0,0.0,0.0,0.0,24.9,0.2 -2019,9,9,22,15,0.0,0.0,0.0,24.9,0.2 -2019,9,9,22,30,0.0,0.0,0.0,24.9,0.2 -2019,9,9,22,45,0.0,0.0,0.0,24.9,0.2 -2019,9,9,23,0,0.0,0.0,0.0,24.3,1.3 -2019,9,9,23,15,0.0,0.0,0.0,24.3,1.3 -2019,9,9,23,30,0.0,0.0,0.0,24.3,1.3 -2019,9,9,23,45,0.0,0.0,0.0,24.3,1.3 -2019,9,10,0,0,0.0,0.0,0.0,23.8,0.0 -2019,9,10,0,15,0.0,0.0,0.0,23.8,0.0 -2019,9,10,0,30,0.0,0.0,0.0,23.8,0.0 -2019,9,10,0,45,0.0,0.0,0.0,23.8,0.0 -2019,9,10,1,0,0.0,0.0,0.0,23.4,0.0 -2019,9,10,1,15,0.0,0.0,0.0,23.4,0.0 -2019,9,10,1,30,0.0,0.0,0.0,23.4,0.0 -2019,9,10,1,45,0.0,0.0,0.0,23.4,0.0 -2019,9,10,2,0,0.0,0.0,0.0,23.8,0.0 -2019,9,10,2,15,0.0,0.0,0.0,23.8,0.0 -2019,9,10,2,30,0.0,0.0,0.0,23.8,0.0 -2019,9,10,2,45,0.0,0.0,0.0,23.8,0.0 -2019,9,10,3,0,0.0,0.0,0.0,23.4,0.2 -2019,9,10,3,15,0.0,0.0,0.0,23.4,0.2 -2019,9,10,3,30,0.0,0.0,0.0,23.4,0.2 -2019,9,10,3,45,0.0,0.0,0.0,23.4,0.2 -2019,9,10,4,0,0.0,0.0,0.0,24.3,1.6 -2019,9,10,4,15,0.0,0.0,0.0,24.3,1.6 -2019,9,10,4,30,0.0,0.0,0.0,24.3,1.6 -2019,9,10,4,45,0.0,0.0,0.0,24.3,1.6 -2019,9,10,5,0,194.0,-50.76021356452201,7.0,23.4,2.0 -2019,9,10,5,15,194.0,-41.031404401330626,7.0,23.4,2.0 -2019,9,10,5,30,194.0,-31.05914764738693,7.0,23.4,2.0 -2019,9,10,5,45,194.0,-20.886146037079964,7.0,23.4,2.0 -2019,9,10,6,0,387.0,30.97857079891306,66.0,24.7,1.3 -2019,9,10,6,15,387.0,51.81100258458612,66.0,24.7,1.3 -2019,9,10,6,30,387.0,72.77953863250946,66.0,24.7,1.3 -2019,9,10,6,45,387.0,93.79438845217777,66.0,24.7,1.3 -2019,9,10,7,0,425.0,193.55391310832576,140.0,27.5,0.0 -2019,9,10,7,15,425.0,216.4376899233223,140.0,27.5,0.0 -2019,9,10,7,30,425.0,239.07689180924226,140.0,27.5,0.0 -2019,9,10,7,45,425.0,261.37457422797684,140.0,27.5,0.0 -2019,9,10,8,0,637.0,374.68437055550953,160.0,29.6,0.3 -2019,9,10,8,15,637.0,406.65437909858497,160.0,29.6,0.3 -2019,9,10,8,30,637.0,437.6921928697464,160.0,29.6,0.3 -2019,9,10,8,45,637.0,467.664903185414,160.0,29.6,0.3 -2019,9,10,9,0,413.0,496.1341272045361,278.0,31.3,2.6 -2019,9,10,9,15,413.0,513.9395301889366,278.0,31.3,2.6 -2019,9,10,9,30,413.0,530.8150106043007,278.0,31.3,2.6 -2019,9,10,9,45,413.0,546.6883050527188,278.0,31.3,2.6 -2019,9,10,10,0,498.0,629.8371378739084,288.0,32.8,2.8 -2019,9,10,10,15,498.0,646.3200810769843,288.0,32.8,2.8 -2019,9,10,10,30,498.0,661.3655980027374,288.0,32.8,2.8 -2019,9,10,10,45,498.0,674.9092614378621,288.0,32.8,2.8 -2019,9,10,11,0,26.0,383.82574288904215,363.0,32.8,4.5 -2019,9,10,11,15,26.0,384.3672867516936,363.0,32.8,4.5 -2019,9,10,11,30,26.0,384.8223945364539,363.0,32.8,4.5 -2019,9,10,11,45,26.0,385.18911740191925,363.0,32.8,4.5 -2019,9,10,12,0,232.0,591.464819861509,391.0,32.9,3.5 -2019,9,10,12,15,232.0,593.1211850962519,391.0,32.9,3.5 -2019,9,10,12,30,232.0,593.957204326514,391.0,32.9,3.5 -2019,9,10,12,45,232.0,593.9692975896033,391.0,32.9,3.5 -2019,9,10,13,0,84.0,435.1949254328712,362.0,33.2,3.0 -2019,9,10,13,15,84.0,434.6038892573433,362.0,33.2,3.0 -2019,9,10,13,30,84.0,433.7183059910863,362.0,33.2,3.0 -2019,9,10,13,45,84.0,432.5419678376035,362.0,33.2,3.0 -2019,9,10,14,0,28.0,285.0266373524876,262.0,32.7,2.8 -2019,9,10,14,15,28.0,284.4461331326579,262.0,32.7,2.8 -2019,9,10,14,30,28.0,283.77496242790204,262.0,32.7,2.8 -2019,9,10,14,45,28.0,283.01599929421775,262.0,32.7,2.8 -2019,9,10,15,0,67.0,256.2698957069116,208.0,32.2,4.6 -2019,9,10,15,15,67.0,254.057852474086,208.0,32.2,4.6 -2019,9,10,15,30,67.0,251.66162663569477,208.0,32.2,4.6 -2019,9,10,15,45,67.0,249.0914791986532,208.0,32.2,4.6 -2019,9,10,16,0,207.0,241.510329810069,123.0,31.3,4.9 -2019,9,10,16,15,207.0,232.59920934516953,123.0,31.3,4.9 -2019,9,10,16,30,207.0,223.25906894524036,123.0,31.3,4.9 -2019,9,10,16,45,207.0,213.52990452539854,123.0,31.3,4.9 -2019,9,10,17,0,186.0,110.29144097685447,38.0,30.3,4.8 -2019,9,10,17,15,186.0,100.96381982039266,38.0,30.3,4.8 -2019,9,10,17,30,186.0,91.40279014908579,38.0,30.3,4.8 -2019,9,10,17,45,186.0,81.64929375982244,38.0,30.3,4.8 -2019,9,10,18,0,0.0,0.0,0.0,28.1,2.7 -2019,9,10,18,15,0.0,0.0,0.0,28.1,2.7 -2019,9,10,18,30,0.0,0.0,0.0,28.1,2.7 -2019,9,10,18,45,0.0,0.0,0.0,28.1,2.7 -2019,9,10,19,0,0.0,0.0,0.0,26.6,3.1 -2019,9,10,19,15,0.0,0.0,0.0,26.6,3.1 -2019,9,10,19,30,0.0,0.0,0.0,26.6,3.1 -2019,9,10,19,45,0.0,0.0,0.0,26.6,3.1 -2019,9,10,20,0,0.0,0.0,0.0,26.0,2.9 -2019,9,10,20,15,0.0,0.0,0.0,26.0,2.9 -2019,9,10,20,30,0.0,0.0,0.0,26.0,2.9 -2019,9,10,20,45,0.0,0.0,0.0,26.0,2.9 -2019,9,10,21,0,0.0,0.0,0.0,25.5,1.5 -2019,9,10,21,15,0.0,0.0,0.0,25.5,1.5 -2019,9,10,21,30,0.0,0.0,0.0,25.5,1.5 -2019,9,10,21,45,0.0,0.0,0.0,25.5,1.5 -2019,9,10,22,0,0.0,0.0,0.0,24.9,1.6 -2019,9,10,22,15,0.0,0.0,0.0,24.9,1.6 -2019,9,10,22,30,0.0,0.0,0.0,24.9,1.6 -2019,9,10,22,45,0.0,0.0,0.0,24.9,1.6 -2019,9,10,23,0,0.0,0.0,0.0,23.9,1.9 -2019,9,10,23,15,0.0,0.0,0.0,23.9,1.9 -2019,9,10,23,30,0.0,0.0,0.0,23.9,1.9 -2019,9,10,23,45,0.0,0.0,0.0,23.9,1.9 -2019,9,11,0,0,0.0,0.0,0.0,23.8,0.0 -2019,9,11,0,15,0.0,0.0,0.0,23.8,0.0 -2019,9,11,0,30,0.0,0.0,0.0,23.8,0.0 -2019,9,11,0,45,0.0,0.0,0.0,23.8,0.0 -2019,9,11,1,0,0.0,0.0,0.0,23.3,0.0 -2019,9,11,1,15,0.0,0.0,0.0,23.3,0.0 -2019,9,11,1,30,0.0,0.0,0.0,23.3,0.0 -2019,9,11,1,45,0.0,0.0,0.0,23.3,0.0 -2019,9,11,2,0,0.0,0.0,0.0,23.3,0.0 -2019,9,11,2,15,0.0,0.0,0.0,23.3,0.0 -2019,9,11,2,30,0.0,0.0,0.0,23.3,0.0 -2019,9,11,2,45,0.0,0.0,0.0,23.3,0.0 -2019,9,11,3,0,0.0,0.0,0.0,23.3,0.0 -2019,9,11,3,15,0.0,0.0,0.0,23.3,0.0 -2019,9,11,3,30,0.0,0.0,0.0,23.3,0.0 -2019,9,11,3,45,0.0,0.0,0.0,23.3,0.0 -2019,9,11,4,0,0.0,0.0,0.0,23.3,0.0 -2019,9,11,4,15,0.0,0.0,0.0,23.3,0.0 -2019,9,11,4,30,0.0,0.0,0.0,23.3,0.0 -2019,9,11,4,45,0.0,0.0,0.0,23.3,0.0 -2019,9,11,5,0,2.0,9.396528617028586,10.0,23.4,0.0 -2019,9,11,5,15,2.0,9.496880316320954,10.0,23.4,0.0 -2019,9,11,5,30,2.0,9.59974315330868,10.0,23.4,0.0 -2019,9,11,5,45,2.0,9.70467665353199,10.0,23.4,0.0 -2019,9,11,6,0,4.0,31.6224629512665,32.0,23.9,0.0 -2019,9,11,6,15,4.0,31.837902671011243,32.0,23.9,0.0 -2019,9,11,6,30,4.0,32.05474992034336,32.0,23.9,0.0 -2019,9,11,6,45,4.0,32.272076126050216,32.0,23.9,0.0 -2019,9,11,7,0,1.0,67.1222376659886,67.0,24.1,0.0 -2019,9,11,7,15,1.0,67.17611121099739,67.0,24.1,0.0 -2019,9,11,7,30,1.0,67.22940897174834,67.0,24.1,0.0 -2019,9,11,7,45,1.0,67.28190271904752,67.0,24.1,0.0 -2019,9,11,8,0,17.0,208.66725033236997,203.0,25.9,0.0 -2019,9,11,8,15,17.0,209.52091837169752,203.0,25.9,0.0 -2019,9,11,8,30,17.0,210.34969480418866,203.0,25.9,0.0 -2019,9,11,8,45,17.0,211.15003068192337,203.0,25.9,0.0 -2019,9,11,9,0,396.0,490.7485613027144,283.0,27.9,0.4 -2019,9,11,9,15,396.0,507.8303648298912,283.0,27.9,0.4 -2019,9,11,9,30,396.0,524.0200372082428,283.0,27.9,0.4 -2019,9,11,9,45,396.0,539.2482517751615,283.0,27.9,0.4 -2019,9,11,10,0,22.0,346.02498883211075,331.0,29.1,3.6 -2019,9,11,10,15,22.0,346.7535480895197,331.0,29.1,3.6 -2019,9,11,10,30,22.0,347.4185719571453,331.0,29.1,3.6 -2019,9,11,10,45,22.0,348.0172127006898,331.0,29.1,3.6 -2019,9,11,11,0,344.0,636.369816177867,362.0,30.4,3.7 -2019,9,11,11,15,344.0,643.5387655542635,362.0,30.4,3.7 -2019,9,11,11,30,344.0,649.5634754526938,362.0,30.4,3.7 -2019,9,11,11,45,344.0,654.4181471404424,362.0,30.4,3.7 -2019,9,11,12,0,419.0,689.6347520883976,329.0,28.8,4.7 -2019,9,11,12,15,419.0,692.6278362262242,329.0,28.8,4.7 -2019,9,11,12,30,419.0,694.1385392067803,329.0,28.8,4.7 -2019,9,11,12,45,419.0,694.1603919679757,329.0,28.8,4.7 -2019,9,11,13,0,176.0,515.7685464539286,363.0,28.2,5.1 -2019,9,11,13,15,176.0,514.5295095949455,363.0,28.2,5.1 -2019,9,11,13,30,176.0,512.6729898859596,363.0,28.2,5.1 -2019,9,11,13,45,176.0,510.2069372293832,363.0,28.2,5.1 -2019,9,11,14,0,380.0,571.2154910436873,260.0,27.7,5.0 -2019,9,11,14,15,380.0,563.3329230231827,260.0,27.7,5.0 -2019,9,11,14,30,380.0,554.2192102319813,260.0,27.7,5.0 -2019,9,11,14,45,380.0,543.9133789874174,260.0,27.7,5.0 -2019,9,11,15,0,225.0,373.3247397348385,212.0,26.9,4.6 -2019,9,11,15,15,225.0,365.8921851592852,212.0,26.9,4.6 -2019,9,11,15,30,225.0,357.840769592491,212.0,26.9,4.6 -2019,9,11,15,45,225.0,349.20497043198884,212.0,26.9,4.6 -2019,9,11,16,0,289.0,280.43684802765074,116.0,26.1,4.3 -2019,9,11,16,15,289.0,267.988933640304,116.0,26.1,4.3 -2019,9,11,16,30,289.0,254.94172273993743,116.0,26.1,4.3 -2019,9,11,16,45,289.0,241.35108548667057,116.0,26.1,4.3 -2019,9,11,17,0,181.0,105.69140018235537,36.0,25.4,4.0 -2019,9,11,17,15,181.0,96.60957139639603,36.0,25.4,4.0 -2019,9,11,17,30,181.0,87.30048464900688,36.0,25.4,4.0 -2019,9,11,17,45,181.0,77.80400287879715,36.0,25.4,4.0 -2019,9,11,18,0,0.0,0.0,0.0,23.8,3.6 -2019,9,11,18,15,0.0,0.0,0.0,23.8,3.6 -2019,9,11,18,30,0.0,0.0,0.0,23.8,3.6 -2019,9,11,18,45,0.0,0.0,0.0,23.8,3.6 -2019,9,11,19,0,0.0,0.0,0.0,23.2,3.4 -2019,9,11,19,15,0.0,0.0,0.0,23.2,3.4 -2019,9,11,19,30,0.0,0.0,0.0,23.2,3.4 -2019,9,11,19,45,0.0,0.0,0.0,23.2,3.4 -2019,9,11,20,0,0.0,0.0,0.0,22.1,1.5 -2019,9,11,20,15,0.0,0.0,0.0,22.1,1.5 -2019,9,11,20,30,0.0,0.0,0.0,22.1,1.5 -2019,9,11,20,45,0.0,0.0,0.0,22.1,1.5 -2019,9,11,21,0,0.0,0.0,0.0,22.1,2.5 -2019,9,11,21,15,0.0,0.0,0.0,22.1,2.5 -2019,9,11,21,30,0.0,0.0,0.0,22.1,2.5 -2019,9,11,21,45,0.0,0.0,0.0,22.1,2.5 -2019,9,11,22,0,0.0,0.0,0.0,21.7,2.1 -2019,9,11,22,15,0.0,0.0,0.0,21.7,2.1 -2019,9,11,22,30,0.0,0.0,0.0,21.7,2.1 -2019,9,11,22,45,0.0,0.0,0.0,21.7,2.1 -2019,9,11,23,0,0.0,0.0,0.0,21.6,1.9 -2019,9,11,23,15,0.0,0.0,0.0,21.6,1.9 -2019,9,11,23,30,0.0,0.0,0.0,21.6,1.9 -2019,9,11,23,45,0.0,0.0,0.0,21.6,1.9 -2019,9,12,0,0,0.0,0.0,0.0,21.1,0.2 -2019,9,12,0,15,0.0,0.0,0.0,21.1,0.2 -2019,9,12,0,30,0.0,0.0,0.0,21.1,0.2 -2019,9,12,0,45,0.0,0.0,0.0,21.1,0.2 -2019,9,12,1,0,0.0,0.0,0.0,21.2,1.3 -2019,9,12,1,15,0.0,0.0,0.0,21.2,1.3 -2019,9,12,1,30,0.0,0.0,0.0,21.2,1.3 -2019,9,12,1,45,0.0,0.0,0.0,21.2,1.3 -2019,9,12,2,0,0.0,0.0,0.0,21.7,0.2 -2019,9,12,2,15,0.0,0.0,0.0,21.7,0.2 -2019,9,12,2,30,0.0,0.0,0.0,21.7,0.2 -2019,9,12,2,45,0.0,0.0,0.0,21.7,0.2 -2019,9,12,3,0,0.0,0.0,0.0,21.7,1.3 -2019,9,12,3,15,0.0,0.0,0.0,21.7,1.3 -2019,9,12,3,30,0.0,0.0,0.0,21.7,1.3 -2019,9,12,3,45,0.0,0.0,0.0,21.7,1.3 -2019,9,12,4,0,0.0,0.0,0.0,21.7,0.0 -2019,9,12,4,15,0.0,0.0,0.0,21.7,0.0 -2019,9,12,4,30,0.0,0.0,0.0,21.7,0.0 -2019,9,12,4,45,0.0,0.0,0.0,21.7,0.0 -2019,9,12,5,0,1.0,8.694263237576918,9.0,21.8,0.2 -2019,9,12,5,15,1.0,8.744464116417001,9.0,21.8,0.2 -2019,9,12,5,30,1.0,8.795921190419543,9.0,21.8,0.2 -2019,9,12,5,45,1.0,8.848414112493828,9.0,21.8,0.2 -2019,9,12,6,0,2.0,25.80343619977735,26.0,22.3,1.3 -2019,9,12,6,15,2.0,25.91120979349337,26.0,22.3,1.3 -2019,9,12,6,30,2.0,26.01968750306171,26.0,22.3,1.3 -2019,9,12,6,45,2.0,26.12840481027621,26.0,22.3,1.3 -2019,9,12,7,0,1.0,61.11844808546839,61.0,22.9,0.0 -2019,9,12,7,15,1.0,61.172348504190595,61.0,22.9,0.0 -2019,9,12,7,30,1.0,61.2256728514368,61.0,22.9,0.0 -2019,9,12,7,45,1.0,61.2781927841656,61.0,22.9,0.0 -2019,9,12,8,0,10.0,184.2968340396204,181.0,23.9,0.0 -2019,9,12,8,15,10.0,184.79924220087167,181.0,23.9,0.0 -2019,9,12,8,30,10.0,185.2870009365323,181.0,23.9,0.0 -2019,9,12,8,45,10.0,185.75802158881405,181.0,23.9,0.0 -2019,9,12,9,0,220.0,439.6263178493722,325.0,25.9,1.3 -2019,9,12,9,15,220.0,449.1209425352935,325.0,25.9,1.3 -2019,9,12,9,30,220.0,458.11969157112685,325.0,25.9,1.3 -2019,9,12,9,45,220.0,466.58403093198757,325.0,25.9,1.3 -2019,9,12,10,0,435.0,605.5582092386801,310.0,28.5,0.3 -2019,9,12,10,15,435.0,619.970998677413,310.0,28.5,0.3 -2019,9,12,10,30,435.0,633.1268935182877,310.0,28.5,0.3 -2019,9,12,10,45,435.0,644.9695581998656,310.0,28.5,0.3 -2019,9,12,11,0,597.0,736.097985118334,262.0,30.3,2.7 -2019,9,12,11,15,597.0,748.5456528494688,262.0,30.3,2.7 -2019,9,12,11,30,597.0,759.0065423124427,262.0,30.3,2.7 -2019,9,12,11,45,597.0,767.4358583725904,262.0,30.3,2.7 -2019,9,12,12,0,752.0,838.6762547138133,194.0,32.3,3.2 -2019,9,12,12,15,752.0,844.050770314569,194.0,32.3,3.2 -2019,9,12,12,30,752.0,846.763456080564,194.0,32.3,3.2 -2019,9,12,12,45,752.0,846.8026958748886,194.0,32.3,3.2 -2019,9,12,13,0,748.0,825.7099795301946,179.0,33.2,3.8 -2019,9,12,13,15,748.0,820.4414460899442,179.0,33.2,3.8 -2019,9,12,13,30,748.0,812.5473014578766,179.0,33.2,3.8 -2019,9,12,13,45,748.0,802.0613495732375,179.0,33.2,3.8 -2019,9,12,14,0,705.0,736.9600100116843,162.0,32.7,5.2 -2019,9,12,14,15,705.0,722.328476972321,162.0,32.7,5.2 -2019,9,12,14,30,705.0,705.4117070226218,162.0,32.7,5.2 -2019,9,12,14,45,705.0,686.2821403686211,162.0,32.7,5.2 -2019,9,12,15,0,546.0,541.5742471522686,152.0,32.1,6.1 -2019,9,12,15,15,546.0,523.5289176609341,152.0,32.1,6.1 -2019,9,12,15,30,546.0,503.9810697040094,152.0,32.1,6.1 -2019,9,12,15,45,546.0,483.0144101674865,152.0,32.1,6.1 -2019,9,12,16,0,340.0,301.24242731165316,109.0,30.8,5.3 -2019,9,12,16,15,340.0,286.590516989025,109.0,30.8,5.3 -2019,9,12,16,30,340.0,271.2332002431041,109.0,30.8,5.3 -2019,9,12,16,45,340.0,255.23623946189474,109.0,30.8,5.3 -2019,9,12,17,0,161.0,95.40167620607349,34.0,29.7,4.6 -2019,9,12,17,15,161.0,87.31933471281994,34.0,29.7,4.6 -2019,9,12,17,30,161.0,79.03474579841082,34.0,29.7,4.6 -2019,9,12,17,45,161.0,70.58338534445087,34.0,29.7,4.6 -2019,9,12,18,0,0.0,0.0,0.0,27.5,4.4 -2019,9,12,18,15,0.0,0.0,0.0,27.5,4.4 -2019,9,12,18,30,0.0,0.0,0.0,27.5,4.4 -2019,9,12,18,45,0.0,0.0,0.0,27.5,4.4 -2019,9,12,19,0,0.0,0.0,0.0,25.5,2.9 -2019,9,12,19,15,0.0,0.0,0.0,25.5,2.9 -2019,9,12,19,30,0.0,0.0,0.0,25.5,2.9 -2019,9,12,19,45,0.0,0.0,0.0,25.5,2.9 -2019,9,12,20,0,0.0,0.0,0.0,24.3,1.6 -2019,9,12,20,15,0.0,0.0,0.0,24.3,1.6 -2019,9,12,20,30,0.0,0.0,0.0,24.3,1.6 -2019,9,12,20,45,0.0,0.0,0.0,24.3,1.6 -2019,9,12,21,0,0.0,0.0,0.0,23.2,2.1 -2019,9,12,21,15,0.0,0.0,0.0,23.2,2.1 -2019,9,12,21,30,0.0,0.0,0.0,23.2,2.1 -2019,9,12,21,45,0.0,0.0,0.0,23.2,2.1 -2019,9,12,22,0,0.0,0.0,0.0,22.2,1.9 -2019,9,12,22,15,0.0,0.0,0.0,22.2,1.9 -2019,9,12,22,30,0.0,0.0,0.0,22.2,1.9 -2019,9,12,22,45,0.0,0.0,0.0,22.2,1.9 -2019,9,12,23,0,0.0,0.0,0.0,22.1,0.2 -2019,9,12,23,15,0.0,0.0,0.0,22.1,0.2 -2019,9,12,23,30,0.0,0.0,0.0,22.1,0.2 -2019,9,12,23,45,0.0,0.0,0.0,22.1,0.2 -2019,9,13,0,0,0.0,0.0,0.0,21.6,1.3 -2019,9,13,0,15,0.0,0.0,0.0,21.6,1.3 -2019,9,13,0,30,0.0,0.0,0.0,21.6,1.3 -2019,9,13,0,45,0.0,0.0,0.0,21.6,1.3 -2019,9,13,1,0,0.0,0.0,0.0,20.5,0.0 -2019,9,13,1,15,0.0,0.0,0.0,20.5,0.0 -2019,9,13,1,30,0.0,0.0,0.0,20.5,0.0 -2019,9,13,1,45,0.0,0.0,0.0,20.5,0.0 -2019,9,13,2,0,0.0,0.0,0.0,19.4,0.0 -2019,9,13,2,15,0.0,0.0,0.0,19.4,0.0 -2019,9,13,2,30,0.0,0.0,0.0,19.4,0.0 -2019,9,13,2,45,0.0,0.0,0.0,19.4,0.0 -2019,9,13,3,0,0.0,0.0,0.0,19.3,0.0 -2019,9,13,3,15,0.0,0.0,0.0,19.3,0.0 -2019,9,13,3,30,0.0,0.0,0.0,19.3,0.0 -2019,9,13,3,45,0.0,0.0,0.0,19.3,0.0 -2019,9,13,4,0,0.0,0.0,0.0,19.0,0.0 -2019,9,13,4,15,0.0,0.0,0.0,19.0,0.0 -2019,9,13,4,30,0.0,0.0,0.0,19.0,0.0 -2019,9,13,4,45,0.0,0.0,0.0,19.0,0.0 -2019,9,13,5,0,494.0,-153.00897151573272,0.0,19.6,0.0 -2019,9,13,5,15,494.0,-128.19853406417388,0.0,19.6,0.0 -2019,9,13,5,30,494.0,-102.76725585792681,0.0,19.6,0.0 -2019,9,13,5,45,494.0,-76.82403753455152,0.0,19.6,0.0 -2019,9,13,6,0,511.0,1.7828630360169484,54.0,21.4,0.0 -2019,9,13,6,15,511.0,29.331455965845706,54.0,21.4,0.0 -2019,9,13,6,30,511.0,57.06003176830906,54.0,21.4,0.0 -2019,9,13,6,45,511.0,84.8498524248525,54.0,21.4,0.0 -2019,9,13,7,0,761.0,167.24234703917392,80.0,24.2,0.0 -2019,9,13,7,15,761.0,208.2790960814255,80.0,24.2,0.0 -2019,9,13,7,30,761.0,248.87725668315514,80.0,24.2,0.0 -2019,9,13,7,45,761.0,288.8629812879234,80.0,24.2,0.0 -2019,9,13,8,0,897.0,382.39729994898113,90.0,27.2,0.0 -2019,9,13,8,15,897.0,427.48367103944736,90.0,27.2,0.0 -2019,9,13,8,30,897.0,471.2553950174966,90.0,27.2,0.0 -2019,9,13,8,45,897.0,513.5250346410974,90.0,27.2,0.0 -2019,9,13,9,0,979.0,595.5387308168603,89.0,31.0,0.0 -2019,9,13,9,15,979.0,637.8088980213702,89.0,31.0,0.0 -2019,9,13,9,30,979.0,677.8714217080749,89.0,31.0,0.0 -2019,9,13,9,45,979.0,715.5547480000376,89.0,31.0,0.0 -2019,9,13,10,0,1024.0,778.1126163181189,86.0,34.2,0.3 -2019,9,13,10,15,1024.0,812.0559813191593,86.0,34.2,0.3 -2019,9,13,10,30,1024.0,843.0392508935444,86.0,34.2,0.3 -2019,9,13,10,45,1024.0,870.9297499243183,86.0,34.2,0.3 -2019,9,13,11,0,1043.0,907.6300713226124,83.0,36.4,2.8 -2019,9,13,11,15,1043.0,929.3868261093579,83.0,36.4,2.8 -2019,9,13,11,30,1043.0,947.6709747396995,83.0,36.4,2.8 -2019,9,13,11,45,1043.0,962.4042216821682,83.0,36.4,2.8 -2019,9,13,12,0,1037.0,969.4006189426576,84.0,38.4,4.5 -2019,9,13,12,15,1037.0,976.8153669551514,84.0,38.4,4.5 -2019,9,13,12,30,1037.0,980.5578216963941,84.0,38.4,4.5 -2019,9,13,12,45,1037.0,980.611957400631,84.0,38.4,4.5 -2019,9,13,13,0,1005.0,953.4218225281758,88.0,39.3,3.7 -2019,9,13,13,15,1005.0,946.3399132752024,88.0,39.3,3.7 -2019,9,13,13,30,1005.0,935.728684069169,88.0,39.3,3.7 -2019,9,13,13,45,1005.0,921.6335738226012,88.0,39.3,3.7 -2019,9,13,14,0,943.0,855.7675506305375,90.0,38.8,4.7 -2019,9,13,14,15,943.0,836.1877366840974,90.0,38.8,4.7 -2019,9,13,14,30,943.0,813.5498348799093,90.0,38.8,4.7 -2019,9,13,14,45,943.0,787.9507841889329,90.0,38.8,4.7 -2019,9,13,15,0,839.0,682.6634898031663,87.0,37.8,5.1 -2019,9,13,15,15,839.0,654.9219676321321,87.0,37.8,5.1 -2019,9,13,15,30,839.0,624.8705874257781,87.0,37.8,5.1 -2019,9,13,15,45,839.0,592.6380338077197,87.0,37.8,5.1 -2019,9,13,16,0,656.0,438.55028543237586,70.0,36.2,4.8 -2019,9,13,16,15,656.0,410.2679462174787,70.0,36.2,4.8 -2019,9,13,16,30,656.0,380.6239726962947,70.0,36.2,4.8 -2019,9,13,16,45,656.0,349.7453049144672,70.0,36.2,4.8 -2019,9,13,17,0,380.0,170.52192778330246,27.0,34.7,4.4 -2019,9,13,17,15,380.0,151.4369758974879,27.0,34.7,4.4 -2019,9,13,17,30,380.0,131.87445420037477,27.0,34.7,4.4 -2019,9,13,17,45,380.0,111.91813241316304,27.0,34.7,4.4 -2019,9,13,18,0,0.0,0.0,0.0,32.5,3.0 -2019,9,13,18,15,0.0,0.0,0.0,32.5,3.0 -2019,9,13,18,30,0.0,0.0,0.0,32.5,3.0 -2019,9,13,18,45,0.0,0.0,0.0,32.5,3.0 -2019,9,13,19,0,0.0,0.0,0.0,30.4,1.9 -2019,9,13,19,15,0.0,0.0,0.0,30.4,1.9 -2019,9,13,19,30,0.0,0.0,0.0,30.4,1.9 -2019,9,13,19,45,0.0,0.0,0.0,30.4,1.9 -2019,9,13,20,0,0.0,0.0,0.0,28.8,0.2 -2019,9,13,20,15,0.0,0.0,0.0,28.8,0.2 -2019,9,13,20,30,0.0,0.0,0.0,28.8,0.2 -2019,9,13,20,45,0.0,0.0,0.0,28.8,0.2 -2019,9,13,21,0,0.0,0.0,0.0,27.6,1.9 -2019,9,13,21,15,0.0,0.0,0.0,27.6,1.9 -2019,9,13,21,30,0.0,0.0,0.0,27.6,1.9 -2019,9,13,21,45,0.0,0.0,0.0,27.6,1.9 -2019,9,13,22,0,0.0,0.0,0.0,26.0,0.0 -2019,9,13,22,15,0.0,0.0,0.0,26.0,0.0 -2019,9,13,22,30,0.0,0.0,0.0,26.0,0.0 -2019,9,13,22,45,0.0,0.0,0.0,26.0,0.0 -2019,9,13,23,0,0.0,0.0,0.0,24.9,0.0 -2019,9,13,23,15,0.0,0.0,0.0,24.9,0.0 -2019,9,13,23,30,0.0,0.0,0.0,24.9,0.0 -2019,9,13,23,45,0.0,0.0,0.0,24.9,0.0 -2019,9,14,0,0,0.0,0.0,0.0,23.7,0.0 -2019,9,14,0,15,0.0,0.0,0.0,23.7,0.0 -2019,9,14,0,30,0.0,0.0,0.0,23.7,0.0 -2019,9,14,0,45,0.0,0.0,0.0,23.7,0.0 -2019,9,14,1,0,0.0,0.0,0.0,22.0,0.2 -2019,9,14,1,15,0.0,0.0,0.0,22.0,0.2 -2019,9,14,1,30,0.0,0.0,0.0,22.0,0.2 -2019,9,14,1,45,0.0,0.0,0.0,22.0,0.2 -2019,9,14,2,0,0.0,0.0,0.0,20.7,1.5 -2019,9,14,2,15,0.0,0.0,0.0,20.7,1.5 -2019,9,14,2,30,0.0,0.0,0.0,20.7,1.5 -2019,9,14,2,45,0.0,0.0,0.0,20.7,1.5 -2019,9,14,3,0,0.0,0.0,0.0,21.8,1.6 -2019,9,14,3,15,0.0,0.0,0.0,21.8,1.6 -2019,9,14,3,30,0.0,0.0,0.0,21.8,1.6 -2019,9,14,3,45,0.0,0.0,0.0,21.8,1.6 -2019,9,14,4,0,0.0,0.0,0.0,22.1,2.5 -2019,9,14,4,15,0.0,0.0,0.0,22.1,2.5 -2019,9,14,4,30,0.0,0.0,0.0,22.1,2.5 -2019,9,14,4,45,0.0,0.0,0.0,22.1,2.5 -2019,9,14,5,0,460.0,-144.3149643545455,0.0,22.0,1.5 -2019,9,14,5,15,460.0,-121.20278969187063,0.0,22.0,1.5 -2019,9,14,5,30,460.0,-97.51227053252666,0.0,22.0,1.5 -2019,9,14,5,45,460.0,-73.34485331658853,0.0,22.0,1.5 -2019,9,14,6,0,684.0,-32.56946569178238,40.0,24.9,1.3 -2019,9,14,6,15,684.0,4.320659558546524,40.0,24.9,1.3 -2019,9,14,6,30,684.0,41.45179859608824,40.0,24.9,1.3 -2019,9,14,6,45,684.0,78.66495018300802,40.0,24.9,1.3 -2019,9,14,7,0,994.0,151.15490836227607,41.0,29.5,0.0 -2019,9,14,7,15,994.0,204.77779415018446,41.0,29.5,0.0 -2019,9,14,7,30,994.0,257.82757465068846,41.0,29.5,0.0 -2019,9,14,7,45,994.0,310.0770825593347,41.0,29.5,0.0 -2019,9,14,8,0,1015.0,388.0695333236363,61.0,34.2,0.2 -2019,9,14,8,15,1015.0,439.1076202046305,61.0,34.2,0.2 -2019,9,14,8,30,1015.0,488.65751737510766,61.0,34.2,0.2 -2019,9,14,8,45,1015.0,536.5070445683448,61.0,34.2,0.2 -2019,9,14,9,0,996.0,595.690145371287,84.0,37.0,2.3 -2019,9,14,9,15,996.0,638.7117018574874,84.0,37.0,2.3 -2019,9,14,9,30,996.0,679.4863720268409,84.0,37.0,2.3 -2019,9,14,9,45,996.0,717.8395524818409,84.0,37.0,2.3 -2019,9,14,10,0,1041.0,779.8603377362804,80.0,39.0,3.6 -2019,9,14,10,15,1041.0,814.3811633170886,80.0,39.0,3.6 -2019,9,14,10,30,1041.0,845.8915349277916,80.0,39.0,3.6 -2019,9,14,10,45,1041.0,874.2565203195916,80.0,39.0,3.6 -2019,9,14,11,0,868.0,832.1890889939298,149.0,39.9,3.5 -2019,9,14,11,15,868.0,850.3027001337948,149.0,39.9,3.5 -2019,9,14,11,30,868.0,865.5251890371155,149.0,39.9,3.5 -2019,9,14,11,45,868.0,877.7913706694087,149.0,39.9,3.5 -2019,9,14,12,0,757.0,834.6669130804659,191.0,39.5,2.7 -2019,9,14,12,15,757.0,840.0817954394714,191.0,39.5,2.7 -2019,9,14,12,30,757.0,842.8148555682288,191.0,39.5,2.7 -2019,9,14,12,45,757.0,842.8543900836798,191.0,39.5,2.7 -2019,9,14,13,0,885.0,886.9725274481763,128.0,40.7,3.6 -2019,9,14,13,15,885.0,880.7336985835237,128.0,40.7,3.6 -2019,9,14,13,30,885.0,871.3857048864494,128.0,40.7,3.6 -2019,9,14,13,45,885.0,858.9685759010943,128.0,40.7,3.6 -2019,9,14,14,0,1030.0,899.7701109497048,67.0,41.0,3.4 -2019,9,14,14,15,1030.0,878.3752435553176,67.0,41.0,3.4 -2019,9,14,14,30,1030.0,853.6388028254594,67.0,41.0,3.4 -2019,9,14,14,45,1030.0,825.6667139969434,67.0,41.0,3.4 -2019,9,14,15,0,1017.0,768.3957249824372,50.0,40.3,1.6 -2019,9,14,15,15,1017.0,734.7550434595169,50.0,40.3,1.6 -2019,9,14,15,30,1017.0,698.3133188629585,50.0,40.3,1.6 -2019,9,14,15,45,1017.0,659.2266002521195,50.0,40.3,1.6 -2019,9,14,16,0,785.0,491.1660535113896,53.0,39.0,2.7 -2019,9,14,16,15,785.0,457.30841603001704,53.0,39.0,2.7 -2019,9,14,16,30,785.0,421.8207252360749,53.0,39.0,2.7 -2019,9,14,16,45,785.0,384.8549448697119,53.0,39.0,2.7 -2019,9,14,17,0,458.0,194.27996252167696,23.0,37.5,3.5 -2019,9,14,17,15,458.0,171.26827557492672,23.0,37.5,3.5 -2019,9,14,17,30,458.0,147.6807586727973,23.0,37.5,3.5 -2019,9,14,17,45,458.0,123.61841718388509,23.0,37.5,3.5 -2019,9,14,18,0,0.0,0.0,0.0,35.3,3.0 -2019,9,14,18,15,0.0,0.0,0.0,35.3,3.0 -2019,9,14,18,30,0.0,0.0,0.0,35.3,3.0 -2019,9,14,18,45,0.0,0.0,0.0,35.3,3.0 -2019,9,14,19,0,0.0,0.0,0.0,32.6,2.5 -2019,9,14,19,15,0.0,0.0,0.0,32.6,2.5 -2019,9,14,19,30,0.0,0.0,0.0,32.6,2.5 -2019,9,14,19,45,0.0,0.0,0.0,32.6,2.5 -2019,9,14,20,0,0.0,0.0,0.0,31.1,1.5 -2019,9,14,20,15,0.0,0.0,0.0,31.1,1.5 -2019,9,14,20,30,0.0,0.0,0.0,31.1,1.5 -2019,9,14,20,45,0.0,0.0,0.0,31.1,1.5 -2019,9,14,21,0,0.0,0.0,0.0,30.8,1.3 -2019,9,14,21,15,0.0,0.0,0.0,30.8,1.3 -2019,9,14,21,30,0.0,0.0,0.0,30.8,1.3 -2019,9,14,21,45,0.0,0.0,0.0,30.8,1.3 -2019,9,14,22,0,0.0,0.0,0.0,28.1,0.0 -2019,9,14,22,15,0.0,0.0,0.0,28.1,0.0 -2019,9,14,22,30,0.0,0.0,0.0,28.1,0.0 -2019,9,14,22,45,0.0,0.0,0.0,28.1,0.0 -2019,9,14,23,0,0.0,0.0,0.0,26.6,0.2 -2019,9,14,23,15,0.0,0.0,0.0,26.6,0.2 -2019,9,14,23,30,0.0,0.0,0.0,26.6,0.2 -2019,9,14,23,45,0.0,0.0,0.0,26.6,0.2 -2019,9,15,0,0,0.0,0.0,0.0,25.5,1.9 -2019,9,15,0,15,0.0,0.0,0.0,25.5,1.9 -2019,9,15,0,30,0.0,0.0,0.0,25.5,1.9 -2019,9,15,0,45,0.0,0.0,0.0,25.5,1.9 -2019,9,15,1,0,0.0,0.0,0.0,24.2,0.2 -2019,9,15,1,15,0.0,0.0,0.0,24.2,0.2 -2019,9,15,1,30,0.0,0.0,0.0,24.2,0.2 -2019,9,15,1,45,0.0,0.0,0.0,24.2,0.2 -2019,9,15,2,0,0.0,0.0,0.0,22.9,1.6 -2019,9,15,2,15,0.0,0.0,0.0,22.9,1.6 -2019,9,15,2,30,0.0,0.0,0.0,22.9,1.6 -2019,9,15,2,45,0.0,0.0,0.0,22.9,1.6 -2019,9,15,3,0,0.0,0.0,0.0,23.8,2.0 -2019,9,15,3,15,0.0,0.0,0.0,23.8,2.0 -2019,9,15,3,30,0.0,0.0,0.0,23.8,2.0 -2019,9,15,3,45,0.0,0.0,0.0,23.8,2.0 -2019,9,15,4,0,0.0,0.0,0.0,22.9,1.7 -2019,9,15,4,15,0.0,0.0,0.0,22.9,1.7 -2019,9,15,4,30,0.0,0.0,0.0,22.9,1.7 -2019,9,15,4,45,0.0,0.0,0.0,22.9,1.7 -2019,9,15,5,0,415.0,-131.85195029967048,0.0,23.6,3.0 -2019,9,15,5,15,415.0,-110.9933220084764,0.0,23.6,3.0 -2019,9,15,5,30,415.0,-89.61274054514048,0.0,23.6,3.0 -2019,9,15,5,45,415.0,-67.80176084189542,0.0,23.6,3.0 -2019,9,15,6,0,514.0,-4.544682802961034,52.0,26.0,2.0 -2019,9,15,6,15,514.0,23.186718526171088,52.0,26.0,2.0 -2019,9,15,6,30,514.0,51.09929706773314,52.0,26.0,2.0 -2019,9,15,6,45,514.0,79.07352687519355,52.0,26.0,2.0 -2019,9,15,7,0,768.0,160.16347592492048,78.0,29.5,1.8 -2019,9,15,7,15,768.0,201.60919576857344,78.0,29.5,1.8 -2019,9,15,7,30,768.0,242.61195621469201,78.0,29.5,1.8 -2019,9,15,7,45,768.0,282.9961771481874,78.0,29.5,1.8 -2019,9,15,8,0,906.0,375.538499979717,87.0,34.7,4.2 -2019,9,15,8,15,906.0,421.11187699368753,87.0,34.7,4.2 -2019,9,15,8,30,906.0,465.3564065744881,87.0,34.7,4.2 -2019,9,15,8,45,906.0,508.08262685390986,87.0,34.7,4.2 -2019,9,15,9,0,987.0,590.4218312235139,87.0,37.4,4.6 -2019,9,15,9,15,987.0,633.0698245911041,87.0,37.4,4.6 -2019,9,15,9,30,987.0,673.4904417183819,87.0,37.4,4.6 -2019,9,15,9,45,987.0,711.5105953173226,87.0,37.4,4.6 -2019,9,15,10,0,1033.0,773.725839921593,83.0,39.0,4.4 -2019,9,15,10,15,1033.0,807.9935776624734,83.0,39.0,4.4 -2019,9,15,10,30,1033.0,839.2729324376256,83.0,39.0,4.4 -2019,9,15,10,45,1033.0,867.4299612478085,83.0,39.0,4.4 -2019,9,15,11,0,1051.0,903.4468925778602,80.0,39.5,2.8 -2019,9,15,11,15,1051.0,925.3871995679344,80.0,39.5,2.8 -2019,9,15,11,30,1051.0,943.8256035456375,80.0,39.5,2.8 -2019,9,15,11,45,1051.0,958.6831484344214,80.0,39.5,2.8 -2019,9,15,12,0,1045.0,965.8159290995959,81.0,39.9,3.6 -2019,9,15,12,15,1045.0,973.2935614007747,81.0,39.9,3.6 -2019,9,15,12,30,1045.0,977.0677558051782,81.0,39.9,3.6 -2019,9,15,12,45,1045.0,977.1223506329413,81.0,39.9,3.6 -2019,9,15,13,0,1013.0,950.1282818736255,85.0,39.3,0.5 -2019,9,15,13,15,1013.0,942.9845702215588,85.0,39.3,0.5 -2019,9,15,13,30,1013.0,932.2807389503423,85.0,39.3,0.5 -2019,9,15,13,45,1013.0,918.0626235087616,85.0,39.3,0.5 -2019,9,15,14,0,950.0,852.6807035019201,88.0,38.8,4.7 -2019,9,15,14,15,950.0,832.9405444030173,88.0,38.8,4.7 -2019,9,15,14,30,950.0,810.1172538190295,88.0,38.8,4.7 -2019,9,15,14,45,950.0,784.3085645841334,88.0,38.8,4.7 -2019,9,15,15,0,843.0,676.4293363088433,84.0,37.9,5.7 -2019,9,15,15,15,843.0,648.5343549063399,84.0,37.9,5.7 -2019,9,15,15,30,843.0,618.3167379058178,84.0,37.9,5.7 -2019,9,15,15,45,843.0,585.9058817823659,84.0,37.9,5.7 -2019,9,15,16,0,655.0,431.1952271559908,68.0,36.9,5.7 -2019,9,15,16,15,655.0,402.934524033639,68.0,36.9,5.7 -2019,9,15,16,30,655.0,373.31322826020585,68.0,36.9,5.7 -2019,9,15,16,45,655.0,342.45818277173686,68.0,36.9,5.7 -2019,9,15,17,0,404.0,172.57345266935334,23.0,35.8,5.6 -2019,9,15,17,15,404.0,152.2677036822632,23.0,35.8,5.6 -2019,9,15,17,30,404.0,131.45383642638916,23.0,35.8,5.6 -2019,9,15,17,45,404.0,110.22097907672413,23.0,35.8,5.6 -2019,9,15,18,0,0.0,0.0,0.0,33.6,4.3 -2019,9,15,18,15,0.0,0.0,0.0,33.6,4.3 -2019,9,15,18,30,0.0,0.0,0.0,33.6,4.3 -2019,9,15,18,45,0.0,0.0,0.0,33.6,4.3 -2019,9,15,19,0,0.0,0.0,0.0,31.6,1.9 -2019,9,15,19,15,0.0,0.0,0.0,31.6,1.9 -2019,9,15,19,30,0.0,0.0,0.0,31.6,1.9 -2019,9,15,19,45,0.0,0.0,0.0,31.6,1.9 -2019,9,15,20,0,0.0,0.0,0.0,30.4,0.0 -2019,9,15,20,15,0.0,0.0,0.0,30.4,0.0 -2019,9,15,20,30,0.0,0.0,0.0,30.4,0.0 -2019,9,15,20,45,0.0,0.0,0.0,30.4,0.0 -2019,9,15,21,0,0.0,0.0,0.0,28.6,0.0 -2019,9,15,21,15,0.0,0.0,0.0,28.6,0.0 -2019,9,15,21,30,0.0,0.0,0.0,28.6,0.0 -2019,9,15,21,45,0.0,0.0,0.0,28.6,0.0 -2019,9,15,22,0,0.0,0.0,0.0,26.6,0.0 -2019,9,15,22,15,0.0,0.0,0.0,26.6,0.0 -2019,9,15,22,30,0.0,0.0,0.0,26.6,0.0 -2019,9,15,22,45,0.0,0.0,0.0,26.6,0.0 -2019,9,15,23,0,0.0,0.0,0.0,25.9,0.2 -2019,9,15,23,15,0.0,0.0,0.0,25.9,0.2 -2019,9,15,23,30,0.0,0.0,0.0,25.9,0.2 -2019,9,15,23,45,0.0,0.0,0.0,25.9,0.2 -2019,9,16,0,0,0.0,0.0,0.0,24.3,1.6 -2019,9,16,0,15,0.0,0.0,0.0,24.3,1.6 -2019,9,16,0,30,0.0,0.0,0.0,24.3,1.6 -2019,9,16,0,45,0.0,0.0,0.0,24.3,1.6 -2019,9,16,1,0,0.0,0.0,0.0,23.2,1.9 -2019,9,16,1,15,0.0,0.0,0.0,23.2,1.9 -2019,9,16,1,30,0.0,0.0,0.0,23.2,1.9 -2019,9,16,1,45,0.0,0.0,0.0,23.2,1.9 -2019,9,16,2,0,0.0,0.0,0.0,22.8,0.2 -2019,9,16,2,15,0.0,0.0,0.0,22.8,0.2 -2019,9,16,2,30,0.0,0.0,0.0,22.8,0.2 -2019,9,16,2,45,0.0,0.0,0.0,22.8,0.2 -2019,9,16,3,0,0.0,0.0,0.0,22.6,1.3 -2019,9,16,3,15,0.0,0.0,0.0,22.6,1.3 -2019,9,16,3,30,0.0,0.0,0.0,22.6,1.3 -2019,9,16,3,45,0.0,0.0,0.0,22.6,1.3 -2019,9,16,4,0,0.0,0.0,0.0,21.1,0.0 -2019,9,16,4,15,0.0,0.0,0.0,21.1,0.0 -2019,9,16,4,30,0.0,0.0,0.0,21.1,0.0 -2019,9,16,4,45,0.0,0.0,0.0,21.1,0.0 -2019,9,16,5,0,223.0,-67.73806587403067,4.0,21.2,0.0 -2019,9,16,5,15,223.0,-56.52624438864461,4.0,21.2,0.0 -2019,9,16,5,30,223.0,-45.03386534654448,4.0,21.2,0.0 -2019,9,16,5,45,223.0,-33.3101408791307,4.0,21.2,0.0 -2019,9,16,6,0,447.0,6.075527456632678,57.0,22.6,0.0 -2019,9,16,6,15,447.0,30.19955875348476,57.0,22.6,0.0 -2019,9,16,6,30,447.0,54.48119927790778,57.0,22.6,0.0 -2019,9,16,6,45,447.0,78.81647131739072,57.0,22.6,0.0 -2019,9,16,7,0,680.0,163.1315299792135,93.0,25.9,0.0 -2019,9,16,7,15,680.0,199.8395570054871,93.0,25.9,0.0 -2019,9,16,7,30,680.0,236.15525967118566,93.0,25.9,0.0 -2019,9,16,7,45,680.0,271.92312856220644,93.0,25.9,0.0 -2019,9,16,8,0,808.0,365.2704707935327,111.0,28.6,0.4 -2019,9,16,8,15,808.0,405.92678812099035,111.0,28.6,0.4 -2019,9,16,8,30,808.0,445.3976316814683,111.0,28.6,0.4 -2019,9,16,8,45,808.0,483.51398126316656,111.0,28.6,0.4 -2019,9,16,9,0,886.0,566.6061614970627,118.0,30.8,3.0 -2019,9,16,9,15,886.0,604.9017576192141,118.0,30.8,3.0 -2019,9,16,9,30,886.0,641.1972901000146,118.0,30.8,3.0 -2019,9,16,9,45,886.0,675.3373358971904,118.0,30.8,3.0 -2019,9,16,10,0,930.0,736.4349920393083,118.0,32.4,2.7 -2019,9,16,10,15,930.0,767.2954043819468,118.0,32.4,2.7 -2019,9,16,10,30,930.0,795.4645760229829,118.0,32.4,2.7 -2019,9,16,10,45,930.0,820.8218822448398,118.0,32.4,2.7 -2019,9,16,11,0,948.0,856.296005088758,117.0,33.9,3.3 -2019,9,16,11,15,948.0,876.0922119963508,117.0,33.9,3.3 -2019,9,16,11,30,948.0,892.7287367429517,117.0,33.9,3.3 -2019,9,16,11,45,948.0,906.13433917551,117.0,33.9,3.3 -2019,9,16,12,0,942.0,912.1930599245318,118.0,33.9,4.7 -2019,9,16,12,15,942.0,918.9357373179323,118.0,33.9,4.7 -2019,9,16,12,30,942.0,922.3389770419368,118.0,33.9,4.7 -2019,9,16,12,45,942.0,922.3882059015715,118.0,33.9,4.7 -2019,9,16,13,0,910.0,891.8701952368206,118.0,33.9,5.1 -2019,9,16,13,15,910.0,885.4508678332676,118.0,33.9,5.1 -2019,9,16,13,30,910.0,875.8324228639148,118.0,33.9,5.1 -2019,9,16,13,45,910.0,863.0560479867715,118.0,33.9,5.1 -2019,9,16,14,0,849.0,796.2975924251068,116.0,33.8,5.2 -2019,9,16,14,15,849.0,778.6506935634312,116.0,33.8,5.2 -2019,9,16,14,30,849.0,758.2476006294615,116.0,33.8,5.2 -2019,9,16,14,45,849.0,735.175682799481,116.0,33.8,5.2 -2019,9,16,15,0,748.0,625.924894818188,103.0,33.1,5.6 -2019,9,16,15,15,748.0,601.165857037472,103.0,33.1,5.6 -2019,9,16,15,30,748.0,574.3452935044204,103.0,33.1,5.6 -2019,9,16,15,45,748.0,545.5780539896496,103.0,33.1,5.6 -2019,9,16,16,0,573.0,391.59991548572856,76.0,31.9,4.8 -2019,9,16,16,15,573.0,366.86958341857314,76.0,31.9,4.8 -2019,9,16,16,30,573.0,340.9486260536785,76.0,31.9,4.8 -2019,9,16,16,45,573.0,313.9480409099384,76.0,31.9,4.8 -2019,9,16,17,0,361.0,155.29323727464202,23.0,30.8,4.0 -2019,9,16,17,15,361.0,137.1431585471786,23.0,30.8,4.0 -2019,9,16,17,30,361.0,118.53890368530347,23.0,30.8,4.0 -2019,9,16,17,45,361.0,99.56013896451252,23.0,30.8,4.0 -2019,9,16,18,0,0.0,0.0,0.0,28.5,3.5 -2019,9,16,18,15,0.0,0.0,0.0,28.5,3.5 -2019,9,16,18,30,0.0,0.0,0.0,28.5,3.5 -2019,9,16,18,45,0.0,0.0,0.0,28.5,3.5 -2019,9,16,19,0,0.0,0.0,0.0,25.5,3.0 -2019,9,16,19,15,0.0,0.0,0.0,25.5,3.0 -2019,9,16,19,30,0.0,0.0,0.0,25.5,3.0 -2019,9,16,19,45,0.0,0.0,0.0,25.5,3.0 -2019,9,16,20,0,0.0,0.0,0.0,24.9,1.9 -2019,9,16,20,15,0.0,0.0,0.0,24.9,1.9 -2019,9,16,20,30,0.0,0.0,0.0,24.9,1.9 -2019,9,16,20,45,0.0,0.0,0.0,24.9,1.9 -2019,9,16,21,0,0.0,0.0,0.0,23.8,0.4 -2019,9,16,21,15,0.0,0.0,0.0,23.8,0.4 -2019,9,16,21,30,0.0,0.0,0.0,23.8,0.4 -2019,9,16,21,45,0.0,0.0,0.0,23.8,0.4 -2019,9,16,22,0,0.0,0.0,0.0,22.7,2.7 -2019,9,16,22,15,0.0,0.0,0.0,22.7,2.7 -2019,9,16,22,30,0.0,0.0,0.0,22.7,2.7 -2019,9,16,22,45,0.0,0.0,0.0,22.7,2.7 -2019,9,16,23,0,0.0,0.0,0.0,22.1,0.0 -2019,9,16,23,15,0.0,0.0,0.0,22.1,0.0 -2019,9,16,23,30,0.0,0.0,0.0,22.1,0.0 -2019,9,16,23,45,0.0,0.0,0.0,22.1,0.0 -2019,9,17,0,0,0.0,0.0,0.0,21.0,0.0 -2019,9,17,0,15,0.0,0.0,0.0,21.0,0.0 -2019,9,17,0,30,0.0,0.0,0.0,21.0,0.0 -2019,9,17,0,45,0.0,0.0,0.0,21.0,0.0 -2019,9,17,1,0,0.0,0.0,0.0,19.9,0.0 -2019,9,17,1,15,0.0,0.0,0.0,19.9,0.0 -2019,9,17,1,30,0.0,0.0,0.0,19.9,0.0 -2019,9,17,1,45,0.0,0.0,0.0,19.9,0.0 -2019,9,17,2,0,0.0,0.0,0.0,19.3,0.0 -2019,9,17,2,15,0.0,0.0,0.0,19.3,0.0 -2019,9,17,2,30,0.0,0.0,0.0,19.3,0.0 -2019,9,17,2,45,0.0,0.0,0.0,19.3,0.0 -2019,9,17,3,0,0.0,0.0,0.0,18.8,0.0 -2019,9,17,3,15,0.0,0.0,0.0,18.8,0.0 -2019,9,17,3,30,0.0,0.0,0.0,18.8,0.0 -2019,9,17,3,45,0.0,0.0,0.0,18.8,0.0 -2019,9,17,4,0,0.0,0.0,0.0,18.3,0.0 -2019,9,17,4,15,0.0,0.0,0.0,18.3,0.0 -2019,9,17,4,30,0.0,0.0,0.0,18.3,0.0 -2019,9,17,4,45,0.0,0.0,0.0,18.3,0.0 -2019,9,17,5,0,403.0,-131.24347092251068,0.0,18.3,0.0 -2019,9,17,5,15,403.0,-110.97649884405801,0.0,18.3,0.0 -2019,9,17,5,30,403.0,-90.20237882575144,0.0,18.3,0.0 -2019,9,17,5,45,403.0,-69.01006883881024,0.0,18.3,0.0 -2019,9,17,6,0,403.0,11.509682391898899,59.0,18.6,0.0 -2019,9,17,6,15,403.0,33.264723987833705,59.0,18.6,0.0 -2019,9,17,6,30,403.0,55.16189752098554,59.0,18.6,0.0 -2019,9,17,6,45,403.0,77.10743593257031,59.0,18.6,0.0 -2019,9,17,7,0,621.0,163.64906625558035,102.0,21.0,0.2 -2019,9,17,7,15,621.0,197.18081798989226,102.0,21.0,0.2 -2019,9,17,7,30,621.0,230.35419243934743,102.0,21.0,0.2 -2019,9,17,7,45,621.0,263.027136121684,102.0,21.0,0.2 -2019,9,17,8,0,742.0,358.67685338035653,128.0,24.7,1.3 -2019,9,17,8,15,742.0,396.0219075493363,128.0,24.7,1.3 -2019,9,17,8,30,742.0,432.2780391361945,128.0,24.7,1.3 -2019,9,17,8,45,742.0,467.289993819334,128.0,24.7,1.3 -2019,9,17,9,0,816.0,550.098115293091,140.0,27.0,0.3 -2019,9,17,9,15,816.0,585.3772384892457,140.0,27.0,0.3 -2019,9,17,9,30,816.0,618.8138393395335,140.0,27.0,0.3 -2019,9,17,9,45,816.0,650.2647371858333,140.0,27.0,0.3 -2019,9,17,10,0,858.0,711.3685396109164,144.0,29.5,2.6 -2019,9,17,10,15,858.0,739.8471356753835,144.0,29.5,2.6 -2019,9,17,10,30,858.0,765.8422018374555,144.0,29.5,2.6 -2019,9,17,10,45,858.0,789.2424232329913,144.0,29.5,2.6 -2019,9,17,11,0,876.0,824.9185251198612,145.0,30.8,2.7 -2019,9,17,11,15,876.0,843.2159623073502,145.0,30.8,2.7 -2019,9,17,11,30,876.0,858.5929366939071,145.0,30.8,2.7 -2019,9,17,11,45,876.0,870.9836017144928,145.0,30.8,2.7 -2019,9,17,12,0,869.0,874.4589348373277,145.0,32.2,3.1 -2019,9,17,12,15,869.0,880.6807021735375,145.0,32.2,3.1 -2019,9,17,12,30,869.0,883.8210223337198,145.0,32.2,3.1 -2019,9,17,12,45,869.0,883.8664479848379,145.0,32.2,3.1 -2019,9,17,13,0,839.0,853.4145941145086,143.0,32.1,3.2 -2019,9,17,13,15,839.0,847.4945818458484,143.0,32.1,3.2 -2019,9,17,13,30,839.0,838.6242892677687,143.0,32.1,3.2 -2019,9,17,13,45,839.0,826.8417003348809,143.0,32.1,3.2 -2019,9,17,14,0,780.0,757.1381055106978,135.0,31.6,4.2 -2019,9,17,14,15,780.0,740.9212061754129,135.0,31.6,4.2 -2019,9,17,14,30,780.0,722.1714583113721,135.0,31.6,4.2 -2019,9,17,14,45,780.0,700.9691512174429,135.0,31.6,4.2 -2019,9,17,15,0,684.0,591.6475285596216,116.0,30.9,4.6 -2019,9,17,15,15,684.0,569.0010449059453,116.0,30.9,4.6 -2019,9,17,15,30,684.0,544.4689342878694,116.0,30.9,4.6 -2019,9,17,15,45,684.0,518.1562469692989,116.0,30.9,4.6 -2019,9,17,16,0,518.0,364.36694561545204,81.0,29.9,4.6 -2019,9,17,16,15,518.0,342.0045875320575,81.0,29.9,4.6 -2019,9,17,16,30,518.0,318.5656086746718,81.0,29.9,4.6 -2019,9,17,16,45,518.0,294.1503783491799,81.0,29.9,4.6 -2019,9,17,17,0,340.0,145.308053569197,22.0,29.2,4.3 -2019,9,17,17,15,340.0,128.20936744841805,22.0,29.2,4.3 -2019,9,17,17,30,340.0,110.68281457937525,22.0,29.2,4.3 -2019,9,17,17,45,340.0,92.80344635217928,22.0,29.2,4.3 -2019,9,17,18,0,0.0,0.0,0.0,27.5,2.0 -2019,9,17,18,15,0.0,0.0,0.0,27.5,2.0 -2019,9,17,18,30,0.0,0.0,0.0,27.5,2.0 -2019,9,17,18,45,0.0,0.0,0.0,27.5,2.0 -2019,9,17,19,0,0.0,0.0,0.0,25.5,1.3 -2019,9,17,19,15,0.0,0.0,0.0,25.5,1.3 -2019,9,17,19,30,0.0,0.0,0.0,25.5,1.3 -2019,9,17,19,45,0.0,0.0,0.0,25.5,1.3 -2019,9,17,20,0,0.0,0.0,0.0,24.3,0.0 -2019,9,17,20,15,0.0,0.0,0.0,24.3,0.0 -2019,9,17,20,30,0.0,0.0,0.0,24.3,0.0 -2019,9,17,20,45,0.0,0.0,0.0,24.3,0.0 -2019,9,17,21,0,0.0,0.0,0.0,23.2,0.2 -2019,9,17,21,15,0.0,0.0,0.0,23.2,0.2 -2019,9,17,21,30,0.0,0.0,0.0,23.2,0.2 -2019,9,17,21,45,0.0,0.0,0.0,23.2,0.2 -2019,9,17,22,0,0.0,0.0,0.0,22.1,1.3 -2019,9,17,22,15,0.0,0.0,0.0,22.1,1.3 -2019,9,17,22,30,0.0,0.0,0.0,22.1,1.3 -2019,9,17,22,45,0.0,0.0,0.0,22.1,1.3 -2019,9,17,23,0,0.0,0.0,0.0,21.6,0.0 -2019,9,17,23,15,0.0,0.0,0.0,21.6,0.0 -2019,9,17,23,30,0.0,0.0,0.0,21.6,0.0 -2019,9,17,23,45,0.0,0.0,0.0,21.6,0.0 -2019,9,18,0,0,0.0,0.0,0.0,20.4,0.0 -2019,9,18,0,15,0.0,0.0,0.0,20.4,0.0 -2019,9,18,0,30,0.0,0.0,0.0,20.4,0.0 -2019,9,18,0,45,0.0,0.0,0.0,20.4,0.0 -2019,9,18,1,0,0.0,0.0,0.0,18.8,0.0 -2019,9,18,1,15,0.0,0.0,0.0,18.8,0.0 -2019,9,18,1,30,0.0,0.0,0.0,18.8,0.0 -2019,9,18,1,45,0.0,0.0,0.0,18.8,0.0 -2019,9,18,2,0,0.0,0.0,0.0,18.2,0.0 -2019,9,18,2,15,0.0,0.0,0.0,18.2,0.0 -2019,9,18,2,30,0.0,0.0,0.0,18.2,0.0 -2019,9,18,2,45,0.0,0.0,0.0,18.2,0.0 -2019,9,18,3,0,0.0,0.0,0.0,17.8,0.0 -2019,9,18,3,15,0.0,0.0,0.0,17.8,0.0 -2019,9,18,3,30,0.0,0.0,0.0,17.8,0.0 -2019,9,18,3,45,0.0,0.0,0.0,17.8,0.0 -2019,9,18,4,0,0.0,0.0,0.0,17.7,0.0 -2019,9,18,4,15,0.0,0.0,0.0,17.7,0.0 -2019,9,18,4,30,0.0,0.0,0.0,17.7,0.0 -2019,9,18,4,45,0.0,0.0,0.0,17.7,0.0 -2019,9,18,5,0,341.0,-112.40265400759603,0.0,17.5,0.0 -2019,9,18,5,15,341.0,-95.25007453846854,0.0,17.5,0.0 -2019,9,18,5,30,341.0,-77.6682797278842,0.0,17.5,0.0 -2019,9,18,5,45,341.0,-59.73255752042825,0.0,17.5,0.0 -2019,9,18,6,0,358.0,17.41039093048571,61.0,19.7,0.0 -2019,9,18,6,15,358.0,36.740269981105506,61.0,19.7,0.0 -2019,9,18,6,30,358.0,56.196436685257055,61.0,19.7,0.0 -2019,9,18,6,45,358.0,75.69557675014818,61.0,19.7,0.0 -2019,9,18,7,0,559.0,165.3301487492524,112.0,22.5,0.0 -2019,9,18,7,15,559.0,195.52046676890694,112.0,22.5,0.0 -2019,9,18,7,30,559.0,225.38811974300773,112.0,22.5,0.0 -2019,9,18,7,45,559.0,254.80520979615403,112.0,22.5,0.0 -2019,9,18,8,0,740.0,355.2233786047999,128.0,25.3,0.2 -2019,9,18,8,15,740.0,392.4755975040922,128.0,25.3,0.2 -2019,9,18,8,30,740.0,428.6416007505695,128.0,25.3,0.2 -2019,9,18,8,45,740.0,463.5665199660248,128.0,25.3,0.2 -2019,9,18,9,0,778.0,540.0546262154376,152.0,28.1,1.6 -2019,9,18,9,15,778.0,573.697916223656,152.0,28.1,1.6 -2019,9,18,9,30,778.0,605.584118526379,152.0,28.1,1.6 -2019,9,18,9,45,778.0,635.5766915100877,152.0,28.1,1.6 -2019,9,18,10,0,910.0,723.3392726981707,125.0,30.2,2.7 -2019,9,18,10,15,910.0,753.5501904297143,125.0,30.2,2.7 -2019,9,18,10,30,910.0,781.1265078672253,125.0,30.2,2.7 -2019,9,18,10,45,910.0,805.9501389858426,125.0,30.2,2.7 -2019,9,18,11,0,960.0,854.5364766798664,113.0,32.0,3.2 -2019,9,18,11,15,960.0,874.5926756722257,113.0,32.0,3.2 -2019,9,18,11,30,960.0,891.4476950411718,113.0,32.0,3.2 -2019,9,18,11,45,960.0,905.0293590061369,113.0,32.0,3.2 -2019,9,18,12,0,976.0,920.6508339435437,105.0,33.8,3.8 -2019,9,18,12,15,976.0,927.640155893485,105.0,33.8,3.8 -2019,9,18,12,30,976.0,931.1678848231201,105.0,33.8,3.8 -2019,9,18,12,45,976.0,931.218914455585,105.0,33.8,3.8 -2019,9,18,13,0,902.0,880.4091287902586,120.0,33.2,5.6 -2019,9,18,13,15,902.0,874.0432491732649,120.0,33.2,5.6 -2019,9,18,13,30,902.0,864.5048880758566,120.0,33.2,5.6 -2019,9,18,13,45,902.0,851.8348902246084,120.0,33.2,5.6 -2019,9,18,14,0,851.0,789.5991922745351,114.0,32.7,5.2 -2019,9,18,14,15,851.0,771.9024218732403,114.0,32.7,5.2 -2019,9,18,14,30,851.0,751.4416681760064,114.0,32.7,5.2 -2019,9,18,14,45,851.0,728.3045472713573,114.0,32.7,5.2 -2019,9,18,15,0,691.0,590.9268905774259,113.0,32.0,5.6 -2019,9,18,15,15,691.0,568.0438378177763,113.0,32.0,5.6 -2019,9,18,15,30,691.0,543.255460506588,113.0,32.0,5.6 -2019,9,18,15,45,691.0,516.6679062810886,113.0,32.0,5.6 -2019,9,18,16,0,569.0,383.11688919988677,74.0,30.8,5.1 -2019,9,18,16,15,569.0,358.54767072380355,74.0,30.8,5.1 -2019,9,18,16,30,569.0,332.79558365607033,74.0,30.8,5.1 -2019,9,18,16,45,569.0,305.97090238704345,74.0,30.8,5.1 -2019,9,18,17,0,372.0,147.49405955550694,14.0,29.7,4.4 -2019,9,18,17,15,372.0,128.78215468009506,14.0,29.7,4.4 -2019,9,18,17,30,372.0,109.60201488673033,14.0,29.7,4.4 -2019,9,18,17,45,372.0,90.03577247859666,14.0,29.7,4.4 -2019,9,18,18,0,0.0,0.0,0.0,27.6,3.0 -2019,9,18,18,15,0.0,0.0,0.0,27.6,3.0 -2019,9,18,18,30,0.0,0.0,0.0,27.6,3.0 -2019,9,18,18,45,0.0,0.0,0.0,27.6,3.0 -2019,9,18,19,0,0.0,0.0,0.0,26.0,1.9 -2019,9,18,19,15,0.0,0.0,0.0,26.0,1.9 -2019,9,18,19,30,0.0,0.0,0.0,26.0,1.9 -2019,9,18,19,45,0.0,0.0,0.0,26.0,1.9 -2019,9,18,20,0,0.0,0.0,0.0,24.8,0.0 -2019,9,18,20,15,0.0,0.0,0.0,24.8,0.0 -2019,9,18,20,30,0.0,0.0,0.0,24.8,0.0 -2019,9,18,20,45,0.0,0.0,0.0,24.8,0.0 -2019,9,18,21,0,0.0,0.0,0.0,23.2,0.2 -2019,9,18,21,15,0.0,0.0,0.0,23.2,0.2 -2019,9,18,21,30,0.0,0.0,0.0,23.2,0.2 -2019,9,18,21,45,0.0,0.0,0.0,23.2,0.2 -2019,9,18,22,0,0.0,0.0,0.0,22.7,1.3 -2019,9,18,22,15,0.0,0.0,0.0,22.7,1.3 -2019,9,18,22,30,0.0,0.0,0.0,22.7,1.3 -2019,9,18,22,45,0.0,0.0,0.0,22.7,1.3 -2019,9,18,23,0,0.0,0.0,0.0,21.6,0.0 -2019,9,18,23,15,0.0,0.0,0.0,21.6,0.0 -2019,9,18,23,30,0.0,0.0,0.0,21.6,0.0 -2019,9,18,23,45,0.0,0.0,0.0,21.6,0.0 -2019,9,19,0,0,0.0,0.0,0.0,20.4,0.0 -2019,9,19,0,15,0.0,0.0,0.0,20.4,0.0 -2019,9,19,0,30,0.0,0.0,0.0,20.4,0.0 -2019,9,19,0,45,0.0,0.0,0.0,20.4,0.0 -2019,9,19,1,0,0.0,0.0,0.0,18.8,0.0 -2019,9,19,1,15,0.0,0.0,0.0,18.8,0.0 -2019,9,19,1,30,0.0,0.0,0.0,18.8,0.0 -2019,9,19,1,45,0.0,0.0,0.0,18.8,0.0 -2019,9,19,2,0,0.0,0.0,0.0,18.2,0.0 -2019,9,19,2,15,0.0,0.0,0.0,18.2,0.0 -2019,9,19,2,30,0.0,0.0,0.0,18.2,0.0 -2019,9,19,2,45,0.0,0.0,0.0,18.2,0.0 -2019,9,19,3,0,0.0,0.0,0.0,17.8,0.0 -2019,9,19,3,15,0.0,0.0,0.0,17.8,0.0 -2019,9,19,3,30,0.0,0.0,0.0,17.8,0.0 -2019,9,19,3,45,0.0,0.0,0.0,17.8,0.0 -2019,9,19,4,0,0.0,0.0,0.0,17.8,0.0 -2019,9,19,4,15,0.0,0.0,0.0,17.8,0.0 -2019,9,19,4,30,0.0,0.0,0.0,17.8,0.0 -2019,9,19,4,45,0.0,0.0,0.0,17.8,0.0 -2019,9,19,5,0,380.0,-126.75851665691485,0.0,17.9,0.0 -2019,9,19,5,15,380.0,-107.64113004595961,0.0,17.9,0.0 -2019,9,19,5,30,380.0,-88.04536199757975,0.0,17.9,0.0 -2019,9,19,5,45,380.0,-68.05512459895546,0.0,17.9,0.0 -2019,9,19,6,0,496.0,-11.33417231928928,51.0,19.4,0.0 -2019,9,19,6,15,496.0,15.451197792034186,51.0,19.4,0.0 -2019,9,19,6,30,496.0,42.41156442203622,51.0,19.4,0.0 -2019,9,19,6,45,496.0,69.43147914177653,51.0,19.4,0.0 -2019,9,19,7,0,744.0,148.09285779237882,80.0,23.2,0.0 -2019,9,19,7,15,744.0,188.28106943632935,80.0,23.2,0.0 -2019,9,19,7,30,744.0,228.03976155245064,80.0,23.2,0.0 -2019,9,19,7,45,744.0,267.1986813172359,80.0,23.2,0.0 -2019,9,19,8,0,921.0,361.25876724560885,82.0,26.4,0.0 -2019,9,19,8,15,921.0,407.63013671675003,82.0,26.4,0.0 -2019,9,19,8,30,921.0,452.6493905596065,82.0,26.4,0.0 -2019,9,19,8,45,921.0,496.12374941774146,82.0,26.4,0.0 -2019,9,19,9,0,996.0,575.989773305723,83.0,29.2,0.4 -2019,9,19,9,15,996.0,619.0670327542032,83.0,29.2,0.4 -2019,9,19,9,30,996.0,659.8944966878903,83.0,29.2,0.4 -2019,9,19,9,45,996.0,698.2973356382745,83.0,29.2,0.4 -2019,9,19,10,0,1015.0,751.5318968820861,88.0,31.4,3.1 -2019,9,19,10,15,1015.0,785.2341109975754,88.0,31.4,3.1 -2019,9,19,10,30,1015.0,815.997259706074,88.0,31.4,3.1 -2019,9,19,10,45,1015.0,843.6896104819673,88.0,31.4,3.1 -2019,9,19,11,0,1076.0,899.0810015175773,72.0,34.1,3.2 -2019,9,19,11,15,1076.0,921.5642744960452,72.0,34.1,3.2 -2019,9,19,11,30,1076.0,940.4589813980732,72.0,34.1,3.2 -2019,9,19,11,45,1076.0,955.6842121879383,72.0,34.1,3.2 -2019,9,19,12,0,1070.0,962.1830892158708,72.0,35.6,4.1 -2019,9,19,12,15,1070.0,969.8467958412439,72.0,35.6,4.1 -2019,9,19,12,30,1070.0,973.7149077645745,72.0,35.6,4.1 -2019,9,19,12,45,1070.0,973.7708611367633,72.0,35.6,4.1 -2019,9,19,13,0,1015.0,934.8547968245178,83.0,35.5,4.2 -2019,9,19,13,15,1015.0,927.6902654062122,83.0,35.5,4.2 -2019,9,19,13,30,1015.0,916.9552386898574,83.0,35.5,4.2 -2019,9,19,13,45,1015.0,902.695685707924,83.0,35.5,4.2 -2019,9,19,14,0,870.0,795.405144047526,108.0,34.8,5.2 -2019,9,19,14,15,870.0,777.3103529270586,108.0,34.8,5.2 -2019,9,19,14,30,870.0,756.3894133475018,108.0,34.8,5.2 -2019,9,19,14,45,870.0,732.7319119839765,108.0,34.8,5.2 -2019,9,19,15,0,738.0,609.6414891612569,102.0,34.2,5.6 -2019,9,19,15,15,738.0,585.1980595095602,102.0,34.2,5.6 -2019,9,19,15,30,738.0,558.719382763502,102.0,34.2,5.6 -2019,9,19,15,45,738.0,530.3188446819901,102.0,34.2,5.6 -2019,9,19,16,0,526.0,360.75352295876587,77.0,33.0,5.1 -2019,9,19,16,15,526.0,338.03737518571086,77.0,33.0,5.1 -2019,9,19,16,30,526.0,314.2275736706706,77.0,33.0,5.1 -2019,9,19,16,45,526.0,289.42607563907956,77.0,33.0,5.1 -2019,9,19,17,0,412.0,157.2671159395415,11.0,31.4,4.4 -2019,9,19,17,15,412.0,136.53984414029543,11.0,31.4,4.4 -2019,9,19,17,30,412.0,115.29390615099926,11.0,31.4,4.4 -2019,9,19,17,45,412.0,93.62028033985925,11.0,31.4,4.4 -2019,9,19,18,0,0.0,0.0,0.0,29.2,2.3 -2019,9,19,18,15,0.0,0.0,0.0,29.2,2.3 -2019,9,19,18,30,0.0,0.0,0.0,29.2,2.3 -2019,9,19,18,45,0.0,0.0,0.0,29.2,2.3 -2019,9,19,19,0,0.0,0.0,0.0,27.7,0.0 -2019,9,19,19,15,0.0,0.0,0.0,27.7,0.0 -2019,9,19,19,30,0.0,0.0,0.0,27.7,0.0 -2019,9,19,19,45,0.0,0.0,0.0,27.7,0.0 -2019,9,19,20,0,0.0,0.0,0.0,26.6,0.0 -2019,9,19,20,15,0.0,0.0,0.0,26.6,0.0 -2019,9,19,20,30,0.0,0.0,0.0,26.6,0.0 -2019,9,19,20,45,0.0,0.0,0.0,26.6,0.0 -2019,9,19,21,0,0.0,0.0,0.0,25.4,0.0 -2019,9,19,21,15,0.0,0.0,0.0,25.4,0.0 -2019,9,19,21,30,0.0,0.0,0.0,25.4,0.0 -2019,9,19,21,45,0.0,0.0,0.0,25.4,0.0 -2019,9,19,22,0,0.0,0.0,0.0,23.8,0.0 -2019,9,19,22,15,0.0,0.0,0.0,23.8,0.0 -2019,9,19,22,30,0.0,0.0,0.0,23.8,0.0 -2019,9,19,22,45,0.0,0.0,0.0,23.8,0.0 -2019,9,19,23,0,0.0,0.0,0.0,23.1,0.0 -2019,9,19,23,15,0.0,0.0,0.0,23.1,0.0 -2019,9,19,23,30,0.0,0.0,0.0,23.1,0.0 -2019,9,19,23,45,0.0,0.0,0.0,23.1,0.0 -2019,9,20,0,0,0.0,0.0,0.0,21.5,0.0 -2019,9,20,0,15,0.0,0.0,0.0,21.5,0.0 -2019,9,20,0,30,0.0,0.0,0.0,21.5,0.0 -2019,9,20,0,45,0.0,0.0,0.0,21.5,0.0 -2019,9,20,1,0,0.0,0.0,0.0,19.9,0.0 -2019,9,20,1,15,0.0,0.0,0.0,19.9,0.0 -2019,9,20,1,30,0.0,0.0,0.0,19.9,0.0 -2019,9,20,1,45,0.0,0.0,0.0,19.9,0.0 -2019,9,20,2,0,0.0,0.0,0.0,19.3,0.0 -2019,9,20,2,15,0.0,0.0,0.0,19.3,0.0 -2019,9,20,2,30,0.0,0.0,0.0,19.3,0.0 -2019,9,20,2,45,0.0,0.0,0.0,19.3,0.0 -2019,9,20,3,0,0.0,0.0,0.0,18.9,0.0 -2019,9,20,3,15,0.0,0.0,0.0,18.9,0.0 -2019,9,20,3,30,0.0,0.0,0.0,18.9,0.0 -2019,9,20,3,45,0.0,0.0,0.0,18.9,0.0 -2019,9,20,4,0,0.0,0.0,0.0,18.9,0.0 -2019,9,20,4,15,0.0,0.0,0.0,18.9,0.0 -2019,9,20,4,30,0.0,0.0,0.0,18.9,0.0 -2019,9,20,4,45,0.0,0.0,0.0,18.9,0.0 -2019,9,20,5,0,112.0,-34.80114753474666,3.0,19.2,0.0 -2019,9,20,5,15,112.0,-29.16592117870225,3.0,19.2,0.0 -2019,9,20,5,30,112.0,-23.38968246886289,3.0,19.2,0.0 -2019,9,20,5,45,112.0,-17.497166146168485,3.0,19.2,0.0 -2019,9,20,6,0,224.0,35.97279025970341,65.0,21.5,0.0 -2019,9,20,6,15,224.0,48.07075766240132,65.0,21.5,0.0 -2019,9,20,6,30,224.0,60.24776456202467,65.0,21.5,0.0 -2019,9,20,6,45,224.0,72.45166714558117,65.0,21.5,0.0 -2019,9,20,7,0,417.0,168.54373250329928,132.0,24.8,0.0 -2019,9,20,7,15,417.0,191.0710882103968,132.0,24.8,0.0 -2019,9,20,7,30,417.0,213.3576783100997,132.0,24.8,0.0 -2019,9,20,7,45,417.0,235.3080682021016,132.0,24.8,0.0 -2019,9,20,8,0,558.0,340.03638063411483,173.0,28.1,0.2 -2019,9,20,8,15,558.0,368.1342188249816,173.0,28.1,0.2 -2019,9,20,8,30,558.0,395.4127685934409,173.0,28.1,0.2 -2019,9,20,8,45,558.0,421.75521900150505,173.0,28.1,0.2 -2019,9,20,9,0,621.0,507.98975752633635,203.0,31.0,1.5 -2019,9,20,9,15,621.0,534.8511637146235,203.0,31.0,1.5 -2019,9,20,9,30,621.0,560.3096795626902,203.0,31.0,1.5 -2019,9,20,9,45,621.0,584.256287797213,203.0,31.0,1.5 -2019,9,20,10,0,717.0,661.9789296730727,196.0,34.2,1.6 -2019,9,20,10,15,717.0,685.7889608070445,196.0,34.2,1.6 -2019,9,20,10,30,717.0,707.522593084685,196.0,34.2,1.6 -2019,9,20,10,45,717.0,727.0867597559736,196.0,34.2,1.6 -2019,9,20,11,0,745.0,764.813493195928,195.0,36.4,2.5 -2019,9,20,11,15,745.0,780.3821789002833,195.0,36.4,2.5 -2019,9,20,11,30,745.0,793.4659391479707,195.0,36.4,2.5 -2019,9,20,11,45,745.0,804.0087472689544,195.0,36.4,2.5 -2019,9,20,12,0,802.0,833.1695258884827,169.0,38.2,2.5 -2019,9,20,12,15,802.0,838.9143651025094,169.0,38.2,2.5 -2019,9,20,12,30,802.0,841.8139647541743,169.0,38.2,2.5 -2019,9,20,12,45,802.0,841.8559083126141,169.0,38.2,2.5 -2019,9,20,13,0,668.0,759.0881930186292,201.0,37.1,5.6 -2019,9,20,13,15,668.0,754.3724880289478,201.0,37.1,5.6 -2019,9,20,13,30,668.0,747.3066778461167,201.0,37.1,5.6 -2019,9,20,13,45,668.0,737.9210193541015,201.0,37.1,5.6 -2019,9,20,14,0,866.0,788.94526815882,108.0,36.5,5.1 -2019,9,20,14,15,866.0,770.93166338119,108.0,36.5,5.1 -2019,9,20,14,30,866.0,750.104590294033,108.0,36.5,5.1 -2019,9,20,14,45,866.0,726.5532336217389,108.0,36.5,5.1 -2019,9,20,15,0,682.0,578.5151255571216,112.0,35.5,5.0 -2019,9,20,15,15,682.0,555.9239635047027,112.0,35.5,5.0 -2019,9,20,15,30,682.0,531.4517807616282,112.0,35.5,5.0 -2019,9,20,15,45,682.0,505.203370971442,112.0,35.5,5.0 -2019,9,20,16,0,579.0,380.1225315275811,70.0,34.1,4.5 -2019,9,20,16,15,579.0,355.1147065477181,70.0,34.1,4.5 -2019,9,20,16,30,579.0,328.9028965594203,70.0,34.1,4.5 -2019,9,20,16,45,579.0,301.5993445571679,70.0,34.1,4.5 -2019,9,20,17,0,383.0,145.49383584062335,11.0,33.0,4.2 -2019,9,20,17,15,383.0,126.22337428379284,11.0,33.0,4.2 -2019,9,20,17,30,383.0,106.47070083853858,11.0,33.0,4.2 -2019,9,20,17,45,383.0,86.3203994850389,11.0,33.0,4.2 -2019,9,20,18,0,0.0,0.0,0.0,30.5,4.7 -2019,9,20,18,15,0.0,0.0,0.0,30.5,4.7 -2019,9,20,18,30,0.0,0.0,0.0,30.5,4.7 -2019,9,20,18,45,0.0,0.0,0.0,30.5,4.7 -2019,9,20,19,0,0.0,0.0,0.0,29.2,2.0 -2019,9,20,19,15,0.0,0.0,0.0,29.2,2.0 -2019,9,20,19,30,0.0,0.0,0.0,29.2,2.0 -2019,9,20,19,45,0.0,0.0,0.0,29.2,2.0 -2019,9,20,20,0,0.0,0.0,0.0,27.7,1.3 -2019,9,20,20,15,0.0,0.0,0.0,27.7,1.3 -2019,9,20,20,30,0.0,0.0,0.0,27.7,1.3 -2019,9,20,20,45,0.0,0.0,0.0,27.7,1.3 -2019,9,20,21,0,0.0,0.0,0.0,27.0,0.0 -2019,9,20,21,15,0.0,0.0,0.0,27.0,0.0 -2019,9,20,21,30,0.0,0.0,0.0,27.0,0.0 -2019,9,20,21,45,0.0,0.0,0.0,27.0,0.0 -2019,9,20,22,0,0.0,0.0,0.0,25.5,0.0 -2019,9,20,22,15,0.0,0.0,0.0,25.5,0.0 -2019,9,20,22,30,0.0,0.0,0.0,25.5,0.0 -2019,9,20,22,45,0.0,0.0,0.0,25.5,0.0 -2019,9,20,23,0,0.0,0.0,0.0,24.2,0.0 -2019,9,20,23,15,0.0,0.0,0.0,24.2,0.0 -2019,9,20,23,30,0.0,0.0,0.0,24.2,0.0 -2019,9,20,23,45,0.0,0.0,0.0,24.2,0.0 -2019,9,21,0,0,0.0,0.0,0.0,22.6,0.0 -2019,9,21,0,15,0.0,0.0,0.0,22.6,0.0 -2019,9,21,0,30,0.0,0.0,0.0,22.6,0.0 -2019,9,21,0,45,0.0,0.0,0.0,22.6,0.0 -2019,9,21,1,0,0.0,0.0,0.0,21.0,0.0 -2019,9,21,1,15,0.0,0.0,0.0,21.0,0.0 -2019,9,21,1,30,0.0,0.0,0.0,21.0,0.0 -2019,9,21,1,45,0.0,0.0,0.0,21.0,0.0 -2019,9,21,2,0,0.0,0.0,0.0,20.5,0.0 -2019,9,21,2,15,0.0,0.0,0.0,20.5,0.0 -2019,9,21,2,30,0.0,0.0,0.0,20.5,0.0 -2019,9,21,2,45,0.0,0.0,0.0,20.5,0.0 -2019,9,21,3,0,0.0,0.0,0.0,19.9,0.0 -2019,9,21,3,15,0.0,0.0,0.0,19.9,0.0 -2019,9,21,3,30,0.0,0.0,0.0,19.9,0.0 -2019,9,21,3,45,0.0,0.0,0.0,19.9,0.0 -2019,9,21,4,0,0.0,0.0,0.0,19.4,0.0 -2019,9,21,4,15,0.0,0.0,0.0,19.4,0.0 -2019,9,21,4,30,0.0,0.0,0.0,19.4,0.0 -2019,9,21,4,45,0.0,0.0,0.0,19.4,0.0 -2019,9,21,5,0,348.0,-118.81790560646972,0.0,19.6,0.0 -2019,9,21,5,15,348.0,-101.30736711657161,0.0,19.6,0.0 -2019,9,21,5,30,348.0,-83.35865594421705,0.0,19.6,0.0 -2019,9,21,5,45,348.0,-65.04863122618238,0.0,19.6,0.0 -2019,9,21,6,0,408.0,0.5346973732152662,55.0,21.4,0.0 -2019,9,21,6,15,408.0,22.57164653836773,55.0,21.4,0.0 -2019,9,21,6,30,408.0,44.75256942388213,55.0,21.4,0.0 -2019,9,21,6,45,408.0,66.98248391268562,55.0,21.4,0.0 -2019,9,21,7,0,388.0,167.49138446587693,135.0,24.4,0.2 -2019,9,21,7,15,388.0,188.45338860106028,135.0,24.4,0.2 -2019,9,21,7,30,388.0,209.1913571359967,135.0,24.4,0.2 -2019,9,21,7,45,388.0,229.61648690566884,135.0,24.4,0.2 -2019,9,21,8,0,892.0,351.5568361259343,88.0,28.2,1.3 -2019,9,21,8,15,892.0,396.47587733116734,88.0,28.2,1.3 -2019,9,21,8,30,892.0,440.08515049819374,88.0,28.2,1.3 -2019,9,21,8,45,892.0,482.1979140242953,88.0,28.2,1.3 -2019,9,21,9,0,996.0,568.3086314489024,83.0,31.4,0.3 -2019,9,21,9,15,996.0,611.3933636103664,83.0,31.4,0.3 -2019,9,21,9,30,996.0,652.2279099797457,83.0,31.4,0.3 -2019,9,21,9,45,996.0,690.6374107604535,83.0,31.4,0.3 -2019,9,21,10,0,1042.0,752.1753021862409,79.0,34.1,2.5 -2019,9,21,10,15,1042.0,786.7800303233408,79.0,34.1,2.5 -2019,9,21,10,30,1042.0,818.3669876090199,79.0,34.1,2.5 -2019,9,21,10,45,1042.0,846.8009138428628,79.0,34.1,2.5 -2019,9,21,11,0,218.0,548.8975921574576,383.0,35.9,2.3 -2019,9,21,11,15,218.0,553.4535436059398,383.0,35.9,2.3 -2019,9,21,11,30,218.0,557.2823174397754,383.0,35.9,2.3 -2019,9,21,11,45,218.0,560.3675182616039,383.0,35.9,2.3 -2019,9,21,12,0,701.0,785.8295884048995,208.0,37.7,4.2 -2019,9,21,12,15,701.0,790.8512615662181,208.0,37.7,4.2 -2019,9,21,12,30,701.0,793.3858567405762,208.0,37.7,4.2 -2019,9,21,12,45,701.0,793.4225204023186,208.0,37.7,4.2 -2019,9,21,13,0,82.0,407.1923107493087,339.0,37.1,5.2 -2019,9,21,13,15,82.0,406.61340090710246,339.0,37.1,5.2 -2019,9,21,13,30,82.0,405.7459872188093,339.0,37.1,5.2 -2019,9,21,13,45,82.0,404.5937840830102,339.0,37.1,5.2 -2019,9,21,14,0,216.0,443.0113742518437,274.0,35.8,6.1 -2019,9,21,14,15,216.0,438.5180950629893,274.0,35.8,6.1 -2019,9,21,14,30,216.0,433.32302970974655,274.0,35.8,6.1 -2019,9,21,14,45,216.0,427.44842425951913,274.0,35.8,6.1 -2019,9,21,15,0,639.0,554.636660912745,120.0,34.3,5.0 -2019,9,21,15,15,639.0,533.4685564779325,120.0,34.3,5.0 -2019,9,21,15,30,639.0,510.53792020294924,120.0,34.3,5.0 -2019,9,21,15,45,639.0,485.94294459270037,120.0,34.3,5.0 -2019,9,21,16,0,216.0,214.85823631841288,100.0,32.7,4.3 -2019,9,21,16,15,216.0,205.5283140872089,100.0,32.7,4.3 -2019,9,21,16,30,216.0,195.749208990031,100.0,32.7,4.3 -2019,9,21,16,45,216.0,185.56279665622066,100.0,32.7,4.3 -2019,9,21,17,0,30.0,21.4184301204497,11.0,32.0,3.6 -2019,9,21,17,15,30.0,19.908900940286063,11.0,32.0,3.6 -2019,9,21,17,30,30.0,18.361598253014115,11.0,32.0,3.6 -2019,9,21,17,45,30.0,16.78314784628699,11.0,32.0,3.6 -2019,9,21,18,0,0.0,0.0,0.0,30.5,3.2 -2019,9,21,18,15,0.0,0.0,0.0,30.5,3.2 -2019,9,21,18,30,0.0,0.0,0.0,30.5,3.2 -2019,9,21,18,45,0.0,0.0,0.0,30.5,3.2 -2019,9,21,19,0,0.0,0.0,0.0,29.2,0.2 -2019,9,21,19,15,0.0,0.0,0.0,29.2,0.2 -2019,9,21,19,30,0.0,0.0,0.0,29.2,0.2 -2019,9,21,19,45,0.0,0.0,0.0,29.2,0.2 -2019,9,21,20,0,0.0,0.0,0.0,27.7,1.3 -2019,9,21,20,15,0.0,0.0,0.0,27.7,1.3 -2019,9,21,20,30,0.0,0.0,0.0,27.7,1.3 -2019,9,21,20,45,0.0,0.0,0.0,27.7,1.3 -2019,9,21,21,0,0.0,0.0,0.0,27.0,0.2 -2019,9,21,21,15,0.0,0.0,0.0,27.0,0.2 -2019,9,21,21,30,0.0,0.0,0.0,27.0,0.2 -2019,9,21,21,45,0.0,0.0,0.0,27.0,0.2 -2019,9,21,22,0,0.0,0.0,0.0,25.5,1.3 -2019,9,21,22,15,0.0,0.0,0.0,25.5,1.3 -2019,9,21,22,30,0.0,0.0,0.0,25.5,1.3 -2019,9,21,22,45,0.0,0.0,0.0,25.5,1.3 -2019,9,21,23,0,0.0,0.0,0.0,24.4,0.0 -2019,9,21,23,15,0.0,0.0,0.0,24.4,0.0 -2019,9,21,23,30,0.0,0.0,0.0,24.4,0.0 -2019,9,21,23,45,0.0,0.0,0.0,24.4,0.0 -2019,9,22,0,0,0.0,0.0,0.0,24.3,0.0 -2019,9,22,0,15,0.0,0.0,0.0,24.3,0.0 -2019,9,22,0,30,0.0,0.0,0.0,24.3,0.0 -2019,9,22,0,45,0.0,0.0,0.0,24.3,0.0 -2019,9,22,1,0,0.0,0.0,0.0,23.2,0.0 -2019,9,22,1,15,0.0,0.0,0.0,23.2,0.0 -2019,9,22,1,30,0.0,0.0,0.0,23.2,0.0 -2019,9,22,1,45,0.0,0.0,0.0,23.2,0.0 -2019,9,22,2,0,0.0,0.0,0.0,22.1,0.0 -2019,9,22,2,15,0.0,0.0,0.0,22.1,0.0 -2019,9,22,2,30,0.0,0.0,0.0,22.1,0.0 -2019,9,22,2,45,0.0,0.0,0.0,22.1,0.0 -2019,9,22,3,0,0.0,0.0,0.0,21.8,0.0 -2019,9,22,3,15,0.0,0.0,0.0,21.8,0.0 -2019,9,22,3,30,0.0,0.0,0.0,21.8,0.0 -2019,9,22,3,45,0.0,0.0,0.0,21.8,0.0 -2019,9,22,4,0,0.0,0.0,0.0,22.1,0.2 -2019,9,22,4,15,0.0,0.0,0.0,22.1,0.2 -2019,9,22,4,30,0.0,0.0,0.0,22.1,0.2 -2019,9,22,4,45,0.0,0.0,0.0,22.1,0.2 -2019,9,22,5,0,3.0,2.9639943361283416,4.0,21.3,1.3 -2019,9,22,5,15,3.0,3.1149491257040527,4.0,21.3,1.3 -2019,9,22,5,30,3.0,3.269681312823317,4.0,21.3,1.3 -2019,9,22,5,45,3.0,3.4275283105059717,4.0,21.3,1.3 -2019,9,22,6,0,7.0,32.038233118574595,33.0,23.1,0.0 -2019,9,22,6,15,7.0,32.41632271833145,33.0,23.1,0.0 -2019,9,22,6,30,7.0,32.79688248607295,33.0,23.1,0.0 -2019,9,22,6,45,7.0,33.17828280644904,33.0,23.1,0.0 -2019,9,22,7,0,9.0,99.71857345465828,99.0,25.1,0.0 -2019,9,22,7,15,9.0,100.20481153779056,99.0,25.1,0.0 -2019,9,22,7,30,9.0,100.685852854425,99.0,25.1,0.0 -2019,9,22,7,45,9.0,101.15963751179294,99.0,25.1,0.0 -2019,9,22,8,0,9.0,171.62413669125482,169.0,26.4,0.0 -2019,9,22,8,15,9.0,172.07736133601296,169.0,26.4,0.0 -2019,9,22,8,30,9.0,172.5173706685582,169.0,26.4,0.0 -2019,9,22,8,45,9.0,172.94228050137707,169.0,26.4,0.0 -2019,9,22,9,0,17.0,265.2171791322941,257.0,29.2,0.0 -2019,9,22,9,15,17.0,265.95257022442286,257.0,29.2,0.0 -2019,9,22,9,30,17.0,266.6495540547649,257.0,29.2,0.0 -2019,9,22,9,45,17.0,267.3051460315559,257.0,29.2,0.0 -2019,9,22,10,0,43.0,370.61242169411906,343.0,32.0,0.2 -2019,9,22,10,15,43.0,372.04046560832694,343.0,32.0,0.2 -2019,9,22,10,30,43.0,373.34397424857536,343.0,32.0,0.2 -2019,9,22,10,45,43.0,374.51736579074856,343.0,32.0,0.2 -2019,9,22,11,0,97.0,463.4394119171091,390.0,34.0,1.6 -2019,9,22,11,15,97.0,465.4666264567847,390.0,34.0,1.6 -2019,9,22,11,30,97.0,467.1702763031119,390.0,34.0,1.6 -2019,9,22,11,45,97.0,468.54306616589963,390.0,34.0,1.6 -2019,9,22,12,0,105.0,467.1423437377433,381.0,35.2,2.1 -2019,9,22,12,15,105.0,467.8945294998828,381.0,35.2,2.1 -2019,9,22,12,30,105.0,468.2741811302647,381.0,35.2,2.1 -2019,9,22,12,45,105.0,468.2796729023225,381.0,35.2,2.1 -2019,9,22,13,0,125.0,446.46545392791086,343.0,36.6,2.6 -2019,9,22,13,15,125.0,445.582958471046,343.0,36.6,2.6 -2019,9,22,13,30,125.0,444.2606651131998,343.0,36.6,2.6 -2019,9,22,13,45,125.0,442.5042361175328,343.0,36.6,2.6 -2019,9,22,14,0,98.0,349.2998151416025,273.0,35.4,6.1 -2019,9,22,14,15,98.0,347.26117245645713,273.0,35.4,6.1 -2019,9,22,14,30,98.0,344.9041228416655,273.0,35.4,6.1 -2019,9,22,14,45,98.0,342.23875954553915,273.0,35.4,6.1 -2019,9,22,15,0,71.0,230.01664510679925,182.0,34.5,5.0 -2019,9,22,15,15,71.0,227.66460434198905,182.0,34.5,5.0 -2019,9,22,15,30,71.0,225.11672427800482,182.0,34.5,5.0 -2019,9,22,15,45,71.0,222.38391532843818,182.0,34.5,5.0 -2019,9,22,16,0,28.0,92.78000893551084,78.0,33.3,4.5 -2019,9,22,16,15,28.0,91.57055957727827,78.0,33.3,4.5 -2019,9,22,16,30,28.0,90.30288208857274,78.0,33.3,4.5 -2019,9,22,16,45,28.0,88.98240485901825,78.0,33.3,4.5 -2019,9,22,17,0,4.0,6.373540339262156,5.0,32.5,4.0 -2019,9,22,17,15,4.0,6.172267286494542,5.0,32.5,4.0 -2019,9,22,17,30,4.0,5.965957703668856,5.0,32.5,4.0 -2019,9,22,17,45,4.0,5.755495040091984,5.0,32.5,4.0 -2019,9,22,18,0,0.0,0.0,0.0,30.5,2.7 -2019,9,22,18,15,0.0,0.0,0.0,30.5,2.7 -2019,9,22,18,30,0.0,0.0,0.0,30.5,2.7 -2019,9,22,18,45,0.0,0.0,0.0,30.5,2.7 -2019,9,22,19,0,0.0,0.0,0.0,29.2,0.0 -2019,9,22,19,15,0.0,0.0,0.0,29.2,0.0 -2019,9,22,19,30,0.0,0.0,0.0,29.2,0.0 -2019,9,22,19,45,0.0,0.0,0.0,29.2,0.0 -2019,9,22,20,0,0.0,0.0,0.0,27.7,0.0 -2019,9,22,20,15,0.0,0.0,0.0,27.7,0.0 -2019,9,22,20,30,0.0,0.0,0.0,27.7,0.0 -2019,9,22,20,45,0.0,0.0,0.0,27.7,0.0 -2019,9,22,21,0,0.0,0.0,0.0,27.1,0.0 -2019,9,22,21,15,0.0,0.0,0.0,27.1,0.0 -2019,9,22,21,30,0.0,0.0,0.0,27.1,0.0 -2019,9,22,21,45,0.0,0.0,0.0,27.1,0.0 -2019,9,22,22,0,0.0,0.0,0.0,26.0,0.0 -2019,9,22,22,15,0.0,0.0,0.0,26.0,0.0 -2019,9,22,22,30,0.0,0.0,0.0,26.0,0.0 -2019,9,22,22,45,0.0,0.0,0.0,26.0,0.0 -2019,9,22,23,0,0.0,0.0,0.0,24.9,0.0 -2019,9,22,23,15,0.0,0.0,0.0,24.9,0.0 -2019,9,22,23,30,0.0,0.0,0.0,24.9,0.0 -2019,9,22,23,45,0.0,0.0,0.0,24.9,0.0 -2019,9,23,0,0,0.0,0.0,0.0,23.8,0.0 -2019,9,23,0,15,0.0,0.0,0.0,23.8,0.0 -2019,9,23,0,30,0.0,0.0,0.0,23.8,0.0 -2019,9,23,0,45,0.0,0.0,0.0,23.8,0.0 -2019,9,23,1,0,0.0,0.0,0.0,22.7,0.0 -2019,9,23,1,15,0.0,0.0,0.0,22.7,0.0 -2019,9,23,1,30,0.0,0.0,0.0,22.7,0.0 -2019,9,23,1,45,0.0,0.0,0.0,22.7,0.0 -2019,9,23,2,0,0.0,0.0,0.0,21.7,0.0 -2019,9,23,2,15,0.0,0.0,0.0,21.7,0.0 -2019,9,23,2,30,0.0,0.0,0.0,21.7,0.0 -2019,9,23,2,45,0.0,0.0,0.0,21.7,0.0 -2019,9,23,3,0,0.0,0.0,0.0,21.6,0.0 -2019,9,23,3,15,0.0,0.0,0.0,21.6,0.0 -2019,9,23,3,30,0.0,0.0,0.0,21.6,0.0 -2019,9,23,3,45,0.0,0.0,0.0,21.6,0.0 -2019,9,23,4,0,0.0,0.0,0.0,21.0,0.0 -2019,9,23,4,15,0.0,0.0,0.0,21.0,0.0 -2019,9,23,4,30,0.0,0.0,0.0,21.0,0.0 -2019,9,23,4,45,0.0,0.0,0.0,21.0,0.0 -2019,9,23,5,0,289.0,-100.9252347798767,0.0,20.7,0.0 -2019,9,23,5,15,289.0,-86.38379754240847,0.0,20.7,0.0 -2019,9,23,5,30,289.0,-71.47848454150841,0.0,20.7,0.0 -2019,9,23,5,45,289.0,-56.273122615751795,0.0,20.7,0.0 -2019,9,23,6,0,365.0,4.42913300126267,56.0,22.0,0.0 -2019,9,23,6,15,365.0,24.143071787965024,56.0,22.0,0.0 -2019,9,23,6,30,365.0,43.98580740079973,56.0,22.0,0.0 -2019,9,23,6,45,365.0,63.87237019956039,56.0,22.0,0.0 -2019,9,23,7,0,573.0,149.5128395729044,106.0,24.4,0.0 -2019,9,23,7,15,573.0,180.46884621682892,106.0,24.4,0.0 -2019,9,23,7,30,573.0,211.09400436530444,106.0,24.4,0.0 -2019,9,23,7,45,573.0,241.25717238947962,106.0,24.4,0.0 -2019,9,23,8,0,811.0,341.29226986948936,108.0,28.1,0.0 -2019,9,23,8,15,811.0,382.13132730575785,108.0,28.1,0.0 -2019,9,23,8,30,811.0,421.7795825631437,108.0,28.1,0.0 -2019,9,23,8,45,811.0,460.0672557257242,108.0,28.1,0.0 -2019,9,23,9,0,570.0,490.2840000819018,217.0,31.0,0.2 -2019,9,23,9,15,570.0,514.9403138006041,217.0,31.0,0.2 -2019,9,23,9,30,570.0,538.3089025171621,217.0,31.0,0.2 -2019,9,23,9,45,570.0,560.2896983470807,217.0,31.0,0.2 -2019,9,23,10,0,746.0,659.1162768534297,183.0,34.2,1.5 -2019,9,23,10,15,746.0,683.8902568551346,183.0,34.2,1.5 -2019,9,23,10,30,746.0,706.503775013977,183.0,34.2,1.5 -2019,9,23,10,45,746.0,726.8599967735105,183.0,34.2,1.5 -2019,9,23,11,0,860.0,796.7341932354348,149.0,36.2,1.6 -2019,9,23,11,15,860.0,814.7067671101681,149.0,36.2,1.6 -2019,9,23,11,30,860.0,829.8107297744721,149.0,36.2,1.6 -2019,9,23,11,45,860.0,841.9814037414153,149.0,36.2,1.6 -2019,9,23,12,0,1122.0,972.0825655107212,56.0,37.3,2.7 -2019,9,23,12,15,1122.0,980.1199087299354,56.0,37.3,2.7 -2019,9,23,12,30,1122.0,984.1766067036303,56.0,37.3,2.7 -2019,9,23,12,45,1122.0,984.2352880282867,56.0,37.3,2.7 -2019,9,23,13,0,1074.0,949.7536393285668,65.0,38.2,3.8 -2019,9,23,13,15,1074.0,942.1715203572791,65.0,38.2,3.8 -2019,9,23,13,30,1074.0,930.8107983545267,65.0,38.2,3.8 -2019,9,23,13,45,1074.0,915.7201216760551,65.0,38.2,3.8 -2019,9,23,14,0,912.0,800.4723176494807,94.0,37.6,5.9 -2019,9,23,14,15,912.0,781.5011647667344,94.0,37.6,5.9 -2019,9,23,14,30,912.0,759.5669882088445,94.0,37.6,5.9 -2019,9,23,14,45,912.0,734.7637134872282,94.0,37.6,5.9 -2019,9,23,15,0,858.0,650.889802240736,74.0,36.4,7.0 -2019,9,23,15,15,858.0,622.4676061327605,74.0,36.4,7.0 -2019,9,23,15,30,858.0,591.6788766508521,74.0,36.4,7.0 -2019,9,23,15,45,858.0,558.6554558614245,74.0,36.4,7.0 -2019,9,23,16,0,632.0,391.12877999673174,60.0,34.9,5.7 -2019,9,23,16,15,632.0,363.8307954629999,60.0,34.9,5.7 -2019,9,23,16,30,632.0,335.21856772077007,60.0,34.9,5.7 -2019,9,23,16,45,632.0,305.41461872186335,60.0,34.9,5.7 -2019,9,23,17,0,413.0,147.20211214677317,7.0,33.6,4.5 -2019,9,23,17,15,413.0,126.4214423229863,7.0,33.6,4.5 -2019,9,23,17,30,413.0,105.12077011062746,7.0,33.6,4.5 -2019,9,23,17,45,413.0,83.39130825824859,7.0,33.6,4.5 -2019,9,23,18,0,0.0,0.0,0.0,31.5,3.6 -2019,9,23,18,15,0.0,0.0,0.0,31.5,3.6 -2019,9,23,18,30,0.0,0.0,0.0,31.5,3.6 -2019,9,23,18,45,0.0,0.0,0.0,31.5,3.6 -2019,9,23,19,0,0.0,0.0,0.0,29.9,3.2 -2019,9,23,19,15,0.0,0.0,0.0,29.9,3.2 -2019,9,23,19,30,0.0,0.0,0.0,29.9,3.2 -2019,9,23,19,45,0.0,0.0,0.0,29.9,3.2 -2019,9,23,20,0,0.0,0.0,0.0,28.6,0.2 -2019,9,23,20,15,0.0,0.0,0.0,28.6,0.2 -2019,9,23,20,30,0.0,0.0,0.0,28.6,0.2 -2019,9,23,20,45,0.0,0.0,0.0,28.6,0.2 -2019,9,23,21,0,0.0,0.0,0.0,26.6,1.3 -2019,9,23,21,15,0.0,0.0,0.0,26.6,1.3 -2019,9,23,21,30,0.0,0.0,0.0,26.6,1.3 -2019,9,23,21,45,0.0,0.0,0.0,26.6,1.3 -2019,9,23,22,0,0.0,0.0,0.0,25.9,0.0 -2019,9,23,22,15,0.0,0.0,0.0,25.9,0.0 -2019,9,23,22,30,0.0,0.0,0.0,25.9,0.0 -2019,9,23,22,45,0.0,0.0,0.0,25.9,0.0 -2019,9,23,23,0,0.0,0.0,0.0,24.3,0.0 -2019,9,23,23,15,0.0,0.0,0.0,24.3,0.0 -2019,9,23,23,30,0.0,0.0,0.0,24.3,0.0 -2019,9,23,23,45,0.0,0.0,0.0,24.3,0.0 -2019,9,24,0,0,0.0,0.0,0.0,23.0,0.0 -2019,9,24,0,15,0.0,0.0,0.0,23.0,0.0 -2019,9,24,0,30,0.0,0.0,0.0,23.0,0.0 -2019,9,24,0,45,0.0,0.0,0.0,23.0,0.0 -2019,9,24,1,0,0.0,0.0,0.0,21.0,0.0 -2019,9,24,1,15,0.0,0.0,0.0,21.0,0.0 -2019,9,24,1,30,0.0,0.0,0.0,21.0,0.0 -2019,9,24,1,45,0.0,0.0,0.0,21.0,0.0 -2019,9,24,2,0,0.0,0.0,0.0,20.5,0.0 -2019,9,24,2,15,0.0,0.0,0.0,20.5,0.0 -2019,9,24,2,30,0.0,0.0,0.0,20.5,0.0 -2019,9,24,2,45,0.0,0.0,0.0,20.5,0.0 -2019,9,24,3,0,0.0,0.0,0.0,19.9,0.0 -2019,9,24,3,15,0.0,0.0,0.0,19.9,0.0 -2019,9,24,3,30,0.0,0.0,0.0,19.9,0.0 -2019,9,24,3,45,0.0,0.0,0.0,19.9,0.0 -2019,9,24,4,0,0.0,0.0,0.0,19.5,0.2 -2019,9,24,4,15,0.0,0.0,0.0,19.5,0.2 -2019,9,24,4,30,0.0,0.0,0.0,19.5,0.2 -2019,9,24,4,45,0.0,0.0,0.0,19.5,0.2 -2019,9,24,5,0,329.0,-116.16679534946115,0.0,20.2,2.0 -2019,9,24,5,15,329.0,-99.61413828577837,0.0,20.2,2.0 -2019,9,24,5,30,329.0,-82.64727796092458,0.0,20.2,2.0 -2019,9,24,5,45,329.0,-65.3388690756108,0.0,20.2,2.0 -2019,9,24,6,0,429.0,-11.280666855596564,51.0,22.1,1.3 -2019,9,24,6,15,429.0,11.8879528245837,51.0,22.1,1.3 -2019,9,24,6,30,429.0,35.20793975374245,51.0,22.1,1.3 -2019,9,24,6,45,429.0,58.57943416769958,51.0,22.1,1.3 -2019,9,24,7,0,671.0,137.33445384867596,89.0,25.3,0.0 -2019,9,24,7,15,671.0,173.58171180531815,89.0,25.3,0.0 -2019,9,24,7,30,671.0,209.4415699627212,89.0,25.3,0.0 -2019,9,24,7,45,671.0,244.76047090294952,89.0,25.3,0.0 -2019,9,24,8,0,802.0,336.55665168893677,109.0,27.5,0.2 -2019,9,24,8,15,802.0,376.93899840228295,109.0,27.5,0.2 -2019,9,24,8,30,802.0,416.14385989747325,109.0,27.5,0.2 -2019,9,24,8,45,802.0,454.00335493874474,109.0,27.5,0.2 -2019,9,24,9,0,880.0,535.4447877223338,117.0,29.7,1.7 -2019,9,24,9,15,880.0,573.5073738606344,117.0,29.7,1.7 -2019,9,24,9,30,880.0,609.5820657672284,117.0,29.7,1.7 -2019,9,24,9,45,880.0,643.5143860730846,117.0,29.7,1.7 -2019,9,24,10,0,924.0,704.0669829419317,118.0,31.8,3.2 -2019,9,24,10,15,924.0,734.7495191603513,118.0,31.8,3.2 -2019,9,24,10,30,924.0,762.7563267014419,118.0,31.8,3.2 -2019,9,24,10,45,924.0,787.9674761156292,118.0,31.8,3.2 -2019,9,24,11,0,940.0,822.2624554406898,118.0,32.7,4.4 -2019,9,24,11,15,940.0,841.9051927593147,118.0,32.7,4.4 -2019,9,24,11,30,940.0,858.4127432722842,118.0,32.7,4.4 -2019,9,24,11,45,940.0,871.7144191140164,118.0,32.7,4.4 -2019,9,24,12,0,933.0,876.0657361863776,118.0,32.3,6.6 -2019,9,24,12,15,933.0,882.7486156864281,118.0,32.3,6.6 -2019,9,24,12,30,933.0,886.1216735473258,118.0,32.3,6.6 -2019,9,24,12,45,933.0,886.1704658174684,118.0,32.3,6.6 -2019,9,24,13,0,899.0,855.0208043099868,118.0,32.7,5.6 -2019,9,24,13,15,899.0,848.6746835186445,118.0,32.7,5.6 -2019,9,24,13,30,899.0,839.1659281984835,118.0,32.7,5.6 -2019,9,24,13,45,899.0,826.5352562995952,118.0,32.7,5.6 -2019,9,24,14,0,836.0,757.2842342527816,113.0,32.1,5.2 -2019,9,24,14,15,836.0,739.8955191468981,113.0,32.1,5.2 -2019,9,24,14,30,836.0,719.7909345913556,113.0,32.1,5.2 -2019,9,24,14,45,836.0,697.0565715037332,113.0,32.1,5.2 -2019,9,24,15,0,729.0,585.2700371022771,98.0,31.4,5.7 -2019,9,24,15,15,729.0,561.1232028388289,98.0,31.4,5.7 -2019,9,24,15,30,729.0,534.9658170704165,98.0,31.4,5.7 -2019,9,24,15,45,729.0,506.9098897386556,98.0,31.4,5.7 -2019,9,24,16,0,536.0,346.71673593764075,68.0,30.2,5.7 -2019,9,24,16,15,536.0,323.5672887801617,68.0,30.2,5.7 -2019,9,24,16,30,536.0,299.30332697162453,68.0,30.2,5.7 -2019,9,24,16,45,536.0,274.0287525215645,68.0,30.2,5.7 -2019,9,24,17,0,268.0,108.92589751899999,19.0,29.1,5.4 -2019,9,24,17,15,268.0,95.44227413581761,19.0,29.1,5.4 -2019,9,24,17,30,268.0,81.62124505660549,19.0,29.1,5.4 -2019,9,24,17,45,268.0,67.52199404972373,19.0,29.1,5.4 -2019,9,24,18,0,0.0,0.0,0.0,26.5,3.1 -2019,9,24,18,15,0.0,0.0,0.0,26.5,3.1 -2019,9,24,18,30,0.0,0.0,0.0,26.5,3.1 -2019,9,24,18,45,0.0,0.0,0.0,26.5,3.1 -2019,9,24,19,0,0.0,0.0,0.0,24.8,2.7 -2019,9,24,19,15,0.0,0.0,0.0,24.8,2.7 -2019,9,24,19,30,0.0,0.0,0.0,24.8,2.7 -2019,9,24,19,45,0.0,0.0,0.0,24.8,2.7 -2019,9,24,20,0,0.0,0.0,0.0,23.2,0.0 -2019,9,24,20,15,0.0,0.0,0.0,23.2,0.0 -2019,9,24,20,30,0.0,0.0,0.0,23.2,0.0 -2019,9,24,20,45,0.0,0.0,0.0,23.2,0.0 -2019,9,24,21,0,0.0,0.0,0.0,22.2,0.0 -2019,9,24,21,15,0.0,0.0,0.0,22.2,0.0 -2019,9,24,21,30,0.0,0.0,0.0,22.2,0.0 -2019,9,24,21,45,0.0,0.0,0.0,22.2,0.0 -2019,9,24,22,0,0.0,0.0,0.0,22.1,0.0 -2019,9,24,22,15,0.0,0.0,0.0,22.1,0.0 -2019,9,24,22,30,0.0,0.0,0.0,22.1,0.0 -2019,9,24,22,45,0.0,0.0,0.0,22.1,0.0 -2019,9,24,23,0,0.0,0.0,0.0,20.9,0.2 -2019,9,24,23,15,0.0,0.0,0.0,20.9,0.2 -2019,9,24,23,30,0.0,0.0,0.0,20.9,0.2 -2019,9,24,23,45,0.0,0.0,0.0,20.9,0.2 -2019,9,25,0,0,0.0,0.0,0.0,19.3,1.3 -2019,9,25,0,15,0.0,0.0,0.0,19.3,1.3 -2019,9,25,0,30,0.0,0.0,0.0,19.3,1.3 -2019,9,25,0,45,0.0,0.0,0.0,19.3,1.3 -2019,9,25,1,0,0.0,0.0,0.0,18.2,0.0 -2019,9,25,1,15,0.0,0.0,0.0,18.2,0.0 -2019,9,25,1,30,0.0,0.0,0.0,18.2,0.0 -2019,9,25,1,45,0.0,0.0,0.0,18.2,0.0 -2019,9,25,2,0,0.0,0.0,0.0,17.7,0.0 -2019,9,25,2,15,0.0,0.0,0.0,17.7,0.0 -2019,9,25,2,30,0.0,0.0,0.0,17.7,0.0 -2019,9,25,2,45,0.0,0.0,0.0,17.7,0.0 -2019,9,25,3,0,0.0,0.0,0.0,17.1,0.0 -2019,9,25,3,15,0.0,0.0,0.0,17.1,0.0 -2019,9,25,3,30,0.0,0.0,0.0,17.1,0.0 -2019,9,25,3,45,0.0,0.0,0.0,17.1,0.0 -2019,9,25,4,0,0.0,0.0,0.0,16.7,0.0 -2019,9,25,4,15,0.0,0.0,0.0,16.7,0.0 -2019,9,25,4,30,0.0,0.0,0.0,16.7,0.0 -2019,9,25,4,45,0.0,0.0,0.0,16.7,0.0 -2019,9,25,5,0,193.0,-68.88918909232912,0.0,16.9,0.0 -2019,9,25,5,15,193.0,-59.18029017210272,0.0,16.9,0.0 -2019,9,25,5,30,193.0,-49.22844188249927,0.0,16.9,0.0 -2019,9,25,5,45,193.0,-39.076259565730346,0.0,16.9,0.0 -2019,9,25,6,0,373.0,-1.596744697151749,54.0,18.6,0.0 -2019,9,25,6,15,373.0,18.54478965033391,54.0,18.6,0.0 -2019,9,25,6,30,373.0,38.81791442860364,54.0,18.6,0.0 -2019,9,25,6,45,373.0,59.13581700496998,54.0,18.6,0.0 -2019,9,25,7,0,594.0,141.46763228631627,101.0,20.9,0.0 -2019,9,25,7,15,594.0,173.55099893573555,101.0,20.9,0.0 -2019,9,25,7,30,594.0,205.29146820478553,101.0,20.9,0.0 -2019,9,25,7,45,594.0,236.55312253117074,101.0,20.9,0.0 -2019,9,25,8,0,716.0,330.33787847402266,130.0,23.1,0.0 -2019,9,25,8,15,716.0,366.3850388178082,130.0,23.1,0.0 -2019,9,25,8,30,716.0,401.3811211060608,130.0,23.1,0.0 -2019,9,25,8,45,716.0,435.1762667417261,130.0,23.1,0.0 -2019,9,25,9,0,788.0,516.5769534380156,145.0,25.8,0.2 -2019,9,25,9,15,788.0,550.6556275348821,145.0,25.8,0.2 -2019,9,25,9,30,788.0,582.9544751266545,145.0,25.8,0.2 -2019,9,25,9,45,788.0,613.3351875893359,145.0,25.8,0.2 -2019,9,25,10,0,830.0,674.1398047460203,151.0,27.4,2.0 -2019,9,25,10,15,830.0,701.6972039650074,151.0,27.4,2.0 -2019,9,25,10,30,830.0,726.8514079970666,151.0,27.4,2.0 -2019,9,25,10,45,830.0,749.4947026787889,151.0,27.4,2.0 -2019,9,25,11,0,846.0,783.4535982534796,153.0,29.0,1.8 -2019,9,25,11,15,846.0,801.1296542799685,153.0,29.0,1.8 -2019,9,25,11,30,846.0,815.9844264532273,153.0,29.0,1.8 -2019,9,25,11,45,846.0,827.9543043582644,153.0,29.0,1.8 -2019,9,25,12,0,839.0,830.3285557052744,152.0,30.1,4.0 -2019,9,25,12,15,839.0,836.3373148843127,152.0,30.1,4.0 -2019,9,25,12,30,839.0,839.370123179441,152.0,30.1,4.0 -2019,9,25,12,45,839.0,839.4139936399339,152.0,30.1,4.0 -2019,9,25,13,0,806.0,805.5468452384152,148.0,30.3,3.8 -2019,9,25,13,15,806.0,799.8579945490251,148.0,30.3,3.8 -2019,9,25,13,30,806.0,791.3340645708661,148.0,30.3,3.8 -2019,9,25,13,45,806.0,780.0115560807222,148.0,30.3,3.8 -2019,9,25,14,0,746.0,708.9385354013225,137.0,28.1,5.6 -2019,9,25,14,15,746.0,693.4239243176336,137.0,28.1,5.6 -2019,9,25,14,30,746.0,675.4861521200293,137.0,28.1,5.6 -2019,9,25,14,45,746.0,655.2020311029167,137.0,28.1,5.6 -2019,9,25,15,0,646.0,542.2162734012354,113.0,27.0,4.5 -2019,9,25,15,15,646.0,520.8215812371486,113.0,27.0,4.5 -2019,9,25,15,30,646.0,497.6454907307597,113.0,27.0,4.5 -2019,9,25,15,45,646.0,472.7872454596755,113.0,27.0,4.5 -2019,9,25,16,0,468.0,314.50052750981473,73.0,25.8,4.0 -2019,9,25,16,15,468.0,294.29070318529557,73.0,25.8,4.0 -2019,9,25,16,30,468.0,273.10789038499286,73.0,25.8,4.0 -2019,9,25,16,45,468.0,251.0427971653619,73.0,25.8,4.0 -2019,9,25,17,0,234.0,95.59495482153199,18.0,24.7,3.6 -2019,9,25,17,15,234.0,83.82354369545438,18.0,24.7,3.6 -2019,9,25,17,30,234.0,71.7575721940699,18.0,24.7,3.6 -2019,9,25,17,45,234.0,59.44870865974902,18.0,24.7,3.6 -2019,9,25,18,0,0.0,0.0,0.0,22.7,3.4 -2019,9,25,18,15,0.0,0.0,0.0,22.7,3.4 -2019,9,25,18,30,0.0,0.0,0.0,22.7,3.4 -2019,9,25,18,45,0.0,0.0,0.0,22.7,3.4 -2019,9,25,19,0,0.0,0.0,0.0,21.6,2.1 -2019,9,25,19,15,0.0,0.0,0.0,21.6,2.1 -2019,9,25,19,30,0.0,0.0,0.0,21.6,2.1 -2019,9,25,19,45,0.0,0.0,0.0,21.6,2.1 -2019,9,25,20,0,0.0,0.0,0.0,20.5,2.1 -2019,9,25,20,15,0.0,0.0,0.0,20.5,2.1 -2019,9,25,20,30,0.0,0.0,0.0,20.5,2.1 -2019,9,25,20,45,0.0,0.0,0.0,20.5,2.1 -2019,9,25,21,0,0.0,0.0,0.0,19.3,1.9 -2019,9,25,21,15,0.0,0.0,0.0,19.3,1.9 -2019,9,25,21,30,0.0,0.0,0.0,19.3,1.9 -2019,9,25,21,45,0.0,0.0,0.0,19.3,1.9 -2019,9,25,22,0,0.0,0.0,0.0,18.8,0.0 -2019,9,25,22,15,0.0,0.0,0.0,18.8,0.0 -2019,9,25,22,30,0.0,0.0,0.0,18.8,0.0 -2019,9,25,22,45,0.0,0.0,0.0,18.8,0.0 -2019,9,25,23,0,0.0,0.0,0.0,18.2,0.0 -2019,9,25,23,15,0.0,0.0,0.0,18.2,0.0 -2019,9,25,23,30,0.0,0.0,0.0,18.2,0.0 -2019,9,25,23,45,0.0,0.0,0.0,18.2,0.0 -2019,9,26,0,0,0.0,0.0,0.0,17.6,0.0 -2019,9,26,0,15,0.0,0.0,0.0,17.6,0.0 -2019,9,26,0,30,0.0,0.0,0.0,17.6,0.0 -2019,9,26,0,45,0.0,0.0,0.0,17.6,0.0 -2019,9,26,1,0,0.0,0.0,0.0,16.1,0.0 -2019,9,26,1,15,0.0,0.0,0.0,16.1,0.0 -2019,9,26,1,30,0.0,0.0,0.0,16.1,0.0 -2019,9,26,1,45,0.0,0.0,0.0,16.1,0.0 -2019,9,26,2,0,0.0,0.0,0.0,16.0,0.0 -2019,9,26,2,15,0.0,0.0,0.0,16.0,0.0 -2019,9,26,2,30,0.0,0.0,0.0,16.0,0.0 -2019,9,26,2,45,0.0,0.0,0.0,16.0,0.0 -2019,9,26,3,0,0.0,0.0,0.0,15.5,0.0 -2019,9,26,3,15,0.0,0.0,0.0,15.5,0.0 -2019,9,26,3,30,0.0,0.0,0.0,15.5,0.0 -2019,9,26,3,45,0.0,0.0,0.0,15.5,0.0 -2019,9,26,4,0,0.0,0.0,0.0,15.0,0.0 -2019,9,26,4,15,0.0,0.0,0.0,15.0,0.0 -2019,9,26,4,30,0.0,0.0,0.0,15.0,0.0 -2019,9,26,4,45,0.0,0.0,0.0,15.0,0.0 -2019,9,26,5,0,1.0,1.6392343013874036,2.0,15.0,0.0 -2019,9,26,5,15,1.0,1.6895301462812136,2.0,15.0,0.0 -2019,9,26,5,30,1.0,1.7410845627081741,2.0,15.0,0.0 -2019,9,26,5,45,1.0,1.793676786742368,2.0,15.0,0.0 -2019,9,26,6,0,3.0,21.541244831219124,22.0,16.1,0.6 -2019,9,26,6,15,3.0,21.703211038139223,22.0,16.1,0.6 -2019,9,26,6,30,3.0,21.866235416823866,22.0,16.1,0.6 -2019,9,26,6,45,3.0,22.029619871855566,22.0,16.1,0.6 -2019,9,26,7,0,1.0,49.06422158863821,49.0,16.9,0.0 -2019,9,26,7,15,1.0,49.118223971911206,49.0,16.9,0.0 -2019,9,26,7,30,1.0,49.171649193941725,49.0,16.9,0.0 -2019,9,26,7,45,1.0,49.22426847972705,49.0,16.9,0.0 -2019,9,26,8,0,344.0,309.8946378600754,215.0,19.4,0.2 -2019,9,26,8,15,344.0,327.2101729188703,215.0,19.4,0.2 -2019,9,26,8,30,344.0,344.0208144230402,215.0,19.4,0.2 -2019,9,26,8,45,344.0,360.2545766248478,215.0,19.4,0.2 -2019,9,26,9,0,620.0,487.88955034482933,198.0,23.1,1.5 -2019,9,26,9,15,620.0,514.697746877018,198.0,23.1,1.5 -2019,9,26,9,30,620.0,540.1058320490598,198.0,23.1,1.5 -2019,9,26,9,45,620.0,564.0050045395283,198.0,23.1,1.5 -2019,9,26,10,0,845.0,674.2056792535885,145.0,25.3,1.6 -2019,9,26,10,15,845.0,702.2558998975035,145.0,25.3,1.6 -2019,9,26,10,30,845.0,727.8599479288273,145.0,25.3,1.6 -2019,9,26,10,45,845.0,750.9081828830849,145.0,25.3,1.6 -2019,9,26,11,0,961.0,822.279448806227,110.0,27.5,2.5 -2019,9,26,11,15,961.0,842.3545540830972,110.0,27.5,2.5 -2019,9,26,11,30,961.0,859.2254620953373,110.0,27.5,2.5 -2019,9,26,11,45,961.0,872.8199290247699,110.0,27.5,2.5 -2019,9,26,12,0,1000.0,898.4534248459341,94.0,29.5,2.2 -2019,9,26,12,15,1000.0,905.6139071391018,94.0,29.5,2.2 -2019,9,26,12,30,1000.0,909.228026035994,94.0,29.5,2.2 -2019,9,26,12,45,1000.0,909.2803053246447,94.0,29.5,2.2 -2019,9,26,13,0,974.0,884.6644875875488,94.0,30.5,3.5 -2019,9,26,13,15,974.0,877.791146632513,94.0,30.5,3.5 -2019,9,26,13,30,974.0,867.4924272222803,94.0,30.5,3.5 -2019,9,26,13,45,974.0,853.8124300544536,94.0,30.5,3.5 -2019,9,26,14,0,857.0,759.5810501800534,106.0,29.1,6.1 -2019,9,26,14,15,857.0,741.7612707091308,106.0,29.1,6.1 -2019,9,26,14,30,857.0,721.1582956789019,106.0,29.1,6.1 -2019,9,26,14,45,857.0,697.8603501914727,106.0,29.1,6.1 -2019,9,26,15,0,670.0,549.4714396144041,107.0,28.1,5.0 -2019,9,26,15,15,670.0,527.2860140343016,107.0,28.1,5.0 -2019,9,26,15,30,670.0,503.25335082869134,107.0,28.1,5.0 -2019,9,26,15,45,670.0,477.4763615509813,107.0,28.1,5.0 -2019,9,26,16,0,431.0,295.6883569174189,75.0,26.6,3.7 -2019,9,26,16,15,431.0,277.07977010455147,75.0,26.6,3.7 -2019,9,26,16,30,431.0,257.57528532499214,75.0,26.6,3.7 -2019,9,26,16,45,431.0,237.25842377694983,75.0,26.6,3.7 -2019,9,26,17,0,239.0,85.30781509508401,7.0,25.8,2.7 -2019,9,26,17,15,239.0,73.28710816546347,7.0,25.8,2.7 -2019,9,26,17,30,239.0,60.9656026394198,7.0,25.8,2.7 -2019,9,26,17,45,239.0,48.39606109524755,7.0,25.8,2.7 -2019,9,26,18,0,0.0,0.0,0.0,23.2,3.0 -2019,9,26,18,15,0.0,0.0,0.0,23.2,3.0 -2019,9,26,18,30,0.0,0.0,0.0,23.2,3.0 -2019,9,26,18,45,0.0,0.0,0.0,23.2,3.0 -2019,9,26,19,0,0.0,0.0,0.0,22.1,2.5 -2019,9,26,19,15,0.0,0.0,0.0,22.1,2.5 -2019,9,26,19,30,0.0,0.0,0.0,22.1,2.5 -2019,9,26,19,45,0.0,0.0,0.0,22.1,2.5 -2019,9,26,20,0,0.0,0.0,0.0,21.0,1.5 -2019,9,26,20,15,0.0,0.0,0.0,21.0,1.5 -2019,9,26,20,30,0.0,0.0,0.0,21.0,1.5 -2019,9,26,20,45,0.0,0.0,0.0,21.0,1.5 -2019,9,26,21,0,0.0,0.0,0.0,20.6,1.3 -2019,9,26,21,15,0.0,0.0,0.0,20.6,1.3 -2019,9,26,21,30,0.0,0.0,0.0,20.6,1.3 -2019,9,26,21,45,0.0,0.0,0.0,20.6,1.3 -2019,9,26,22,0,0.0,0.0,0.0,20.5,0.0 -2019,9,26,22,15,0.0,0.0,0.0,20.5,0.0 -2019,9,26,22,30,0.0,0.0,0.0,20.5,0.0 -2019,9,26,22,45,0.0,0.0,0.0,20.5,0.0 -2019,9,26,23,0,0.0,0.0,0.0,19.9,0.0 -2019,9,26,23,15,0.0,0.0,0.0,19.9,0.0 -2019,9,26,23,30,0.0,0.0,0.0,19.9,0.0 -2019,9,26,23,45,0.0,0.0,0.0,19.9,0.0 -2019,9,27,0,0,0.0,0.0,0.0,19.3,0.0 -2019,9,27,0,15,0.0,0.0,0.0,19.3,0.0 -2019,9,27,0,30,0.0,0.0,0.0,19.3,0.0 -2019,9,27,0,45,0.0,0.0,0.0,19.3,0.0 -2019,9,27,1,0,0.0,0.0,0.0,18.2,0.2 -2019,9,27,1,15,0.0,0.0,0.0,18.2,0.2 -2019,9,27,1,30,0.0,0.0,0.0,18.2,0.2 -2019,9,27,1,45,0.0,0.0,0.0,18.2,0.2 -2019,9,27,2,0,0.0,0.0,0.0,17.7,1.3 -2019,9,27,2,15,0.0,0.0,0.0,17.7,1.3 -2019,9,27,2,30,0.0,0.0,0.0,17.7,1.3 -2019,9,27,2,45,0.0,0.0,0.0,17.7,1.3 -2019,9,27,3,0,0.0,0.0,0.0,17.1,0.0 -2019,9,27,3,15,0.0,0.0,0.0,17.1,0.0 -2019,9,27,3,30,0.0,0.0,0.0,17.1,0.0 -2019,9,27,3,45,0.0,0.0,0.0,17.1,0.0 -2019,9,27,4,0,0.0,0.0,0.0,16.7,0.0 -2019,9,27,4,15,0.0,0.0,0.0,16.7,0.0 -2019,9,27,4,30,0.0,0.0,0.0,16.7,0.0 -2019,9,27,4,45,0.0,0.0,0.0,16.7,0.0 -2019,9,27,5,0,129.0,-46.02952802254126,1.0,16.8,0.0 -2019,9,27,5,15,129.0,-39.54288602523391,1.0,16.8,0.0 -2019,9,27,5,30,129.0,-32.893926385568875,1.0,16.8,0.0 -2019,9,27,5,45,129.0,-26.11112096949004,1.0,16.8,0.0 -2019,9,27,6,0,258.0,16.55297041779159,57.0,18.1,0.0 -2019,9,27,6,15,258.0,30.47879672505634,57.0,18.1,0.0 -2019,9,27,6,30,258.0,44.495604456634695,57.0,18.1,0.0 -2019,9,27,6,45,258.0,58.54337148992062,57.0,18.1,0.0 -2019,9,27,7,0,416.0,150.09212535661723,125.0,20.3,0.2 -2019,9,27,7,15,416.0,172.5518469588101,125.0,20.3,0.2 -2019,9,27,7,30,416.0,194.77152580659484,125.0,20.3,0.2 -2019,9,27,7,45,416.0,216.65601382391807,125.0,20.3,0.2 -2019,9,27,8,0,507.0,316.8547603956111,179.0,22.5,1.5 -2019,9,27,8,15,507.0,342.3690537150823,179.0,22.5,1.5 -2019,9,27,8,30,507.0,367.1393906852943,179.0,22.5,1.5 -2019,9,27,8,45,507.0,391.0597009205295,179.0,22.5,1.5 -2019,9,27,9,0,497.0,466.3919020277786,236.0,25.5,1.6 -2019,9,27,9,15,497.0,487.87665720218274,236.0,25.5,1.6 -2019,9,27,9,30,497.0,508.2393283246614,236.0,25.5,1.6 -2019,9,27,9,45,497.0,527.3927193113341,236.0,25.5,1.6 -2019,9,27,10,0,752.0,646.9267986437391,179.0,29.2,2.2 -2019,9,27,10,15,752.0,671.8839794094627,179.0,29.2,2.2 -2019,9,27,10,30,752.0,694.6647219627532,179.0,29.2,2.2 -2019,9,27,10,45,752.0,715.1714756666341,179.0,29.2,2.2 -2019,9,27,11,0,686.0,719.6663154695414,214.0,31.9,3.0 -2019,9,27,11,15,686.0,733.9933619786163,214.0,31.9,3.0 -2019,9,27,11,30,686.0,746.0336616636287,214.0,31.9,3.0 -2019,9,27,11,45,686.0,755.7356561128665,214.0,31.9,3.0 -2019,9,27,12,0,704.0,765.4645643253956,202.0,33.3,6.0 -2019,9,27,12,15,704.0,770.5043613464295,202.0,33.3,6.0 -2019,9,27,12,30,704.0,773.0481041984439,202.0,33.3,6.0 -2019,9,27,12,45,704.0,773.0849001840236,202.0,33.3,6.0 -2019,9,27,13,0,710.0,752.4607388257781,179.0,33.2,4.2 -2019,9,27,13,15,710.0,747.4515732093485,179.0,33.2,4.2 -2019,9,27,13,30,710.0,739.9460542047661,179.0,33.2,4.2 -2019,9,27,13,45,710.0,729.9763215966773,179.0,33.2,4.2 -2019,9,27,14,0,906.0,779.2648887091351,92.0,32.6,4.5 -2019,9,27,14,15,906.0,760.4306612050697,92.0,32.6,4.5 -2019,9,27,14,30,906.0,738.654795818346,92.0,32.6,4.5 -2019,9,27,14,45,906.0,714.0305401476419,92.0,32.6,4.5 -2019,9,27,15,0,396.0,414.91907534029247,155.0,31.6,4.0 -2019,9,27,15,15,396.0,401.80957139515925,155.0,31.6,4.0 -2019,9,27,15,30,396.0,387.608523415779,155.0,31.6,4.0 -2019,9,27,15,45,396.0,372.37674246978395,155.0,31.6,4.0 -2019,9,27,16,0,264.0,219.11963558774028,85.0,30.2,3.3 -2019,9,27,16,15,264.0,207.72401028652456,85.0,30.2,3.3 -2019,9,27,16,30,264.0,195.77975022657037,85.0,30.2,3.3 -2019,9,27,16,45,264.0,183.33800256317056,85.0,30.2,3.3 -2019,9,27,17,0,64.0,27.71564721694824,7.0,29.1,2.5 -2019,9,27,17,15,64.0,24.497468241539952,7.0,29.1,2.5 -2019,9,27,17,30,64.0,21.198759583101484,7.0,29.1,2.5 -2019,9,27,17,45,64.0,17.83364681853522,7.0,29.1,2.5 -2019,9,27,18,0,0.0,0.0,0.0,27.1,1.5 -2019,9,27,18,15,0.0,0.0,0.0,27.1,1.5 -2019,9,27,18,30,0.0,0.0,0.0,27.1,1.5 -2019,9,27,18,45,0.0,0.0,0.0,27.1,1.5 -2019,9,27,19,0,0.0,0.0,0.0,26.0,1.5 -2019,9,27,19,15,0.0,0.0,0.0,26.0,1.5 -2019,9,27,19,30,0.0,0.0,0.0,26.0,1.5 -2019,9,27,19,45,0.0,0.0,0.0,26.0,1.5 -2019,9,27,20,0,0.0,0.0,0.0,24.9,1.3 -2019,9,27,20,15,0.0,0.0,0.0,24.9,1.3 -2019,9,27,20,30,0.0,0.0,0.0,24.9,1.3 -2019,9,27,20,45,0.0,0.0,0.0,24.9,1.3 -2019,9,27,21,0,0.0,0.0,0.0,23.8,0.0 -2019,9,27,21,15,0.0,0.0,0.0,23.8,0.0 -2019,9,27,21,30,0.0,0.0,0.0,23.8,0.0 -2019,9,27,21,45,0.0,0.0,0.0,23.8,0.0 -2019,9,27,22,0,0.0,0.0,0.0,22.7,0.0 -2019,9,27,22,15,0.0,0.0,0.0,22.7,0.0 -2019,9,27,22,30,0.0,0.0,0.0,22.7,0.0 -2019,9,27,22,45,0.0,0.0,0.0,22.7,0.0 -2019,9,27,23,0,0.0,0.0,0.0,21.6,0.0 -2019,9,27,23,15,0.0,0.0,0.0,21.6,0.0 -2019,9,27,23,30,0.0,0.0,0.0,21.6,0.0 -2019,9,27,23,45,0.0,0.0,0.0,21.6,0.0 -2019,9,28,0,0,0.0,0.0,0.0,20.4,0.0 -2019,9,28,0,15,0.0,0.0,0.0,20.4,0.0 -2019,9,28,0,30,0.0,0.0,0.0,20.4,0.0 -2019,9,28,0,45,0.0,0.0,0.0,20.4,0.0 -2019,9,28,1,0,0.0,0.0,0.0,18.8,0.0 -2019,9,28,1,15,0.0,0.0,0.0,18.8,0.0 -2019,9,28,1,30,0.0,0.0,0.0,18.8,0.0 -2019,9,28,1,45,0.0,0.0,0.0,18.8,0.0 -2019,9,28,2,0,0.0,0.0,0.0,18.3,0.2 -2019,9,28,2,15,0.0,0.0,0.0,18.3,0.2 -2019,9,28,2,30,0.0,0.0,0.0,18.3,0.2 -2019,9,28,2,45,0.0,0.0,0.0,18.3,0.2 -2019,9,28,3,0,0.0,0.0,0.0,18.3,1.3 -2019,9,28,3,15,0.0,0.0,0.0,18.3,1.3 -2019,9,28,3,30,0.0,0.0,0.0,18.3,1.3 -2019,9,28,3,45,0.0,0.0,0.0,18.3,1.3 -2019,9,28,4,0,0.0,0.0,0.0,18.3,0.3 -2019,9,28,4,15,0.0,0.0,0.0,18.3,0.3 -2019,9,28,4,30,0.0,0.0,0.0,18.3,0.3 -2019,9,28,4,45,0.0,0.0,0.0,18.3,0.3 -2019,9,28,5,0,82.0,-30.204734662856893,0.0,18.6,2.3 -2019,9,28,5,15,82.0,-26.082611464351707,0.0,18.6,2.3 -2019,9,28,5,30,82.0,-21.857338852117948,0.0,18.6,2.3 -2019,9,28,5,45,82.0,-17.547010092156857,0.0,18.6,2.3 -2019,9,28,6,0,108.0,39.65403745381897,57.0,21.1,0.0 -2019,9,28,6,15,108.0,45.48180095795069,57.0,21.1,0.0 -2019,9,28,6,30,108.0,51.34763891543762,57.0,21.1,0.0 -2019,9,28,6,45,108.0,57.226432907606,57.0,21.1,0.0 -2019,9,28,7,0,858.0,105.40557178641691,57.0,25.2,0.0 -2019,9,28,7,15,858.0,151.7156187846275,57.0,25.2,0.0 -2019,9,28,7,30,858.0,197.53071791860725,57.0,25.2,0.0 -2019,9,28,7,45,858.0,242.65468190020263,57.0,25.2,0.0 -2019,9,28,8,0,79.0,249.167422326409,228.0,27.1,0.0 -2019,9,28,8,15,79.0,253.14189551639942,228.0,27.1,0.0 -2019,9,28,8,30,79.0,257.00047936829884,228.0,27.1,0.0 -2019,9,28,8,45,79.0,260.7266508336728,228.0,27.1,0.0 -2019,9,28,9,0,180.0,390.71900882741505,308.0,30.2,0.2 -2019,9,28,9,15,180.0,398.49800255527725,308.0,30.2,0.2 -2019,9,28,9,30,180.0,405.87072287061017,308.0,30.2,0.2 -2019,9,28,9,45,180.0,412.80559865314285,308.0,30.2,0.2 -2019,9,28,10,0,650.0,616.8189272504081,215.0,31.9,1.3 -2019,9,28,10,15,650.0,638.3848446026559,215.0,31.9,1.3 -2019,9,28,10,30,650.0,658.0700652907967,215.0,31.9,1.3 -2019,9,28,10,45,650.0,675.7902941777143,215.0,31.9,1.3 -2019,9,28,11,0,988.0,824.2338687947401,100.0,33.4,0.4 -2019,9,28,11,15,988.0,844.8623092311219,100.0,33.4,0.4 -2019,9,28,11,30,988.0,862.1982343103863,100.0,33.4,0.4 -2019,9,28,11,45,988.0,876.1674089398846,100.0,33.4,0.4 -2019,9,28,12,0,571.0,704.6674276796064,250.0,34.4,3.3 -2019,9,28,12,15,571.0,708.7539454369448,250.0,34.4,3.3 -2019,9,28,12,30,571.0,710.8165384920769,250.0,34.4,3.3 -2019,9,28,12,45,571.0,710.846374504885,250.0,34.4,3.3 -2019,9,28,13,0,518.0,657.2536650075741,241.0,34.3,5.2 -2019,9,28,13,15,518.0,653.6001264273609,241.0,34.3,5.2 -2019,9,28,13,30,518.0,648.1258208548272,241.0,34.3,5.2 -2019,9,28,13,45,518.0,640.8541901068655,241.0,34.3,5.2 -2019,9,28,14,0,587.0,618.8749239616307,176.0,33.1,5.6 -2019,9,28,14,15,587.0,606.6756323870102,176.0,33.1,5.6 -2019,9,28,14,30,587.0,592.5709853509168,176.0,33.1,5.6 -2019,9,28,14,45,587.0,576.6213811173437,176.0,33.1,5.6 -2019,9,28,15,0,785.0,595.0488379848277,83.0,32.4,5.1 -2019,9,28,15,15,785.0,569.068929002735,83.0,32.4,5.1 -2019,9,28,15,30,785.0,540.9258401796375,83.0,32.4,5.1 -2019,9,28,15,45,785.0,510.7400845424814,83.0,32.4,5.1 -2019,9,28,16,0,647.0,378.0887600239819,52.0,31.1,5.1 -2019,9,28,16,15,647.0,350.1687602509954,52.0,31.1,5.1 -2019,9,28,16,30,647.0,320.9045707618203,52.0,31.1,5.1 -2019,9,28,16,45,647.0,290.42150530856924,52.0,31.1,5.1 -2019,9,28,17,0,408.0,133.44024667604674,3.0,30.3,5.0 -2019,9,28,17,15,408.0,112.93017027372831,3.0,30.3,5.0 -2019,9,28,17,30,408.0,91.90686264212614,3.0,30.3,5.0 -2019,9,28,17,45,408.0,70.46034881207586,3.0,30.3,5.0 -2019,9,28,18,0,0.0,0.0,0.0,27.5,3.8 -2019,9,28,18,15,0.0,0.0,0.0,27.5,3.8 -2019,9,28,18,30,0.0,0.0,0.0,27.5,3.8 -2019,9,28,18,45,0.0,0.0,0.0,27.5,3.8 -2019,9,28,19,0,0.0,0.0,0.0,25.5,1.3 -2019,9,28,19,15,0.0,0.0,0.0,25.5,1.3 -2019,9,28,19,30,0.0,0.0,0.0,25.5,1.3 -2019,9,28,19,45,0.0,0.0,0.0,25.5,1.3 -2019,9,28,20,0,0.0,0.0,0.0,24.9,0.0 -2019,9,28,20,15,0.0,0.0,0.0,24.9,0.0 -2019,9,28,20,30,0.0,0.0,0.0,24.9,0.0 -2019,9,28,20,45,0.0,0.0,0.0,24.9,0.0 -2019,9,28,21,0,0.0,0.0,0.0,23.8,0.2 -2019,9,28,21,15,0.0,0.0,0.0,23.8,0.2 -2019,9,28,21,30,0.0,0.0,0.0,23.8,0.2 -2019,9,28,21,45,0.0,0.0,0.0,23.8,0.2 -2019,9,28,22,0,0.0,0.0,0.0,23.1,2.0 -2019,9,28,22,15,0.0,0.0,0.0,23.1,2.0 -2019,9,28,22,30,0.0,0.0,0.0,23.1,2.0 -2019,9,28,22,45,0.0,0.0,0.0,23.1,2.0 -2019,9,28,23,0,0.0,0.0,0.0,21.6,1.3 -2019,9,28,23,15,0.0,0.0,0.0,21.6,1.3 -2019,9,28,23,30,0.0,0.0,0.0,21.6,1.3 -2019,9,28,23,45,0.0,0.0,0.0,21.6,1.3 -2019,9,29,0,0,0.0,0.0,0.0,20.9,0.0 -2019,9,29,0,15,0.0,0.0,0.0,20.9,0.0 -2019,9,29,0,30,0.0,0.0,0.0,20.9,0.0 -2019,9,29,0,45,0.0,0.0,0.0,20.9,0.0 -2019,9,29,1,0,0.0,0.0,0.0,19.3,0.0 -2019,9,29,1,15,0.0,0.0,0.0,19.3,0.0 -2019,9,29,1,30,0.0,0.0,0.0,19.3,0.0 -2019,9,29,1,45,0.0,0.0,0.0,19.3,0.0 -2019,9,29,2,0,0.0,0.0,0.0,18.8,0.0 -2019,9,29,2,15,0.0,0.0,0.0,18.8,0.0 -2019,9,29,2,30,0.0,0.0,0.0,18.8,0.0 -2019,9,29,2,45,0.0,0.0,0.0,18.8,0.0 -2019,9,29,3,0,0.0,0.0,0.0,18.2,0.0 -2019,9,29,3,15,0.0,0.0,0.0,18.2,0.0 -2019,9,29,3,30,0.0,0.0,0.0,18.2,0.0 -2019,9,29,3,45,0.0,0.0,0.0,18.2,0.0 -2019,9,29,4,0,0.0,0.0,0.0,17.7,0.2 -2019,9,29,4,15,0.0,0.0,0.0,17.7,0.2 -2019,9,29,4,30,0.0,0.0,0.0,17.7,0.2 -2019,9,29,4,45,0.0,0.0,0.0,17.7,0.2 -2019,9,29,5,0,112.0,-41.67584951160297,0.0,17.5,1.3 -2019,9,29,5,15,112.0,-36.04750138021218,0.0,17.5,1.3 -2019,9,29,5,30,112.0,-30.278313011386544,0.0,17.5,1.3 -2019,9,29,5,45,112.0,-24.392988955423235,0.0,17.5,1.3 -2019,9,29,6,0,263.0,11.753568997140029,55.0,20.5,0.0 -2019,9,29,6,15,263.0,25.940541492313177,55.0,20.5,0.0 -2019,9,29,6,30,263.0,40.22020155487582,55.0,20.5,0.0 -2019,9,29,6,45,263.0,54.53140148818679,55.0,20.5,0.0 -2019,9,29,7,0,789.0,108.43857561110897,67.0,24.2,0.0 -2019,9,29,7,15,789.0,151.01025192943598,67.0,24.2,0.0 -2019,9,29,7,30,789.0,193.1269349658238,67.0,24.2,0.0 -2019,9,29,7,45,789.0,234.60827461763964,67.0,24.2,0.0 -2019,9,29,8,0,586.0,312.68962214476016,158.0,27.0,0.2 -2019,9,29,8,15,586.0,342.1613712159319,158.0,27.0,0.2 -2019,9,29,8,30,586.0,370.7737708012786,158.0,27.0,0.2 -2019,9,29,8,45,586.0,398.40429821312074,158.0,27.0,0.2 -2019,9,29,9,0,531.0,464.88104324165283,223.0,29.2,2.0 -2019,9,29,9,15,531.0,487.82145726338837,223.0,29.2,2.0 -2019,9,29,9,30,531.0,509.5637625559623,223.0,29.2,2.0 -2019,9,29,9,45,531.0,530.0148552301721,223.0,29.2,2.0 -2019,9,29,10,0,134.0,440.28941528444835,358.0,31.4,1.7 -2019,9,29,10,15,134.0,444.7338363009503,358.0,31.4,1.7 -2019,9,29,10,30,134.0,448.7906731658905,358.0,31.4,1.7 -2019,9,29,10,45,134.0,452.44255388099634,358.0,31.4,1.7 -2019,9,29,11,0,700.0,716.2364803931284,206.0,33.4,3.2 -2019,9,29,11,15,700.0,730.8469207328837,206.0,33.4,3.2 -2019,9,29,11,30,700.0,743.1253816221688,206.0,33.4,3.2 -2019,9,29,11,45,700.0,753.0192848064323,206.0,33.4,3.2 -2019,9,29,12,0,942.0,859.1800854500689,113.0,34.0,3.7 -2019,9,29,12,15,942.0,865.9195283690035,113.0,34.0,3.7 -2019,9,29,12,30,942.0,869.3211355527948,113.0,34.0,3.7 -2019,9,29,12,45,942.0,869.370340797257,113.0,34.0,3.7 -2019,9,29,13,0,169.0,461.1043649089794,326.0,34.4,4.7 -2019,9,29,13,15,169.0,459.9127759871428,326.0,34.4,4.7 -2019,9,29,13,30,169.0,458.1273502329693,326.0,34.4,4.7 -2019,9,29,13,45,169.0,455.7557331136418,326.0,34.4,4.7 -2019,9,29,14,0,682.0,660.7343830520356,149.0,34.3,5.6 -2019,9,29,14,15,682.0,646.5654646494761,149.0,34.3,5.6 -2019,9,29,14,30,682.0,630.1835631489762,149.0,34.3,5.6 -2019,9,29,14,45,682.0,611.6588283677565,149.0,34.3,5.6 -2019,9,29,15,0,816.0,604.9290296602949,76.0,33.6,4.6 -2019,9,29,15,15,816.0,577.9321269412549,76.0,33.6,4.6 -2019,9,29,15,30,816.0,548.6873658570587,76.0,33.6,4.6 -2019,9,29,15,45,816.0,517.3199769644064,76.0,33.6,4.6 -2019,9,29,16,0,710.0,399.9689203052486,45.0,32.4,4.3 -2019,9,29,16,15,710.0,369.3404510094198,45.0,32.4,4.3 -2019,9,29,16,30,710.0,337.2373945436482,45.0,32.4,4.3 -2019,9,29,16,45,710.0,303.7972211242711,45.0,32.4,4.3 -2019,9,29,17,0,379.0,122.65890848199712,3.0,31.4,4.0 -2019,9,29,17,15,379.0,103.61298043023727,3.0,31.4,4.0 -2019,9,29,17,30,379.0,84.09045907501472,3.0,31.4,4.0 -2019,9,29,17,45,379.0,64.17494284992463,3.0,31.4,4.0 -2019,9,29,18,0,0.0,0.0,0.0,28.8,2.9 -2019,9,29,18,15,0.0,0.0,0.0,28.8,2.9 -2019,9,29,18,30,0.0,0.0,0.0,28.8,2.9 -2019,9,29,18,45,0.0,0.0,0.0,28.8,2.9 -2019,9,29,19,0,0.0,0.0,0.0,27.5,1.3 -2019,9,29,19,15,0.0,0.0,0.0,27.5,1.3 -2019,9,29,19,30,0.0,0.0,0.0,27.5,1.3 -2019,9,29,19,45,0.0,0.0,0.0,27.5,1.3 -2019,9,29,20,0,0.0,0.0,0.0,25.5,0.0 -2019,9,29,20,15,0.0,0.0,0.0,25.5,0.0 -2019,9,29,20,30,0.0,0.0,0.0,25.5,0.0 -2019,9,29,20,45,0.0,0.0,0.0,25.5,0.0 -2019,9,29,21,0,0.0,0.0,0.0,24.3,0.0 -2019,9,29,21,15,0.0,0.0,0.0,24.3,0.0 -2019,9,29,21,30,0.0,0.0,0.0,24.3,0.0 -2019,9,29,21,45,0.0,0.0,0.0,24.3,0.0 -2019,9,29,22,0,0.0,0.0,0.0,23.2,0.0 -2019,9,29,22,15,0.0,0.0,0.0,23.2,0.0 -2019,9,29,22,30,0.0,0.0,0.0,23.2,0.0 -2019,9,29,22,45,0.0,0.0,0.0,23.2,0.0 -2019,9,29,23,0,0.0,0.0,0.0,22.7,0.0 -2019,9,29,23,15,0.0,0.0,0.0,22.7,0.0 -2019,9,29,23,30,0.0,0.0,0.0,22.7,0.0 -2019,9,29,23,45,0.0,0.0,0.0,22.7,0.0 -2019,9,30,0,0,0.0,0.0,0.0,21.9,0.0 -2019,9,30,0,15,0.0,0.0,0.0,21.9,0.0 -2019,9,30,0,30,0.0,0.0,0.0,21.9,0.0 -2019,9,30,0,45,0.0,0.0,0.0,21.9,0.0 -2019,9,30,1,0,0.0,0.0,0.0,20.0,0.3 -2019,9,30,1,15,0.0,0.0,0.0,20.0,0.3 -2019,9,30,1,30,0.0,0.0,0.0,20.0,0.3 -2019,9,30,1,45,0.0,0.0,0.0,20.0,0.3 -2019,9,30,2,0,0.0,0.0,0.0,19.8,2.3 -2019,9,30,2,15,0.0,0.0,0.0,19.8,2.3 -2019,9,30,2,30,0.0,0.0,0.0,19.8,2.3 -2019,9,30,2,45,0.0,0.0,0.0,19.8,2.3 -2019,9,30,3,0,0.0,0.0,0.0,18.3,0.0 -2019,9,30,3,15,0.0,0.0,0.0,18.3,0.0 -2019,9,30,3,30,0.0,0.0,0.0,18.3,0.0 -2019,9,30,3,45,0.0,0.0,0.0,18.3,0.0 -2019,9,30,4,0,0.0,0.0,0.0,18.3,0.2 -2019,9,30,4,15,0.0,0.0,0.0,18.3,0.2 -2019,9,30,4,30,0.0,0.0,0.0,18.3,0.2 -2019,9,30,4,45,0.0,0.0,0.0,18.3,0.2 -2019,9,30,5,0,152.0,-57.126908879657414,0.0,18.7,1.6 -2019,9,30,5,15,152.0,-49.49133985980787,0.0,18.7,1.6 -2019,9,30,5,30,152.0,-41.664703171683136,0.0,18.7,1.6 -2019,9,30,5,45,152.0,-33.68051367514881,0.0,18.7,1.6 -2019,9,30,6,0,518.0,-46.1499588408487,41.0,22.0,1.9 -2019,9,30,6,15,518.0,-18.218177869531004,41.0,22.0,1.9 -2019,9,30,6,30,518.0,9.896089451990548,41.0,22.0,1.9 -2019,9,30,6,45,518.0,38.07245351486455,41.0,22.0,1.9 -2019,9,30,7,0,811.0,102.43880287412097,63.0,24.9,0.0 -2019,9,30,7,15,811.0,146.18088909413518,63.0,24.9,0.0 -2019,9,30,7,30,811.0,189.45547304293765,63.0,24.9,0.0 -2019,9,30,7,45,811.0,232.07724630842432,63.0,24.9,0.0 -2019,9,30,8,0,963.0,319.3843886131181,69.0,28.8,0.0 -2019,9,30,8,15,963.0,367.7982220596322,69.0,28.8,0.0 -2019,9,30,8,30,963.0,414.80038486594793,69.0,28.8,0.0 -2019,9,30,8,45,963.0,460.189606555025,69.0,28.8,0.0 -2019,9,30,9,0,1049.0,540.5984716130483,67.0,33.0,0.2 -2019,9,30,9,15,1049.0,585.9004437467139,67.0,33.0,0.2 -2019,9,30,9,30,1049.0,628.8364303227445,67.0,33.0,0.2 -2019,9,30,9,45,1049.0,669.2225728549696,67.0,33.0,0.2 -2019,9,30,10,0,1095.0,729.9457532798428,62.0,34.8,1.6 -2019,9,30,10,15,1095.0,766.250164952121,62.0,34.8,1.6 -2019,9,30,10,30,1095.0,799.3885816514426,62.0,34.8,1.6 -2019,9,30,10,45,1095.0,829.2190995899989,62.0,34.8,1.6 -2019,9,30,11,0,1112.0,865.9349275436232,60.0,37.9,2.0 -2019,9,30,11,15,1112.0,889.1358334238274,60.0,37.9,2.0 -2019,9,30,11,30,1112.0,908.6336314929887,60.0,37.9,2.0 -2019,9,30,11,45,1112.0,924.344829186418,60.0,37.9,2.0 -2019,9,30,12,0,1103.0,930.1105845900655,61.0,38.5,2.0 -2019,9,30,12,15,1103.0,937.998886041183,61.0,38.5,2.0 -2019,9,30,12,30,1103.0,941.9803579828244,61.0,38.5,2.0 -2019,9,30,12,45,1103.0,942.0379511408886,61.0,38.5,2.0 -2019,9,30,13,0,1066.0,912.7468110059336,65.0,39.8,6.1 -2019,9,30,13,15,1066.0,905.23349168816,65.0,39.8,6.1 -2019,9,30,13,30,1066.0,893.9758561366255,65.0,39.8,6.1 -2019,9,30,13,45,1066.0,879.0221112750652,65.0,39.8,6.1 -2019,9,30,14,0,995.0,811.4569511051063,69.0,38.1,5.2 -2019,9,30,14,15,995.0,790.7931460897399,69.0,38.1,5.2 -2019,9,30,14,30,995.0,766.9019492623153,69.0,38.1,5.2 -2019,9,30,14,45,995.0,739.885666395491,69.0,38.1,5.2 -2019,9,30,15,0,868.0,625.0617761734491,66.0,36.9,5.7 -2019,9,30,15,15,868.0,596.3553982667225,66.0,36.9,5.7 -2019,9,30,15,30,868.0,565.2588249963824,66.0,36.9,5.7 -2019,9,30,15,45,868.0,531.9052166632054,66.0,36.9,5.7 -2019,9,30,16,0,626.0,361.43065839305496,51.0,35.4,5.7 -2019,9,30,16,15,626.0,334.43610373254404,51.0,35.4,5.7 -2019,9,30,16,30,626.0,306.14191429184746,51.0,35.4,5.7 -2019,9,30,16,45,626.0,276.66925013395326,51.0,35.4,5.7 -2019,9,30,17,0,600.0,187.0392821707774,0.0,34.1,5.6 -2019,9,30,17,15,600.0,156.89887814505542,0.0,34.1,5.6 -2019,9,30,17,30,600.0,126.00425963929985,0.0,34.1,5.6 -2019,9,30,17,45,600.0,94.48772215298021,0.0,34.1,5.6 -2019,9,30,18,0,0.0,0.0,0.0,31.6,4.5 -2019,9,30,18,15,0.0,0.0,0.0,31.6,4.5 -2019,9,30,18,30,0.0,0.0,0.0,31.6,4.5 -2019,9,30,18,45,0.0,0.0,0.0,31.6,4.5 -2019,9,30,19,0,0.0,0.0,0.0,30.3,0.0 -2019,9,30,19,15,0.0,0.0,0.0,30.3,0.0 -2019,9,30,19,30,0.0,0.0,0.0,30.3,0.0 -2019,9,30,19,45,0.0,0.0,0.0,30.3,0.0 -2019,9,30,20,0,0.0,0.0,0.0,27.6,0.0 -2019,9,30,20,15,0.0,0.0,0.0,27.6,0.0 -2019,9,30,20,30,0.0,0.0,0.0,27.6,0.0 -2019,9,30,20,45,0.0,0.0,0.0,27.6,0.0 -2019,9,30,21,0,0.0,0.0,0.0,26.0,0.2 -2019,9,30,21,15,0.0,0.0,0.0,26.0,0.2 -2019,9,30,21,30,0.0,0.0,0.0,26.0,0.2 -2019,9,30,21,45,0.0,0.0,0.0,26.0,0.2 -2019,9,30,22,0,0.0,0.0,0.0,25.4,1.3 -2019,9,30,22,15,0.0,0.0,0.0,25.4,1.3 -2019,9,30,22,30,0.0,0.0,0.0,25.4,1.3 -2019,9,30,22,45,0.0,0.0,0.0,25.4,1.3 -2019,9,30,23,0,0.0,0.0,0.0,23.8,0.0 -2019,9,30,23,15,0.0,0.0,0.0,23.8,0.0 -2019,9,30,23,30,0.0,0.0,0.0,23.8,0.0 -2019,9,30,23,45,0.0,0.0,0.0,23.8,0.0 -2019,10,1,0,0,0.0,0.0,0.0,22.7,0.2 -2019,10,1,0,15,0.0,0.0,0.0,22.7,0.2 -2019,10,1,0,30,0.0,0.0,0.0,22.7,0.2 -2019,10,1,0,45,0.0,0.0,0.0,22.7,0.2 -2019,10,1,1,0,0.0,0.0,0.0,21.7,1.6 -2019,10,1,1,15,0.0,0.0,0.0,21.7,1.6 -2019,10,1,1,30,0.0,0.0,0.0,21.7,1.6 -2019,10,1,1,45,0.0,0.0,0.0,21.7,1.6 -2019,10,1,2,0,0.0,0.0,0.0,21.4,2.0 -2019,10,1,2,15,0.0,0.0,0.0,21.4,2.0 -2019,10,1,2,30,0.0,0.0,0.0,21.4,2.0 -2019,10,1,2,45,0.0,0.0,0.0,21.4,2.0 -2019,10,1,3,0,0.0,0.0,0.0,19.5,1.6 -2019,10,1,3,15,0.0,0.0,0.0,19.5,1.6 -2019,10,1,3,30,0.0,0.0,0.0,19.5,1.6 -2019,10,1,3,45,0.0,0.0,0.0,19.5,1.6 -2019,10,1,4,0,0.0,0.0,0.0,20.0,2.2 -2019,10,1,4,15,0.0,0.0,0.0,20.0,2.2 -2019,10,1,4,30,0.0,0.0,0.0,20.0,2.2 -2019,10,1,4,45,0.0,0.0,0.0,20.0,2.2 -2019,10,1,5,0,193.0,-73.25057252747446,0.0,20.3,2.5 -2019,10,1,5,15,193.0,-63.55955735697194,0.0,20.3,2.5 -2019,10,1,5,30,193.0,-53.62604032877758,0.0,20.3,2.5 -2019,10,1,5,45,193.0,-43.492558287827364,0.0,20.3,2.5 -2019,10,1,6,0,521.0,-49.62955840170642,40.0,22.6,1.9 -2019,10,1,6,15,521.0,-21.548030325127996,40.0,22.6,1.9 -2019,10,1,6,30,521.0,6.716962442517136,40.0,22.6,1.9 -2019,10,1,6,45,521.0,35.04438486287731,40.0,22.6,1.9 -2019,10,1,7,0,820.0,98.69214269228323,62.0,26.0,0.0 -2019,10,1,7,15,820.0,142.90072984084577,62.0,26.0,0.0 -2019,10,1,7,30,820.0,186.63682889647498,62.0,26.0,0.0 -2019,10,1,7,45,820.0,229.71315516852653,62.0,26.0,0.0 -2019,10,1,8,0,974.0,315.3739911403943,66.0,29.9,0.0 -2019,10,1,8,15,974.0,364.31988754862795,66.0,29.9,0.0 -2019,10,1,8,30,974.0,411.83859920409793,66.0,29.9,0.0 -2019,10,1,8,45,974.0,457.72664368829044,66.0,29.9,0.0 -2019,10,1,9,0,1060.0,538.265680319153,64.0,34.4,0.2 -2019,10,1,9,15,1060.0,584.02311103809,64.0,34.4,0.2 -2019,10,1,9,30,1060.0,627.3907689692985,64.0,34.4,0.2 -2019,10,1,9,45,1060.0,668.1829471435929,64.0,34.4,0.2 -2019,10,1,10,0,1106.0,729.0951072771707,59.0,38.1,1.9 -2019,10,1,10,15,1106.0,765.7485317369869,59.0,38.1,1.9 -2019,10,1,10,30,1106.0,799.2055249027511,59.0,38.1,1.9 -2019,10,1,10,45,1106.0,829.3228187933163,59.0,38.1,1.9 -2019,10,1,11,0,1123.0,866.2214597251863,57.0,40.7,0.3 -2019,10,1,11,15,1123.0,889.6418461498732,57.0,40.7,0.3 -2019,10,1,11,30,1123.0,909.3240933676379,57.0,40.7,0.3 -2019,10,1,11,45,1123.0,925.1839189742202,57.0,40.7,0.3 -2019,10,1,12,0,1114.0,931.0996414606788,58.0,41.1,2.6 -2019,10,1,12,15,1114.0,939.0632026677528,58.0,41.1,2.6 -2019,10,1,12,30,1114.0,943.0826605571339,58.0,41.1,2.6 -2019,10,1,12,45,1114.0,943.1408031930606,58.0,41.1,2.6 -2019,10,1,13,0,1077.0,913.9682764659136,62.0,41.1,2.7 -2019,10,1,13,15,1077.0,906.3806753696181,62.0,41.1,2.7 -2019,10,1,13,30,1077.0,895.0117391857863,62.0,41.1,2.7 -2019,10,1,13,45,1077.0,879.9101514445476,62.0,41.1,2.7 -2019,10,1,14,0,1004.0,810.9741335013008,66.0,40.8,3.8 -2019,10,1,14,15,1004.0,790.1323407797506,66.0,40.8,3.8 -2019,10,1,14,30,1004.0,766.0353571033822,66.0,40.8,3.8 -2019,10,1,14,45,1004.0,738.7863694557343,66.0,40.8,3.8 -2019,10,1,15,0,875.0,623.9495063865515,64.0,39.7,5.7 -2019,10,1,15,15,875.0,595.0240066502797,64.0,39.7,5.7 -2019,10,1,15,30,875.0,563.6900666856908,64.0,39.7,5.7 -2019,10,1,15,45,875.0,530.081863234187,64.0,39.7,5.7 -2019,10,1,16,0,627.0,358.37172170019784,50.0,38.0,5.7 -2019,10,1,16,15,627.0,331.34561295413556,50.0,38.0,5.7 -2019,10,1,16,30,627.0,303.01835027754197,50.0,38.0,5.7 -2019,10,1,16,45,627.0,273.51123535807903,50.0,38.0,5.7 -2019,10,1,17,0,583.0,179.4102276520674,0.0,36.8,5.6 -2019,10,1,17,15,583.0,150.13633208521262,0.0,36.8,5.6 -2019,10,1,17,30,583.0,120.12990500004526,0.0,36.8,5.6 -2019,10,1,17,45,583.0,89.51943852401443,0.0,36.8,5.6 -2019,10,1,18,0,0.0,0.0,0.0,33.6,4.8 -2019,10,1,18,15,0.0,0.0,0.0,33.6,4.8 -2019,10,1,18,30,0.0,0.0,0.0,33.6,4.8 -2019,10,1,18,45,0.0,0.0,0.0,33.6,4.8 -2019,10,1,19,0,0.0,0.0,0.0,31.4,2.5 -2019,10,1,19,15,0.0,0.0,0.0,31.4,2.5 -2019,10,1,19,30,0.0,0.0,0.0,31.4,2.5 -2019,10,1,19,45,0.0,0.0,0.0,31.4,2.5 -2019,10,1,20,0,0.0,0.0,0.0,29.3,1.9 -2019,10,1,20,15,0.0,0.0,0.0,29.3,1.9 -2019,10,1,20,30,0.0,0.0,0.0,29.3,1.9 -2019,10,1,20,45,0.0,0.0,0.0,29.3,1.9 -2019,10,1,21,0,0.0,0.0,0.0,28.2,0.2 -2019,10,1,21,15,0.0,0.0,0.0,28.2,0.2 -2019,10,1,21,30,0.0,0.0,0.0,28.2,0.2 -2019,10,1,21,45,0.0,0.0,0.0,28.2,0.2 -2019,10,1,22,0,0.0,0.0,0.0,27.0,2.1 -2019,10,1,22,15,0.0,0.0,0.0,27.0,2.1 -2019,10,1,22,30,0.0,0.0,0.0,27.0,2.1 -2019,10,1,22,45,0.0,0.0,0.0,27.0,2.1 -2019,10,1,23,0,0.0,0.0,0.0,25.6,2.1 -2019,10,1,23,15,0.0,0.0,0.0,25.6,2.1 -2019,10,1,23,30,0.0,0.0,0.0,25.6,2.1 -2019,10,1,23,45,0.0,0.0,0.0,25.6,2.1 -2019,10,2,0,0,0.0,0.0,0.0,25.3,1.9 -2019,10,2,0,15,0.0,0.0,0.0,25.3,1.9 -2019,10,2,0,30,0.0,0.0,0.0,25.3,1.9 -2019,10,2,0,45,0.0,0.0,0.0,25.3,1.9 -2019,10,2,1,0,0.0,0.0,0.0,22.8,0.0 -2019,10,2,1,15,0.0,0.0,0.0,22.8,0.0 -2019,10,2,1,30,0.0,0.0,0.0,22.8,0.0 -2019,10,2,1,45,0.0,0.0,0.0,22.8,0.0 -2019,10,2,2,0,0.0,0.0,0.0,22.7,0.2 -2019,10,2,2,15,0.0,0.0,0.0,22.7,0.2 -2019,10,2,2,30,0.0,0.0,0.0,22.7,0.2 -2019,10,2,2,45,0.0,0.0,0.0,22.7,0.2 -2019,10,2,3,0,0.0,0.0,0.0,21.6,1.5 -2019,10,2,3,15,0.0,0.0,0.0,21.6,1.5 -2019,10,2,3,30,0.0,0.0,0.0,21.6,1.5 -2019,10,2,3,45,0.0,0.0,0.0,21.6,1.5 -2019,10,2,4,0,0.0,0.0,0.0,20.7,1.6 -2019,10,2,4,15,0.0,0.0,0.0,20.7,1.6 -2019,10,2,4,30,0.0,0.0,0.0,20.7,1.6 -2019,10,2,4,45,0.0,0.0,0.0,20.7,1.6 -2019,10,2,5,0,234.0,-89.67109824119807,0.0,21.4,2.1 -2019,10,2,5,15,234.0,-77.9269526931148,0.0,21.4,2.1 -2019,10,2,5,30,234.0,-65.88892904636938,0.0,21.4,2.1 -2019,10,2,5,45,234.0,-53.60857596632819,0.0,21.4,2.1 -2019,10,2,6,0,656.0,-84.32838784396264,31.0,23.8,1.9 -2019,10,2,6,15,656.0,-48.98725587762107,31.0,23.8,1.9 -2019,10,2,6,30,656.0,-13.415230142234357,31.0,23.8,1.9 -2019,10,2,6,45,656.0,22.235364486881913,31.0,23.8,1.9 -2019,10,2,7,0,996.0,76.70826101156364,36.0,27.5,0.0 -2019,10,2,7,15,996.0,130.38000715583314,36.0,27.5,0.0 -2019,10,2,7,30,996.0,183.4781258078939,36.0,27.5,0.0 -2019,10,2,7,45,996.0,235.77524267190657,36.0,27.5,0.0 -2019,10,2,8,0,996.0,312.0474134646602,61.0,29.8,0.2 -2019,10,2,8,15,996.0,362.07508287937327,61.0,29.8,0.2 -2019,10,2,8,30,996.0,410.64402475522434,61.0,29.8,0.2 -2019,10,2,8,45,996.0,457.5462594266614,61.0,29.8,0.2 -2019,10,2,9,0,1054.0,532.2954973069975,65.0,33.1,2.1 -2019,10,2,9,15,1054.0,577.7723058736565,65.0,33.1,2.1 -2019,10,2,9,30,1054.0,620.8739977023827,65.0,33.1,2.1 -2019,10,2,9,45,1054.0,661.4160047316735,65.0,33.1,2.1 -2019,10,2,10,0,1103.0,723.709550293385,60.0,35.9,2.2 -2019,10,2,10,15,1103.0,760.2461851358381,60.0,35.9,2.2 -2019,10,2,10,30,1103.0,793.5965735439968,60.0,35.9,2.2 -2019,10,2,10,45,1103.0,823.6179040346523,60.0,35.9,2.2 -2019,10,2,11,0,1138.0,867.255380156843,52.0,38.0,3.0 -2019,10,2,11,15,1138.0,890.9773180934441,52.0,38.0,3.0 -2019,10,2,11,30,1138.0,910.9129860404299,52.0,38.0,3.0 -2019,10,2,11,45,1138.0,926.9770164070718,52.0,38.0,3.0 -2019,10,2,12,0,1153.0,945.7935109781762,47.0,39.3,5.7 -2019,10,2,12,15,1153.0,954.0319520934368,47.0,39.3,5.7 -2019,10,2,12,30,1153.0,958.1901504516687,47.0,39.3,5.7 -2019,10,2,12,45,1153.0,958.2503000091233,47.0,39.3,5.7 -2019,10,2,13,0,1005.0,872.7616686141738,82.0,38.8,5.7 -2019,10,2,13,15,1005.0,865.6846807288003,82.0,38.8,5.7 -2019,10,2,13,30,1005.0,855.0808254889876,82.0,38.8,5.7 -2019,10,2,13,45,1005.0,840.9955102308056,82.0,38.8,5.7 -2019,10,2,14,0,798.0,704.7644400481717,116.0,37.5,5.9 -2019,10,2,14,15,798.0,688.2068222298383,116.0,37.5,5.9 -2019,10,2,14,30,798.0,669.0631405121242,116.0,37.5,5.9 -2019,10,2,14,45,798.0,647.4153710791364,116.0,37.5,5.9 -2019,10,2,15,0,566.0,476.8541560898561,117.0,36.0,7.1 -2019,10,2,15,15,566.0,458.15238003937554,117.0,36.0,7.1 -2019,10,2,15,30,566.0,437.89342744253855,117.0,36.0,7.1 -2019,10,2,15,45,566.0,416.1640502445761,117.0,36.0,7.1 -2019,10,2,16,0,366.0,247.51054892704084,69.0,34.3,6.4 -2019,10,2,16,15,366.0,231.74203857402648,69.0,34.3,6.4 -2019,10,2,16,30,366.0,215.21436383603813,69.0,34.3,6.4 -2019,10,2,16,45,366.0,197.99829875367857,69.0,34.3,6.4 -2019,10,2,17,0,183.0,64.58378258034435,9.0,33.0,5.6 -2019,10,2,17,15,183.0,55.39925849786899,9.0,33.0,5.6 -2019,10,2,17,30,183.0,45.98490667156806,9.0,33.0,5.6 -2019,10,2,17,45,183.0,36.38104080127944,9.0,33.0,5.6 -2019,10,2,18,0,0.0,0.0,0.0,30.9,4.1 -2019,10,2,18,15,0.0,0.0,0.0,30.9,4.1 -2019,10,2,18,30,0.0,0.0,0.0,30.9,4.1 -2019,10,2,18,45,0.0,0.0,0.0,30.9,4.1 -2019,10,2,19,0,0.0,0.0,0.0,29.2,0.2 -2019,10,2,19,15,0.0,0.0,0.0,29.2,0.2 -2019,10,2,19,30,0.0,0.0,0.0,29.2,0.2 -2019,10,2,19,45,0.0,0.0,0.0,29.2,0.2 -2019,10,2,20,0,0.0,0.0,0.0,27.6,1.3 -2019,10,2,20,15,0.0,0.0,0.0,27.6,1.3 -2019,10,2,20,30,0.0,0.0,0.0,27.6,1.3 -2019,10,2,20,45,0.0,0.0,0.0,27.6,1.3 -2019,10,2,21,0,0.0,0.0,0.0,25.9,0.0 -2019,10,2,21,15,0.0,0.0,0.0,25.9,0.0 -2019,10,2,21,30,0.0,0.0,0.0,25.9,0.0 -2019,10,2,21,45,0.0,0.0,0.0,25.9,0.0 -2019,10,2,22,0,0.0,0.0,0.0,24.3,0.0 -2019,10,2,22,15,0.0,0.0,0.0,24.3,0.0 -2019,10,2,22,30,0.0,0.0,0.0,24.3,0.0 -2019,10,2,22,45,0.0,0.0,0.0,24.3,0.0 -2019,10,2,23,0,0.0,0.0,0.0,23.1,0.0 -2019,10,2,23,15,0.0,0.0,0.0,23.1,0.0 -2019,10,2,23,30,0.0,0.0,0.0,23.1,0.0 -2019,10,2,23,45,0.0,0.0,0.0,23.1,0.0 -2019,10,3,0,0,0.0,0.0,0.0,21.6,0.0 -2019,10,3,0,15,0.0,0.0,0.0,21.6,0.0 -2019,10,3,0,30,0.0,0.0,0.0,21.6,0.0 -2019,10,3,0,45,0.0,0.0,0.0,21.6,0.0 -2019,10,3,1,0,0.0,0.0,0.0,20.5,0.0 -2019,10,3,1,15,0.0,0.0,0.0,20.5,0.0 -2019,10,3,1,30,0.0,0.0,0.0,20.5,0.0 -2019,10,3,1,45,0.0,0.0,0.0,20.5,0.0 -2019,10,3,2,0,0.0,0.0,0.0,19.3,0.0 -2019,10,3,2,15,0.0,0.0,0.0,19.3,0.0 -2019,10,3,2,30,0.0,0.0,0.0,19.3,0.0 -2019,10,3,2,45,0.0,0.0,0.0,19.3,0.0 -2019,10,3,3,0,0.0,0.0,0.0,18.8,0.0 -2019,10,3,3,15,0.0,0.0,0.0,18.8,0.0 -2019,10,3,3,30,0.0,0.0,0.0,18.8,0.0 -2019,10,3,3,45,0.0,0.0,0.0,18.8,0.0 -2019,10,3,4,0,0.0,0.0,0.0,18.3,0.0 -2019,10,3,4,15,0.0,0.0,0.0,18.3,0.0 -2019,10,3,4,30,0.0,0.0,0.0,18.3,0.0 -2019,10,3,4,45,0.0,0.0,0.0,18.3,0.0 -2019,10,3,5,0,0.0,0.0,0.0,18.5,0.0 -2019,10,3,5,15,0.0,0.0,0.0,18.5,0.0 -2019,10,3,5,30,0.0,0.0,0.0,18.5,0.0 -2019,10,3,5,45,0.0,0.0,0.0,18.5,0.0 -2019,10,3,6,0,11.0,29.024870343676604,31.0,20.4,0.0 -2019,10,3,6,15,11.0,29.61717150989794,31.0,20.4,0.0 -2019,10,3,6,30,11.0,30.213342349813058,31.0,20.4,0.0 -2019,10,3,6,45,11.0,30.810829968359634,31.0,20.4,0.0 -2019,10,3,7,0,113.0,143.1817789996782,139.0,23.6,0.0 -2019,10,3,7,15,113.0,149.26786543633176,139.0,23.6,0.0 -2019,10,3,7,30,113.0,155.2889056102713,139.0,23.6,0.0 -2019,10,3,7,45,113.0,161.21911650310508,139.0,23.6,0.0 -2019,10,3,8,0,473.0,297.34210806696296,180.0,26.4,0.0 -2019,10,3,8,15,473.0,321.0878290203392,180.0,26.4,0.0 -2019,10,3,8,30,473.0,344.14116239120216,180.0,26.4,0.0 -2019,10,3,8,45,473.0,366.4033902668458,180.0,26.4,0.0 -2019,10,3,9,0,547.0,454.2858620639572,214.0,28.6,0.0 -2019,10,3,9,15,547.0,477.874886552259,214.0,28.6,0.0 -2019,10,3,9,30,547.0,500.2319273403072,214.0,28.6,0.0 -2019,10,3,9,45,547.0,521.2612481471322,214.0,28.6,0.0 -2019,10,3,10,0,616.0,591.1053815111816,223.0,30.9,0.2 -2019,10,3,10,15,616.0,611.49959826329,223.0,30.9,0.2 -2019,10,3,10,30,616.0,630.115298721086,223.0,30.9,0.2 -2019,10,3,10,45,616.0,646.8727675972754,223.0,30.9,0.2 -2019,10,3,11,0,668.0,690.7333845575236,215.0,33.5,1.7 -2019,10,3,11,15,668.0,704.6507698972143,215.0,33.5,1.7 -2019,10,3,11,30,668.0,716.3467946302626,215.0,33.5,1.7 -2019,10,3,11,45,668.0,725.7713745831551,215.0,33.5,1.7 -2019,10,3,12,0,745.0,758.5803793891407,181.0,34.9,3.3 -2019,10,3,12,15,745.0,763.9007917478743,181.0,34.9,3.3 -2019,10,3,12,30,745.0,766.5861699190217,181.0,34.9,3.3 -2019,10,3,12,45,745.0,766.6250147009868,181.0,34.9,3.3 -2019,10,3,13,0,549.0,653.6327794700576,224.0,33.8,5.2 -2019,10,3,13,15,549.0,649.7688604036869,224.0,33.8,5.2 -2019,10,3,13,30,549.0,643.9793297302164,224.0,33.8,5.2 -2019,10,3,13,45,549.0,636.2889791088149,224.0,33.8,5.2 -2019,10,3,14,0,361.0,486.8193024924171,222.0,32.6,6.1 -2019,10,3,14,15,361.0,479.3328607248531,222.0,32.6,6.1 -2019,10,3,14,30,361.0,470.67714346111984,222.0,32.6,6.1 -2019,10,3,14,45,361.0,460.8892158113907,222.0,32.6,6.1 -2019,10,3,15,0,203.0,292.21670695418254,164.0,31.4,5.0 -2019,10,3,15,15,203.0,285.51268010281274,164.0,31.4,5.0 -2019,10,3,15,30,203.0,278.2504520757407,164.0,31.4,5.0 -2019,10,3,15,45,203.0,270.4611208482961,164.0,31.4,5.0 -2019,10,3,16,0,125.0,135.45445907181931,75.0,29.9,4.3 -2019,10,3,16,15,125.0,130.07184947415473,75.0,29.9,4.3 -2019,10,3,16,30,125.0,124.43009773729722,75.0,29.9,4.3 -2019,10,3,16,45,125.0,118.55336270832143,75.0,29.9,4.3 -2019,10,3,17,0,62.0,28.583537496541776,10.0,28.6,3.6 -2019,10,3,17,15,62.0,25.473464780818954,10.0,28.6,3.6 -2019,10,3,17,30,62.0,22.28556756499472,10.0,28.6,3.6 -2019,10,3,17,45,62.0,19.033496914362146,10.0,28.6,3.6 -2019,10,3,18,0,0.0,0.0,0.0,26.5,3.5 -2019,10,3,18,15,0.0,0.0,0.0,26.5,3.5 -2019,10,3,18,30,0.0,0.0,0.0,26.5,3.5 -2019,10,3,18,45,0.0,0.0,0.0,26.5,3.5 -2019,10,3,19,0,0.0,0.0,0.0,24.9,2.3 -2019,10,3,19,15,0.0,0.0,0.0,24.9,2.3 -2019,10,3,19,30,0.0,0.0,0.0,24.9,2.3 -2019,10,3,19,45,0.0,0.0,0.0,24.9,2.3 -2019,10,3,20,0,0.0,0.0,0.0,23.8,0.2 -2019,10,3,20,15,0.0,0.0,0.0,23.8,0.2 -2019,10,3,20,30,0.0,0.0,0.0,23.8,0.2 -2019,10,3,20,45,0.0,0.0,0.0,23.8,0.2 -2019,10,3,21,0,0.0,0.0,0.0,22.7,1.9 -2019,10,3,21,15,0.0,0.0,0.0,22.7,1.9 -2019,10,3,21,30,0.0,0.0,0.0,22.7,1.9 -2019,10,3,21,45,0.0,0.0,0.0,22.7,1.9 -2019,10,3,22,0,0.0,0.0,0.0,21.6,0.0 -2019,10,3,22,15,0.0,0.0,0.0,21.6,0.0 -2019,10,3,22,30,0.0,0.0,0.0,21.6,0.0 -2019,10,3,22,45,0.0,0.0,0.0,21.6,0.0 -2019,10,3,23,0,0.0,0.0,0.0,20.4,0.0 -2019,10,3,23,15,0.0,0.0,0.0,20.4,0.0 -2019,10,3,23,30,0.0,0.0,0.0,20.4,0.0 -2019,10,3,23,45,0.0,0.0,0.0,20.4,0.0 -2019,10,4,0,0,0.0,0.0,0.0,18.8,0.0 -2019,10,4,0,15,0.0,0.0,0.0,18.8,0.0 -2019,10,4,0,30,0.0,0.0,0.0,18.8,0.0 -2019,10,4,0,45,0.0,0.0,0.0,18.8,0.0 -2019,10,4,1,0,0.0,0.0,0.0,17.7,0.0 -2019,10,4,1,15,0.0,0.0,0.0,17.7,0.0 -2019,10,4,1,30,0.0,0.0,0.0,17.7,0.0 -2019,10,4,1,45,0.0,0.0,0.0,17.7,0.0 -2019,10,4,2,0,0.0,0.0,0.0,17.1,0.0 -2019,10,4,2,15,0.0,0.0,0.0,17.1,0.0 -2019,10,4,2,30,0.0,0.0,0.0,17.1,0.0 -2019,10,4,2,45,0.0,0.0,0.0,17.1,0.0 -2019,10,4,3,0,0.0,0.0,0.0,16.7,0.0 -2019,10,4,3,15,0.0,0.0,0.0,16.7,0.0 -2019,10,4,3,30,0.0,0.0,0.0,16.7,0.0 -2019,10,4,3,45,0.0,0.0,0.0,16.7,0.0 -2019,10,4,4,0,0.0,0.0,0.0,16.6,0.3 -2019,10,4,4,15,0.0,0.0,0.0,16.6,0.3 -2019,10,4,4,30,0.0,0.0,0.0,16.6,0.3 -2019,10,4,4,45,0.0,0.0,0.0,16.6,0.3 -2019,10,4,5,0,0.0,0.0,0.0,15.7,1.5 -2019,10,4,5,15,0.0,0.0,0.0,15.7,1.5 -2019,10,4,5,30,0.0,0.0,0.0,15.7,1.5 -2019,10,4,5,45,0.0,0.0,0.0,15.7,1.5 -2019,10,4,6,0,1.0,18.816712191177213,19.0,15.7,0.5 -2019,10,4,6,15,1.0,18.87052716329799,19.0,15.7,0.5 -2019,10,4,6,30,1.0,18.924693724093284,19.0,15.7,0.5 -2019,10,4,6,45,1.0,18.978979924033972,19.0,15.7,0.5 -2019,10,4,7,0,1.0,46.033153301277736,46.0,16.8,0.0 -2019,10,4,7,15,1.0,46.08698187710637,46.0,16.8,0.0 -2019,10,4,7,30,1.0,46.14023514929426,46.0,16.8,0.0 -2019,10,4,7,45,1.0,46.19268507915431,46.0,16.8,0.0 -2019,10,4,8,0,54.0,223.1817816738685,210.0,18.7,1.6 -2019,10,4,8,15,54.0,225.8911696305521,210.0,18.7,1.6 -2019,10,4,8,30,54.0,228.5215561292003,210.0,18.7,1.6 -2019,10,4,8,45,54.0,231.0616774510016,210.0,18.7,1.6 -2019,10,4,9,0,238.0,394.5769671248984,291.0,22.0,2.5 -2019,10,4,9,15,238.0,404.83473409952614,291.0,22.0,2.5 -2019,10,4,9,30,238.0,414.55676880086696,291.0,22.0,2.5 -2019,10,4,9,45,238.0,423.7014399837757,291.0,22.0,2.5 -2019,10,4,10,0,426.0,538.7890958519048,286.0,24.2,1.6 -2019,10,4,10,15,426.0,552.884876560207,286.0,24.2,1.6 -2019,10,4,10,30,426.0,565.7514080173373,286.0,24.2,1.6 -2019,10,4,10,45,426.0,577.3335937602906,286.0,24.2,1.6 -2019,10,4,11,0,610.0,666.8425366804397,235.0,26.9,2.6 -2019,10,4,11,15,610.0,679.5443065975658,235.0,26.9,2.6 -2019,10,4,11,30,610.0,690.2187408737024,235.0,26.9,2.6 -2019,10,4,11,45,610.0,698.82012994251,235.0,26.9,2.6 -2019,10,4,12,0,638.0,710.8997166754764,219.0,28.4,2.7 -2019,10,4,12,15,638.0,715.4534009572351,219.0,28.4,2.7 -2019,10,4,12,30,638.0,717.7517875378273,219.0,28.4,2.7 -2019,10,4,12,45,638.0,717.7850343730604,219.0,28.4,2.7 -2019,10,4,13,0,684.0,712.35462598887,180.0,28.9,3.2 -2019,10,4,13,15,684.0,707.5432976501222,180.0,28.9,3.2 -2019,10,4,13,30,684.0,700.3342095406549,180.0,28.9,3.2 -2019,10,4,13,45,684.0,690.758232082512,180.0,28.9,3.2 -2019,10,4,14,0,819.0,706.3148653736621,109.0,28.6,3.7 -2019,10,4,14,15,819.0,689.3400379487638,109.0,28.6,3.7 -2019,10,4,14,30,819.0,669.7139844306325,109.0,28.6,3.7 -2019,10,4,14,45,819.0,647.5207465934795,109.0,28.6,3.7 -2019,10,4,15,0,323.0,353.6560208184517,151.0,27.2,4.6 -2019,10,4,15,15,323.0,342.99508210978956,151.0,27.2,4.6 -2019,10,4,15,30,323.0,331.44647563767774,151.0,27.2,4.6 -2019,10,4,15,45,323.0,319.05965430800387,151.0,27.2,4.6 -2019,10,4,16,0,224.0,180.41435271722878,73.0,25.4,4.6 -2019,10,4,16,15,224.0,170.77419578603713,73.0,25.4,4.6 -2019,10,4,16,30,224.0,160.6699199467254,73.0,25.4,4.6 -2019,10,4,16,45,224.0,150.14479325967423,73.0,25.4,4.6 -2019,10,4,17,0,112.0,41.121942966602106,8.0,24.1,4.5 -2019,10,4,17,15,112.0,35.50693866301259,8.0,24.1,4.5 -2019,10,4,17,30,112.0,29.75142802952769,8.0,24.1,4.5 -2019,10,4,17,45,112.0,23.880057046281994,8.0,24.1,4.5 -2019,10,4,18,0,0.0,0.0,0.0,22.0,4.0 -2019,10,4,18,15,0.0,0.0,0.0,22.0,4.0 -2019,10,4,18,30,0.0,0.0,0.0,22.0,4.0 -2019,10,4,18,45,0.0,0.0,0.0,22.0,4.0 -2019,10,4,19,0,0.0,0.0,0.0,20.5,2.7 -2019,10,4,19,15,0.0,0.0,0.0,20.5,2.7 -2019,10,4,19,30,0.0,0.0,0.0,20.5,2.7 -2019,10,4,19,45,0.0,0.0,0.0,20.5,2.7 -2019,10,4,20,0,0.0,0.0,0.0,19.8,0.0 -2019,10,4,20,15,0.0,0.0,0.0,19.8,0.0 -2019,10,4,20,30,0.0,0.0,0.0,19.8,0.0 -2019,10,4,20,45,0.0,0.0,0.0,19.8,0.0 -2019,10,4,21,0,0.0,0.0,0.0,18.2,0.2 -2019,10,4,21,15,0.0,0.0,0.0,18.2,0.2 -2019,10,4,21,30,0.0,0.0,0.0,18.2,0.2 -2019,10,4,21,45,0.0,0.0,0.0,18.2,0.2 -2019,10,4,22,0,0.0,0.0,0.0,17.8,1.3 -2019,10,4,22,15,0.0,0.0,0.0,17.8,1.3 -2019,10,4,22,30,0.0,0.0,0.0,17.8,1.3 -2019,10,4,22,45,0.0,0.0,0.0,17.8,1.3 -2019,10,4,23,0,0.0,0.0,0.0,17.7,0.0 -2019,10,4,23,15,0.0,0.0,0.0,17.7,0.0 -2019,10,4,23,30,0.0,0.0,0.0,17.7,0.0 -2019,10,4,23,45,0.0,0.0,0.0,17.7,0.0 -2019,10,5,0,0,0.0,0.0,0.0,17.0,0.0 -2019,10,5,0,15,0.0,0.0,0.0,17.0,0.0 -2019,10,5,0,30,0.0,0.0,0.0,17.0,0.0 -2019,10,5,0,45,0.0,0.0,0.0,17.0,0.0 -2019,10,5,1,0,0.0,0.0,0.0,15.5,0.0 -2019,10,5,1,15,0.0,0.0,0.0,15.5,0.0 -2019,10,5,1,30,0.0,0.0,0.0,15.5,0.0 -2019,10,5,1,45,0.0,0.0,0.0,15.5,0.0 -2019,10,5,2,0,0.0,0.0,0.0,14.9,0.0 -2019,10,5,2,15,0.0,0.0,0.0,14.9,0.0 -2019,10,5,2,30,0.0,0.0,0.0,14.9,0.0 -2019,10,5,2,45,0.0,0.0,0.0,14.9,0.0 -2019,10,5,3,0,0.0,0.0,0.0,14.4,0.0 -2019,10,5,3,15,0.0,0.0,0.0,14.4,0.0 -2019,10,5,3,30,0.0,0.0,0.0,14.4,0.0 -2019,10,5,3,45,0.0,0.0,0.0,14.4,0.0 -2019,10,5,4,0,0.0,0.0,0.0,14.3,0.0 -2019,10,5,4,15,0.0,0.0,0.0,14.3,0.0 -2019,10,5,4,30,0.0,0.0,0.0,14.3,0.0 -2019,10,5,4,45,0.0,0.0,0.0,14.3,0.0 -2019,10,5,5,0,0.0,0.0,0.0,14.5,0.0 -2019,10,5,5,15,0.0,0.0,0.0,14.5,0.0 -2019,10,5,5,30,0.0,0.0,0.0,14.5,0.0 -2019,10,5,5,45,0.0,0.0,0.0,14.5,0.0 -2019,10,5,6,0,1.0,18.813004020223563,19.0,15.4,0.0 -2019,10,5,6,15,1.0,18.866785969314183,19.0,15.4,0.0 -2019,10,5,6,30,1.0,18.92091929133038,19.0,15.4,0.0 -2019,10,5,6,45,1.0,18.97517217907658,19.0,15.4,0.0 -2019,10,5,7,0,1.0,46.029312313358396,46.0,15.0,1.5 -2019,10,5,7,15,1.0,46.08310785780909,46.0,15.0,1.5 -2019,10,5,7,30,1.0,46.13632845164849,46.0,15.0,1.5 -2019,10,5,7,45,1.0,46.18874619612318,46.0,15.0,1.5 -2019,10,5,8,0,0.0,69.0,69.0,17.0,1.5 -2019,10,5,8,15,0.0,69.0,69.0,17.0,1.5 -2019,10,5,8,30,0.0,69.0,69.0,17.0,1.5 -2019,10,5,8,45,0.0,69.0,69.0,17.0,1.5 -2019,10,5,9,0,85.0,328.6443196173844,292.0,19.2,1.3 -2019,10,5,9,15,85.0,332.3055597589804,292.0,19.2,1.3 -2019,10,5,9,30,85.0,335.77558435542335,292.0,19.2,1.3 -2019,10,5,9,45,85.0,339.0395342286634,292.0,19.2,1.3 -2019,10,5,10,0,18.0,293.6059033834888,283.0,22.0,0.2 -2019,10,5,10,15,18.0,294.201134269572,283.0,22.0,0.2 -2019,10,5,10,30,18.0,294.7444569189896,283.0,22.0,0.2 -2019,10,5,10,45,18.0,295.2335447407445,283.0,22.0,0.2 -2019,10,5,11,0,47.0,375.07312550709963,342.0,24.3,2.2 -2019,10,5,11,15,47.0,376.05118592222146,342.0,24.3,2.2 -2019,10,5,11,30,47.0,376.8731376413462,342.0,24.3,2.2 -2019,10,5,11,45,47.0,377.53546094102427,342.0,24.3,2.2 -2019,10,5,12,0,140.0,462.339250024865,355.0,27.3,2.7 -2019,10,5,12,15,140.0,463.33787791534263,355.0,27.3,2.7 -2019,10,5,12,30,140.0,463.84191657952346,355.0,27.3,2.7 -2019,10,5,12,45,140.0,463.8492076464661,355.0,27.3,2.7 -2019,10,5,13,0,215.0,473.4095698382931,307.0,27.9,3.6 -2019,10,5,13,15,215.0,471.89816512839747,307.0,27.9,3.6 -2019,10,5,13,30,215.0,469.6335411086746,307.0,27.9,3.6 -2019,10,5,13,45,215.0,466.6253952468483,307.0,27.9,3.6 -2019,10,5,14,0,688.0,639.8371484330174,141.0,28.2,3.6 -2019,10,5,14,15,688.0,625.5862146600718,141.0,28.2,3.6 -2019,10,5,14,30,688.0,609.109488157337,141.0,28.2,3.6 -2019,10,5,14,45,688.0,590.4775247972505,141.0,28.2,3.6 -2019,10,5,15,0,640.0,498.8559158207918,100.0,27.5,3.7 -2019,10,5,15,15,640.0,477.7450368548566,100.0,27.5,3.7 -2019,10,5,15,30,640.0,454.8763908453002,100.0,27.5,3.7 -2019,10,5,15,45,640.0,430.34790484519385,100.0,27.5,3.7 -2019,10,5,16,0,300.0,209.62403762372102,67.0,26.0,4.2 -2019,10,5,16,15,300.0,196.72103582454844,67.0,26.0,4.2 -2019,10,5,16,30,300.0,183.19682763327586,67.0,26.0,4.2 -2019,10,5,16,45,300.0,169.10932578565252,67.0,26.0,4.2 -2019,10,5,17,0,150.0,48.75942756367124,5.0,24.7,4.5 -2019,10,5,17,15,150.0,41.243947146837215,5.0,24.7,4.5 -2019,10,5,17,30,150.0,33.54040408326668,5.0,24.7,4.5 -2019,10,5,17,45,150.0,25.68178612702724,5.0,24.7,4.5 -2019,10,5,18,0,0.0,0.0,0.0,22.7,3.5 -2019,10,5,18,15,0.0,0.0,0.0,22.7,3.5 -2019,10,5,18,30,0.0,0.0,0.0,22.7,3.5 -2019,10,5,18,45,0.0,0.0,0.0,22.7,3.5 -2019,10,5,19,0,0.0,0.0,0.0,21.6,2.7 -2019,10,5,19,15,0.0,0.0,0.0,21.6,2.7 -2019,10,5,19,30,0.0,0.0,0.0,21.6,2.7 -2019,10,5,19,45,0.0,0.0,0.0,21.6,2.7 -2019,10,5,20,0,0.0,0.0,0.0,21.0,0.0 -2019,10,5,20,15,0.0,0.0,0.0,21.0,0.0 -2019,10,5,20,30,0.0,0.0,0.0,21.0,0.0 -2019,10,5,20,45,0.0,0.0,0.0,21.0,0.0 -2019,10,5,21,0,0.0,0.0,0.0,20.5,0.0 -2019,10,5,21,15,0.0,0.0,0.0,20.5,0.0 -2019,10,5,21,30,0.0,0.0,0.0,20.5,0.0 -2019,10,5,21,45,0.0,0.0,0.0,20.5,0.0 -2019,10,5,22,0,0.0,0.0,0.0,19.9,0.0 -2019,10,5,22,15,0.0,0.0,0.0,19.9,0.0 -2019,10,5,22,30,0.0,0.0,0.0,19.9,0.0 -2019,10,5,22,45,0.0,0.0,0.0,19.9,0.0 -2019,10,5,23,0,0.0,0.0,0.0,19.3,0.0 -2019,10,5,23,15,0.0,0.0,0.0,19.3,0.0 -2019,10,5,23,30,0.0,0.0,0.0,19.3,0.0 -2019,10,5,23,45,0.0,0.0,0.0,19.3,0.0 -2019,10,6,0,0,0.0,0.0,0.0,18.2,0.0 -2019,10,6,0,15,0.0,0.0,0.0,18.2,0.0 -2019,10,6,0,30,0.0,0.0,0.0,18.2,0.0 -2019,10,6,0,45,0.0,0.0,0.0,18.2,0.0 -2019,10,6,1,0,0.0,0.0,0.0,17.1,0.0 -2019,10,6,1,15,0.0,0.0,0.0,17.1,0.0 -2019,10,6,1,30,0.0,0.0,0.0,17.1,0.0 -2019,10,6,1,45,0.0,0.0,0.0,17.1,0.0 -2019,10,6,2,0,0.0,0.0,0.0,16.1,0.0 -2019,10,6,2,15,0.0,0.0,0.0,16.1,0.0 -2019,10,6,2,30,0.0,0.0,0.0,16.1,0.0 -2019,10,6,2,45,0.0,0.0,0.0,16.1,0.0 -2019,10,6,3,0,0.0,0.0,0.0,16.0,0.0 -2019,10,6,3,15,0.0,0.0,0.0,16.0,0.0 -2019,10,6,3,30,0.0,0.0,0.0,16.0,0.0 -2019,10,6,3,45,0.0,0.0,0.0,16.0,0.0 -2019,10,6,4,0,0.0,0.0,0.0,15.6,0.0 -2019,10,6,4,15,0.0,0.0,0.0,15.6,0.0 -2019,10,6,4,30,0.0,0.0,0.0,15.6,0.0 -2019,10,6,4,45,0.0,0.0,0.0,15.6,0.0 -2019,10,6,5,0,0.0,0.0,0.0,15.7,0.0 -2019,10,6,5,15,0.0,0.0,0.0,15.7,0.0 -2019,10,6,5,30,0.0,0.0,0.0,15.7,0.0 -2019,10,6,5,45,0.0,0.0,0.0,15.7,0.0 -2019,10,6,6,0,3.0,17.427958256556874,18.0,16.4,0.0 -2019,10,6,6,15,3.0,17.589197852843323,18.0,16.4,0.0 -2019,10,6,6,30,3.0,17.751490873738284,18.0,16.4,0.0 -2019,10,6,6,45,3.0,17.914142355610604,18.0,16.4,0.0 -2019,10,6,7,0,7.0,80.17839686630312,80.0,19.1,0.0 -2019,10,6,7,15,7.0,80.55471769582142,80.0,19.1,0.0 -2019,10,6,7,30,7.0,80.9270165214138,80.0,19.1,0.0 -2019,10,6,7,45,7.0,81.29369910235276,80.0,19.1,0.0 -2019,10,6,8,0,45.0,212.6276837341378,202.0,20.9,0.0 -2019,10,6,8,15,45.0,214.88263560958424,202.0,20.9,0.0 -2019,10,6,8,30,45.0,217.0718366627756,202.0,20.9,0.0 -2019,10,6,8,45,45.0,219.18591239870992,202.0,20.9,0.0 -2019,10,6,9,0,629.0,454.594322286922,186.0,23.5,0.2 -2019,10,6,9,15,629.0,481.66965768086965,186.0,23.5,0.2 -2019,10,6,9,30,629.0,507.3309298565276,186.0,23.5,0.2 -2019,10,6,9,45,629.0,531.4682533068498,186.0,23.5,0.2 -2019,10,6,10,0,21.0,300.28544298004937,288.0,25.1,2.1 -2019,10,6,10,15,21.0,300.9794217072623,288.0,25.1,2.1 -2019,10,6,10,30,21.0,301.61288070531594,288.0,25.1,2.1 -2019,10,6,10,45,21.0,302.1831074055302,288.0,25.1,2.1 -2019,10,6,11,0,144.0,464.71538292319053,364.0,26.2,2.2 -2019,10,6,11,15,144.0,467.7100202005264,364.0,26.2,2.2 -2019,10,6,11,30,144.0,470.2266819733625,364.0,26.2,2.2 -2019,10,6,11,45,144.0,472.2545915096225,364.0,26.2,2.2 -2019,10,6,12,0,744.0,746.2228357782666,179.0,27.3,3.2 -2019,10,6,12,15,744.0,751.5263348989424,179.0,27.3,3.2 -2019,10,6,12,30,744.0,754.2031764309684,179.0,27.3,3.2 -2019,10,6,12,45,744.0,754.2418977279475,179.0,27.3,3.2 -2019,10,6,13,0,51.0,329.2537083090678,290.0,28.2,3.7 -2019,10,6,13,15,51.0,328.89542514777605,290.0,28.2,3.7 -2019,10,6,13,30,51.0,328.3585890193644,290.0,28.2,3.7 -2019,10,6,13,45,51.0,327.6454987385512,290.0,28.2,3.7 -2019,10,6,14,0,237.0,407.822201266128,237.0,27.1,5.2 -2019,10,6,14,15,237.0,402.9163187951876,237.0,27.1,5.2 -2019,10,6,14,30,237.0,397.24420740823393,237.0,27.1,5.2 -2019,10,6,14,45,237.0,390.83015595702443,237.0,27.1,5.2 -2019,10,6,15,0,18.0,130.1418959793349,119.0,26.8,3.1 -2019,10,6,15,15,18.0,129.54854350595483,119.0,26.8,3.1 -2019,10,6,15,30,18.0,128.90578639032177,119.0,26.8,3.1 -2019,10,6,15,45,18.0,128.2163770170827,119.0,26.8,3.1 -2019,10,6,16,0,5.0,34.35646320639274,32.0,26.1,3.4 -2019,10,6,16,15,5.0,34.14155479317564,32.0,26.1,3.4 -2019,10,6,16,30,5.0,33.916299758134834,32.0,26.1,3.4 -2019,10,6,16,45,5.0,33.68166267791216,32.0,26.1,3.4 -2019,10,6,17,0,2.0,7.575459321802905,7.0,25.3,3.5 -2019,10,6,17,15,2.0,7.475318905110124,7.0,25.3,3.5 -2019,10,6,17,30,2.0,7.372672637724639,7.0,25.3,3.5 -2019,10,6,17,45,2.0,7.267960066721933,7.0,25.3,3.5 -2019,10,6,18,0,0.0,0.0,0.0,23.2,2.5 -2019,10,6,18,15,0.0,0.0,0.0,23.2,2.5 -2019,10,6,18,30,0.0,0.0,0.0,23.2,2.5 -2019,10,6,18,45,0.0,0.0,0.0,23.2,2.5 -2019,10,6,19,0,0.0,0.0,0.0,22.1,1.5 -2019,10,6,19,15,0.0,0.0,0.0,22.1,1.5 -2019,10,6,19,30,0.0,0.0,0.0,22.1,1.5 -2019,10,6,19,45,0.0,0.0,0.0,22.1,1.5 -2019,10,6,20,0,0.0,0.0,0.0,21.0,1.3 -2019,10,6,20,15,0.0,0.0,0.0,21.0,1.3 -2019,10,6,20,30,0.0,0.0,0.0,21.0,1.3 -2019,10,6,20,45,0.0,0.0,0.0,21.0,1.3 -2019,10,6,21,0,0.0,0.0,0.0,20.5,0.2 -2019,10,6,21,15,0.0,0.0,0.0,20.5,0.2 -2019,10,6,21,30,0.0,0.0,0.0,20.5,0.2 -2019,10,6,21,45,0.0,0.0,0.0,20.5,0.2 -2019,10,6,22,0,0.0,0.0,0.0,20.0,1.3 -2019,10,6,22,15,0.0,0.0,0.0,20.0,1.3 -2019,10,6,22,30,0.0,0.0,0.0,20.0,1.3 -2019,10,6,22,45,0.0,0.0,0.0,20.0,1.3 -2019,10,6,23,0,0.0,0.0,0.0,19.9,0.0 -2019,10,6,23,15,0.0,0.0,0.0,19.9,0.0 -2019,10,6,23,30,0.0,0.0,0.0,19.9,0.0 -2019,10,6,23,45,0.0,0.0,0.0,19.9,0.0 -2019,10,7,0,0,0.0,0.0,0.0,19.3,0.0 -2019,10,7,0,15,0.0,0.0,0.0,19.3,0.0 -2019,10,7,0,30,0.0,0.0,0.0,19.3,0.0 -2019,10,7,0,45,0.0,0.0,0.0,19.3,0.0 -2019,10,7,1,0,0.0,0.0,0.0,18.2,0.0 -2019,10,7,1,15,0.0,0.0,0.0,18.2,0.0 -2019,10,7,1,30,0.0,0.0,0.0,18.2,0.0 -2019,10,7,1,45,0.0,0.0,0.0,18.2,0.0 -2019,10,7,2,0,0.0,0.0,0.0,17.1,0.0 -2019,10,7,2,15,0.0,0.0,0.0,17.1,0.0 -2019,10,7,2,30,0.0,0.0,0.0,17.1,0.0 -2019,10,7,2,45,0.0,0.0,0.0,17.1,0.0 -2019,10,7,3,0,0.0,0.0,0.0,16.6,0.0 -2019,10,7,3,15,0.0,0.0,0.0,16.6,0.0 -2019,10,7,3,30,0.0,0.0,0.0,16.6,0.0 -2019,10,7,3,45,0.0,0.0,0.0,16.6,0.0 -2019,10,7,4,0,0.0,0.0,0.0,15.6,0.0 -2019,10,7,4,15,0.0,0.0,0.0,15.6,0.0 -2019,10,7,4,30,0.0,0.0,0.0,15.6,0.0 -2019,10,7,4,45,0.0,0.0,0.0,15.6,0.0 -2019,10,7,5,0,0.0,0.0,0.0,15.8,0.0 -2019,10,7,5,15,0.0,0.0,0.0,15.8,0.0 -2019,10,7,5,30,0.0,0.0,0.0,15.8,0.0 -2019,10,7,5,45,0.0,0.0,0.0,15.8,0.0 -2019,10,7,6,0,232.0,2.9130135803147468,48.0,17.5,0.0 -2019,10,7,6,15,232.0,15.373446984642769,48.0,17.5,0.0 -2019,10,7,6,30,232.0,27.91528798042541,48.0,17.5,0.0 -2019,10,7,6,45,232.0,40.48483047906036,48.0,17.5,0.0 -2019,10,7,7,0,478.0,116.35992840513676,106.0,19.7,0.0 -2019,10,7,7,15,478.0,142.03920765832046,106.0,19.7,0.0 -2019,10,7,7,30,478.0,167.4440344925324,106.0,19.7,0.0 -2019,10,7,7,45,478.0,192.4656215390487,106.0,19.7,0.0 -2019,10,7,8,0,551.0,285.9482201023735,158.0,21.9,0.0 -2019,10,7,8,15,551.0,313.5394512112688,158.0,21.9,0.0 -2019,10,7,8,30,551.0,340.3261657572196,158.0,21.9,0.0 -2019,10,7,8,45,551.0,366.19365891616883,158.0,21.9,0.0 -2019,10,7,9,0,620.0,450.21292288370114,188.0,23.6,0.2 -2019,10,7,9,15,620.0,476.88209936668176,188.0,23.6,0.2 -2019,10,7,9,30,620.0,502.15842508796567,188.0,23.6,0.2 -2019,10,7,9,45,620.0,525.9336629403222,188.0,23.6,0.2 -2019,10,7,10,0,753.0,608.3545496613474,171.0,26.2,1.3 -2019,10,7,10,15,753.0,633.2211580930955,171.0,26.2,1.3 -2019,10,7,10,30,753.0,655.9192268443203,171.0,26.2,1.3 -2019,10,7,10,45,753.0,676.3515592999578,171.0,26.2,1.3 -2019,10,7,11,0,734.0,697.2232473167246,187.0,26.9,0.2 -2019,10,7,11,15,734.0,712.476852824059,187.0,26.9,0.2 -2019,10,7,11,30,734.0,725.2958229773932,187.0,26.9,0.2 -2019,10,7,11,45,734.0,735.6252649785262,187.0,26.9,0.2 -2019,10,7,12,0,871.0,794.2760823751292,134.0,28.4,1.7 -2019,10,7,12,15,871.0,800.480520199533,134.0,28.4,1.7 -2019,10,7,12,30,871.0,803.6120936142408,134.0,28.4,1.7 -2019,10,7,12,45,871.0,803.6573927411232,134.0,28.4,1.7 -2019,10,7,13,0,711.0,712.1608897603686,168.0,28.9,3.7 -2019,10,7,13,15,711.0,707.1695108659424,168.0,28.9,3.7 -2019,10,7,13,30,711.0,699.6906427230502,168.0,28.9,3.7 -2019,10,7,13,45,711.0,689.7563109932569,168.0,28.9,3.7 -2019,10,7,14,0,772.0,670.1136304358025,117.0,28.7,4.1 -2019,10,7,14,15,772.0,654.1445168424146,117.0,28.7,4.1 -2019,10,7,14,30,772.0,635.6812553213434,117.0,28.7,4.1 -2019,10,7,14,45,772.0,614.8029083929537,117.0,28.7,4.1 -2019,10,7,15,0,551.0,450.7357293647619,112.0,27.7,4.1 -2019,10,7,15,15,551.0,432.58531404955403,112.0,27.7,4.1 -2019,10,7,15,30,551.0,412.92363044842637,112.0,27.7,4.1 -2019,10,7,15,45,551.0,391.8348729090754,112.0,27.7,4.1 -2019,10,7,16,0,310.0,207.82195550990153,63.0,26.3,4.1 -2019,10,7,16,15,310.0,194.50699682518788,63.0,26.3,4.1 -2019,10,7,16,30,310.0,180.55099835963648,63.0,26.3,4.1 -2019,10,7,16,45,310.0,166.01372184124054,63.0,26.3,4.1 -2019,10,7,17,0,155.0,47.97870905992752,4.0,25.3,4.0 -2019,10,7,17,15,155.0,40.22328029975049,4.0,25.3,4.0 -2019,10,7,17,30,155.0,32.27378457667528,4.0,25.3,4.0 -2019,10,7,17,45,155.0,24.164262851816908,4.0,25.3,4.0 -2019,10,7,18,0,0.0,0.0,0.0,23.1,3.0 -2019,10,7,18,15,0.0,0.0,0.0,23.1,3.0 -2019,10,7,18,30,0.0,0.0,0.0,23.1,3.0 -2019,10,7,18,45,0.0,0.0,0.0,23.1,3.0 -2019,10,7,19,0,0.0,0.0,0.0,21.6,2.3 -2019,10,7,19,15,0.0,0.0,0.0,21.6,2.3 -2019,10,7,19,30,0.0,0.0,0.0,21.6,2.3 -2019,10,7,19,45,0.0,0.0,0.0,21.6,2.3 -2019,10,7,20,0,0.0,0.0,0.0,20.6,0.2 -2019,10,7,20,15,0.0,0.0,0.0,20.6,0.2 -2019,10,7,20,30,0.0,0.0,0.0,20.6,0.2 -2019,10,7,20,45,0.0,0.0,0.0,20.6,0.2 -2019,10,7,21,0,0.0,0.0,0.0,20.5,1.3 -2019,10,7,21,15,0.0,0.0,0.0,20.5,1.3 -2019,10,7,21,30,0.0,0.0,0.0,20.5,1.3 -2019,10,7,21,45,0.0,0.0,0.0,20.5,1.3 -2019,10,7,22,0,0.0,0.0,0.0,19.3,0.0 -2019,10,7,22,15,0.0,0.0,0.0,19.3,0.0 -2019,10,7,22,30,0.0,0.0,0.0,19.3,0.0 -2019,10,7,22,45,0.0,0.0,0.0,19.3,0.0 -2019,10,7,23,0,0.0,0.0,0.0,18.8,0.0 -2019,10,7,23,15,0.0,0.0,0.0,18.8,0.0 -2019,10,7,23,30,0.0,0.0,0.0,18.8,0.0 -2019,10,7,23,45,0.0,0.0,0.0,18.8,0.0 -2019,10,8,0,0,0.0,0.0,0.0,18.2,0.0 -2019,10,8,0,15,0.0,0.0,0.0,18.2,0.0 -2019,10,8,0,30,0.0,0.0,0.0,18.2,0.0 -2019,10,8,0,45,0.0,0.0,0.0,18.2,0.0 -2019,10,8,1,0,0.0,0.0,0.0,17.1,0.0 -2019,10,8,1,15,0.0,0.0,0.0,17.1,0.0 -2019,10,8,1,30,0.0,0.0,0.0,17.1,0.0 -2019,10,8,1,45,0.0,0.0,0.0,17.1,0.0 -2019,10,8,2,0,0.0,0.0,0.0,16.1,0.0 -2019,10,8,2,15,0.0,0.0,0.0,16.1,0.0 -2019,10,8,2,30,0.0,0.0,0.0,16.1,0.0 -2019,10,8,2,45,0.0,0.0,0.0,16.1,0.0 -2019,10,8,3,0,0.0,0.0,0.0,16.0,0.0 -2019,10,8,3,15,0.0,0.0,0.0,16.0,0.0 -2019,10,8,3,30,0.0,0.0,0.0,16.0,0.0 -2019,10,8,3,45,0.0,0.0,0.0,16.0,0.0 -2019,10,8,4,0,0.0,0.0,0.0,15.9,0.0 -2019,10,8,4,15,0.0,0.0,0.0,15.9,0.0 -2019,10,8,4,30,0.0,0.0,0.0,15.9,0.0 -2019,10,8,4,45,0.0,0.0,0.0,15.9,0.0 -2019,10,8,5,0,0.0,0.0,0.0,15.0,0.8 -2019,10,8,5,15,0.0,0.0,0.0,15.0,0.8 -2019,10,8,5,30,0.0,0.0,0.0,15.0,0.8 -2019,10,8,5,45,0.0,0.0,0.0,15.0,0.8 -2019,10,8,6,0,1.0,16.802025522197084,17.0,16.0,0.0 -2019,10,8,6,15,1.0,16.85569421542022,17.0,16.0,0.0 -2019,10,8,6,30,1.0,16.909713541635806,17.0,16.0,0.0 -2019,10,8,6,45,1.0,16.963852181795794,17.0,16.0,0.0 -2019,10,8,7,0,1.0,44.0178783059315,44.0,16.2,0.0 -2019,10,8,7,15,1.0,44.071560565885136,44.0,16.2,0.0 -2019,10,8,7,30,1.0,44.12466908597813,44.0,16.2,0.0 -2019,10,8,7,45,1.0,44.176976447374074,44.0,16.2,0.0 -2019,10,8,8,0,0.0,68.0,68.0,17.5,1.7 -2019,10,8,8,15,0.0,68.0,68.0,17.5,1.7 -2019,10,8,8,30,0.0,68.0,68.0,17.5,1.7 -2019,10,8,8,45,0.0,68.0,68.0,17.5,1.7 -2019,10,8,9,0,236.0,382.8437659117366,284.0,19.8,0.2 -2019,10,8,9,15,236.0,392.98768499115346,284.0,19.8,0.2 -2019,10,8,9,30,236.0,402.60181772994696,284.0,19.8,0.2 -2019,10,8,9,45,236.0,411.6449949357411,284.0,19.8,0.2 -2019,10,8,10,0,665.0,584.4415144196844,201.0,23.1,1.6 -2019,10,8,10,15,665.0,606.3856805292342,201.0,23.1,1.6 -2019,10,8,10,30,665.0,626.416164075471,201.0,23.1,1.6 -2019,10,8,10,45,665.0,644.4471914527147,201.0,23.1,1.6 -2019,10,8,11,0,837.0,727.224207842243,149.0,25.2,2.2 -2019,10,8,11,15,837.0,744.605328152449,149.0,25.2,2.2 -2019,10,8,11,30,837.0,759.2122394417772,149.0,25.2,2.2 -2019,10,8,11,45,837.0,770.9823926735925,149.0,25.2,2.2 -2019,10,8,12,0,950.0,823.0359819982451,107.0,26.8,2.7 -2019,10,8,12,15,950.0,829.7981155584707,107.0,26.8,2.7 -2019,10,8,12,30,950.0,833.2111754171118,107.0,26.8,2.7 -2019,10,8,12,45,950.0,833.2605463278711,107.0,26.8,2.7 -2019,10,8,13,0,840.0,766.2364780806532,127.0,27.1,3.3 -2019,10,8,13,15,840.0,760.3438900275061,127.0,27.1,3.3 -2019,10,8,13,30,840.0,751.5146887182084,127.0,27.1,3.3 -2019,10,8,13,45,840.0,739.7866821482503,127.0,27.1,3.3 -2019,10,8,14,0,730.0,645.8730556581725,126.0,26.6,4.5 -2019,10,8,14,15,730.0,630.7839942067442,126.0,26.6,4.5 -2019,10,8,14,30,730.0,613.3382364283922,126.0,26.6,4.5 -2019,10,8,14,45,730.0,593.6104877362447,126.0,26.6,4.5 -2019,10,8,15,0,537.0,439.853378121162,112.0,26.0,3.6 -2019,10,8,15,15,537.0,422.17733261038524,112.0,26.0,3.6 -2019,10,8,15,30,537.0,403.0295165347482,112.0,26.0,3.6 -2019,10,8,15,45,537.0,382.491923782313,112.0,26.0,3.6 -2019,10,8,16,0,320.0,209.17281160714126,61.0,24.9,3.9 -2019,10,8,16,15,320.0,195.43859270926217,61.0,24.9,3.9 -2019,10,8,16,30,320.0,181.04314902798336,61.0,24.9,3.9 -2019,10,8,16,45,320.0,166.04812406317689,61.0,24.9,3.9 -2019,10,8,17,0,160.0,47.75886440691,3.0,23.6,3.9 -2019,10,8,17,15,160.0,39.75923340832015,3.0,23.6,3.9 -2019,10,8,17,30,160.0,31.559424683880454,3.0,23.6,3.9 -2019,10,8,17,45,160.0,23.194551073406547,3.0,23.6,3.9 -2019,10,8,18,0,0.0,0.0,0.0,21.5,2.6 -2019,10,8,18,15,0.0,0.0,0.0,21.5,2.6 -2019,10,8,18,30,0.0,0.0,0.0,21.5,2.6 -2019,10,8,18,45,0.0,0.0,0.0,21.5,2.6 -2019,10,8,19,0,0.0,0.0,0.0,19.9,2.3 -2019,10,8,19,15,0.0,0.0,0.0,19.9,2.3 -2019,10,8,19,30,0.0,0.0,0.0,19.9,2.3 -2019,10,8,19,45,0.0,0.0,0.0,19.9,2.3 -2019,10,8,20,0,0.0,0.0,0.0,19.3,0.0 -2019,10,8,20,15,0.0,0.0,0.0,19.3,0.0 -2019,10,8,20,30,0.0,0.0,0.0,19.3,0.0 -2019,10,8,20,45,0.0,0.0,0.0,19.3,0.0 -2019,10,8,21,0,0.0,0.0,0.0,18.8,0.0 -2019,10,8,21,15,0.0,0.0,0.0,18.8,0.0 -2019,10,8,21,30,0.0,0.0,0.0,18.8,0.0 -2019,10,8,21,45,0.0,0.0,0.0,18.8,0.0 -2019,10,8,22,0,0.0,0.0,0.0,17.7,0.0 -2019,10,8,22,15,0.0,0.0,0.0,17.7,0.0 -2019,10,8,22,30,0.0,0.0,0.0,17.7,0.0 -2019,10,8,22,45,0.0,0.0,0.0,17.7,0.0 -2019,10,8,23,0,0.0,0.0,0.0,17.2,0.0 -2019,10,8,23,15,0.0,0.0,0.0,17.2,0.0 -2019,10,8,23,30,0.0,0.0,0.0,17.2,0.0 -2019,10,8,23,45,0.0,0.0,0.0,17.2,0.0 -2019,10,9,0,0,0.0,0.0,0.0,17.1,0.0 -2019,10,9,0,15,0.0,0.0,0.0,17.1,0.0 -2019,10,9,0,30,0.0,0.0,0.0,17.1,0.0 -2019,10,9,0,45,0.0,0.0,0.0,17.1,0.0 -2019,10,9,1,0,0.0,0.0,0.0,16.0,0.0 -2019,10,9,1,15,0.0,0.0,0.0,16.0,0.0 -2019,10,9,1,30,0.0,0.0,0.0,16.0,0.0 -2019,10,9,1,45,0.0,0.0,0.0,16.0,0.0 -2019,10,9,2,0,0.0,0.0,0.0,15.2,0.0 -2019,10,9,2,15,0.0,0.0,0.0,15.2,0.0 -2019,10,9,2,30,0.0,0.0,0.0,15.2,0.0 -2019,10,9,2,45,0.0,0.0,0.0,15.2,0.0 -2019,10,9,3,0,0.0,0.0,0.0,16.8,0.0 -2019,10,9,3,15,0.0,0.0,0.0,16.8,0.0 -2019,10,9,3,30,0.0,0.0,0.0,16.8,0.0 -2019,10,9,3,45,0.0,0.0,0.0,16.8,0.0 -2019,10,9,4,0,0.0,0.0,0.0,17.0,1.3 -2019,10,9,4,15,0.0,0.0,0.0,17.0,1.3 -2019,10,9,4,30,0.0,0.0,0.0,17.0,1.3 -2019,10,9,4,45,0.0,0.0,0.0,17.0,1.3 -2019,10,9,5,0,0.0,0.0,0.0,17.1,1.1 -2019,10,9,5,15,0.0,0.0,0.0,17.1,1.1 -2019,10,9,5,30,0.0,0.0,0.0,17.1,1.1 -2019,10,9,5,45,0.0,0.0,0.0,17.1,1.1 -2019,10,9,6,0,1.0,16.798418476037188,17.0,16.8,0.4 -2019,10,9,6,15,1.0,16.85204484297429,17.0,16.8,0.4 -2019,10,9,6,30,1.0,16.90602156637406,17.0,16.8,0.4 -2019,10,9,6,45,1.0,16.96011750962024,17.0,16.8,0.4 -2019,10,9,7,0,1.0,44.01410102557889,44.0,16.8,0.9 -2019,10,9,7,15,1.0,44.06774094854698,44.0,16.8,0.9 -2019,10,9,7,30,1.0,44.12080758413939,44.0,16.8,0.9 -2019,10,9,7,45,1.0,44.1730736928756,44.0,16.8,0.9 -2019,10,9,8,0,1.0,88.22431546325394,88.0,18.5,0.0 -2019,10,9,8,15,1.0,88.27431347014691,88.0,18.5,0.0 -2019,10,9,8,30,1.0,88.3228536144131,88.0,18.5,0.0 -2019,10,9,8,45,1.0,88.3697280397028,88.0,18.5,0.0 -2019,10,9,9,0,166.0,358.8461797400789,290.0,20.2,0.2 -2019,10,9,9,15,166.0,365.97568207950974,290.0,20.2,0.2 -2019,10,9,9,30,166.0,372.7328319853986,290.0,20.2,0.2 -2019,10,9,9,45,166.0,379.08869430447214,290.0,20.2,0.2 -2019,10,9,10,0,569.0,557.6875526210381,232.0,22.0,1.5 -2019,10,9,10,15,569.0,576.4490310286005,232.0,22.0,1.5 -2019,10,9,10,30,569.0,593.5743791812569,232.0,22.0,1.5 -2019,10,9,10,45,569.0,608.9902637090863,232.0,22.0,1.5 -2019,10,9,11,0,20.0,310.73042781820214,297.0,24.0,1.6 -2019,10,9,11,15,20.0,311.14541975457246,297.0,24.0,1.6 -2019,10,9,11,30,20.0,311.4941746272251,297.0,24.0,1.6 -2019,10,9,11,45,20.0,311.77519901425376,297.0,24.0,1.6 -2019,10,9,12,0,29.0,324.73156981282955,303.0,24.5,2.7 -2019,10,9,12,15,29.0,324.9378300399693,303.0,24.5,2.7 -2019,10,9,12,30,29.0,325.0419360141289,303.0,24.5,2.7 -2019,10,9,12,45,29.0,325.04344193754446,303.0,24.5,2.7 -2019,10,9,13,0,47.0,315.56172565504033,280.0,25.5,3.1 -2019,10,9,13,15,47.0,315.2322813477105,280.0,25.5,3.1 -2019,10,9,13,30,47.0,314.7386561216838,280.0,25.5,3.1 -2019,10,9,13,45,47.0,314.08296375596075,280.0,25.5,3.1 -2019,10,9,14,0,70.0,274.5481030173204,225.0,24.9,3.2 -2019,10,9,14,15,70.0,273.1023478212299,225.0,24.9,3.2 -2019,10,9,14,30,70.0,271.4307862705675,225.0,24.9,3.2 -2019,10,9,14,45,70.0,269.5405762485161,225.0,24.9,3.2 -2019,10,9,15,0,215.0,280.35085091121096,150.0,23.9,4.1 -2019,10,9,15,15,215.0,273.27943078905355,150.0,23.9,4.1 -2019,10,9,15,30,215.0,265.61921901770023,150.0,23.9,4.1 -2019,10,9,15,45,215.0,257.40301779997304,150.0,23.9,4.1 -2019,10,9,16,0,75.0,94.41837564099782,60.0,22.7,4.4 -2019,10,9,16,15,75.0,91.20195674593953,60.0,22.7,4.4 -2019,10,9,16,30,75.0,87.830685514318,60.0,22.7,4.4 -2019,10,9,16,45,75.0,84.31899824711402,60.0,22.7,4.4 -2019,10,9,17,0,37.0,14.203086713976022,4.0,21.6,4.5 -2019,10,9,17,15,37.0,12.354630996994496,4.0,21.6,4.5 -2019,10,9,17,30,37.0,10.459920688791872,4.0,21.6,4.5 -2019,10,9,17,45,37.0,8.527069229789076,4.0,21.6,4.5 -2019,10,9,18,0,0.0,0.0,0.0,21.0,3.9 -2019,10,9,18,15,0.0,0.0,0.0,21.0,3.9 -2019,10,9,18,30,0.0,0.0,0.0,21.0,3.9 -2019,10,9,18,45,0.0,0.0,0.0,21.0,3.9 -2019,10,9,19,0,0.0,0.0,0.0,19.9,2.7 -2019,10,9,19,15,0.0,0.0,0.0,19.9,2.7 -2019,10,9,19,30,0.0,0.0,0.0,19.9,2.7 -2019,10,9,19,45,0.0,0.0,0.0,19.9,2.7 -2019,10,9,20,0,0.0,0.0,0.0,18.9,3.2 -2019,10,9,20,15,0.0,0.0,0.0,18.9,3.2 -2019,10,9,20,30,0.0,0.0,0.0,18.9,3.2 -2019,10,9,20,45,0.0,0.0,0.0,18.9,3.2 -2019,10,9,21,0,0.0,0.0,0.0,18.8,0.2 -2019,10,9,21,15,0.0,0.0,0.0,18.8,0.2 -2019,10,9,21,30,0.0,0.0,0.0,18.8,0.2 -2019,10,9,21,45,0.0,0.0,0.0,18.8,0.2 -2019,10,9,22,0,0.0,0.0,0.0,18.2,1.1 -2019,10,9,22,15,0.0,0.0,0.0,18.2,1.1 -2019,10,9,22,30,0.0,0.0,0.0,18.2,1.1 -2019,10,9,22,45,0.0,0.0,0.0,18.2,1.1 -2019,10,9,23,0,0.0,0.0,0.0,18.3,2.1 -2019,10,9,23,15,0.0,0.0,0.0,18.3,2.1 -2019,10,9,23,30,0.0,0.0,0.0,18.3,2.1 -2019,10,9,23,45,0.0,0.0,0.0,18.3,2.1 -2019,10,10,0,0,0.0,0.0,0.0,18.2,2.1 -2019,10,10,0,15,0.0,0.0,0.0,18.2,2.1 -2019,10,10,0,30,0.0,0.0,0.0,18.2,2.1 -2019,10,10,0,45,0.0,0.0,0.0,18.2,2.1 -2019,10,10,1,0,0.0,0.0,0.0,17.2,2.0 -2019,10,10,1,15,0.0,0.0,0.0,17.2,2.0 -2019,10,10,1,30,0.0,0.0,0.0,17.2,2.0 -2019,10,10,1,45,0.0,0.0,0.0,17.2,2.0 -2019,10,10,2,0,0.0,0.0,0.0,16.6,0.3 -2019,10,10,2,15,0.0,0.0,0.0,16.6,0.3 -2019,10,10,2,30,0.0,0.0,0.0,16.6,0.3 -2019,10,10,2,45,0.0,0.0,0.0,16.6,0.3 -2019,10,10,3,0,0.0,0.0,0.0,16.1,2.3 -2019,10,10,3,15,0.0,0.0,0.0,16.1,2.3 -2019,10,10,3,30,0.0,0.0,0.0,16.1,2.3 -2019,10,10,3,45,0.0,0.0,0.0,16.1,2.3 -2019,10,10,4,0,0.0,0.0,0.0,16.0,0.0 -2019,10,10,4,15,0.0,0.0,0.0,16.0,0.0 -2019,10,10,4,30,0.0,0.0,0.0,16.0,0.0 -2019,10,10,4,45,0.0,0.0,0.0,16.0,0.0 -2019,10,10,5,0,0.0,0.0,0.0,15.5,0.0 -2019,10,10,5,15,0.0,0.0,0.0,15.5,0.0 -2019,10,10,5,30,0.0,0.0,0.0,15.5,0.0 -2019,10,10,5,45,0.0,0.0,0.0,15.5,0.0 -2019,10,10,6,0,1.0,26.79483949656885,27.0,16.4,0.0 -2019,10,10,6,15,1.0,26.848421334308068,27.0,16.4,0.0 -2019,10,10,6,30,1.0,26.902353237587906,27.0,16.4,0.0 -2019,10,10,6,45,1.0,26.956404261718745,27.0,16.4,0.0 -2019,10,10,7,0,2.0,53.020685903834384,53.0,17.4,0.0 -2019,10,10,7,15,2.0,53.127876668862,53.0,17.4,0.0 -2019,10,10,7,30,2.0,53.23392181120826,53.0,17.4,0.0 -2019,10,10,7,45,2.0,53.338367229293304,53.0,17.4,0.0 -2019,10,10,8,0,2.0,107.44076567180213,107.0,19.2,0.0 -2019,10,10,8,15,2.0,107.5406786528834,107.0,19.2,0.0 -2019,10,10,8,30,2.0,107.63767832981324,107.0,19.2,0.0 -2019,10,10,8,45,2.0,107.73134933508335,107.0,19.2,0.0 -2019,10,10,9,0,6.0,190.46387166520563,188.0,20.7,1.9 -2019,10,10,9,15,6.0,190.72135054297044,188.0,20.7,1.9 -2019,10,10,9,30,6.0,190.965382074461,188.0,20.7,1.9 -2019,10,10,9,45,6.0,191.19492127919509,188.0,20.7,1.9 -2019,10,10,10,0,8.0,242.54531364674466,238.0,21.2,0.4 -2019,10,10,10,15,8.0,242.80887638310472,238.0,21.2,0.4 -2019,10,10,10,30,8.0,243.04945463190697,238.0,21.2,0.4 -2019,10,10,10,45,8.0,243.26601820015583,238.0,21.2,0.4 -2019,10,10,11,0,6.0,249.09322979705345,245.0,21.8,2.7 -2019,10,10,11,15,6.0,249.21762400013506,245.0,21.8,2.7 -2019,10,10,11,30,6.0,249.32216358428676,245.0,21.8,2.7 -2019,10,10,11,45,6.0,249.40640089496,245.0,21.8,2.7 -2019,10,10,12,0,12.0,268.9399504301163,260.0,22.3,0.4 -2019,10,10,12,15,12.0,269.0252286191649,260.0,22.3,0.4 -2019,10,10,12,30,12.0,269.0682711827681,260.0,22.3,0.4 -2019,10,10,12,45,12.0,269.06889380606054,260.0,22.3,0.4 -2019,10,10,13,0,26.0,274.558703282893,255.0,22.9,3.5 -2019,10,10,13,15,26.0,274.3766088254979,255.0,22.9,3.5 -2019,10,10,13,30,26.0,274.1037662973679,255.0,22.9,3.5 -2019,10,10,13,45,26.0,273.7413440520961,255.0,22.9,3.5 -2019,10,10,14,0,101.0,301.0530883759638,230.0,23.7,6.7 -2019,10,10,14,15,101.0,298.9688023108488,230.0,23.7,6.7 -2019,10,10,14,30,101.0,296.5589804707138,230.0,23.7,6.7 -2019,10,10,14,45,101.0,293.8339420826408,230.0,23.7,6.7 -2019,10,10,15,0,279.0,310.96727103012194,143.0,22.7,6.6 -2019,10,10,15,15,279.0,301.79848975206414,143.0,22.7,6.6 -2019,10,10,15,30,279.0,291.8662830578146,143.0,22.7,6.6 -2019,10,10,15,45,279.0,281.2131821812583,143.0,22.7,6.6 -2019,10,10,16,0,112.0,111.93583583374316,61.0,21.3,5.8 -2019,10,10,16,15,112.0,107.13663865764474,61.0,21.3,5.8 -2019,10,10,16,30,112.0,102.1063873432037,61.0,21.3,5.8 -2019,10,10,16,45,112.0,96.86662219880678,61.0,21.3,5.8 -2019,10,10,17,0,56.0,17.219890351612797,2.0,20.4,5.0 -2019,10,10,17,15,56.0,14.424550712444038,2.0,20.4,5.0 -2019,10,10,17,30,56.0,11.559262255380409,2.0,20.4,5.0 -2019,10,10,17,45,56.0,8.636294585482135,2.0,20.4,5.0 -2019,10,10,18,0,0.0,0.0,0.0,18.8,4.5 -2019,10,10,18,15,0.0,0.0,0.0,18.8,4.5 -2019,10,10,18,30,0.0,0.0,0.0,18.8,4.5 -2019,10,10,18,45,0.0,0.0,0.0,18.8,4.5 -2019,10,10,19,0,0.0,0.0,0.0,17.8,3.7 -2019,10,10,19,15,0.0,0.0,0.0,17.8,3.7 -2019,10,10,19,30,0.0,0.0,0.0,17.8,3.7 -2019,10,10,19,45,0.0,0.0,0.0,17.8,3.7 -2019,10,10,20,0,0.0,0.0,0.0,17.7,4.4 -2019,10,10,20,15,0.0,0.0,0.0,17.7,4.4 -2019,10,10,20,30,0.0,0.0,0.0,17.7,4.4 -2019,10,10,20,45,0.0,0.0,0.0,17.7,4.4 -2019,10,10,21,0,0.0,0.0,0.0,17.1,2.9 -2019,10,10,21,15,0.0,0.0,0.0,17.1,2.9 -2019,10,10,21,30,0.0,0.0,0.0,17.1,2.9 -2019,10,10,21,45,0.0,0.0,0.0,17.1,2.9 -2019,10,10,22,0,0.0,0.0,0.0,16.6,1.3 -2019,10,10,22,15,0.0,0.0,0.0,16.6,1.3 -2019,10,10,22,30,0.0,0.0,0.0,16.6,1.3 -2019,10,10,22,45,0.0,0.0,0.0,16.6,1.3 -2019,10,10,23,0,0.0,0.0,0.0,16.0,0.0 -2019,10,10,23,15,0.0,0.0,0.0,16.0,0.0 -2019,10,10,23,30,0.0,0.0,0.0,16.0,0.0 -2019,10,10,23,45,0.0,0.0,0.0,16.0,0.0 -2019,10,11,0,0,0.0,0.0,0.0,15.5,0.2 -2019,10,11,0,15,0.0,0.0,0.0,15.5,0.2 -2019,10,11,0,30,0.0,0.0,0.0,15.5,0.2 -2019,10,11,0,45,0.0,0.0,0.0,15.5,0.2 -2019,10,11,1,0,0.0,0.0,0.0,14.4,1.3 -2019,10,11,1,15,0.0,0.0,0.0,14.4,1.3 -2019,10,11,1,30,0.0,0.0,0.0,14.4,1.3 -2019,10,11,1,45,0.0,0.0,0.0,14.4,1.3 -2019,10,11,2,0,0.0,0.0,0.0,14.3,0.0 -2019,10,11,2,15,0.0,0.0,0.0,14.3,0.0 -2019,10,11,2,30,0.0,0.0,0.0,14.3,0.0 -2019,10,11,2,45,0.0,0.0,0.0,14.3,0.0 -2019,10,11,3,0,0.0,0.0,0.0,13.8,0.0 -2019,10,11,3,15,0.0,0.0,0.0,13.8,0.0 -2019,10,11,3,30,0.0,0.0,0.0,13.8,0.0 -2019,10,11,3,45,0.0,0.0,0.0,13.8,0.0 -2019,10,11,4,0,0.0,0.0,0.0,13.3,0.0 -2019,10,11,4,15,0.0,0.0,0.0,13.3,0.0 -2019,10,11,4,30,0.0,0.0,0.0,13.3,0.0 -2019,10,11,4,45,0.0,0.0,0.0,13.3,0.0 -2019,10,11,5,0,0.0,0.0,0.0,13.3,0.0 -2019,10,11,5,15,0.0,0.0,0.0,13.3,0.0 -2019,10,11,5,30,0.0,0.0,0.0,13.3,0.0 -2019,10,11,5,45,0.0,0.0,0.0,13.3,0.0 -2019,10,11,6,0,3.0,15.373868968912141,16.0,13.6,0.2 -2019,10,11,6,15,3.0,15.534474449550547,16.0,13.6,0.2 -2019,10,11,6,30,3.0,15.696129211937746,16.0,13.6,0.2 -2019,10,11,6,45,3.0,15.858141025563505,16.0,13.6,0.2 -2019,10,11,7,0,6.0,72.03963226193873,72.0,16.3,1.3 -2019,10,11,7,15,6.0,72.36092442106636,72.0,16.3,1.3 -2019,10,11,7,30,6.0,72.67878270615883,72.0,16.3,1.3 -2019,10,11,7,45,6.0,72.99184599924087,72.0,16.3,1.3 -2019,10,11,8,0,4.0,123.8658491434861,123.0,17.8,0.3 -2019,10,11,8,15,4.0,124.06550102834896,123.0,17.8,0.3 -2019,10,11,8,30,4.0,124.25933138072705,123.0,17.8,0.3 -2019,10,11,8,45,4.0,124.4465101892941,123.0,17.8,0.3 -2019,10,11,9,0,4.0,170.62623592565564,169.0,17.5,2.7 -2019,10,11,9,15,4.0,170.79773897661653,169.0,17.5,2.7 -2019,10,11,9,30,4.0,170.96028493978295,169.0,17.5,2.7 -2019,10,11,9,45,4.0,171.11317776838612,169.0,17.5,2.7 -2019,10,11,10,0,0.0,97.0,97.0,15.1,2.9 -2019,10,11,10,15,0.0,97.0,97.0,15.1,2.9 -2019,10,11,10,30,0.0,97.0,97.0,15.1,2.9 -2019,10,11,10,45,0.0,97.0,97.0,15.1,2.9 -2019,10,11,11,0,0.0,102.0,102.0,16.4,1.3 -2019,10,11,11,15,0.0,102.0,102.0,16.4,1.3 -2019,10,11,11,30,0.0,102.0,102.0,16.4,1.3 -2019,10,11,11,45,0.0,102.0,102.0,16.4,1.3 -2019,10,11,12,0,6.0,234.44370983214347,230.0,18.4,0.3 -2019,10,11,12,15,6.0,234.48631178185258,230.0,18.4,0.3 -2019,10,11,12,30,6.0,234.5078143155066,230.0,18.4,0.3 -2019,10,11,12,45,6.0,234.5081253559554,230.0,18.4,0.3 -2019,10,11,13,0,47.0,310.15007464166155,275.0,19.3,2.5 -2019,10,11,13,15,47.0,309.82119064706274,275.0,19.3,2.5 -2019,10,11,13,30,47.0,309.3284049696101,275.0,19.3,2.5 -2019,10,11,13,45,47.0,308.6738277932285,275.0,19.3,2.5 -2019,10,11,14,0,44.0,238.7627985784405,208.0,18.8,1.9 -2019,10,11,14,15,44.0,237.85558377221685,208.0,18.8,1.9 -2019,10,11,14,30,44.0,236.8066749442384,208.0,18.8,1.9 -2019,10,11,14,45,44.0,235.620563683138,208.0,18.8,1.9 -2019,10,11,15,0,8.0,94.78224165444195,90.0,17.2,4.4 -2019,10,11,15,15,8.0,94.51956655926966,90.0,17.2,4.4 -2019,10,11,15,30,8.0,94.23502019922871,90.0,17.2,4.4 -2019,10,11,15,45,8.0,93.92982104551717,90.0,17.2,4.4 -2019,10,11,16,0,3.0,23.351978502912345,22.0,15.4,2.9 -2019,10,11,16,15,3.0,23.223540564119745,22.0,15.4,2.9 -2019,10,11,16,30,3.0,23.08891906666321,22.0,15.4,2.9 -2019,10,11,16,45,3.0,22.948690480462307,22.0,15.4,2.9 -2019,10,11,17,0,1.0,2.2678184286171454,2.0,13.8,1.5 -2019,10,11,17,15,1.0,2.217945134076946,2.0,13.8,1.5 -2019,10,11,17,30,1.0,2.166823841637411,2.0,13.8,1.5 -2019,10,11,17,45,1.0,2.114673460521051,2.0,13.8,1.5 -2019,10,11,18,0,0.0,0.0,0.0,13.3,1.6 -2019,10,11,18,15,0.0,0.0,0.0,13.3,1.6 -2019,10,11,18,30,0.0,0.0,0.0,13.3,1.6 -2019,10,11,18,45,0.0,0.0,0.0,13.3,1.6 -2019,10,11,19,0,0.0,0.0,0.0,13.3,2.3 -2019,10,11,19,15,0.0,0.0,0.0,13.3,2.3 -2019,10,11,19,30,0.0,0.0,0.0,13.3,2.3 -2019,10,11,19,45,0.0,0.0,0.0,13.3,2.3 -2019,10,11,20,0,0.0,0.0,0.0,13.2,0.0 -2019,10,11,20,15,0.0,0.0,0.0,13.2,0.0 -2019,10,11,20,30,0.0,0.0,0.0,13.2,0.0 -2019,10,11,20,45,0.0,0.0,0.0,13.2,0.0 -2019,10,11,21,0,0.0,0.0,0.0,12.7,0.0 -2019,10,11,21,15,0.0,0.0,0.0,12.7,0.0 -2019,10,11,21,30,0.0,0.0,0.0,12.7,0.0 -2019,10,11,21,45,0.0,0.0,0.0,12.7,0.0 -2019,10,11,22,0,0.0,0.0,0.0,12.1,0.0 -2019,10,11,22,15,0.0,0.0,0.0,12.1,0.0 -2019,10,11,22,30,0.0,0.0,0.0,12.1,0.0 -2019,10,11,22,45,0.0,0.0,0.0,12.1,0.0 -2019,10,11,23,0,0.0,0.0,0.0,11.7,0.0 -2019,10,11,23,15,0.0,0.0,0.0,11.7,0.0 -2019,10,11,23,30,0.0,0.0,0.0,11.7,0.0 -2019,10,11,23,45,0.0,0.0,0.0,11.7,0.0 -2019,10,12,0,0,0.0,0.0,0.0,11.6,0.0 -2019,10,12,0,15,0.0,0.0,0.0,11.6,0.0 -2019,10,12,0,30,0.0,0.0,0.0,11.6,0.0 -2019,10,12,0,45,0.0,0.0,0.0,11.6,0.0 -2019,10,12,1,0,0.0,0.0,0.0,11.2,0.0 -2019,10,12,1,15,0.0,0.0,0.0,11.2,0.0 -2019,10,12,1,30,0.0,0.0,0.0,11.2,0.0 -2019,10,12,1,45,0.0,0.0,0.0,11.2,0.0 -2019,10,12,2,0,0.0,0.0,0.0,11.8,0.0 -2019,10,12,2,15,0.0,0.0,0.0,11.8,0.0 -2019,10,12,2,30,0.0,0.0,0.0,11.8,0.0 -2019,10,12,2,45,0.0,0.0,0.0,11.8,0.0 -2019,10,12,3,0,0.0,0.0,0.0,11.2,0.0 -2019,10,12,3,15,0.0,0.0,0.0,11.2,0.0 -2019,10,12,3,30,0.0,0.0,0.0,11.2,0.0 -2019,10,12,3,45,0.0,0.0,0.0,11.2,0.0 -2019,10,12,4,0,0.0,0.0,0.0,11.7,0.0 -2019,10,12,4,15,0.0,0.0,0.0,11.7,0.0 -2019,10,12,4,30,0.0,0.0,0.0,11.7,0.0 -2019,10,12,4,45,0.0,0.0,0.0,11.7,0.0 -2019,10,12,5,0,0.0,0.0,0.0,11.8,0.0 -2019,10,12,5,15,0.0,0.0,0.0,11.8,0.0 -2019,10,12,5,30,0.0,0.0,0.0,11.8,0.0 -2019,10,12,5,45,0.0,0.0,0.0,11.8,0.0 -2019,10,12,6,0,5.0,17.938850030140564,19.0,13.0,0.0 -2019,10,12,6,15,5.0,18.20628198777917,19.0,13.0,0.0 -2019,10,12,6,30,5.0,18.475461155233276,19.0,13.0,0.0 -2019,10,12,6,45,5.0,18.745234865982702,19.0,13.0,0.0 -2019,10,12,7,0,103.0,126.29762689618101,126.0,14.6,0.0 -2019,10,12,7,15,103.0,131.80811785018366,126.0,14.6,0.0 -2019,10,12,7,30,103.0,137.2597143330006,126.0,14.6,0.0 -2019,10,12,7,45,103.0,142.629071771548,126.0,14.6,0.0 -2019,10,12,8,0,2.0,100.42511063597972,100.0,16.2,0.2 -2019,10,12,8,15,2.0,100.52484564041956,100.0,16.2,0.2 -2019,10,12,8,30,2.0,100.62167253022469,100.0,16.2,0.2 -2019,10,12,8,45,2.0,100.71517667778784,100.0,16.2,0.2 -2019,10,12,9,0,3.0,164.2074365259912,163.0,17.2,1.5 -2019,10,12,9,15,3.0,164.3359466391873,163.0,17.2,1.5 -2019,10,12,9,30,3.0,164.4577450562362,163.0,17.2,1.5 -2019,10,12,9,45,3.0,164.57231021761723,163.0,17.2,1.5 -2019,10,12,10,0,2.0,178.11943435848062,177.0,17.4,1.5 -2019,10,12,10,15,2.0,178.1852076704081,177.0,17.4,1.5 -2019,10,12,10,30,2.0,178.24524509610782,177.0,17.4,1.5 -2019,10,12,10,45,2.0,178.29928954610585,177.0,17.4,1.5 -2019,10,12,11,0,4.0,224.69421918754048,222.0,19.0,1.5 -2019,10,12,11,15,4.0,224.77700093263084,222.0,19.0,1.5 -2019,10,12,11,30,4.0,224.84656984334143,222.0,19.0,1.5 -2019,10,12,11,45,4.0,224.90262801491616,222.0,19.0,1.5 -2019,10,12,12,0,9.0,251.62610464473084,245.0,19.5,1.3 -2019,10,12,12,15,9.0,251.68994935593355,245.0,19.5,1.3 -2019,10,12,12,30,9.0,251.72217377431448,245.0,19.5,1.3 -2019,10,12,12,45,9.0,251.72263990996697,245.0,19.5,1.3 -2019,10,12,13,0,23.0,263.1001058485568,246.0,19.9,0.2 -2019,10,12,13,15,23.0,262.9393092308919,246.0,19.9,0.2 -2019,10,12,13,30,23.0,262.69837847272373,246.0,19.9,0.2 -2019,10,12,13,45,23.0,262.3783452765471,246.0,19.9,0.2 -2019,10,12,14,0,22.0,199.28577224435173,184.0,19.5,1.3 -2019,10,12,14,15,22.0,198.83257806194393,184.0,19.5,1.3 -2019,10,12,14,30,22.0,198.30860140784284,184.0,19.5,1.3 -2019,10,12,14,45,22.0,197.7160860305237,184.0,19.5,1.3 -2019,10,12,15,0,21.0,122.46404330035152,110.0,19.8,0.2 -2019,10,12,15,15,21.0,121.7751493064055,110.0,19.8,0.2 -2019,10,12,15,30,21.0,121.02889554259573,110.0,19.8,0.2 -2019,10,12,15,45,21.0,120.22847758210587,110.0,19.8,0.2 -2019,10,12,16,0,8.0,35.57231350000955,32.0,19.7,2.0 -2019,10,12,16,15,8.0,35.23012433665261,32.0,19.7,2.0 -2019,10,12,16,30,8.0,34.87146070488179,32.0,19.7,2.0 -2019,10,12,16,45,8.0,34.497858457431384,32.0,19.7,2.0 -2019,10,12,17,0,4.0,3.0554587082407076,2.0,19.3,3.5 -2019,10,12,17,15,4.0,2.856147261486759,2.0,19.3,3.5 -2019,10,12,17,30,4.0,2.651848370667693,2.0,19.3,3.5 -2019,10,12,17,45,4.0,2.4434368749985342,2.0,19.3,3.5 -2019,10,12,18,0,0.0,0.0,0.0,18.2,3.1 -2019,10,12,18,15,0.0,0.0,0.0,18.2,3.1 -2019,10,12,18,30,0.0,0.0,0.0,18.2,3.1 -2019,10,12,18,45,0.0,0.0,0.0,18.2,3.1 -2019,10,12,19,0,0.0,0.0,0.0,17.7,2.9 -2019,10,12,19,15,0.0,0.0,0.0,17.7,2.9 -2019,10,12,19,30,0.0,0.0,0.0,17.7,2.9 -2019,10,12,19,45,0.0,0.0,0.0,17.7,2.9 -2019,10,12,20,0,0.0,0.0,0.0,17.1,1.5 -2019,10,12,20,15,0.0,0.0,0.0,17.1,1.5 -2019,10,12,20,30,0.0,0.0,0.0,17.1,1.5 -2019,10,12,20,45,0.0,0.0,0.0,17.1,1.5 -2019,10,12,21,0,0.0,0.0,0.0,16.0,1.3 -2019,10,12,21,15,0.0,0.0,0.0,16.0,1.3 -2019,10,12,21,30,0.0,0.0,0.0,16.0,1.3 -2019,10,12,21,45,0.0,0.0,0.0,16.0,1.3 -2019,10,12,22,0,0.0,0.0,0.0,15.5,0.0 -2019,10,12,22,15,0.0,0.0,0.0,15.5,0.0 -2019,10,12,22,30,0.0,0.0,0.0,15.5,0.0 -2019,10,12,22,45,0.0,0.0,0.0,15.5,0.0 -2019,10,12,23,0,0.0,0.0,0.0,14.3,0.0 -2019,10,12,23,15,0.0,0.0,0.0,14.3,0.0 -2019,10,12,23,30,0.0,0.0,0.0,14.3,0.0 -2019,10,12,23,45,0.0,0.0,0.0,14.3,0.0 -2019,10,13,0,0,0.0,0.0,0.0,13.7,0.0 -2019,10,13,0,15,0.0,0.0,0.0,13.7,0.0 -2019,10,13,0,30,0.0,0.0,0.0,13.7,0.0 -2019,10,13,0,45,0.0,0.0,0.0,13.7,0.0 -2019,10,13,1,0,0.0,0.0,0.0,12.3,0.0 -2019,10,13,1,15,0.0,0.0,0.0,12.3,0.0 -2019,10,13,1,30,0.0,0.0,0.0,12.3,0.0 -2019,10,13,1,45,0.0,0.0,0.0,12.3,0.0 -2019,10,13,2,0,0.0,0.0,0.0,12.7,0.0 -2019,10,13,2,15,0.0,0.0,0.0,12.7,0.0 -2019,10,13,2,30,0.0,0.0,0.0,12.7,0.0 -2019,10,13,2,45,0.0,0.0,0.0,12.7,0.0 -2019,10,13,3,0,0.0,0.0,0.0,11.7,0.0 -2019,10,13,3,15,0.0,0.0,0.0,11.7,0.0 -2019,10,13,3,30,0.0,0.0,0.0,11.7,0.0 -2019,10,13,3,45,0.0,0.0,0.0,11.7,0.0 -2019,10,13,4,0,0.0,0.0,0.0,11.6,0.0 -2019,10,13,4,15,0.0,0.0,0.0,11.6,0.0 -2019,10,13,4,30,0.0,0.0,0.0,11.6,0.0 -2019,10,13,4,45,0.0,0.0,0.0,11.6,0.0 -2019,10,13,5,0,0.0,0.0,0.0,11.2,0.0 -2019,10,13,5,15,0.0,0.0,0.0,11.2,0.0 -2019,10,13,5,30,0.0,0.0,0.0,11.2,0.0 -2019,10,13,5,45,0.0,0.0,0.0,11.2,0.0 -2019,10,13,6,0,140.0,11.799420409077129,42.0,12.0,0.0 -2019,10,13,6,15,140.0,19.28040320000774,42.0,12.0,0.0 -2019,10,13,6,30,140.0,26.810261400882908,42.0,12.0,0.0 -2019,10,13,6,45,140.0,34.35675100288165,42.0,12.0,0.0 -2019,10,13,7,0,343.0,114.72451410847665,115.0,14.7,0.0 -2019,10,13,7,15,343.0,133.05755512352835,115.0,14.7,0.0 -2019,10,13,7,30,343.0,151.19465810604876,115.0,14.7,0.0 -2019,10,13,7,45,343.0,169.05815719660825,115.0,14.7,0.0 -2019,10,13,8,0,468.0,266.65448750447433,169.0,17.4,0.2 -2019,10,13,8,15,468.0,289.97031264779605,169.0,17.4,0.2 -2019,10,13,8,30,468.0,312.60628528897735,169.0,17.4,0.2 -2019,10,13,8,45,468.0,334.4654747180307,169.0,17.4,0.2 -2019,10,13,9,0,649.0,431.5658663844644,173.0,19.2,1.5 -2019,10,13,9,15,649.0,459.3404827586502,173.0,19.2,1.5 -2019,10,13,9,30,649.0,485.66451457514216,173.0,19.2,1.5 -2019,10,13,9,45,649.0,510.42523828836323,173.0,19.2,1.5 -2019,10,13,10,0,715.0,576.1793322724149,179.0,21.8,1.5 -2019,10,13,10,15,715.0,599.6709582604826,179.0,21.8,1.5 -2019,10,13,10,30,715.0,621.1139525159615,179.0,21.8,1.5 -2019,10,13,10,45,715.0,640.4164928454611,179.0,21.8,1.5 -2019,10,13,11,0,729.0,670.8650737440098,183.0,22.5,1.6 -2019,10,13,11,15,729.0,685.937717521248,183.0,22.5,1.6 -2019,10,13,11,30,729.0,698.6046093337673,183.0,22.5,1.6 -2019,10,13,11,45,729.0,708.8115076061698,183.0,22.5,1.6 -2019,10,13,12,0,500.0,619.9222941241849,254.0,24.5,2.5 -2019,10,13,12,15,500.0,623.4658537320305,254.0,24.5,2.5 -2019,10,13,12,30,500.0,625.2543988630197,254.0,24.5,2.5 -2019,10,13,12,45,500.0,625.2802706923189,254.0,24.5,2.5 -2019,10,13,13,0,456.0,572.0235428906985,235.0,25.0,2.2 -2019,10,13,13,15,456.0,568.83860302614,235.0,25.0,2.2 -2019,10,13,13,30,456.0,564.0664256791804,235.0,25.0,2.2 -2019,10,13,13,45,456.0,557.727446045857,235.0,25.0,2.2 -2019,10,13,14,0,238.0,385.3289834412563,221.0,25.0,2.5 -2019,10,13,14,15,238.0,380.43090288570943,221.0,25.0,2.5 -2019,10,13,14,30,238.0,374.76781196212926,221.0,25.0,2.5 -2019,10,13,14,45,238.0,368.3639608952642,221.0,25.0,2.5 -2019,10,13,15,0,692.0,488.7763285516616,81.0,25.1,2.1 -2019,10,13,15,15,692.0,466.0971918358007,81.0,25.1,2.1 -2019,10,13,15,30,692.0,441.5297093451737,81.0,25.1,2.1 -2019,10,13,15,45,692.0,415.179082811474,81.0,25.1,2.1 -2019,10,13,16,0,483.0,257.69130966358426,44.0,24.7,1.8 -2019,10,13,16,15,483.0,237.0512610135144,44.0,24.7,1.8 -2019,10,13,16,30,483.0,215.41751102524103,44.0,24.7,1.8 -2019,10,13,16,45,483.0,192.88269873748783,44.0,24.7,1.8 -2019,10,13,17,0,104.0,27.03210238988016,0.0,24.2,1.5 -2019,10,13,17,15,104.0,21.85492661328855,0.0,24.2,1.5 -2019,10,13,17,30,104.0,16.548200452002273,0.0,24.2,1.5 -2019,10,13,17,45,104.0,11.134648122147372,0.0,24.2,1.5 -2019,10,13,18,0,0.0,0.0,0.0,22.6,1.3 -2019,10,13,18,15,0.0,0.0,0.0,22.6,1.3 -2019,10,13,18,30,0.0,0.0,0.0,22.6,1.3 -2019,10,13,18,45,0.0,0.0,0.0,22.6,1.3 -2019,10,13,19,0,0.0,0.0,0.0,21.0,0.0 -2019,10,13,19,15,0.0,0.0,0.0,21.0,0.0 -2019,10,13,19,30,0.0,0.0,0.0,21.0,0.0 -2019,10,13,19,45,0.0,0.0,0.0,21.0,0.0 -2019,10,13,20,0,0.0,0.0,0.0,19.9,0.0 -2019,10,13,20,15,0.0,0.0,0.0,19.9,0.0 -2019,10,13,20,30,0.0,0.0,0.0,19.9,0.0 -2019,10,13,20,45,0.0,0.0,0.0,19.9,0.0 -2019,10,13,21,0,0.0,0.0,0.0,18.7,0.0 -2019,10,13,21,15,0.0,0.0,0.0,18.7,0.0 -2019,10,13,21,30,0.0,0.0,0.0,18.7,0.0 -2019,10,13,21,45,0.0,0.0,0.0,18.7,0.0 -2019,10,13,22,0,0.0,0.0,0.0,17.2,0.0 -2019,10,13,22,15,0.0,0.0,0.0,17.2,0.0 -2019,10,13,22,30,0.0,0.0,0.0,17.2,0.0 -2019,10,13,22,45,0.0,0.0,0.0,17.2,0.0 -2019,10,13,23,0,0.0,0.0,0.0,17.1,0.2 -2019,10,13,23,15,0.0,0.0,0.0,17.1,0.2 -2019,10,13,23,30,0.0,0.0,0.0,17.1,0.2 -2019,10,13,23,45,0.0,0.0,0.0,17.1,0.2 -2019,10,14,0,0,0.0,0.0,0.0,16.0,1.3 -2019,10,14,0,15,0.0,0.0,0.0,16.0,1.3 -2019,10,14,0,30,0.0,0.0,0.0,16.0,1.3 -2019,10,14,0,45,0.0,0.0,0.0,16.0,1.3 -2019,10,14,1,0,0.0,0.0,0.0,15.0,0.0 -2019,10,14,1,15,0.0,0.0,0.0,15.0,0.0 -2019,10,14,1,30,0.0,0.0,0.0,15.0,0.0 -2019,10,14,1,45,0.0,0.0,0.0,15.0,0.0 -2019,10,14,2,0,0.0,0.0,0.0,14.9,0.2 -2019,10,14,2,15,0.0,0.0,0.0,14.9,0.2 -2019,10,14,2,30,0.0,0.0,0.0,14.9,0.2 -2019,10,14,2,45,0.0,0.0,0.0,14.9,0.2 -2019,10,14,3,0,0.0,0.0,0.0,14.3,1.5 -2019,10,14,3,15,0.0,0.0,0.0,14.3,1.5 -2019,10,14,3,30,0.0,0.0,0.0,14.3,1.5 -2019,10,14,3,45,0.0,0.0,0.0,14.3,1.5 -2019,10,14,4,0,0.0,0.0,0.0,13.9,1.6 -2019,10,14,4,15,0.0,0.0,0.0,13.9,1.6 -2019,10,14,4,30,0.0,0.0,0.0,13.9,1.6 -2019,10,14,4,45,0.0,0.0,0.0,13.9,1.6 -2019,10,14,5,0,0.0,0.0,0.0,14.2,2.3 -2019,10,14,5,15,0.0,0.0,0.0,14.2,2.3 -2019,10,14,5,30,0.0,0.0,0.0,14.2,2.3 -2019,10,14,5,45,0.0,0.0,0.0,14.2,2.3 -2019,10,14,6,0,449.0,-65.40941008599887,33.0,16.5,0.2 -2019,10,14,6,15,449.0,-41.440523083842976,33.0,16.5,0.2 -2019,10,14,6,30,449.0,-17.315040456368244,33.0,16.5,0.2 -2019,10,14,6,45,449.0,6.863728776003178,33.0,16.5,0.2 -2019,10,14,7,0,762.0,58.592633691551406,62.0,20.1,1.5 -2019,10,14,7,15,762.0,99.28062670994478,62.0,20.1,1.5 -2019,10,14,7,30,762.0,139.5337586873838,62.0,20.1,1.5 -2019,10,14,7,45,762.0,179.17965953296783,62.0,20.1,1.5 -2019,10,14,8,0,929.0,261.2481780766707,71.0,26.2,1.6 -2019,10,14,8,15,929.0,307.4853813822507,71.0,26.2,1.6 -2019,10,14,8,30,929.0,352.3743811322604,71.0,26.2,1.6 -2019,10,14,8,45,929.0,395.7229557382857,71.0,26.2,1.6 -2019,10,14,9,0,1019.0,472.83643064359313,71.0,30.8,2.3 -2019,10,14,9,15,1019.0,516.4025085038936,71.0,30.8,2.3 -2019,10,14,9,30,1019.0,557.6932613360445,71.0,30.8,2.3 -2019,10,14,9,45,1019.0,596.5318757973472,71.0,30.8,2.3 -2019,10,14,10,0,1067.0,656.2133715305159,68.0,32.3,3.4 -2019,10,14,10,15,1067.0,691.2354859348587,68.0,32.3,3.4 -2019,10,14,10,30,1067.0,723.203430527902,68.0,32.3,3.4 -2019,10,14,10,45,1067.0,751.9803136630902,68.0,32.3,3.4 -2019,10,14,11,0,1083.0,787.0812274588308,67.0,33.4,1.3 -2019,10,14,11,15,1083.0,809.4509846704084,67.0,33.4,1.3 -2019,10,14,11,30,1083.0,828.250294112013,67.0,33.4,1.3 -2019,10,14,11,45,1083.0,843.3986542544928,67.0,33.4,1.3 -2019,10,14,12,0,1072.0,847.8292185721835,68.0,34.1,0.4 -2019,10,14,12,15,1072.0,855.4191076788206,68.0,34.1,0.4 -2019,10,14,12,30,1072.0,859.2499615965502,68.0,34.1,0.4 -2019,10,14,12,45,1072.0,859.3053760207728,68.0,34.1,0.4 -2019,10,14,13,0,1030.0,827.7282342053818,71.0,35.5,3.5 -2019,10,14,13,15,1030.0,820.5412858221873,71.0,35.5,3.5 -2019,10,14,13,30,1030.0,809.7726704867123,71.0,35.5,3.5 -2019,10,14,13,45,1030.0,795.4685010630516,71.0,35.5,3.5 -2019,10,14,14,0,948.0,721.4292705148126,71.0,35.0,3.0 -2019,10,14,14,15,948.0,701.9385357894407,71.0,35.0,3.0 -2019,10,14,14,30,948.0,679.4036261109618,71.0,35.0,3.0 -2019,10,14,14,45,948.0,653.9210394222414,71.0,35.0,3.0 -2019,10,14,15,0,799.0,531.4317689464549,64.0,34.6,2.3 -2019,10,14,15,15,799.0,505.2717465852262,64.0,34.6,2.3 -2019,10,14,15,30,799.0,476.9335475009361,64.0,34.6,2.3 -2019,10,14,15,45,799.0,446.5385202126233,64.0,34.6,2.3 -2019,10,14,16,0,508.0,263.6660137845815,41.0,33.3,3.6 -2019,10,14,16,15,508.0,241.97907742078735,41.0,33.3,3.6 -2019,10,14,16,30,508.0,219.24803800997068,41.0,33.3,3.6 -2019,10,14,16,45,508.0,195.5702333526212,41.0,33.3,3.6 -2019,10,14,17,0,174.0,44.54367647075851,0.0,30.8,4.8 -2019,10,14,17,15,174.0,35.8904169986378,0.0,30.8,4.8 -2019,10,14,17,30,174.0,27.02062381357172,0.0,30.8,4.8 -2019,10,14,17,45,174.0,17.97227873169417,0.0,30.8,4.8 -2019,10,14,18,0,0.0,0.0,0.0,28.0,2.5 -2019,10,14,18,15,0.0,0.0,0.0,28.0,2.5 -2019,10,14,18,30,0.0,0.0,0.0,28.0,2.5 -2019,10,14,18,45,0.0,0.0,0.0,28.0,2.5 -2019,10,14,19,0,0.0,0.0,0.0,25.9,1.3 -2019,10,14,19,15,0.0,0.0,0.0,25.9,1.3 -2019,10,14,19,30,0.0,0.0,0.0,25.9,1.3 -2019,10,14,19,45,0.0,0.0,0.0,25.9,1.3 -2019,10,14,20,0,0.0,0.0,0.0,24.3,0.0 -2019,10,14,20,15,0.0,0.0,0.0,24.3,0.0 -2019,10,14,20,30,0.0,0.0,0.0,24.3,0.0 -2019,10,14,20,45,0.0,0.0,0.0,24.3,0.0 -2019,10,14,21,0,0.0,0.0,0.0,23.1,0.2 -2019,10,14,21,15,0.0,0.0,0.0,23.1,0.2 -2019,10,14,21,30,0.0,0.0,0.0,23.1,0.2 -2019,10,14,21,45,0.0,0.0,0.0,23.1,0.2 -2019,10,14,22,0,0.0,0.0,0.0,21.6,2.0 -2019,10,14,22,15,0.0,0.0,0.0,21.6,2.0 -2019,10,14,22,30,0.0,0.0,0.0,21.6,2.0 -2019,10,14,22,45,0.0,0.0,0.0,21.6,2.0 -2019,10,14,23,0,0.0,0.0,0.0,21.0,1.6 -2019,10,14,23,15,0.0,0.0,0.0,21.0,1.6 -2019,10,14,23,30,0.0,0.0,0.0,21.0,1.6 -2019,10,14,23,45,0.0,0.0,0.0,21.0,1.6 -2019,10,15,0,0,0.0,0.0,0.0,20.4,2.5 -2019,10,15,0,15,0.0,0.0,0.0,20.4,2.5 -2019,10,15,0,30,0.0,0.0,0.0,20.4,2.5 -2019,10,15,0,45,0.0,0.0,0.0,20.4,2.5 -2019,10,15,1,0,0.0,0.0,0.0,18.8,2.0 -2019,10,15,1,15,0.0,0.0,0.0,18.8,2.0 -2019,10,15,1,30,0.0,0.0,0.0,18.8,2.0 -2019,10,15,1,45,0.0,0.0,0.0,18.8,2.0 -2019,10,15,2,0,0.0,0.0,0.0,17.8,1.6 -2019,10,15,2,15,0.0,0.0,0.0,17.8,1.6 -2019,10,15,2,30,0.0,0.0,0.0,17.8,1.6 -2019,10,15,2,45,0.0,0.0,0.0,17.8,1.6 -2019,10,15,3,0,0.0,0.0,0.0,17.7,2.7 -2019,10,15,3,15,0.0,0.0,0.0,17.7,2.7 -2019,10,15,3,30,0.0,0.0,0.0,17.7,2.7 -2019,10,15,3,45,0.0,0.0,0.0,17.7,2.7 -2019,10,15,4,0,0.0,0.0,0.0,16.7,2.7 -2019,10,15,4,15,0.0,0.0,0.0,16.7,2.7 -2019,10,15,4,30,0.0,0.0,0.0,16.7,2.7 -2019,10,15,4,45,0.0,0.0,0.0,16.7,2.7 -2019,10,15,5,0,0.0,0.0,0.0,17.0,0.2 -2019,10,15,5,15,0.0,0.0,0.0,17.0,0.2 -2019,10,15,5,30,0.0,0.0,0.0,17.0,0.2 -2019,10,15,5,45,0.0,0.0,0.0,17.0,0.2 -2019,10,15,6,0,450.0,-67.16893444218336,33.0,19.3,1.5 -2019,10,15,6,15,450.0,-43.171268117919084,33.0,19.3,1.5 -2019,10,15,6,30,450.0,-19.016818144756016,33.0,19.3,1.5 -2019,10,15,6,45,450.0,5.190982414262276,33.0,19.3,1.5 -2019,10,15,7,0,812.0,48.41102066009476,55.0,22.6,1.3 -2019,10,15,7,15,812.0,91.72442262232657,55.0,22.6,1.3 -2019,10,15,7,30,812.0,134.57490396185636,55.0,22.6,1.3 -2019,10,15,7,45,812.0,176.7789723390626,55.0,22.6,1.3 -2019,10,15,8,0,925.0,256.8610969148124,71.0,26.2,0.6 -2019,10,15,8,15,925.0,302.8520644271131,71.0,26.2,0.6 -2019,10,15,8,30,925.0,347.5020082292554,71.0,26.2,0.6 -2019,10,15,8,45,925.0,390.6197304070944,71.0,26.2,0.6 -2019,10,15,9,0,757.0,436.4514484873695,141.0,29.7,0.0 -2019,10,15,9,15,757.0,468.7828944781313,141.0,29.7,0.0 -2019,10,15,9,30,757.0,499.42576642523136,141.0,29.7,0.0 -2019,10,15,9,45,757.0,528.2488468466131,141.0,29.7,0.0 -2019,10,15,10,0,890.0,607.8884447679684,121.0,31.9,0.0 -2019,10,15,10,15,890.0,637.0709733276839,121.0,31.9,0.0 -2019,10,15,10,30,890.0,663.7085842186532,121.0,31.9,0.0 -2019,10,15,10,45,890.0,687.6872111015604,121.0,31.9,0.0 -2019,10,15,11,0,1086.0,783.375205351576,66.0,33.4,0.2 -2019,10,15,11,15,1086.0,805.7839541804224,66.0,33.4,0.2 -2019,10,15,11,30,1086.0,824.6160317684011,66.0,33.4,0.2 -2019,10,15,11,45,1086.0,839.7907962681272,66.0,33.4,0.2 -2019,10,15,12,0,1068.0,841.2281852347218,69.0,34.5,1.6 -2019,10,15,12,15,1068.0,848.7820093353522,69.0,34.5,1.6 -2019,10,15,12,30,1068.0,852.5946601189366,69.0,34.5,1.6 -2019,10,15,12,45,1068.0,852.649811229491,69.0,34.5,1.6 -2019,10,15,13,0,754.0,697.6368996087319,147.0,34.8,2.9 -2019,10,15,13,15,754.0,692.3811627081171,147.0,34.8,2.9 -2019,10,15,13,30,754.0,684.5061918624207,147.0,34.8,2.9 -2019,10,15,13,45,754.0,674.0457089057915,147.0,34.8,2.9 -2019,10,15,14,0,808.0,651.859365840312,101.0,33.0,5.2 -2019,10,15,14,15,808.0,635.2640239606807,101.0,33.0,5.2 -2019,10,15,14,30,808.0,616.0767262209936,101.0,33.0,5.2 -2019,10,15,14,45,808.0,594.3796355758597,101.0,33.0,5.2 -2019,10,15,15,0,269.0,289.2282959879638,133.0,31.5,5.5 -2019,10,15,15,15,269.0,280.4299997369235,133.0,31.5,5.5 -2019,10,15,15,30,269.0,270.8991259738313,133.0,31.5,5.5 -2019,10,15,15,45,269.0,260.67648736334695,133.0,31.5,5.5 -2019,10,15,16,0,112.0,100.63292262863115,52.0,29.9,4.0 -2019,10,15,16,15,112.0,95.85644789118196,52.0,29.9,4.0 -2019,10,15,16,30,112.0,90.85001297200213,52.0,29.9,4.0 -2019,10,15,16,45,112.0,85.63505619401758,52.0,29.9,4.0 -2019,10,15,17,0,56.0,15.116954401383136,1.0,28.6,2.6 -2019,10,15,17,15,56.0,12.334849670288403,1.0,28.6,2.6 -2019,10,15,17,30,56.0,9.483127303299625,1.0,28.6,2.6 -2019,10,15,17,45,56.0,6.573998813396645,1.0,28.6,2.6 -2019,10,15,18,0,0.0,0.0,0.0,26.6,2.3 -2019,10,15,18,15,0.0,0.0,0.0,26.6,2.3 -2019,10,15,18,30,0.0,0.0,0.0,26.6,2.3 -2019,10,15,18,45,0.0,0.0,0.0,26.6,2.3 -2019,10,15,19,0,0.0,0.0,0.0,25.3,0.0 -2019,10,15,19,15,0.0,0.0,0.0,25.3,0.0 -2019,10,15,19,30,0.0,0.0,0.0,25.3,0.0 -2019,10,15,19,45,0.0,0.0,0.0,25.3,0.0 -2019,10,15,20,0,0.0,0.0,0.0,22.7,0.0 -2019,10,15,20,15,0.0,0.0,0.0,22.7,0.0 -2019,10,15,20,30,0.0,0.0,0.0,22.7,0.0 -2019,10,15,20,45,0.0,0.0,0.0,22.7,0.0 -2019,10,15,21,0,0.0,0.0,0.0,22.0,0.0 -2019,10,15,21,15,0.0,0.0,0.0,22.0,0.0 -2019,10,15,21,30,0.0,0.0,0.0,22.0,0.0 -2019,10,15,21,45,0.0,0.0,0.0,22.0,0.0 -2019,10,15,22,0,0.0,0.0,0.0,20.5,0.2 -2019,10,15,22,15,0.0,0.0,0.0,20.5,0.2 -2019,10,15,22,30,0.0,0.0,0.0,20.5,0.2 -2019,10,15,22,45,0.0,0.0,0.0,20.5,0.2 -2019,10,15,23,0,0.0,0.0,0.0,19.9,1.3 -2019,10,15,23,15,0.0,0.0,0.0,19.9,1.3 -2019,10,15,23,30,0.0,0.0,0.0,19.9,1.3 -2019,10,15,23,45,0.0,0.0,0.0,19.9,1.3 -2019,10,16,0,0,0.0,0.0,0.0,18.7,0.2 -2019,10,16,0,15,0.0,0.0,0.0,18.7,0.2 -2019,10,16,0,30,0.0,0.0,0.0,18.7,0.2 -2019,10,16,0,45,0.0,0.0,0.0,18.7,0.2 -2019,10,16,1,0,0.0,0.0,0.0,17.3,1.6 -2019,10,16,1,15,0.0,0.0,0.0,17.3,1.6 -2019,10,16,1,30,0.0,0.0,0.0,17.3,1.6 -2019,10,16,1,45,0.0,0.0,0.0,17.3,1.6 -2019,10,16,2,0,0.0,0.0,0.0,18.0,2.5 -2019,10,16,2,15,0.0,0.0,0.0,18.0,2.5 -2019,10,16,2,30,0.0,0.0,0.0,18.0,2.5 -2019,10,16,2,45,0.0,0.0,0.0,18.0,2.5 -2019,10,16,3,0,0.0,0.0,0.0,15.8,1.6 -2019,10,16,3,15,0.0,0.0,0.0,15.8,1.6 -2019,10,16,3,30,0.0,0.0,0.0,15.8,1.6 -2019,10,16,3,45,0.0,0.0,0.0,15.8,1.6 -2019,10,16,4,0,0.0,0.0,0.0,17.1,2.0 -2019,10,16,4,15,0.0,0.0,0.0,17.1,2.0 -2019,10,16,4,30,0.0,0.0,0.0,17.1,2.0 -2019,10,16,4,45,0.0,0.0,0.0,17.1,2.0 -2019,10,16,5,0,0.0,0.0,0.0,16.3,1.7 -2019,10,16,5,15,0.0,0.0,0.0,16.3,1.7 -2019,10,16,5,30,0.0,0.0,0.0,16.3,1.7 -2019,10,16,5,45,0.0,0.0,0.0,16.3,1.7 -2019,10,16,6,0,454.0,-70.59785468196979,32.0,18.2,3.0 -2019,10,16,6,15,454.0,-46.412532504552686,32.0,18.2,3.0 -2019,10,16,6,30,454.0,-22.069200668632483,32.0,18.2,3.0 -2019,10,16,6,45,454.0,2.327898941613249,32.0,18.2,3.0 -2019,10,16,7,0,696.0,60.83548185748722,69.0,21.6,1.9 -2019,10,16,7,15,696.0,97.92191223104251,69.0,21.6,1.9 -2019,10,16,7,30,696.0,134.6119739827727,69.0,21.6,1.9 -2019,10,16,7,45,696.0,170.7485546354963,69.0,21.6,1.9 -2019,10,16,8,0,849.0,253.33218120805472,86.0,25.4,0.0 -2019,10,16,8,15,849.0,295.4996984368728,86.0,25.4,0.0 -2019,10,16,8,30,849.0,336.4376777050631,86.0,25.4,0.0 -2019,10,16,8,45,849.0,375.9708163004869,86.0,25.4,0.0 -2019,10,16,9,0,1055.0,468.49819523372753,61.0,28.6,0.0 -2019,10,16,9,15,1055.0,513.5094620594109,61.0,28.6,0.0 -2019,10,16,9,30,1055.0,556.1699259901081,61.0,28.6,0.0 -2019,10,16,9,45,1055.0,596.2969083699144,61.0,28.6,0.0 -2019,10,16,10,0,1107.0,657.9473623554113,57.0,30.9,0.2 -2019,10,16,10,15,1107.0,694.2067162446061,57.0,30.9,0.2 -2019,10,16,10,30,1107.0,727.3040045101484,57.0,30.9,0.2 -2019,10,16,10,45,1107.0,757.0974994824968,57.0,30.9,0.2 -2019,10,16,11,0,1094.0,780.9284780500143,63.0,32.9,1.6 -2019,10,16,11,15,1094.0,803.4783787178112,63.0,32.9,1.6 -2019,10,16,11,30,1094.0,822.4290788314429,63.0,32.9,1.6 -2019,10,16,11,45,1094.0,837.6994285836583,63.0,32.9,1.6 -2019,10,16,12,0,1084.0,843.0373466031441,64.0,34.0,2.1 -2019,10,16,12,15,1084.0,850.6962117839468,64.0,34.0,2.1 -2019,10,16,12,30,1084.0,854.5618800790978,64.0,34.0,2.1 -2019,10,16,12,45,1084.0,854.6177981034892,64.0,34.0,2.1 -2019,10,16,13,0,1079.0,840.2342811750487,57.0,35.0,2.3 -2019,10,16,13,15,1079.0,832.7211107032691,57.0,35.0,2.3 -2019,10,16,13,30,1079.0,821.4636981761904,57.0,35.0,2.3 -2019,10,16,13,45,1079.0,806.5102495625229,57.0,35.0,2.3 -2019,10,16,14,0,974.0,723.7968054508597,64.0,34.7,3.7 -2019,10,16,14,15,974.0,703.8132238871942,64.0,34.7,3.7 -2019,10,16,14,30,974.0,680.708491719068,64.0,34.7,3.7 -2019,10,16,14,45,974.0,654.581546956728,64.0,34.7,3.7 -2019,10,16,15,0,760.0,506.16595953124556,68.0,33.3,4.6 -2019,10,16,15,15,760.0,481.33466157826405,68.0,33.3,4.6 -2019,10,16,15,30,760.0,454.4358212333945,68.0,33.3,4.6 -2019,10,16,15,45,760.0,425.5846234605786,68.0,33.3,4.6 -2019,10,16,16,0,394.0,213.47423385011885,44.0,31.2,4.3 -2019,10,16,16,15,394.0,196.68908442080362,44.0,31.2,4.3 -2019,10,16,16,30,394.0,179.0958251981135,44.0,31.2,4.3 -2019,10,16,16,45,394.0,160.76979321900632,44.0,31.2,4.3 -2019,10,16,17,0,0.0,0.0,0.0,29.6,3.9 -2019,10,16,17,15,0.0,0.0,0.0,29.6,3.9 -2019,10,16,17,30,0.0,0.0,0.0,29.6,3.9 -2019,10,16,17,45,0.0,0.0,0.0,29.6,3.9 -2019,10,16,18,0,0.0,0.0,0.0,26.5,2.3 -2019,10,16,18,15,0.0,0.0,0.0,26.5,2.3 -2019,10,16,18,30,0.0,0.0,0.0,26.5,2.3 -2019,10,16,18,45,0.0,0.0,0.0,26.5,2.3 -2019,10,16,19,0,0.0,0.0,0.0,24.9,0.0 -2019,10,16,19,15,0.0,0.0,0.0,24.9,0.0 -2019,10,16,19,30,0.0,0.0,0.0,24.9,0.0 -2019,10,16,19,45,0.0,0.0,0.0,24.9,0.0 -2019,10,16,20,0,0.0,0.0,0.0,23.7,0.0 -2019,10,16,20,15,0.0,0.0,0.0,23.7,0.0 -2019,10,16,20,30,0.0,0.0,0.0,23.7,0.0 -2019,10,16,20,45,0.0,0.0,0.0,23.7,0.0 -2019,10,16,21,0,0.0,0.0,0.0,22.1,0.2 -2019,10,16,21,15,0.0,0.0,0.0,22.1,0.2 -2019,10,16,21,30,0.0,0.0,0.0,22.1,0.2 -2019,10,16,21,45,0.0,0.0,0.0,22.1,0.2 -2019,10,16,22,0,0.0,0.0,0.0,21.6,1.6 -2019,10,16,22,15,0.0,0.0,0.0,21.6,1.6 -2019,10,16,22,30,0.0,0.0,0.0,21.6,1.6 -2019,10,16,22,45,0.0,0.0,0.0,21.6,1.6 -2019,10,16,23,0,0.0,0.0,0.0,20.5,2.3 -2019,10,16,23,15,0.0,0.0,0.0,20.5,2.3 -2019,10,16,23,30,0.0,0.0,0.0,20.5,2.3 -2019,10,16,23,45,0.0,0.0,0.0,20.5,2.3 -2019,10,17,0,0,0.0,0.0,0.0,19.3,0.3 -2019,10,17,0,15,0.0,0.0,0.0,19.3,0.3 -2019,10,17,0,30,0.0,0.0,0.0,19.3,0.3 -2019,10,17,0,45,0.0,0.0,0.0,19.3,0.3 -2019,10,17,1,0,0.0,0.0,0.0,18.4,2.5 -2019,10,17,1,15,0.0,0.0,0.0,18.4,2.5 -2019,10,17,1,30,0.0,0.0,0.0,18.4,2.5 -2019,10,17,1,45,0.0,0.0,0.0,18.4,2.5 -2019,10,17,2,0,0.0,0.0,0.0,18.8,2.2 -2019,10,17,2,15,0.0,0.0,0.0,18.8,2.2 -2019,10,17,2,30,0.0,0.0,0.0,18.8,2.2 -2019,10,17,2,45,0.0,0.0,0.0,18.8,2.2 -2019,10,17,3,0,0.0,0.0,0.0,18.3,2.5 -2019,10,17,3,15,0.0,0.0,0.0,18.3,2.5 -2019,10,17,3,30,0.0,0.0,0.0,18.3,2.5 -2019,10,17,3,45,0.0,0.0,0.0,18.3,2.5 -2019,10,17,4,0,0.0,0.0,0.0,18.2,2.1 -2019,10,17,4,15,0.0,0.0,0.0,18.2,2.1 -2019,10,17,4,30,0.0,0.0,0.0,18.2,2.1 -2019,10,17,4,45,0.0,0.0,0.0,18.2,2.1 -2019,10,17,5,0,0.0,0.0,0.0,18.0,2.1 -2019,10,17,5,15,0.0,0.0,0.0,18.0,2.1 -2019,10,17,5,30,0.0,0.0,0.0,18.0,2.1 -2019,10,17,5,45,0.0,0.0,0.0,18.0,2.1 -2019,10,17,6,0,447.0,-71.51506602882516,31.0,19.7,1.8 -2019,10,17,6,15,447.0,-47.72869731876149,31.0,19.7,1.8 -2019,10,17,6,30,447.0,-23.786925427820712,31.0,19.7,1.8 -2019,10,17,6,45,447.0,0.20772730115247384,31.0,19.7,1.8 -2019,10,17,7,0,767.0,47.25050730753803,59.0,23.3,0.0 -2019,10,17,7,15,767.0,88.07546631719704,59.0,23.3,0.0 -2019,10,17,7,30,767.0,128.4641004345508,59.0,23.3,0.0 -2019,10,17,7,45,767.0,168.24345932773315,59.0,23.3,0.0 -2019,10,17,8,0,940.0,248.6800646341981,67.0,27.7,0.0 -2019,10,17,8,15,940.0,295.3162257060289,67.0,27.7,0.0 -2019,10,17,8,30,940.0,340.5925502462329,67.0,27.7,0.0 -2019,10,17,8,45,940.0,384.31515808218103,67.0,27.7,0.0 -2019,10,17,9,0,1032.0,461.4620432001423,67.0,32.1,0.3 -2019,10,17,9,15,1032.0,505.4438506627429,67.0,32.1,0.3 -2019,10,17,9,30,1032.0,547.1286207922196,67.0,32.1,0.3 -2019,10,17,9,45,1032.0,586.3378530033152,67.0,32.1,0.3 -2019,10,17,10,0,1080.0,645.7596309415953,64.0,35.2,2.6 -2019,10,17,10,15,1080.0,681.0959082823452,64.0,35.2,2.6 -2019,10,17,10,30,1080.0,713.3506186379666,64.0,35.2,2.6 -2019,10,17,10,45,1080.0,742.3856423868832,64.0,35.2,2.6 -2019,10,17,11,0,1096.0,776.5074122420846,62.0,36.8,2.3 -2019,10,17,11,15,1096.0,799.0738217276196,62.0,36.8,2.3 -2019,10,17,11,30,1096.0,818.0383956786043,62.0,36.8,2.3 -2019,10,17,11,45,1096.0,833.3199248778856,62.0,36.8,2.3 -2019,10,17,12,0,1085.0,837.995870480325,63.0,37.8,0.0 -2019,10,17,12,15,1085.0,845.6534141090408,63.0,37.8,0.0 -2019,10,17,12,30,1085.0,849.5184153756073,63.0,37.8,0.0 -2019,10,17,12,45,1085.0,849.5743237512348,63.0,37.8,0.0 -2019,10,17,13,0,1042.0,817.7966614013257,66.0,37.7,0.5 -2019,10,17,13,15,1042.0,810.5490630680079,66.0,37.7,0.5 -2019,10,17,13,30,1042.0,799.6895724474787,66.0,37.7,0.5 -2019,10,17,13,45,1042.0,785.2646915457549,66.0,37.7,0.5 -2019,10,17,14,0,958.0,711.7985316131231,67.0,36.4,4.7 -2019,10,17,14,15,958.0,692.1647263648421,67.0,36.4,4.7 -2019,10,17,14,30,958.0,669.4644005870297,67.0,36.4,4.7 -2019,10,17,14,45,958.0,643.7947605596842,67.0,36.4,4.7 -2019,10,17,15,0,802.0,519.9865485940154,61.0,35.0,5.6 -2019,10,17,15,15,802.0,493.81166274938533,61.0,35.0,5.6 -2019,10,17,15,30,802.0,465.45736259507737,61.0,35.0,5.6 -2019,10,17,15,45,802.0,435.0450655973836,61.0,35.0,5.6 -2019,10,17,16,0,497.0,249.75484530532577,38.0,33.2,4.5 -2019,10,17,16,15,497.0,228.60486447905262,38.0,33.2,4.5 -2019,10,17,16,30,497.0,206.43663197099502,38.0,33.2,4.5 -2019,10,17,16,45,497.0,183.34507555608172,38.0,33.2,4.5 -2019,10,17,17,0,0.0,0.0,0.0,32.2,3.3 -2019,10,17,17,15,0.0,0.0,0.0,32.2,3.3 -2019,10,17,17,30,0.0,0.0,0.0,32.2,3.3 -2019,10,17,17,45,0.0,0.0,0.0,32.2,3.3 -2019,10,17,18,0,0.0,0.0,0.0,30.8,0.2 -2019,10,17,18,15,0.0,0.0,0.0,30.8,0.2 -2019,10,17,18,30,0.0,0.0,0.0,30.8,0.2 -2019,10,17,18,45,0.0,0.0,0.0,30.8,0.2 -2019,10,17,19,0,0.0,0.0,0.0,28.2,1.3 -2019,10,17,19,15,0.0,0.0,0.0,28.2,1.3 -2019,10,17,19,30,0.0,0.0,0.0,28.2,1.3 -2019,10,17,19,45,0.0,0.0,0.0,28.2,1.3 -2019,10,17,20,0,0.0,0.0,0.0,27.7,0.3 -2019,10,17,20,15,0.0,0.0,0.0,27.7,0.3 -2019,10,17,20,30,0.0,0.0,0.0,27.7,0.3 -2019,10,17,20,45,0.0,0.0,0.0,27.7,0.3 -2019,10,17,21,0,0.0,0.0,0.0,27.1,2.5 -2019,10,17,21,15,0.0,0.0,0.0,27.1,2.5 -2019,10,17,21,30,0.0,0.0,0.0,27.1,2.5 -2019,10,17,21,45,0.0,0.0,0.0,27.1,2.5 -2019,10,17,22,0,0.0,0.0,0.0,26.5,1.6 -2019,10,17,22,15,0.0,0.0,0.0,26.5,1.6 -2019,10,17,22,30,0.0,0.0,0.0,26.5,1.6 -2019,10,17,22,45,0.0,0.0,0.0,26.5,1.6 -2019,10,17,23,0,0.0,0.0,0.0,24.8,2.1 -2019,10,17,23,15,0.0,0.0,0.0,24.8,2.1 -2019,10,17,23,30,0.0,0.0,0.0,24.8,2.1 -2019,10,17,23,45,0.0,0.0,0.0,24.8,2.1 -2019,10,18,0,0,0.0,0.0,0.0,23.2,2.2 -2019,10,18,0,15,0.0,0.0,0.0,23.2,2.2 -2019,10,18,0,30,0.0,0.0,0.0,23.2,2.2 -2019,10,18,0,45,0.0,0.0,0.0,23.2,2.2 -2019,10,18,1,0,0.0,0.0,0.0,22.6,2.3 -2019,10,18,1,15,0.0,0.0,0.0,22.6,2.3 -2019,10,18,1,30,0.0,0.0,0.0,22.6,2.3 -2019,10,18,1,45,0.0,0.0,0.0,22.6,2.3 -2019,10,18,2,0,0.0,0.0,0.0,21.2,0.2 -2019,10,18,2,15,0.0,0.0,0.0,21.2,0.2 -2019,10,18,2,30,0.0,0.0,0.0,21.2,0.2 -2019,10,18,2,45,0.0,0.0,0.0,21.2,0.2 -2019,10,18,3,0,0.0,0.0,0.0,21.6,1.9 -2019,10,18,3,15,0.0,0.0,0.0,21.6,1.9 -2019,10,18,3,30,0.0,0.0,0.0,21.6,1.9 -2019,10,18,3,45,0.0,0.0,0.0,21.6,1.9 -2019,10,18,4,0,0.0,0.0,0.0,20.6,0.0 -2019,10,18,4,15,0.0,0.0,0.0,20.6,0.0 -2019,10,18,4,30,0.0,0.0,0.0,20.6,0.0 -2019,10,18,4,45,0.0,0.0,0.0,20.6,0.0 -2019,10,18,5,0,0.0,0.0,0.0,20.7,0.0 -2019,10,18,5,15,0.0,0.0,0.0,20.7,0.0 -2019,10,18,5,30,0.0,0.0,0.0,20.7,0.0 -2019,10,18,5,45,0.0,0.0,0.0,20.7,0.0 -2019,10,18,6,0,106.0,11.338262066839203,36.0,21.1,1.0 -2019,10,18,6,15,106.0,16.972519558689317,36.0,21.1,1.0 -2019,10,18,6,30,106.0,22.6435872735199,36.0,21.1,1.0 -2019,10,18,6,45,106.0,28.327180828737948,36.0,21.1,1.0 -2019,10,18,7,0,196.0,115.29996784923637,119.0,22.1,0.8 -2019,10,18,7,15,196.0,125.72066241890637,119.0,22.1,0.8 -2019,10,18,7,30,196.0,136.0299837368658,119.0,22.1,0.8 -2019,10,18,7,45,196.0,146.18378570651538,119.0,22.1,0.8 -2019,10,18,8,0,148.0,231.04342373453676,203.0,23.0,0.3 -2019,10,18,8,15,148.0,238.37786200192903,203.0,23.0,0.3 -2019,10,18,8,30,148.0,245.49843967561588,203.0,23.0,0.3 -2019,10,18,8,45,148.0,252.37466534882768,203.0,23.0,0.3 -2019,10,18,9,0,252.0,359.31234918803193,264.0,24.5,2.7 -2019,10,18,9,15,252.0,370.0399874024293,264.0,24.5,2.7 -2019,10,18,9,30,252.0,380.20735338391137,264.0,24.5,2.7 -2019,10,18,9,45,252.0,389.770908910423,264.0,24.5,2.7 -2019,10,18,10,0,172.0,410.93106601374546,319.0,24.5,2.8 -2019,10,18,10,15,172.0,416.55235209847723,319.0,24.5,2.8 -2019,10,18,10,30,172.0,421.68342328463234,319.0,24.5,2.8 -2019,10,18,10,45,172.0,426.3023075376552,319.0,24.5,2.8 -2019,10,18,11,0,235.0,479.18876819899174,327.0,25.7,4.1 -2019,10,18,11,15,235.0,484.0219148694558,327.0,25.7,4.1 -2019,10,18,11,30,235.0,488.0836406617988,327.0,25.7,4.1 -2019,10,18,11,45,235.0,491.3565526426104,327.0,25.7,4.1 -2019,10,18,12,0,336.0,531.5265940225881,293.0,26.7,4.0 -2019,10,18,12,15,336.0,533.8952894475848,293.0,26.7,4.0 -2019,10,18,12,30,336.0,535.0908439571785,293.0,26.7,4.0 -2019,10,18,12,45,336.0,535.1081380034143,293.0,26.7,4.0 -2019,10,18,13,0,310.0,483.3023816501926,261.0,26.6,3.5 -2019,10,18,13,15,310.0,481.14861675757425,261.0,26.6,3.5 -2019,10,18,13,30,310.0,477.9215077795983,261.0,26.6,3.5 -2019,10,18,13,45,310.0,473.63487369234315,261.0,26.6,3.5 -2019,10,18,14,0,253.0,377.18931884461233,208.0,25.5,2.9 -2019,10,18,14,15,253.0,372.0100352336529,208.0,25.5,2.9 -2019,10,18,14,30,253.0,366.0218213455297,208.0,25.5,2.9 -2019,10,18,14,45,253.0,359.2503196314391,208.0,25.5,2.9 -2019,10,18,15,0,158.0,221.75681904666203,132.0,24.7,5.0 -2019,10,18,15,15,158.0,216.60598310916936,132.0,24.7,5.0 -2019,10,18,15,30,158.0,211.02627020863622,132.0,24.7,5.0 -2019,10,18,15,45,158.0,205.04157353231585,132.0,24.7,5.0 -2019,10,18,16,0,71.0,73.9626832492507,44.0,23.9,4.0 -2019,10,18,16,15,71.0,70.94466306382104,44.0,23.9,4.0 -2019,10,18,16,30,71.0,67.78134231501426,44.0,23.9,4.0 -2019,10,18,16,45,71.0,64.48626682791858,44.0,23.9,4.0 -2019,10,18,17,0,0.0,0.0,0.0,22.9,3.1 -2019,10,18,17,15,0.0,0.0,0.0,22.9,3.1 -2019,10,18,17,30,0.0,0.0,0.0,22.9,3.1 -2019,10,18,17,45,0.0,0.0,0.0,22.9,3.1 -2019,10,18,18,0,0.0,0.0,0.0,21.9,3.0 -2019,10,18,18,15,0.0,0.0,0.0,21.9,3.0 -2019,10,18,18,30,0.0,0.0,0.0,21.9,3.0 -2019,10,18,18,45,0.0,0.0,0.0,21.9,3.0 -2019,10,18,19,0,0.0,0.0,0.0,21.0,2.3 -2019,10,18,19,15,0.0,0.0,0.0,21.0,2.3 -2019,10,18,19,30,0.0,0.0,0.0,21.0,2.3 -2019,10,18,19,45,0.0,0.0,0.0,21.0,2.3 -2019,10,18,20,0,0.0,0.0,0.0,20.5,0.0 -2019,10,18,20,15,0.0,0.0,0.0,20.5,0.0 -2019,10,18,20,30,0.0,0.0,0.0,20.5,0.0 -2019,10,18,20,45,0.0,0.0,0.0,20.5,0.0 -2019,10,18,21,0,0.0,0.0,0.0,19.9,0.0 -2019,10,18,21,15,0.0,0.0,0.0,19.9,0.0 -2019,10,18,21,30,0.0,0.0,0.0,19.9,0.0 -2019,10,18,21,45,0.0,0.0,0.0,19.9,0.0 -2019,10,18,22,0,0.0,0.0,0.0,19.3,0.0 -2019,10,18,22,15,0.0,0.0,0.0,19.3,0.0 -2019,10,18,22,30,0.0,0.0,0.0,19.3,0.0 -2019,10,18,22,45,0.0,0.0,0.0,19.3,0.0 -2019,10,18,23,0,0.0,0.0,0.0,18.2,0.0 -2019,10,18,23,15,0.0,0.0,0.0,18.2,0.0 -2019,10,18,23,30,0.0,0.0,0.0,18.2,0.0 -2019,10,18,23,45,0.0,0.0,0.0,18.2,0.0 -2019,10,19,0,0,0.0,0.0,0.0,17.7,0.0 -2019,10,19,0,15,0.0,0.0,0.0,17.7,0.0 -2019,10,19,0,30,0.0,0.0,0.0,17.7,0.0 -2019,10,19,0,45,0.0,0.0,0.0,17.7,0.0 -2019,10,19,1,0,0.0,0.0,0.0,16.6,0.0 -2019,10,19,1,15,0.0,0.0,0.0,16.6,0.0 -2019,10,19,1,30,0.0,0.0,0.0,16.6,0.0 -2019,10,19,1,45,0.0,0.0,0.0,16.6,0.0 -2019,10,19,2,0,0.0,0.0,0.0,16.0,0.0 -2019,10,19,2,15,0.0,0.0,0.0,16.0,0.0 -2019,10,19,2,30,0.0,0.0,0.0,16.0,0.0 -2019,10,19,2,45,0.0,0.0,0.0,16.0,0.0 -2019,10,19,3,0,0.0,0.0,0.0,15.5,0.2 -2019,10,19,3,15,0.0,0.0,0.0,15.5,0.2 -2019,10,19,3,30,0.0,0.0,0.0,15.5,0.2 -2019,10,19,3,45,0.0,0.0,0.0,15.5,0.2 -2019,10,19,4,0,0.0,0.0,0.0,15.1,1.5 -2019,10,19,4,15,0.0,0.0,0.0,15.1,1.5 -2019,10,19,4,30,0.0,0.0,0.0,15.1,1.5 -2019,10,19,4,45,0.0,0.0,0.0,15.1,1.5 -2019,10,19,5,0,0.0,0.0,0.0,15.7,1.5 -2019,10,19,5,15,0.0,0.0,0.0,15.7,1.5 -2019,10,19,5,30,0.0,0.0,0.0,15.7,1.5 -2019,10,19,5,45,0.0,0.0,0.0,15.7,1.5 -2019,10,19,6,0,169.0,-3.873642599378229,36.0,16.8,1.1 -2019,10,19,6,15,169.0,5.09886601612142,36.0,16.8,1.1 -2019,10,19,6,30,169.0,14.129994608309868,36.0,16.8,1.1 -2019,10,19,6,45,169.0,23.18107049807133,36.0,16.8,1.1 -2019,10,19,7,0,398.0,93.08229328036667,102.0,18.6,0.0 -2019,10,19,7,15,398.0,114.21815804341182,102.0,18.6,0.0 -2019,10,19,7,30,398.0,135.1281290360718,102.0,18.6,0.0 -2019,10,19,7,45,398.0,155.722666552399,102.0,18.6,0.0 -2019,10,19,8,0,400.0,248.28500665428902,174.0,20.9,0.0 -2019,10,19,8,15,400.0,268.08483783300295,174.0,20.9,0.0 -2019,10,19,8,30,400.0,287.3073373202127,174.0,20.9,0.0 -2019,10,19,8,45,400.0,305.8701914220223,174.0,20.9,0.0 -2019,10,19,9,0,557.0,400.44877127268006,192.0,23.1,0.4 -2019,10,19,9,15,557.0,424.13277533432415,192.0,23.1,0.4 -2019,10,19,9,30,557.0,446.57983519867224,192.0,23.1,0.4 -2019,10,19,9,45,557.0,467.69382910924963,192.0,23.1,0.4 -2019,10,19,10,0,688.0,546.8553473382844,182.0,25.2,2.9 -2019,10,19,10,15,688.0,569.314431035267,182.0,25.2,2.9 -2019,10,19,10,30,688.0,589.8149278055771,182.0,25.2,2.9 -2019,10,19,10,45,688.0,608.2690513747507,182.0,25.2,2.9 -2019,10,19,11,0,720.0,644.183721531724,181.0,26.9,1.7 -2019,10,19,11,15,720.0,658.9744976289123,181.0,26.9,1.7 -2019,10,19,11,30,720.0,671.4045107981487,181.0,26.9,1.7 -2019,10,19,11,45,720.0,681.4205338147522,181.0,26.9,1.7 -2019,10,19,12,0,812.0,717.8881907538164,145.0,28.2,3.3 -2019,10,19,12,15,812.0,723.605903420835,145.0,28.2,3.3 -2019,10,19,12,30,812.0,726.491811457587,145.0,28.2,3.3 -2019,10,19,12,45,812.0,726.5335569628061,145.0,28.2,3.3 -2019,10,19,13,0,712.0,661.4586753167378,154.0,27.8,5.0 -2019,10,19,13,15,712.0,656.5176970102981,154.0,27.8,5.0 -2019,10,19,13,30,712.0,649.1143469476494,154.0,27.8,5.0 -2019,10,19,13,45,712.0,639.2803274103431,154.0,27.8,5.0 -2019,10,19,14,0,647.0,561.871297358596,132.0,27.5,4.6 -2019,10,19,14,15,647.0,548.6416031382345,132.0,27.5,4.6 -2019,10,19,14,30,647.0,533.3456192499691,132.0,27.5,4.6 -2019,10,19,14,45,647.0,516.0488454450917,132.0,27.5,4.6 -2019,10,19,15,0,421.0,347.39021947178924,110.0,26.1,4.6 -2019,10,19,15,15,421.0,333.68143085620596,110.0,26.1,4.6 -2019,10,19,15,30,421.0,318.83119962824594,110.0,26.1,4.6 -2019,10,19,15,45,421.0,302.90311675787655,110.0,26.1,4.6 -2019,10,19,16,0,192.0,126.25024854708857,46.0,24.3,4.9 -2019,10,19,16,15,192.0,118.09830104936938,46.0,24.3,4.9 -2019,10,19,16,30,192.0,109.55388349139092,46.0,24.3,4.9 -2019,10,19,16,45,192.0,100.65358438089928,46.0,24.3,4.9 -2019,10,19,17,0,0.0,0.0,0.0,23.0,5.0 -2019,10,19,17,15,0.0,0.0,0.0,23.0,5.0 -2019,10,19,17,30,0.0,0.0,0.0,23.0,5.0 -2019,10,19,17,45,0.0,0.0,0.0,23.0,5.0 -2019,10,19,18,0,0.0,0.0,0.0,20.5,3.9 -2019,10,19,18,15,0.0,0.0,0.0,20.5,3.9 -2019,10,19,18,30,0.0,0.0,0.0,20.5,3.9 -2019,10,19,18,45,0.0,0.0,0.0,20.5,3.9 -2019,10,19,19,0,0.0,0.0,0.0,19.3,2.5 -2019,10,19,19,15,0.0,0.0,0.0,19.3,2.5 -2019,10,19,19,30,0.0,0.0,0.0,19.3,2.5 -2019,10,19,19,45,0.0,0.0,0.0,19.3,2.5 -2019,10,19,20,0,0.0,0.0,0.0,18.8,1.3 -2019,10,19,20,15,0.0,0.0,0.0,18.8,1.3 -2019,10,19,20,30,0.0,0.0,0.0,18.8,1.3 -2019,10,19,20,45,0.0,0.0,0.0,18.8,1.3 -2019,10,19,21,0,0.0,0.0,0.0,18.2,0.0 -2019,10,19,21,15,0.0,0.0,0.0,18.2,0.0 -2019,10,19,21,30,0.0,0.0,0.0,18.2,0.0 -2019,10,19,21,45,0.0,0.0,0.0,18.2,0.0 -2019,10,19,22,0,0.0,0.0,0.0,17.8,0.0 -2019,10,19,22,15,0.0,0.0,0.0,17.8,0.0 -2019,10,19,22,30,0.0,0.0,0.0,17.8,0.0 -2019,10,19,22,45,0.0,0.0,0.0,17.8,0.0 -2019,10,19,23,0,0.0,0.0,0.0,17.7,0.2 -2019,10,19,23,15,0.0,0.0,0.0,17.7,0.2 -2019,10,19,23,30,0.0,0.0,0.0,17.7,0.2 -2019,10,19,23,45,0.0,0.0,0.0,17.7,0.2 -2019,10,20,0,0,0.0,0.0,0.0,17.3,1.3 -2019,10,20,0,15,0.0,0.0,0.0,17.3,1.3 -2019,10,20,0,30,0.0,0.0,0.0,17.3,1.3 -2019,10,20,0,45,0.0,0.0,0.0,17.3,1.3 -2019,10,20,1,0,0.0,0.0,0.0,17.7,0.0 -2019,10,20,1,15,0.0,0.0,0.0,17.7,0.0 -2019,10,20,1,30,0.0,0.0,0.0,17.7,0.0 -2019,10,20,1,45,0.0,0.0,0.0,17.7,0.0 -2019,10,20,2,0,0.0,0.0,0.0,17.2,0.2 -2019,10,20,2,15,0.0,0.0,0.0,17.2,0.2 -2019,10,20,2,30,0.0,0.0,0.0,17.2,0.2 -2019,10,20,2,45,0.0,0.0,0.0,17.2,0.2 -2019,10,20,3,0,0.0,0.0,0.0,17.2,2.0 -2019,10,20,3,15,0.0,0.0,0.0,17.2,2.0 -2019,10,20,3,30,0.0,0.0,0.0,17.2,2.0 -2019,10,20,3,45,0.0,0.0,0.0,17.2,2.0 -2019,10,20,4,0,0.0,0.0,0.0,17.2,1.6 -2019,10,20,4,15,0.0,0.0,0.0,17.2,1.6 -2019,10,20,4,30,0.0,0.0,0.0,17.2,1.6 -2019,10,20,4,45,0.0,0.0,0.0,17.2,1.6 -2019,10,20,5,0,0.0,0.0,0.0,17.1,0.0 -2019,10,20,5,15,0.0,0.0,0.0,17.1,0.0 -2019,10,20,5,30,0.0,0.0,0.0,17.1,0.0 -2019,10,20,5,45,0.0,0.0,0.0,17.1,0.0 -2019,10,20,6,0,1.0,12.760818245689729,13.0,17.0,0.0 -2019,10,20,6,15,1.0,12.81384685654268,13.0,17.0,0.0 -2019,10,20,6,30,1.0,12.867221918546056,13.0,17.0,0.0 -2019,10,20,6,45,1.0,12.92071487149007,13.0,17.0,0.0 -2019,10,20,7,0,1.0,38.97409665033783,39.0,17.9,0.8 -2019,10,20,7,15,1.0,39.02713866611698,39.0,17.9,0.8 -2019,10,20,7,30,1.0,39.07961378477282,39.0,17.9,0.8 -2019,10,20,7,45,1.0,39.13129729979111,39.0,17.9,0.8 -2019,10,20,8,0,1.0,63.18196789442596,63.0,18.4,1.3 -2019,10,20,8,15,1.0,63.23140858941205,63.0,18.4,1.3 -2019,10,20,8,30,1.0,63.279407672103176,63.0,18.4,1.3 -2019,10,20,8,45,1.0,63.325759603058295,63.0,18.4,1.3 -2019,10,20,9,0,0.0,81.0,81.0,19.1,0.2 -2019,10,20,9,15,0.0,81.0,81.0,19.1,0.2 -2019,10,20,9,30,0.0,81.0,81.0,19.1,0.2 -2019,10,20,9,45,0.0,81.0,81.0,19.1,0.2 -2019,10,20,10,0,1.0,155.52615845799565,155.0,20.7,1.7 -2019,10,20,10,15,1.0,155.55876364282014,155.0,20.7,1.7 -2019,10,20,10,30,1.0,155.5885254307545,155.0,20.7,1.7 -2019,10,20,10,45,1.0,155.61531637725366,155.0,20.7,1.7 -2019,10,20,11,0,171.0,441.27272085257107,332.0,22.2,2.0 -2019,10,20,11,15,171.0,444.7813514609676,332.0,22.2,2.0 -2019,10,20,11,30,171.0,447.72996784064804,332.0,22.2,2.0 -2019,10,20,11,45,171.0,450.1059435635947,332.0,22.2,2.0 -2019,10,20,12,0,10.0,241.01164352847928,234.0,22.0,0.0 -2019,10,20,12,15,10.0,241.08197494567997,234.0,22.0,0.0 -2019,10,20,12,30,10.0,241.11747340703263,234.0,22.0,0.0 -2019,10,20,12,45,10.0,241.11798690267588,234.0,22.0,0.0 -2019,10,20,13,0,19.0,234.4586751441108,221.0,22.9,2.2 -2019,10,20,13,15,19.0,234.32698004137342,221.0,22.9,2.2 -2019,10,20,13,30,19.0,234.12965374552007,221.0,22.9,2.2 -2019,10,20,13,45,19.0,233.8675412380437,221.0,22.9,2.2 -2019,10,20,14,0,52.0,227.3248303208928,193.0,23.0,3.2 -2019,10,20,14,15,52.0,226.262812167412,193.0,23.0,3.2 -2019,10,20,14,30,52.0,225.03492191582282,193.0,23.0,3.2 -2019,10,20,14,45,52.0,223.64641758069172,193.0,23.0,3.2 -2019,10,20,15,0,305.0,290.7017251918919,120.0,21.6,4.1 -2019,10,20,15,15,305.0,280.7819942129388,120.0,21.6,4.1 -2019,10,20,15,30,305.0,270.03631106853925,120.0,21.6,4.1 -2019,10,20,15,45,305.0,258.5106904236249,120.0,21.6,4.1 -2019,10,20,16,0,17.0,37.03713532734139,30.0,20.2,4.1 -2019,10,20,16,15,17.0,36.316206921819074,30.0,20.2,4.1 -2019,10,20,16,30,17.0,35.56056990036945,30.0,20.2,4.1 -2019,10,20,16,45,17.0,34.773460016725856,30.0,20.2,4.1 -2019,10,20,17,0,0.0,0.0,0.0,19.3,3.9 -2019,10,20,17,15,0.0,0.0,0.0,19.3,3.9 -2019,10,20,17,30,0.0,0.0,0.0,19.3,3.9 -2019,10,20,17,45,0.0,0.0,0.0,19.3,3.9 -2019,10,20,18,0,0.0,0.0,0.0,18.9,2.5 -2019,10,20,18,15,0.0,0.0,0.0,18.9,2.5 -2019,10,20,18,30,0.0,0.0,0.0,18.9,2.5 -2019,10,20,18,45,0.0,0.0,0.0,18.9,2.5 -2019,10,20,19,0,0.0,0.0,0.0,18.8,1.5 -2019,10,20,19,15,0.0,0.0,0.0,18.8,1.5 -2019,10,20,19,30,0.0,0.0,0.0,18.8,1.5 -2019,10,20,19,45,0.0,0.0,0.0,18.8,1.5 -2019,10,20,20,0,0.0,0.0,0.0,18.3,0.2 -2019,10,20,20,15,0.0,0.0,0.0,18.3,0.2 -2019,10,20,20,30,0.0,0.0,0.0,18.3,0.2 -2019,10,20,20,45,0.0,0.0,0.0,18.3,0.2 -2019,10,20,21,0,0.0,0.0,0.0,18.3,1.5 -2019,10,20,21,15,0.0,0.0,0.0,18.3,1.5 -2019,10,20,21,30,0.0,0.0,0.0,18.3,1.5 -2019,10,20,21,45,0.0,0.0,0.0,18.3,1.5 -2019,10,20,22,0,0.0,0.0,0.0,18.3,1.3 -2019,10,20,22,15,0.0,0.0,0.0,18.3,1.3 -2019,10,20,22,30,0.0,0.0,0.0,18.3,1.3 -2019,10,20,22,45,0.0,0.0,0.0,18.3,1.3 -2019,10,20,23,0,0.0,0.0,0.0,18.2,0.0 -2019,10,20,23,15,0.0,0.0,0.0,18.2,0.0 -2019,10,20,23,30,0.0,0.0,0.0,18.2,0.0 -2019,10,20,23,45,0.0,0.0,0.0,18.2,0.0 -2019,10,21,0,0,0.0,0.0,0.0,18.2,0.0 -2019,10,21,0,15,0.0,0.0,0.0,18.2,0.0 -2019,10,21,0,30,0.0,0.0,0.0,18.2,0.0 -2019,10,21,0,45,0.0,0.0,0.0,18.2,0.0 -2019,10,21,1,0,0.0,0.0,0.0,17.7,0.0 -2019,10,21,1,15,0.0,0.0,0.0,17.7,0.0 -2019,10,21,1,30,0.0,0.0,0.0,17.7,0.0 -2019,10,21,1,45,0.0,0.0,0.0,17.7,0.0 -2019,10,21,2,0,0.0,0.0,0.0,17.2,0.0 -2019,10,21,2,15,0.0,0.0,0.0,17.2,0.0 -2019,10,21,2,30,0.0,0.0,0.0,17.2,0.0 -2019,10,21,2,45,0.0,0.0,0.0,17.2,0.0 -2019,10,21,3,0,0.0,0.0,0.0,17.2,0.0 -2019,10,21,3,15,0.0,0.0,0.0,17.2,0.0 -2019,10,21,3,30,0.0,0.0,0.0,17.2,0.0 -2019,10,21,3,45,0.0,0.0,0.0,17.2,0.0 -2019,10,21,4,0,0.0,0.0,0.0,17.1,0.0 -2019,10,21,4,15,0.0,0.0,0.0,17.1,0.0 -2019,10,21,4,30,0.0,0.0,0.0,17.1,0.0 -2019,10,21,4,45,0.0,0.0,0.0,17.1,0.0 -2019,10,21,5,0,0.0,0.0,0.0,16.9,0.0 -2019,10,21,5,15,0.0,0.0,0.0,16.9,0.0 -2019,10,21,5,30,0.0,0.0,0.0,16.9,0.0 -2019,10,21,5,45,0.0,0.0,0.0,16.9,0.0 -2019,10,21,6,0,1.0,12.757613812290462,13.0,17.9,1.3 -2019,10,21,6,15,1.0,12.810577793205105,13.0,17.9,1.3 -2019,10,21,6,30,1.0,12.863887803024218,13.0,17.9,1.3 -2019,10,21,6,45,1.0,12.917315560101452,13.0,17.9,1.3 -2019,10,21,7,0,2.0,39.941264557157254,40.0,18.0,0.0 -2019,10,21,7,15,2.0,40.04721929616378,40.0,18.0,0.0 -2019,10,21,7,30,2.0,40.15204162276359,40.0,18.0,0.0 -2019,10,21,7,45,2.0,40.25528267166157,40.0,18.0,0.0 -2019,10,21,8,0,1.0,62.17825017441824,62.0,18.4,0.0 -2019,10,21,8,15,1.0,62.227630612327715,62.0,18.4,0.0 -2019,10,21,8,30,1.0,62.27557119494306,62.0,18.4,0.0 -2019,10,21,8,45,1.0,62.321866633329556,62.0,18.4,0.0 -2019,10,21,9,0,0.0,95.0,95.0,19.6,0.0 -2019,10,21,9,15,0.0,95.0,95.0,19.6,0.0 -2019,10,21,9,30,0.0,95.0,95.0,19.6,0.0 -2019,10,21,9,45,0.0,95.0,95.0,19.6,0.0 -2019,10,21,10,0,3.0,184.56606374153554,183.0,21.2,0.2 -2019,10,21,10,15,3.0,184.66376008086928,183.0,21.2,0.2 -2019,10,21,10,30,3.0,184.75293662591466,183.0,21.2,0.2 -2019,10,21,10,45,3.0,184.83321150901517,183.0,21.2,0.2 -2019,10,21,11,0,5.0,220.17373496799567,217.0,21.7,2.2 -2019,10,21,11,15,5.0,220.27620147026417,217.0,21.7,2.2 -2019,10,21,11,30,5.0,220.36231324453712,217.0,21.7,2.2 -2019,10,21,11,45,5.0,220.431701546977,217.0,21.7,2.2 -2019,10,21,12,0,10.0,236.96813849244006,230.0,21.8,2.3 -2019,10,21,12,15,10.0,237.0383841914769,230.0,21.8,2.3 -2019,10,21,12,30,10.0,237.07383938819692,230.0,21.8,2.3 -2019,10,21,12,45,10.0,237.07435225800458,230.0,21.8,2.3 -2019,10,21,13,0,20.0,236.07984120942524,222.0,22.8,0.0 -2019,10,21,13,15,20.0,235.94138373989296,222.0,22.8,0.0 -2019,10,21,13,30,20.0,235.73392500355322,222.0,22.8,0.0 -2019,10,21,13,45,20.0,235.4583533705647,222.0,22.8,0.0 -2019,10,21,14,0,32.0,197.98535820954623,177.0,22.7,0.5 -2019,10,21,14,15,32.0,197.33260510650396,177.0,22.7,0.5 -2019,10,21,14,30,32.0,196.57790127277644,177.0,22.7,0.5 -2019,10,21,14,45,32.0,195.72447846604393,177.0,22.7,0.5 -2019,10,21,15,0,24.0,110.33199338033852,97.0,22.2,4.1 -2019,10,21,15,15,24.0,109.55237572314897,97.0,22.2,4.1 -2019,10,21,15,30,24.0,108.70784432046145,97.0,22.2,4.1 -2019,10,21,15,45,24.0,107.8020155853971,97.0,22.2,4.1 -2019,10,21,16,0,3.0,17.229846051958102,16.0,21.3,4.1 -2019,10,21,16,15,3.0,17.10277844794072,16.0,21.3,4.1 -2019,10,21,16,30,3.0,16.969593259110678,16.0,21.3,4.1 -2019,10,21,16,45,3.0,16.830860804893497,16.0,21.3,4.1 -2019,10,21,17,0,0.0,0.0,0.0,20.4,3.9 -2019,10,21,17,15,0.0,0.0,0.0,20.4,3.9 -2019,10,21,17,30,0.0,0.0,0.0,20.4,3.9 -2019,10,21,17,45,0.0,0.0,0.0,20.4,3.9 -2019,10,21,18,0,0.0,0.0,0.0,18.8,2.6 -2019,10,21,18,15,0.0,0.0,0.0,18.8,2.6 -2019,10,21,18,30,0.0,0.0,0.0,18.8,2.6 -2019,10,21,18,45,0.0,0.0,0.0,18.8,2.6 -2019,10,21,19,0,0.0,0.0,0.0,17.8,2.5 -2019,10,21,19,15,0.0,0.0,0.0,17.8,2.5 -2019,10,21,19,30,0.0,0.0,0.0,17.8,2.5 -2019,10,21,19,45,0.0,0.0,0.0,17.8,2.5 -2019,10,21,20,0,0.0,0.0,0.0,17.8,1.5 -2019,10,21,20,15,0.0,0.0,0.0,17.8,1.5 -2019,10,21,20,30,0.0,0.0,0.0,17.8,1.5 -2019,10,21,20,45,0.0,0.0,0.0,17.8,1.5 -2019,10,21,21,0,0.0,0.0,0.0,17.7,1.5 -2019,10,21,21,15,0.0,0.0,0.0,17.7,1.5 -2019,10,21,21,30,0.0,0.0,0.0,17.7,1.5 -2019,10,21,21,45,0.0,0.0,0.0,17.7,1.5 -2019,10,21,22,0,0.0,0.0,0.0,17.2,1.6 -2019,10,21,22,15,0.0,0.0,0.0,17.2,1.6 -2019,10,21,22,30,0.0,0.0,0.0,17.2,1.6 -2019,10,21,22,45,0.0,0.0,0.0,17.2,1.6 -2019,10,21,23,0,0.0,0.0,0.0,17.2,2.0 -2019,10,21,23,15,0.0,0.0,0.0,17.2,2.0 -2019,10,21,23,30,0.0,0.0,0.0,17.2,2.0 -2019,10,21,23,45,0.0,0.0,0.0,17.2,2.0 -2019,10,22,0,0,0.0,0.0,0.0,17.1,1.6 -2019,10,22,0,15,0.0,0.0,0.0,17.1,1.6 -2019,10,22,0,30,0.0,0.0,0.0,17.1,1.6 -2019,10,22,0,45,0.0,0.0,0.0,17.1,1.6 -2019,10,22,1,0,0.0,0.0,0.0,16.7,2.1 -2019,10,22,1,15,0.0,0.0,0.0,16.7,2.1 -2019,10,22,1,30,0.0,0.0,0.0,16.7,2.1 -2019,10,22,1,45,0.0,0.0,0.0,16.7,2.1 -2019,10,22,2,0,0.0,0.0,0.0,16.6,1.9 -2019,10,22,2,15,0.0,0.0,0.0,16.6,1.9 -2019,10,22,2,30,0.0,0.0,0.0,16.6,1.9 -2019,10,22,2,45,0.0,0.0,0.0,16.6,1.9 -2019,10,22,3,0,0.0,0.0,0.0,16.0,0.0 -2019,10,22,3,15,0.0,0.0,0.0,16.0,0.0 -2019,10,22,3,30,0.0,0.0,0.0,16.0,0.0 -2019,10,22,3,45,0.0,0.0,0.0,16.0,0.0 -2019,10,22,4,0,0.0,0.0,0.0,15.7,0.2 -2019,10,22,4,15,0.0,0.0,0.0,15.7,0.2 -2019,10,22,4,30,0.0,0.0,0.0,15.7,0.2 -2019,10,22,4,45,0.0,0.0,0.0,15.7,0.2 -2019,10,22,5,0,0.0,0.0,0.0,16.1,1.6 -2019,10,22,5,15,0.0,0.0,0.0,16.1,1.6 -2019,10,22,5,30,0.0,0.0,0.0,16.1,1.6 -2019,10,22,5,45,0.0,0.0,0.0,16.1,1.6 -2019,10,22,6,0,1.0,11.754448801073895,12.0,16.3,1.5 -2019,10,22,6,15,1.0,11.807346756570189,12.0,16.3,1.5 -2019,10,22,6,30,1.0,11.860590309607925,12.0,16.3,1.5 -2019,10,22,6,45,1.0,11.913951463118897,12.0,16.3,1.5 -2019,10,22,7,0,2.0,38.93440343290323,39.0,16.8,0.2 -2019,10,22,7,15,2.0,39.04022608769237,39.0,16.8,0.2 -2019,10,22,7,30,2.0,39.14491774175121,39.0,16.8,0.2 -2019,10,22,7,45,2.0,39.24803008934451,39.0,16.8,0.2 -2019,10,22,8,0,45.0,183.85523572032042,176.0,18.0,0.0 -2019,10,22,8,15,45.0,186.07458531001566,176.0,18.0,0.0 -2019,10,22,8,30,45.0,188.22922218367341,176.0,18.0,0.0 -2019,10,22,8,45,45.0,190.30991985541485,176.0,18.0,0.0 -2019,10,22,9,0,11.0,195.9863434009361,192.0,20.0,1.5 -2019,10,22,9,15,11.0,196.45236315287397,192.0,20.0,1.5 -2019,10,22,9,30,11.0,196.8940440967925,192.0,20.0,1.5 -2019,10,22,9,45,11.0,197.3094948870818,192.0,20.0,1.5 -2019,10,22,10,0,148.0,388.64969108655816,312.0,20.2,1.6 -2019,10,22,10,15,148.0,393.4633688923992,312.0,20.2,1.6 -2019,10,22,10,30,148.0,397.857260809068,312.0,20.2,1.6 -2019,10,22,10,45,148.0,401.81255151681466,312.0,20.2,1.6 -2019,10,22,11,0,33.0,310.80612180519495,290.0,21.8,2.3 -2019,10,22,11,15,33.0,311.4815576642352,290.0,21.8,2.3 -2019,10,22,11,30,33.0,312.04918687907,290.0,21.8,2.3 -2019,10,22,11,45,33.0,312.5065787742575,290.0,21.8,2.3 -2019,10,22,12,0,569.0,612.0199945435584,218.0,22.7,4.1 -2019,10,22,12,15,569.0,616.0119921439214,218.0,22.7,4.1 -2019,10,22,12,30,569.0,618.0268779257892,218.0,22.7,4.1 -2019,10,22,12,45,569.0,618.056023838913,218.0,22.7,4.1 -2019,10,22,13,0,643.0,619.8732041544463,170.0,21.7,4.2 -2019,10,22,13,15,643.0,615.4273456774365,170.0,21.7,4.2 -2019,10,22,13,30,643.0,608.7658619402179,170.0,21.7,4.2 -2019,10,22,13,45,643.0,599.917278438843,170.0,21.7,4.2 -2019,10,22,14,0,450.0,461.1784895409733,168.0,21.5,4.8 -2019,10,22,14,15,450.0,452.01059208540073,168.0,21.5,4.8 -2019,10,22,14,30,450.0,441.4107997218041,168.0,21.5,4.8 -2019,10,22,14,45,450.0,429.42450238839416,168.0,21.5,4.8 -2019,10,22,15,0,298.0,281.29933804590144,117.0,20.4,6.2 -2019,10,22,15,15,298.0,271.6311529669865,117.0,20.4,6.2 -2019,10,22,15,30,298.0,261.157960331031,117.0,20.4,6.2 -2019,10,22,15,45,298.0,249.92460795677584,117.0,20.4,6.2 -2019,10,22,16,0,103.0,81.81495796885004,40.0,19.1,5.9 -2019,10,22,16,15,103.0,77.45774209204524,40.0,19.1,5.9 -2019,10,22,16,30,103.0,72.89075097095551,40.0,19.1,5.9 -2019,10,22,16,45,103.0,68.13354116269852,40.0,19.1,5.9 -2019,10,22,17,0,0.0,0.0,0.0,18.2,5.4 -2019,10,22,17,15,0.0,0.0,0.0,18.2,5.4 -2019,10,22,17,30,0.0,0.0,0.0,18.2,5.4 -2019,10,22,17,45,0.0,0.0,0.0,18.2,5.4 -2019,10,22,18,0,0.0,0.0,0.0,17.1,3.2 -2019,10,22,18,15,0.0,0.0,0.0,17.1,3.2 -2019,10,22,18,30,0.0,0.0,0.0,17.1,3.2 -2019,10,22,18,45,0.0,0.0,0.0,17.1,3.2 -2019,10,22,19,0,0.0,0.0,0.0,16.1,4.0 -2019,10,22,19,15,0.0,0.0,0.0,16.1,4.0 -2019,10,22,19,30,0.0,0.0,0.0,16.1,4.0 -2019,10,22,19,45,0.0,0.0,0.0,16.1,4.0 -2019,10,22,20,0,0.0,0.0,0.0,16.1,2.7 -2019,10,22,20,15,0.0,0.0,0.0,16.1,2.7 -2019,10,22,20,30,0.0,0.0,0.0,16.1,2.7 -2019,10,22,20,45,0.0,0.0,0.0,16.1,2.7 -2019,10,22,21,0,0.0,0.0,0.0,16.0,0.2 -2019,10,22,21,15,0.0,0.0,0.0,16.0,0.2 -2019,10,22,21,30,0.0,0.0,0.0,16.0,0.2 -2019,10,22,21,45,0.0,0.0,0.0,16.0,0.2 -2019,10,22,22,0,0.0,0.0,0.0,15.5,1.3 -2019,10,22,22,15,0.0,0.0,0.0,15.5,1.3 -2019,10,22,22,30,0.0,0.0,0.0,15.5,1.3 -2019,10,22,22,45,0.0,0.0,0.0,15.5,1.3 -2019,10,22,23,0,0.0,0.0,0.0,15.0,0.4 -2019,10,22,23,15,0.0,0.0,0.0,15.0,0.4 -2019,10,22,23,30,0.0,0.0,0.0,15.0,0.4 -2019,10,22,23,45,0.0,0.0,0.0,15.0,0.4 -2019,10,23,0,0,0.0,0.0,0.0,14.9,0.0 -2019,10,23,0,15,0.0,0.0,0.0,14.9,0.0 -2019,10,23,0,30,0.0,0.0,0.0,14.9,0.0 -2019,10,23,0,45,0.0,0.0,0.0,14.9,0.0 -2019,10,23,1,0,0.0,0.0,0.0,14.4,0.0 -2019,10,23,1,15,0.0,0.0,0.0,14.4,0.0 -2019,10,23,1,30,0.0,0.0,0.0,14.4,0.0 -2019,10,23,1,45,0.0,0.0,0.0,14.4,0.0 -2019,10,23,2,0,0.0,0.0,0.0,14.4,0.0 -2019,10,23,2,15,0.0,0.0,0.0,14.4,0.0 -2019,10,23,2,30,0.0,0.0,0.0,14.4,0.0 -2019,10,23,2,45,0.0,0.0,0.0,14.4,0.0 -2019,10,23,3,0,0.0,0.0,0.0,14.3,0.0 -2019,10,23,3,15,0.0,0.0,0.0,14.3,0.0 -2019,10,23,3,30,0.0,0.0,0.0,14.3,0.0 -2019,10,23,3,45,0.0,0.0,0.0,14.3,0.0 -2019,10,23,4,0,0.0,0.0,0.0,13.9,0.0 -2019,10,23,4,15,0.0,0.0,0.0,13.9,0.0 -2019,10,23,4,30,0.0,0.0,0.0,13.9,0.0 -2019,10,23,4,45,0.0,0.0,0.0,13.9,0.0 -2019,10,23,5,0,0.0,0.0,0.0,13.9,0.0 -2019,10,23,5,15,0.0,0.0,0.0,13.9,0.0 -2019,10,23,5,30,0.0,0.0,0.0,13.9,0.0 -2019,10,23,5,45,0.0,0.0,0.0,13.9,0.0 -2019,10,23,6,0,1.0,11.751324002284665,12.0,14.5,0.0 -2019,10,23,6,15,1.0,11.804154616834534,12.0,14.5,0.0 -2019,10,23,6,30,1.0,11.857330388968094,12.0,14.5,0.0 -2019,10,23,6,45,1.0,11.910623611865375,12.0,14.5,0.0 -2019,10,23,7,0,2.0,38.927612151528415,39.0,15.1,0.0 -2019,10,23,7,15,2.0,39.033300090378916,39.0,15.1,0.0 -2019,10,23,7,30,2.0,39.137858468302575,39.0,15.1,0.0 -2019,10,23,7,45,2.0,39.240839550273044,39.0,15.1,0.0 -2019,10,23,8,0,1.0,68.17090117774369,68.0,16.4,0.0 -2019,10,23,8,15,1.0,68.22015727285677,68.0,16.4,0.0 -2019,10,23,8,30,1.0,68.26797713831458,68.0,16.4,0.0 -2019,10,23,8,45,1.0,68.31415600211176,68.0,16.4,0.0 -2019,10,23,9,0,5.0,161.7924805963202,160.0,18.4,0.2 -2019,10,23,9,15,5.0,162.00403809291277,160.0,18.4,0.2 -2019,10,23,9,30,5.0,162.20454657865716,160.0,18.4,0.2 -2019,10,23,9,45,5.0,162.39314744543486,160.0,18.4,0.2 -2019,10,23,10,0,13.0,242.67948599598733,236.0,19.5,2.1 -2019,10,23,10,15,13.0,243.10177077797707,236.0,19.5,2.1 -2019,10,23,10,30,13.0,243.48722941583304,236.0,19.5,2.1 -2019,10,23,10,45,13.0,243.8342113164912,236.0,19.5,2.1 -2019,10,23,11,0,18.0,274.27247320794623,263.0,20.7,2.1 -2019,10,23,11,15,18.0,274.64042375644516,263.0,20.7,2.1 -2019,10,23,11,30,18.0,274.9496455399011,263.0,20.7,2.1 -2019,10,23,11,45,18.0,275.19881442316466,263.0,20.7,2.1 -2019,10,23,12,0,24.0,279.51581790243273,263.0,21.1,2.5 -2019,10,23,12,15,24.0,279.68398306156985,263.0,21.1,2.5 -2019,10,23,12,30,24.0,279.7688612659355,263.0,21.1,2.5 -2019,10,23,12,45,24.0,279.7700890540279,263.0,21.1,2.5 -2019,10,23,13,0,32.0,257.25021489102664,235.0,21.0,5.2 -2019,10,23,13,15,32.0,257.02924077003075,235.0,21.0,5.2 -2019,10,23,13,30,32.0,256.6981426208269,235.0,21.0,5.2 -2019,10,23,13,45,32.0,256.2583382565211,235.0,21.0,5.2 -2019,10,23,14,0,148.0,299.79166331451074,204.0,20.5,5.4 -2019,10,23,14,15,148.0,296.78028218685944,204.0,20.5,5.4 -2019,10,23,14,30,148.0,293.29856624976037,204.0,20.5,5.4 -2019,10,23,14,45,148.0,289.36142474537894,204.0,20.5,5.4 -2019,10,23,15,0,581.0,401.92365976758947,84.0,19.8,3.2 -2019,10,23,15,15,581.0,383.09793956918105,84.0,19.8,3.2 -2019,10,23,15,30,581.0,362.70472279279517,84.0,19.8,3.2 -2019,10,23,15,45,581.0,340.83133632349217,84.0,19.8,3.2 -2019,10,23,16,0,299.0,158.20286086523032,38.0,19.1,3.9 -2019,10,23,16,15,299.0,145.57034603400035,38.0,19.1,3.9 -2019,10,23,16,30,299.0,132.32964722484036,38.0,19.1,3.9 -2019,10,23,16,45,299.0,118.53746314280035,38.0,19.1,3.9 -2019,10,23,17,0,0.0,0.0,0.0,18.1,4.4 -2019,10,23,17,15,0.0,0.0,0.0,18.1,4.4 -2019,10,23,17,30,0.0,0.0,0.0,18.1,4.4 -2019,10,23,17,45,0.0,0.0,0.0,18.1,4.4 -2019,10,23,18,0,0.0,0.0,0.0,16.6,2.6 -2019,10,23,18,15,0.0,0.0,0.0,16.6,2.6 -2019,10,23,18,30,0.0,0.0,0.0,16.6,2.6 -2019,10,23,18,45,0.0,0.0,0.0,16.6,2.6 -2019,10,23,19,0,0.0,0.0,0.0,16.0,2.3 -2019,10,23,19,15,0.0,0.0,0.0,16.0,2.3 -2019,10,23,19,30,0.0,0.0,0.0,16.0,2.3 -2019,10,23,19,45,0.0,0.0,0.0,16.0,2.3 -2019,10,23,20,0,0.0,0.0,0.0,15.5,0.2 -2019,10,23,20,15,0.0,0.0,0.0,15.5,0.2 -2019,10,23,20,30,0.0,0.0,0.0,15.5,0.2 -2019,10,23,20,45,0.0,0.0,0.0,15.5,0.2 -2019,10,23,21,0,0.0,0.0,0.0,14.8,1.3 -2019,10,23,21,15,0.0,0.0,0.0,14.8,1.3 -2019,10,23,21,30,0.0,0.0,0.0,14.8,1.3 -2019,10,23,21,45,0.0,0.0,0.0,14.8,1.3 -2019,10,23,22,0,0.0,0.0,0.0,13.2,0.0 -2019,10,23,22,15,0.0,0.0,0.0,13.2,0.0 -2019,10,23,22,30,0.0,0.0,0.0,13.2,0.0 -2019,10,23,22,45,0.0,0.0,0.0,13.2,0.0 -2019,10,23,23,0,0.0,0.0,0.0,12.1,0.0 -2019,10,23,23,15,0.0,0.0,0.0,12.1,0.0 -2019,10,23,23,30,0.0,0.0,0.0,12.1,0.0 -2019,10,23,23,45,0.0,0.0,0.0,12.1,0.0 -2019,10,24,0,0,0.0,0.0,0.0,11.6,0.3 -2019,10,24,0,15,0.0,0.0,0.0,11.6,0.3 -2019,10,24,0,30,0.0,0.0,0.0,11.6,0.3 -2019,10,24,0,45,0.0,0.0,0.0,11.6,0.3 -2019,10,24,1,0,0.0,0.0,0.0,10.7,2.3 -2019,10,24,1,15,0.0,0.0,0.0,10.7,2.3 -2019,10,24,1,30,0.0,0.0,0.0,10.7,2.3 -2019,10,24,1,45,0.0,0.0,0.0,10.7,2.3 -2019,10,24,2,0,0.0,0.0,0.0,11.6,0.0 -2019,10,24,2,15,0.0,0.0,0.0,11.6,0.0 -2019,10,24,2,30,0.0,0.0,0.0,11.6,0.0 -2019,10,24,2,45,0.0,0.0,0.0,11.6,0.0 -2019,10,24,3,0,0.0,0.0,0.0,10.6,0.0 -2019,10,24,3,15,0.0,0.0,0.0,10.6,0.0 -2019,10,24,3,30,0.0,0.0,0.0,10.6,0.0 -2019,10,24,3,45,0.0,0.0,0.0,10.6,0.0 -2019,10,24,4,0,0.0,0.0,0.0,10.5,0.2 -2019,10,24,4,15,0.0,0.0,0.0,10.5,0.2 -2019,10,24,4,30,0.0,0.0,0.0,10.5,0.2 -2019,10,24,4,45,0.0,0.0,0.0,10.5,0.2 -2019,10,24,5,0,0.0,0.0,0.0,10.1,1.3 -2019,10,24,5,15,0.0,0.0,0.0,10.1,1.3 -2019,10,24,5,30,0.0,0.0,0.0,10.1,1.3 -2019,10,24,5,45,0.0,0.0,0.0,10.1,1.3 -2019,10,24,6,0,105.0,3.5652190569925324,30.0,11.4,0.2 -2019,10,24,6,15,105.0,9.10523320668537,30.0,11.4,0.2 -2019,10,24,6,30,105.0,14.681441860527189,30.0,11.4,0.2 -2019,10,24,6,45,105.0,20.26996683698718,30.0,11.4,0.2 -2019,10,24,7,0,311.0,90.69884584381607,103.0,14.1,1.3 -2019,10,24,7,15,311.0,107.1119881099147,103.0,14.1,1.3 -2019,10,24,7,30,311.0,123.34971164430185,103.0,14.1,1.3 -2019,10,24,7,45,311.0,139.34248402194274,103.0,14.1,1.3 -2019,10,24,8,0,343.0,232.374549374719,175.0,15.8,0.3 -2019,10,24,8,15,343.0,249.24746021034696,175.0,15.8,0.3 -2019,10,24,8,30,343.0,265.6283837120726,175.0,15.8,0.3 -2019,10,24,8,45,343.0,281.4471742506164,175.0,15.8,0.3 -2019,10,24,9,0,448.0,371.8716321127802,213.0,17.5,2.5 -2019,10,24,9,15,448.0,390.80257918157724,213.0,17.5,2.5 -2019,10,24,9,30,448.0,408.74481990388324,213.0,17.5,2.5 -2019,10,24,9,45,448.0,425.6215228503821,213.0,17.5,2.5 -2019,10,24,10,0,640.0,517.2291705544266,191.0,19.7,2.3 -2019,10,24,10,15,640.0,537.9915902082553,191.0,19.7,2.3 -2019,10,24,10,30,640.0,556.9433837364271,191.0,19.7,2.3 -2019,10,24,10,45,640.0,574.0033966495217,191.0,19.7,2.3 -2019,10,24,11,0,844.0,660.9924962469598,136.0,21.6,3.9 -2019,10,24,11,15,844.0,678.2228942165477,136.0,21.6,3.9 -2019,10,24,11,30,844.0,692.7031400309559,136.0,21.6,3.9 -2019,10,24,11,45,844.0,704.3712270545594,136.0,21.6,3.9 -2019,10,24,12,0,790.0,687.2487922872639,147.0,21.2,2.7 -2019,10,24,12,15,790.0,692.7770436855766,147.0,21.2,2.7 -2019,10,24,12,30,790.0,695.5673247067975,147.0,21.2,2.7 -2019,10,24,12,45,790.0,695.6076869392216,147.0,21.2,2.7 -2019,10,24,13,0,808.0,681.3361388567383,123.0,22.3,3.5 -2019,10,24,13,15,808.0,675.7637847120535,123.0,22.3,3.5 -2019,10,24,13,30,808.0,667.4144081619918,123.0,22.3,3.5 -2019,10,24,13,45,808.0,656.3237625187598,123.0,22.3,3.5 -2019,10,24,14,0,812.0,614.1113165585288,92.0,22.7,3.3 -2019,10,24,14,15,812.0,597.6108604033661,92.0,22.7,3.3 -2019,10,24,14,30,812.0,578.5332681858572,92.0,22.7,3.3 -2019,10,24,14,45,812.0,556.9602330847222,92.0,22.7,3.3 -2019,10,24,15,0,733.0,461.08050533330425,63.0,21.9,4.6 -2019,10,24,15,15,733.0,437.3604687715892,63.0,21.9,4.6 -2019,10,24,15,30,733.0,411.6654174031027,63.0,21.9,4.6 -2019,10,24,15,45,733.0,384.1053813825813,63.0,21.9,4.6 -2019,10,24,16,0,390.0,189.25425243654803,34.0,20.8,4.3 -2019,10,24,16,15,390.0,172.7984468532558,34.0,20.8,4.3 -2019,10,24,16,30,390.0,155.5503875157905,34.0,20.8,4.3 -2019,10,24,16,45,390.0,137.58393326220548,34.0,20.8,4.3 -2019,10,24,17,0,0.0,0.0,0.0,19.8,4.0 -2019,10,24,17,15,0.0,0.0,0.0,19.8,4.0 -2019,10,24,17,30,0.0,0.0,0.0,19.8,4.0 -2019,10,24,17,45,0.0,0.0,0.0,19.8,4.0 -2019,10,24,18,0,0.0,0.0,0.0,18.2,3.2 -2019,10,24,18,15,0.0,0.0,0.0,18.2,3.2 -2019,10,24,18,30,0.0,0.0,0.0,18.2,3.2 -2019,10,24,18,45,0.0,0.0,0.0,18.2,3.2 -2019,10,24,19,0,0.0,0.0,0.0,17.1,0.0 -2019,10,24,19,15,0.0,0.0,0.0,17.1,0.0 -2019,10,24,19,30,0.0,0.0,0.0,17.1,0.0 -2019,10,24,19,45,0.0,0.0,0.0,17.1,0.0 -2019,10,24,20,0,0.0,0.0,0.0,15.9,0.0 -2019,10,24,20,15,0.0,0.0,0.0,15.9,0.0 -2019,10,24,20,30,0.0,0.0,0.0,15.9,0.0 -2019,10,24,20,45,0.0,0.0,0.0,15.9,0.0 -2019,10,24,21,0,0.0,0.0,0.0,14.3,0.0 -2019,10,24,21,15,0.0,0.0,0.0,14.3,0.0 -2019,10,24,21,30,0.0,0.0,0.0,14.3,0.0 -2019,10,24,21,45,0.0,0.0,0.0,14.3,0.0 -2019,10,24,22,0,0.0,0.0,0.0,13.8,0.0 -2019,10,24,22,15,0.0,0.0,0.0,13.8,0.0 -2019,10,24,22,30,0.0,0.0,0.0,13.8,0.0 -2019,10,24,22,45,0.0,0.0,0.0,13.8,0.0 -2019,10,24,23,0,0.0,0.0,0.0,13.2,0.0 -2019,10,24,23,15,0.0,0.0,0.0,13.2,0.0 -2019,10,24,23,30,0.0,0.0,0.0,13.2,0.0 -2019,10,24,23,45,0.0,0.0,0.0,13.2,0.0 -2019,10,25,0,0,0.0,0.0,0.0,12.5,0.0 -2019,10,25,0,15,0.0,0.0,0.0,12.5,0.0 -2019,10,25,0,30,0.0,0.0,0.0,12.5,0.0 -2019,10,25,0,45,0.0,0.0,0.0,12.5,0.0 -2019,10,25,1,0,0.0,0.0,0.0,10.5,0.2 -2019,10,25,1,15,0.0,0.0,0.0,10.5,0.2 -2019,10,25,1,30,0.0,0.0,0.0,10.5,0.2 -2019,10,25,1,45,0.0,0.0,0.0,10.5,0.2 -2019,10,25,2,0,0.0,0.0,0.0,10.1,1.3 -2019,10,25,2,15,0.0,0.0,0.0,10.1,1.3 -2019,10,25,2,30,0.0,0.0,0.0,10.1,1.3 -2019,10,25,2,45,0.0,0.0,0.0,10.1,1.3 -2019,10,25,3,0,0.0,0.0,0.0,10.6,0.0 -2019,10,25,3,15,0.0,0.0,0.0,10.6,0.0 -2019,10,25,3,30,0.0,0.0,0.0,10.6,0.0 -2019,10,25,3,45,0.0,0.0,0.0,10.6,0.0 -2019,10,25,4,0,0.0,0.0,0.0,10.5,0.2 -2019,10,25,4,15,0.0,0.0,0.0,10.5,0.2 -2019,10,25,4,30,0.0,0.0,0.0,10.5,0.2 -2019,10,25,4,45,0.0,0.0,0.0,10.5,0.2 -2019,10,25,5,0,0.0,0.0,0.0,9.5,1.6 -2019,10,25,5,15,0.0,0.0,0.0,9.5,1.6 -2019,10,25,5,30,0.0,0.0,0.0,9.5,1.6 -2019,10,25,5,45,0.0,0.0,0.0,9.5,1.6 -2019,10,25,6,0,442.0,-89.62244881546677,23.0,10.5,2.0 -2019,10,25,6,15,442.0,-66.33244636155435,23.0,10.5,2.0 -2019,10,25,6,30,442.0,-42.89028363012805,23.0,10.5,2.0 -2019,10,25,6,45,442.0,-19.396343560910005,23.0,10.5,2.0 -2019,10,25,7,0,710.0,29.557977654720293,60.0,14.2,1.3 -2019,10,25,7,15,710.0,66.97897719746697,60.0,14.2,1.3 -2019,10,25,7,30,710.0,104.00003234366014,60.0,14.2,1.3 -2019,10,25,7,45,710.0,140.46261325158807,60.0,14.2,1.3 -2019,10,25,8,0,889.0,217.50874225309528,72.0,17.1,0.0 -2019,10,25,8,15,889.0,261.1827797355528,72.0,17.1,0.0 -2019,10,25,8,30,889.0,303.58335151484454,72.0,17.1,0.0 -2019,10,25,8,45,889.0,344.5288918331575,72.0,17.1,0.0 -2019,10,25,9,0,983.0,419.817453864524,75.0,20.2,0.2 -2019,10,25,9,15,983.0,461.3007765819068,75.0,20.2,0.2 -2019,10,25,9,30,983.0,500.61755029911745,75.0,20.2,0.2 -2019,10,25,9,45,983.0,537.5994145550777,75.0,20.2,0.2 -2019,10,25,10,0,1032.0,596.866554999011,75.0,22.0,1.3 -2019,10,25,10,15,1032.0,630.3017128736909,75.0,22.0,1.3 -2019,10,25,10,30,1032.0,660.821094486609,75.0,22.0,1.3 -2019,10,25,10,45,1032.0,688.2940111602784,75.0,22.0,1.3 -2019,10,25,11,0,1048.0,721.4881346810826,74.0,24.1,0.2 -2019,10,25,11,15,1048.0,742.8549518821585,74.0,24.1,0.2 -2019,10,25,11,30,1048.0,760.8114010535127,74.0,24.1,0.2 -2019,10,25,11,45,1048.0,775.2805899230689,74.0,24.1,0.2 -2019,10,25,12,0,1035.0,778.3660102813294,75.0,25.6,2.2 -2019,10,25,12,15,1035.0,785.599147981264,75.0,25.6,2.2 -2019,10,25,12,30,1035.0,789.2499383295764,75.0,25.6,2.2 -2019,10,25,12,45,1035.0,789.3027480815151,75.0,25.6,2.2 -2019,10,25,13,0,991.0,755.5415796499873,75.0,25.8,2.6 -2019,10,25,13,15,991.0,748.71620188237,75.0,25.8,2.6 -2019,10,25,13,30,991.0,738.4893484558669,75.0,25.8,2.6 -2019,10,25,13,45,991.0,724.9048123269056,75.0,25.8,2.6 -2019,10,25,14,0,903.0,649.809031687132,73.0,27.1,2.5 -2019,10,25,14,15,903.0,631.4836359680133,73.0,27.1,2.5 -2019,10,25,14,30,903.0,610.2960746384164,73.0,27.1,2.5 -2019,10,25,14,45,903.0,586.337076088728,73.0,27.1,2.5 -2019,10,25,15,0,737.0,459.2366636192313,62.0,27.0,2.0 -2019,10,25,15,15,737.0,435.4187038487478,62.0,27.0,2.0 -2019,10,25,15,30,737.0,409.61757583603185,62.0,27.0,2.0 -2019,10,25,15,45,737.0,381.9437639722953,62.0,27.0,2.0 -2019,10,25,16,0,433.0,201.6829432506924,31.0,26.1,0.9 -2019,10,25,16,15,433.0,183.43692406705648,31.0,26.1,0.9 -2019,10,25,16,30,433.0,164.312462492753,31.0,26.1,0.9 -2019,10,25,16,45,433.0,144.3914524082838,31.0,26.1,0.9 -2019,10,25,17,0,0.0,0.0,0.0,25.3,0.0 -2019,10,25,17,15,0.0,0.0,0.0,25.3,0.0 -2019,10,25,17,30,0.0,0.0,0.0,25.3,0.0 -2019,10,25,17,45,0.0,0.0,0.0,25.3,0.0 -2019,10,25,18,0,0.0,0.0,0.0,23.1,0.5 -2019,10,25,18,15,0.0,0.0,0.0,23.1,0.5 -2019,10,25,18,30,0.0,0.0,0.0,23.1,0.5 -2019,10,25,18,45,0.0,0.0,0.0,23.1,0.5 -2019,10,25,19,0,0.0,0.0,0.0,23.9,4.8 -2019,10,25,19,15,0.0,0.0,0.0,23.9,4.8 -2019,10,25,19,30,0.0,0.0,0.0,23.9,4.8 -2019,10,25,19,45,0.0,0.0,0.0,23.9,4.8 -2019,10,25,20,0,0.0,0.0,0.0,23.2,6.0 -2019,10,25,20,15,0.0,0.0,0.0,23.2,6.0 -2019,10,25,20,30,0.0,0.0,0.0,23.2,6.0 -2019,10,25,20,45,0.0,0.0,0.0,23.2,6.0 -2019,10,25,21,0,0.0,0.0,0.0,22.8,4.5 -2019,10,25,21,15,0.0,0.0,0.0,22.8,4.5 -2019,10,25,21,30,0.0,0.0,0.0,22.8,4.5 -2019,10,25,21,45,0.0,0.0,0.0,22.8,4.5 -2019,10,25,22,0,0.0,0.0,0.0,22.8,3.7 -2019,10,25,22,15,0.0,0.0,0.0,22.8,3.7 -2019,10,25,22,30,0.0,0.0,0.0,22.8,3.7 -2019,10,25,22,45,0.0,0.0,0.0,22.8,3.7 -2019,10,25,23,0,0.0,0.0,0.0,22.8,4.2 -2019,10,25,23,15,0.0,0.0,0.0,22.8,4.2 -2019,10,25,23,30,0.0,0.0,0.0,22.8,4.2 -2019,10,25,23,45,0.0,0.0,0.0,22.8,4.2 -2019,10,26,0,0,0.0,0.0,0.0,22.7,4.4 -2019,10,26,0,15,0.0,0.0,0.0,22.7,4.4 -2019,10,26,0,30,0.0,0.0,0.0,22.7,4.4 -2019,10,26,0,45,0.0,0.0,0.0,22.7,4.4 -2019,10,26,1,0,0.0,0.0,0.0,21.6,3.2 -2019,10,26,1,15,0.0,0.0,0.0,21.6,3.2 -2019,10,26,1,30,0.0,0.0,0.0,21.6,3.2 -2019,10,26,1,45,0.0,0.0,0.0,21.6,3.2 -2019,10,26,2,0,0.0,0.0,0.0,20.5,3.6 -2019,10,26,2,15,0.0,0.0,0.0,20.5,3.6 -2019,10,26,2,30,0.0,0.0,0.0,20.5,3.6 -2019,10,26,2,45,0.0,0.0,0.0,20.5,3.6 -2019,10,26,3,0,0.0,0.0,0.0,19.4,3.5 -2019,10,26,3,15,0.0,0.0,0.0,19.4,3.5 -2019,10,26,3,30,0.0,0.0,0.0,19.4,3.5 -2019,10,26,3,45,0.0,0.0,0.0,19.4,3.5 -2019,10,26,4,0,0.0,0.0,0.0,19.5,3.0 -2019,10,26,4,15,0.0,0.0,0.0,19.5,3.0 -2019,10,26,4,30,0.0,0.0,0.0,19.5,3.0 -2019,10,26,4,45,0.0,0.0,0.0,19.5,3.0 -2019,10,26,5,0,0.0,0.0,0.0,20.7,5.6 -2019,10,26,5,15,0.0,0.0,0.0,20.7,5.6 -2019,10,26,5,30,0.0,0.0,0.0,20.7,5.6 -2019,10,26,5,45,0.0,0.0,0.0,20.7,5.6 -2019,10,26,6,0,404.0,-81.15184120256801,23.0,21.2,4.8 -2019,10,26,6,15,404.0,-59.89274718794036,23.0,21.2,4.8 -2019,10,26,6,30,404.0,-38.494761404135716,23.0,21.2,4.8 -2019,10,26,6,45,404.0,-17.049513311358766,23.0,21.2,4.8 -2019,10,26,7,0,637.0,37.59577292456788,67.0,21.8,2.8 -2019,10,26,7,15,637.0,71.12415444761074,67.0,21.8,2.8 -2019,10,26,7,30,637.0,104.29419470560185,67.0,21.8,2.8 -2019,10,26,7,45,637.0,136.9638544937993,67.0,21.8,2.8 -2019,10,26,8,0,807.0,216.21278259333795,87.0,23.1,4.4 -2019,10,26,8,15,807.0,255.80512882744262,87.0,23.1,4.4 -2019,10,26,8,30,807.0,294.2430250050977,87.0,23.1,4.4 -2019,10,26,8,45,807.0,331.36187415377765,87.0,23.1,4.4 -2019,10,26,9,0,897.0,407.2297976624115,96.0,25.1,4.8 -2019,10,26,9,15,897.0,445.0329993005031,96.0,25.1,4.8 -2019,10,26,9,30,897.0,480.8618535780828,96.0,25.1,4.8 -2019,10,26,9,45,897.0,514.5629358405886,96.0,25.1,4.8 -2019,10,26,10,0,944.0,571.5701055057017,98.0,25.7,6.3 -2019,10,26,10,15,944.0,602.1131129262856,98.0,25.7,6.3 -2019,10,26,10,30,944.0,629.9925595425948,98.0,25.7,6.3 -2019,10,26,10,45,944.0,655.0890612840873,98.0,25.7,6.3 -2019,10,26,11,0,960.0,688.1137129600893,99.0,26.8,6.7 -2019,10,26,11,15,960.0,707.6600735969087,99.0,26.8,6.7 -2019,10,26,11,30,960.0,724.0866301568782,99.0,26.8,6.7 -2019,10,26,11,45,960.0,737.3230416029571,99.0,26.8,6.7 -2019,10,26,12,0,947.0,738.5333940906384,99.0,27.3,6.7 -2019,10,26,12,15,947.0,745.1426487319186,99.0,27.3,6.7 -2019,10,26,12,30,947.0,748.4785458287128,99.0,27.3,6.7 -2019,10,26,12,45,947.0,748.526800557516,99.0,27.3,6.7 -2019,10,26,13,0,904.0,712.9415358826727,96.0,27.7,6.6 -2019,10,26,13,15,904.0,706.7237238074268,96.0,27.7,6.6 -2019,10,26,13,30,904.0,697.4072207665588,96.0,27.7,6.6 -2019,10,26,13,45,904.0,685.0319214563852,96.0,27.7,6.6 -2019,10,26,14,0,820.0,608.3469816625256,88.0,27.1,5.6 -2019,10,26,14,15,820.0,591.7283376037703,88.0,27.1,5.6 -2019,10,26,14,30,820.0,572.5140982167175,88.0,27.1,5.6 -2019,10,26,14,45,820.0,550.7865418242461,88.0,27.1,5.6 -2019,10,26,15,0,663.0,424.6554441123025,70.0,26.6,4.7 -2019,10,26,15,15,663.0,403.2577625357757,70.0,26.6,4.7 -2019,10,26,15,30,663.0,380.07843370780995,70.0,26.6,4.7 -2019,10,26,15,45,663.0,355.2167150730017,70.0,26.6,4.7 -2019,10,26,16,0,384.0,181.8810893479881,32.0,25.8,5.5 -2019,10,26,16,15,384.0,165.72160204632513,32.0,25.8,5.5 -2019,10,26,16,30,384.0,148.78412703598053,32.0,25.8,5.5 -2019,10,26,16,45,384.0,131.14119318523717,32.0,25.8,5.5 -2019,10,26,17,0,0.0,0.0,0.0,24.8,6.1 -2019,10,26,17,15,0.0,0.0,0.0,24.8,6.1 -2019,10,26,17,30,0.0,0.0,0.0,24.8,6.1 -2019,10,26,17,45,0.0,0.0,0.0,24.8,6.1 -2019,10,26,18,0,0.0,0.0,0.0,23.2,4.8 -2019,10,26,18,15,0.0,0.0,0.0,23.2,4.8 -2019,10,26,18,30,0.0,0.0,0.0,23.2,4.8 -2019,10,26,18,45,0.0,0.0,0.0,23.2,4.8 -2019,10,26,19,0,0.0,0.0,0.0,22.8,2.7 -2019,10,26,19,15,0.0,0.0,0.0,22.8,2.7 -2019,10,26,19,30,0.0,0.0,0.0,22.8,2.7 -2019,10,26,19,45,0.0,0.0,0.0,22.8,2.7 -2019,10,26,20,0,0.0,0.0,0.0,22.8,3.3 -2019,10,26,20,15,0.0,0.0,0.0,22.8,3.3 -2019,10,26,20,30,0.0,0.0,0.0,22.8,3.3 -2019,10,26,20,45,0.0,0.0,0.0,22.8,3.3 -2019,10,26,21,0,0.0,0.0,0.0,22.7,4.4 -2019,10,26,21,15,0.0,0.0,0.0,22.7,4.4 -2019,10,26,21,30,0.0,0.0,0.0,22.7,4.4 -2019,10,26,21,45,0.0,0.0,0.0,22.7,4.4 -2019,10,26,22,0,0.0,0.0,0.0,22.0,3.1 -2019,10,26,22,15,0.0,0.0,0.0,22.0,3.1 -2019,10,26,22,30,0.0,0.0,0.0,22.0,3.1 -2019,10,26,22,45,0.0,0.0,0.0,22.0,3.1 -2019,10,26,23,0,0.0,0.0,0.0,20.3,3.0 -2019,10,26,23,15,0.0,0.0,0.0,20.3,3.0 -2019,10,26,23,30,0.0,0.0,0.0,20.3,3.0 -2019,10,26,23,45,0.0,0.0,0.0,20.3,3.0 -2019,10,27,0,0,0.0,0.0,0.0,18.1,2.6 -2019,10,27,0,15,0.0,0.0,0.0,18.1,2.6 -2019,10,27,0,30,0.0,0.0,0.0,18.1,2.6 -2019,10,27,0,45,0.0,0.0,0.0,18.1,2.6 -2019,10,27,1,0,0.0,0.0,0.0,16.6,2.7 -2019,10,27,1,15,0.0,0.0,0.0,16.6,2.7 -2019,10,27,1,30,0.0,0.0,0.0,16.6,2.7 -2019,10,27,1,45,0.0,0.0,0.0,16.6,2.7 -2019,10,27,2,0,0.0,0.0,0.0,15.5,3.0 -2019,10,27,2,15,0.0,0.0,0.0,15.5,3.0 -2019,10,27,2,30,0.0,0.0,0.0,15.5,3.0 -2019,10,27,2,45,0.0,0.0,0.0,15.5,3.0 -2019,10,27,3,0,0.0,0.0,0.0,14.9,2.7 -2019,10,27,3,15,0.0,0.0,0.0,14.9,2.7 -2019,10,27,3,30,0.0,0.0,0.0,14.9,2.7 -2019,10,27,3,45,0.0,0.0,0.0,14.9,2.7 -2019,10,27,4,0,0.0,0.0,0.0,14.2,3.5 -2019,10,27,4,15,0.0,0.0,0.0,14.2,3.5 -2019,10,27,4,30,0.0,0.0,0.0,14.2,3.5 -2019,10,27,4,45,0.0,0.0,0.0,14.2,3.5 -2019,10,27,5,0,0.0,0.0,0.0,12.9,2.5 -2019,10,27,5,15,0.0,0.0,0.0,12.9,2.5 -2019,10,27,5,30,0.0,0.0,0.0,12.9,2.5 -2019,10,27,5,45,0.0,0.0,0.0,12.9,2.5 -2019,10,27,6,0,514.0,-115.02967729522805,19.0,14.4,2.1 -2019,10,27,6,15,514.0,-88.01910857155832,19.0,14.4,2.1 -2019,10,27,6,30,514.0,-60.832072041973234,19.0,14.4,2.1 -2019,10,27,6,45,514.0,-33.58498677072241,19.0,14.4,2.1 -2019,10,27,7,0,785.0,11.216526782901163,50.0,18.3,2.1 -2019,10,27,7,15,785.0,52.47850413481686,50.0,18.3,2.1 -2019,10,27,7,30,785.0,93.29948587372749,50.0,18.3,2.1 -2019,10,27,7,45,785.0,133.50467028887596,50.0,18.3,2.1 -2019,10,27,8,0,975.0,207.6736882713121,55.0,22.9,2.2 -2019,10,27,8,15,975.0,255.44306137373718,55.0,22.9,2.2 -2019,10,27,8,30,975.0,301.81955527803245,55.0,22.9,2.2 -2019,10,27,8,45,975.0,346.60457871745047,55.0,22.9,2.2 -2019,10,27,9,0,1072.0,421.8953978779709,54.0,28.1,3.0 -2019,10,27,9,15,1072.0,467.01218317071755,54.0,28.1,3.0 -2019,10,27,9,30,1072.0,509.7726546567588,54.0,28.1,3.0 -2019,10,27,9,45,1072.0,549.9937054324844,54.0,28.1,3.0 -2019,10,27,10,0,1122.0,609.3866430253981,51.0,30.6,3.1 -2019,10,27,10,15,1122.0,645.6393034039733,51.0,30.6,3.1 -2019,10,27,10,30,1122.0,678.7304818791655,51.0,30.6,3.1 -2019,10,27,10,45,1122.0,708.518476944494,51.0,30.6,3.1 -2019,10,27,11,0,1138.0,743.6279704320518,50.0,31.8,5.0 -2019,10,27,11,15,1138.0,766.7669476563004,50.0,31.8,5.0 -2019,10,27,11,30,1138.0,786.2127015322409,50.0,31.8,5.0 -2019,10,27,11,45,1138.0,801.8819623564107,50.0,31.8,5.0 -2019,10,27,12,0,1125.0,805.9833795623177,51.0,32.3,4.0 -2019,10,27,12,15,1125.0,813.8242133983725,51.0,32.3,4.0 -2019,10,27,12,30,1125.0,817.7817269531951,51.0,32.3,4.0 -2019,10,27,12,45,1125.0,817.8389735461751,51.0,32.3,4.0 -2019,10,27,13,0,1079.0,785.7976613099225,54.0,33.2,3.8 -2019,10,27,13,15,1079.0,778.3863026899842,54.0,33.2,3.8 -2019,10,27,13,30,1079.0,767.2814406767828,54.0,33.2,3.8 -2019,10,27,13,45,1079.0,752.530627994309,54.0,33.2,3.8 -2019,10,27,14,0,988.0,677.8310153182673,55.0,32.7,5.0 -2019,10,27,14,15,988.0,657.8348876673776,55.0,32.7,5.0 -2019,10,27,14,30,988.0,634.7156498920281,55.0,32.7,5.0 -2019,10,27,14,45,988.0,608.572302117703,55.0,32.7,5.0 -2019,10,27,15,0,812.0,482.08060411803166,51.0,31.5,4.0 -2019,10,27,15,15,812.0,455.9098375685804,51.0,31.5,4.0 -2019,10,27,15,30,812.0,427.5599996966532,51.0,31.5,4.0 -2019,10,27,15,45,812.0,397.1524888603639,51.0,31.5,4.0 -2019,10,27,16,0,485.0,214.4402643156889,27.0,30.2,3.5 -2019,10,27,16,15,485.0,194.0583339236329,27.0,30.2,3.5 -2019,10,27,16,30,485.0,172.6951291242761,27.0,30.2,3.5 -2019,10,27,16,45,485.0,150.44213044030852,27.0,30.2,3.5 -2019,10,27,17,0,0.0,0.0,0.0,29.2,3.1 -2019,10,27,17,15,0.0,0.0,0.0,29.2,3.1 -2019,10,27,17,30,0.0,0.0,0.0,29.2,3.1 -2019,10,27,17,45,0.0,0.0,0.0,29.2,3.1 -2019,10,27,18,0,0.0,0.0,0.0,27.6,3.0 -2019,10,27,18,15,0.0,0.0,0.0,27.6,3.0 -2019,10,27,18,30,0.0,0.0,0.0,27.6,3.0 -2019,10,27,18,45,0.0,0.0,0.0,27.6,3.0 -2019,10,27,19,0,0.0,0.0,0.0,25.8,2.0 -2019,10,27,19,15,0.0,0.0,0.0,25.8,2.0 -2019,10,27,19,30,0.0,0.0,0.0,25.8,2.0 -2019,10,27,19,45,0.0,0.0,0.0,25.8,2.0 -2019,10,27,20,0,0.0,0.0,0.0,23.3,1.6 -2019,10,27,20,15,0.0,0.0,0.0,23.3,1.6 -2019,10,27,20,30,0.0,0.0,0.0,23.3,1.6 -2019,10,27,20,45,0.0,0.0,0.0,23.3,1.6 -2019,10,27,21,0,0.0,0.0,0.0,23.0,2.1 -2019,10,27,21,15,0.0,0.0,0.0,23.0,2.1 -2019,10,27,21,30,0.0,0.0,0.0,23.0,2.1 -2019,10,27,21,45,0.0,0.0,0.0,23.0,2.1 -2019,10,27,22,0,0.0,0.0,0.0,20.5,2.2 -2019,10,27,22,15,0.0,0.0,0.0,20.5,2.2 -2019,10,27,22,30,0.0,0.0,0.0,20.5,2.2 -2019,10,27,22,45,0.0,0.0,0.0,20.5,2.2 -2019,10,27,23,0,0.0,0.0,0.0,19.8,2.5 -2019,10,27,23,15,0.0,0.0,0.0,19.8,2.5 -2019,10,27,23,30,0.0,0.0,0.0,19.8,2.5 -2019,10,27,23,45,0.0,0.0,0.0,19.8,2.5 -2019,10,28,0,0,0.0,0.0,0.0,18.1,1.6 -2019,10,28,0,15,0.0,0.0,0.0,18.1,1.6 -2019,10,28,0,30,0.0,0.0,0.0,18.1,1.6 -2019,10,28,0,45,0.0,0.0,0.0,18.1,1.6 -2019,10,28,1,0,0.0,0.0,0.0,16.6,2.0 -2019,10,28,1,15,0.0,0.0,0.0,16.6,2.0 -2019,10,28,1,30,0.0,0.0,0.0,16.6,2.0 -2019,10,28,1,45,0.0,0.0,0.0,16.6,2.0 -2019,10,28,2,0,0.0,0.0,0.0,15.5,1.7 -2019,10,28,2,15,0.0,0.0,0.0,15.5,1.7 -2019,10,28,2,30,0.0,0.0,0.0,15.5,1.7 -2019,10,28,2,45,0.0,0.0,0.0,15.5,1.7 -2019,10,28,3,0,0.0,0.0,0.0,14.3,3.4 -2019,10,28,3,15,0.0,0.0,0.0,14.3,3.4 -2019,10,28,3,30,0.0,0.0,0.0,14.3,3.4 -2019,10,28,3,45,0.0,0.0,0.0,14.3,3.4 -2019,10,28,4,0,0.0,0.0,0.0,13.4,2.0 -2019,10,28,4,15,0.0,0.0,0.0,13.4,2.0 -2019,10,28,4,30,0.0,0.0,0.0,13.4,2.0 -2019,10,28,4,45,0.0,0.0,0.0,13.4,2.0 -2019,10,28,5,0,0.0,0.0,0.0,14.0,1.6 -2019,10,28,5,15,0.0,0.0,0.0,14.0,1.6 -2019,10,28,5,30,0.0,0.0,0.0,14.0,1.6 -2019,10,28,5,45,0.0,0.0,0.0,14.0,1.6 -2019,10,28,6,0,514.0,-117.52682865665687,18.0,15.4,1.9 -2019,10,28,6,15,514.0,-90.55361267706124,18.0,15.4,1.9 -2019,10,28,6,30,514.0,-63.404172927759305,18.0,15.4,1.9 -2019,10,28,6,45,514.0,-36.19476747781523,18.0,15.4,1.9 -2019,10,28,7,0,766.0,10.700186842742582,51.0,18.8,0.0 -2019,10,28,7,15,766.0,50.90778681952387,51.0,18.8,0.0 -2019,10,28,7,30,766.0,90.68566005180128,51.0,18.8,0.0 -2019,10,28,7,45,766.0,129.86347157958448,51.0,18.8,0.0 -2019,10,28,8,0,956.0,204.3621722392407,58.0,23.3,0.0 -2019,10,28,8,15,956.0,251.13588235347248,58.0,23.3,0.0 -2019,10,28,8,30,956.0,296.54574522403664,58.0,23.3,0.0 -2019,10,28,8,45,956.0,340.3973088466721,58.0,23.3,0.0 -2019,10,28,9,0,1053.0,415.42828679989617,58.0,27.5,0.0 -2019,10,28,9,15,1053.0,459.6841416844567,58.0,27.5,0.0 -2019,10,28,9,30,1053.0,501.62864656445873,58.0,27.5,0.0 -2019,10,28,9,45,1053.0,541.0821886305689,58.0,27.5,0.0 -2019,10,28,10,0,1103.0,599.5612833806097,55.0,29.7,0.3 -2019,10,28,10,15,1103.0,635.1507549184685,55.0,29.7,0.3 -2019,10,28,10,30,1103.0,667.636579191742,55.0,29.7,0.3 -2019,10,28,10,45,1103.0,696.8796469135776,55.0,29.7,0.3 -2019,10,28,11,0,1119.0,731.4411135241671,54.0,31.8,2.0 -2019,10,28,11,15,1119.0,754.162298865598,54.0,31.8,2.0 -2019,10,28,11,30,1119.0,773.2569448232456,54.0,31.8,2.0 -2019,10,28,11,45,1119.0,788.6432851916558,54.0,31.8,2.0 -2019,10,28,12,0,1106.0,792.585799132202,55.0,32.8,1.7 -2019,10,28,12,15,1106.0,800.2835500843377,55.0,32.8,1.7 -2019,10,28,12,30,1106.0,804.1688452419319,55.0,32.8,1.7 -2019,10,28,12,45,1106.0,804.2250471746385,55.0,32.8,1.7 -2019,10,28,13,0,1060.0,772.4475860128233,58.0,32.6,3.4 -2019,10,28,13,15,1060.0,765.1768018894822,58.0,32.6,3.4 -2019,10,28,13,30,1060.0,754.2825706752133,58.0,32.6,3.4 -2019,10,28,13,45,1060.0,739.8115431405885,58.0,32.6,3.4 -2019,10,28,14,0,969.0,664.8368775163044,58.0,30.9,5.5 -2019,10,28,14,15,969.0,645.2524115206146,58.0,30.9,5.5 -2019,10,28,14,30,969.0,622.6091310833917,58.0,30.9,5.5 -2019,10,28,14,45,969.0,597.003998207728,58.0,30.9,5.5 -2019,10,28,15,0,793.0,469.8157892640142,52.0,29.5,3.6 -2019,10,28,15,15,793.0,444.292737411992,52.0,29.5,3.6 -2019,10,28,15,30,793.0,416.644545272324,52.0,29.5,3.6 -2019,10,28,15,45,793.0,386.9896066483802,52.0,29.5,3.6 -2019,10,28,16,0,478.0,208.91481246172407,26.0,27.9,3.9 -2019,10,28,16,15,478.0,188.85483349422913,26.0,27.9,3.9 -2019,10,28,16,30,478.0,167.82908025544796,26.0,27.9,3.9 -2019,10,28,16,45,478.0,145.92758824868156,26.0,27.9,3.9 -2019,10,28,17,0,0.0,0.0,0.0,26.4,3.9 -2019,10,28,17,15,0.0,0.0,0.0,26.4,3.9 -2019,10,28,17,30,0.0,0.0,0.0,26.4,3.9 -2019,10,28,17,45,0.0,0.0,0.0,26.4,3.9 -2019,10,28,18,0,0.0,0.0,0.0,23.8,2.3 -2019,10,28,18,15,0.0,0.0,0.0,23.8,2.3 -2019,10,28,18,30,0.0,0.0,0.0,23.8,2.3 -2019,10,28,18,45,0.0,0.0,0.0,23.8,2.3 -2019,10,28,19,0,0.0,0.0,0.0,22.1,0.0 -2019,10,28,19,15,0.0,0.0,0.0,22.1,0.0 -2019,10,28,19,30,0.0,0.0,0.0,22.1,0.0 -2019,10,28,19,45,0.0,0.0,0.0,22.1,0.0 -2019,10,28,20,0,0.0,0.0,0.0,21.0,0.0 -2019,10,28,20,15,0.0,0.0,0.0,21.0,0.0 -2019,10,28,20,30,0.0,0.0,0.0,21.0,0.0 -2019,10,28,20,45,0.0,0.0,0.0,21.0,0.0 -2019,10,28,21,0,0.0,0.0,0.0,20.2,0.0 -2019,10,28,21,15,0.0,0.0,0.0,20.2,0.0 -2019,10,28,21,30,0.0,0.0,0.0,20.2,0.0 -2019,10,28,21,45,0.0,0.0,0.0,20.2,0.0 -2019,10,28,22,0,0.0,0.0,0.0,17.1,0.0 -2019,10,28,22,15,0.0,0.0,0.0,17.1,0.0 -2019,10,28,22,30,0.0,0.0,0.0,17.1,0.0 -2019,10,28,22,45,0.0,0.0,0.0,17.1,0.0 -2019,10,28,23,0,0.0,0.0,0.0,16.6,0.0 -2019,10,28,23,15,0.0,0.0,0.0,16.6,0.0 -2019,10,28,23,30,0.0,0.0,0.0,16.6,0.0 -2019,10,28,23,45,0.0,0.0,0.0,16.6,0.0 -2019,10,29,0,0,0.0,0.0,0.0,15.3,0.2 -2019,10,29,0,15,0.0,0.0,0.0,15.3,0.2 -2019,10,29,0,30,0.0,0.0,0.0,15.3,0.2 -2019,10,29,0,45,0.0,0.0,0.0,15.3,0.2 -2019,10,29,1,0,0.0,0.0,0.0,13.4,1.5 -2019,10,29,1,15,0.0,0.0,0.0,13.4,1.5 -2019,10,29,1,30,0.0,0.0,0.0,13.4,1.5 -2019,10,29,1,45,0.0,0.0,0.0,13.4,1.5 -2019,10,29,2,0,0.0,0.0,0.0,13.8,1.6 -2019,10,29,2,15,0.0,0.0,0.0,13.8,1.6 -2019,10,29,2,30,0.0,0.0,0.0,13.8,1.6 -2019,10,29,2,45,0.0,0.0,0.0,13.8,1.6 -2019,10,29,3,0,0.0,0.0,0.0,12.9,2.2 -2019,10,29,3,15,0.0,0.0,0.0,12.9,2.2 -2019,10,29,3,30,0.0,0.0,0.0,12.9,2.2 -2019,10,29,3,45,0.0,0.0,0.0,12.9,2.2 -2019,10,29,4,0,0.0,0.0,0.0,13.1,2.5 -2019,10,29,4,15,0.0,0.0,0.0,13.1,2.5 -2019,10,29,4,30,0.0,0.0,0.0,13.1,2.5 -2019,10,29,4,45,0.0,0.0,0.0,13.1,2.5 -2019,10,29,5,0,0.0,0.0,0.0,12.0,1.6 -2019,10,29,5,15,0.0,0.0,0.0,12.0,1.6 -2019,10,29,5,30,0.0,0.0,0.0,12.0,1.6 -2019,10,29,5,45,0.0,0.0,0.0,12.0,1.6 -2019,10,29,6,0,518.0,-121.06729615178381,17.0,14.2,2.0 -2019,10,29,6,15,518.0,-93.92223392154247,17.0,14.2,2.0 -2019,10,29,6,30,518.0,-66.59982520066606,17.0,14.2,2.0 -2019,10,29,6,45,518.0,-39.21706873790962,17.0,14.2,2.0 -2019,10,29,7,0,757.0,8.778658634854708,51.0,16.6,1.3 -2019,10,29,7,15,757.0,48.45820800585202,51.0,16.6,1.3 -2019,10,29,7,30,757.0,87.71367427851895,51.0,16.6,1.3 -2019,10,29,7,45,757.0,126.37695951966766,51.0,16.6,1.3 -2019,10,29,8,0,947.0,200.7153619829211,59.0,21.0,0.0 -2019,10,29,8,15,947.0,246.98385743539862,59.0,21.0,0.0 -2019,10,29,8,30,947.0,291.90323690290495,59.0,21.0,0.0 -2019,10,29,8,45,947.0,335.28114870641195,59.0,21.0,0.0 -2019,10,29,9,0,1045.0,409.8329195951872,59.0,24.2,0.2 -2019,10,29,9,15,1045.0,453.6910510202259,59.0,24.2,0.2 -2019,10,29,9,30,1045.0,495.25860433907735,59.0,24.2,0.2 -2019,10,29,9,45,1045.0,534.3575809068634,59.0,24.2,0.2 -2019,10,29,10,0,1095.0,593.3095745733524,57.0,26.3,1.3 -2019,10,29,10,15,1095.0,628.5914463268311,57.0,26.3,1.3 -2019,10,29,10,30,1095.0,660.796495637452,57.0,26.3,1.3 -2019,10,29,10,45,1095.0,689.7868155398579,57.0,26.3,1.3 -2019,10,29,11,0,1111.0,724.0592807783346,56.0,27.9,0.2 -2019,10,29,11,15,1111.0,746.5864399529706,56.0,27.9,0.2 -2019,10,29,11,30,1111.0,765.5180283541664,56.0,27.9,0.2 -2019,10,29,11,45,1111.0,780.7729780139571,56.0,27.9,0.2 -2019,10,29,12,0,1098.0,784.6705575659022,57.0,29.0,2.1 -2019,10,29,12,15,1098.0,792.3019280897737,57.0,29.0,2.1 -2019,10,29,12,30,1098.0,796.1537189734447,57.0,29.0,2.1 -2019,10,29,12,45,1098.0,796.2094362570134,57.0,29.0,2.1 -2019,10,29,13,0,1052.0,763.6568498185292,59.0,30.0,2.3 -2019,10,29,13,15,1052.0,756.4510433174013,59.0,30.0,2.3 -2019,10,29,13,30,1052.0,745.6541717865083,59.0,30.0,2.3 -2019,10,29,13,45,1052.0,731.3124690873116,59.0,30.0,2.3 -2019,10,29,14,0,960.0,656.2508124038453,59.0,29.9,4.1 -2019,10,29,14,15,960.0,636.875413114588,59.0,29.9,4.1 -2019,10,29,14,30,960.0,614.4738526234122,59.0,29.9,4.1 -2019,10,29,14,45,960.0,589.1420578514917,59.0,29.9,4.1 -2019,10,29,15,0,784.0,462.95727780365513,53.0,28.9,4.0 -2019,10,29,15,15,784.0,437.7592268884205,53.0,28.9,4.0 -2019,10,29,15,30,784.0,410.4630964221754,53.0,28.9,4.0 -2019,10,29,15,45,784.0,381.1857726261543,53.0,28.9,4.0 -2019,10,29,16,0,482.0,207.62674169499167,25.0,27.3,3.3 -2019,10,29,16,15,482.0,187.42721999749784,25.0,27.3,3.3 -2019,10,29,16,30,482.0,166.25520583730827,25.0,27.3,3.3 -2019,10,29,16,45,482.0,144.2013610294435,25.0,27.3,3.3 -2019,10,29,17,0,0.0,0.0,0.0,25.6,2.6 -2019,10,29,17,15,0.0,0.0,0.0,25.6,2.6 -2019,10,29,17,30,0.0,0.0,0.0,25.6,2.6 -2019,10,29,17,45,0.0,0.0,0.0,25.6,2.6 -2019,10,29,18,0,0.0,0.0,0.0,22.1,2.3 -2019,10,29,18,15,0.0,0.0,0.0,22.1,2.3 -2019,10,29,18,30,0.0,0.0,0.0,22.1,2.3 -2019,10,29,18,45,0.0,0.0,0.0,22.1,2.3 -2019,10,29,19,0,0.0,0.0,0.0,20.9,0.0 -2019,10,29,19,15,0.0,0.0,0.0,20.9,0.0 -2019,10,29,19,30,0.0,0.0,0.0,20.9,0.0 -2019,10,29,19,45,0.0,0.0,0.0,20.9,0.0 -2019,10,29,20,0,0.0,0.0,0.0,19.2,0.0 -2019,10,29,20,15,0.0,0.0,0.0,19.2,0.0 -2019,10,29,20,30,0.0,0.0,0.0,19.2,0.0 -2019,10,29,20,45,0.0,0.0,0.0,19.2,0.0 -2019,10,29,21,0,0.0,0.0,0.0,17.7,0.0 -2019,10,29,21,15,0.0,0.0,0.0,17.7,0.0 -2019,10,29,21,30,0.0,0.0,0.0,17.7,0.0 -2019,10,29,21,45,0.0,0.0,0.0,17.7,0.0 -2019,10,29,22,0,0.0,0.0,0.0,16.6,0.2 -2019,10,29,22,15,0.0,0.0,0.0,16.6,0.2 -2019,10,29,22,30,0.0,0.0,0.0,16.6,0.2 -2019,10,29,22,45,0.0,0.0,0.0,16.6,0.2 -2019,10,29,23,0,0.0,0.0,0.0,15.4,1.4 -2019,10,29,23,15,0.0,0.0,0.0,15.4,1.4 -2019,10,29,23,30,0.0,0.0,0.0,15.4,1.4 -2019,10,29,23,45,0.0,0.0,0.0,15.4,1.4 -2019,10,30,0,0,0.0,0.0,0.0,14.0,0.7 -2019,10,30,0,15,0.0,0.0,0.0,14.0,0.7 -2019,10,30,0,30,0.0,0.0,0.0,14.0,0.7 -2019,10,30,0,45,0.0,0.0,0.0,14.0,0.7 -2019,10,30,1,0,0.0,0.0,0.0,12.7,0.2 -2019,10,30,1,15,0.0,0.0,0.0,12.7,0.2 -2019,10,30,1,30,0.0,0.0,0.0,12.7,0.2 -2019,10,30,1,45,0.0,0.0,0.0,12.7,0.2 -2019,10,30,2,0,0.0,0.0,0.0,12.1,1.3 -2019,10,30,2,15,0.0,0.0,0.0,12.1,1.3 -2019,10,30,2,30,0.0,0.0,0.0,12.1,1.3 -2019,10,30,2,45,0.0,0.0,0.0,12.1,1.3 -2019,10,30,3,0,0.0,0.0,0.0,11.2,0.2 -2019,10,30,3,15,0.0,0.0,0.0,11.2,0.2 -2019,10,30,3,30,0.0,0.0,0.0,11.2,0.2 -2019,10,30,3,45,0.0,0.0,0.0,11.2,0.2 -2019,10,30,4,0,0.0,0.0,0.0,11.6,2.0 -2019,10,30,4,15,0.0,0.0,0.0,11.6,2.0 -2019,10,30,4,30,0.0,0.0,0.0,11.6,2.0 -2019,10,30,4,45,0.0,0.0,0.0,11.6,2.0 -2019,10,30,5,0,0.0,0.0,0.0,10.9,1.6 -2019,10,30,5,15,0.0,0.0,0.0,10.9,1.6 -2019,10,30,5,30,0.0,0.0,0.0,10.9,1.6 -2019,10,30,5,45,0.0,0.0,0.0,10.9,1.6 -2019,10,30,6,0,515.0,-122.72165400217114,16.0,13.1,2.0 -2019,10,30,6,15,515.0,-95.77201494752863,16.0,13.1,2.0 -2019,10,30,6,30,515.0,-68.64630615800455,16.0,13.1,2.0 -2019,10,30,6,45,515.0,-41.46068408305004,16.0,13.1,2.0 -2019,10,30,7,0,736.0,9.652370032462372,53.0,16.0,1.3 -2019,10,30,7,15,736.0,48.176541588412995,53.0,16.0,1.3 -2019,10,30,7,30,736.0,86.28897837688173,53.0,16.0,1.3 -2019,10,30,7,45,736.0,123.82647709241289,53.0,16.0,1.3 -2019,10,30,8,0,925.0,198.26654099517194,63.0,19.8,0.0 -2019,10,30,8,15,925.0,243.39617102217423,63.0,19.8,0.0 -2019,10,30,8,30,925.0,287.20989257474156,63.0,19.8,0.0 -2019,10,30,8,45,925.0,329.5200885707814,63.0,19.8,0.0 -2019,10,30,9,0,1022.0,403.3543600227885,64.0,23.1,0.2 -2019,10,30,9,15,1022.0,446.18646043593884,64.0,23.1,0.2 -2019,10,30,9,30,1022.0,486.7815692523072,64.0,23.1,0.2 -2019,10,30,9,45,1022.0,524.9658519836673,64.0,23.1,0.2 -2019,10,30,10,0,1071.0,583.384226324578,63.0,25.9,1.6 -2019,10,30,10,15,1071.0,617.8439357215569,63.0,25.9,1.6 -2019,10,30,10,30,1071.0,649.2985209009828,63.0,25.9,1.6 -2019,10,30,10,45,1071.0,677.6132885001215,63.0,25.9,1.6 -2019,10,30,11,0,1088.0,711.8204346282172,62.0,27.9,2.1 -2019,10,30,11,15,1088.0,733.8499988464679,62.0,27.9,2.1 -2019,10,30,11,30,1088.0,752.3634136629795,62.0,27.9,2.1 -2019,10,30,11,45,1088.0,767.281401793277,62.0,27.9,2.1 -2019,10,30,12,0,1075.0,770.9784818759927,63.0,29.0,2.3 -2019,10,30,12,15,1075.0,778.4394177345322,63.0,29.0,2.3 -2019,10,30,12,30,1075.0,782.2051849232282,63.0,29.0,2.3 -2019,10,30,12,45,1075.0,782.2596578488473,63.0,29.0,2.3 -2019,10,30,13,0,1029.0,748.9814685992634,64.0,29.3,3.7 -2019,10,30,13,15,1029.0,741.9431832097453,64.0,29.3,3.7 -2019,10,30,13,30,1029.0,731.3973181304522,64.0,29.3,3.7 -2019,10,30,13,45,1029.0,717.3890323746842,64.0,29.3,3.7 -2019,10,30,14,0,937.0,642.1172769130833,63.0,28.6,4.6 -2019,10,30,14,15,937.0,623.2328564666647,63.0,28.6,4.6 -2019,10,30,14,30,937.0,601.3989587154168,63.0,28.6,4.6 -2019,10,30,14,45,937.0,576.7090797615119,63.0,28.6,4.6 -2019,10,30,15,0,762.0,449.4503056972274,54.0,26.6,4.5 -2019,10,30,15,15,762.0,424.99401996423086,54.0,26.6,4.5 -2019,10,30,15,30,762.0,398.501416693712,54.0,26.6,4.5 -2019,10,30,15,45,762.0,370.0859412800936,54.0,26.6,4.5 -2019,10,30,16,0,476.0,202.57450658808847,24.0,24.5,3.5 -2019,10,30,16,15,476.0,182.65467591424598,24.0,24.5,3.5 -2019,10,30,16,30,476.0,161.77581831498418,24.0,24.5,3.5 -2019,10,30,16,45,476.0,140.02734026392343,24.0,24.5,3.5 -2019,10,30,17,0,0.0,0.0,0.0,23.1,2.5 -2019,10,30,17,15,0.0,0.0,0.0,23.1,2.5 -2019,10,30,17,30,0.0,0.0,0.0,23.1,2.5 -2019,10,30,17,45,0.0,0.0,0.0,23.1,2.5 -2019,10,30,18,0,0.0,0.0,0.0,21.6,1.3 -2019,10,30,18,15,0.0,0.0,0.0,21.6,1.3 -2019,10,30,18,30,0.0,0.0,0.0,21.6,1.3 -2019,10,30,18,45,0.0,0.0,0.0,21.6,1.3 -2019,10,30,19,0,0.0,0.0,0.0,20.3,0.0 -2019,10,30,19,15,0.0,0.0,0.0,20.3,0.0 -2019,10,30,19,30,0.0,0.0,0.0,20.3,0.0 -2019,10,30,19,45,0.0,0.0,0.0,20.3,0.0 -2019,10,30,20,0,0.0,0.0,0.0,18.2,0.0 -2019,10,30,20,15,0.0,0.0,0.0,18.2,0.0 -2019,10,30,20,30,0.0,0.0,0.0,18.2,0.0 -2019,10,30,20,45,0.0,0.0,0.0,18.2,0.0 -2019,10,30,21,0,0.0,0.0,0.0,17.0,0.0 -2019,10,30,21,15,0.0,0.0,0.0,17.0,0.0 -2019,10,30,21,30,0.0,0.0,0.0,17.0,0.0 -2019,10,30,21,45,0.0,0.0,0.0,17.0,0.0 -2019,10,30,22,0,0.0,0.0,0.0,15.5,0.0 -2019,10,30,22,15,0.0,0.0,0.0,15.5,0.0 -2019,10,30,22,30,0.0,0.0,0.0,15.5,0.0 -2019,10,30,22,45,0.0,0.0,0.0,15.5,0.0 -2019,10,30,23,0,0.0,0.0,0.0,14.9,0.0 -2019,10,30,23,15,0.0,0.0,0.0,14.9,0.0 -2019,10,30,23,30,0.0,0.0,0.0,14.9,0.0 -2019,10,30,23,45,0.0,0.0,0.0,14.9,0.0 -2019,10,31,0,0,0.0,0.0,0.0,13.7,0.0 -2019,10,31,0,15,0.0,0.0,0.0,13.7,0.0 -2019,10,31,0,30,0.0,0.0,0.0,13.7,0.0 -2019,10,31,0,45,0.0,0.0,0.0,13.7,0.0 -2019,10,31,1,0,0.0,0.0,0.0,12.1,0.0 -2019,10,31,1,15,0.0,0.0,0.0,12.1,0.0 -2019,10,31,1,30,0.0,0.0,0.0,12.1,0.0 -2019,10,31,1,45,0.0,0.0,0.0,12.1,0.0 -2019,10,31,2,0,0.0,0.0,0.0,11.7,0.0 -2019,10,31,2,15,0.0,0.0,0.0,11.7,0.0 -2019,10,31,2,30,0.0,0.0,0.0,11.7,0.0 -2019,10,31,2,45,0.0,0.0,0.0,11.7,0.0 -2019,10,31,3,0,0.0,0.0,0.0,11.5,0.2 -2019,10,31,3,15,0.0,0.0,0.0,11.5,0.2 -2019,10,31,3,30,0.0,0.0,0.0,11.5,0.2 -2019,10,31,3,45,0.0,0.0,0.0,11.5,0.2 -2019,10,31,4,0,0.0,0.0,0.0,10.0,1.3 -2019,10,31,4,15,0.0,0.0,0.0,10.0,1.3 -2019,10,31,4,30,0.0,0.0,0.0,10.0,1.3 -2019,10,31,4,45,0.0,0.0,0.0,10.0,1.3 -2019,10,31,5,0,0.0,0.0,0.0,10.3,0.2 -2019,10,31,5,15,0.0,0.0,0.0,10.3,0.2 -2019,10,31,5,30,0.0,0.0,0.0,10.3,0.2 -2019,10,31,5,45,0.0,0.0,0.0,10.3,0.2 -2019,10,31,6,0,269.0,-57.2056701322076,16.0,12.4,1.6 -2019,10,31,6,15,269.0,-43.14919178121524,16.0,12.4,1.6 -2019,10,31,6,30,269.0,-29.00087841856977,16.0,12.4,1.6 -2019,10,31,6,45,269.0,-14.821315294178557,16.0,12.4,1.6 -2019,10,31,7,0,571.0,34.612388617905935,70.0,14.4,1.3 -2019,10,31,7,15,571.0,64.45728849614935,70.0,14.4,1.3 -2019,10,31,7,30,571.0,93.9832150541218,70.0,14.4,1.3 -2019,10,31,7,45,571.0,123.0637337413996,70.0,14.4,1.3 -2019,10,31,8,0,703.0,202.4321279696082,102.0,17.9,0.2 -2019,10,31,8,15,703.0,236.68160067806295,102.0,17.9,0.2 -2019,10,31,8,30,703.0,269.9324130528301,102.0,17.9,0.2 -2019,10,31,8,45,703.0,302.04218001056296,102.0,17.9,0.2 -2019,10,31,9,0,752.0,374.96557433125855,128.0,19.7,1.5 -2019,10,31,9,15,752.0,406.4368857854188,128.0,19.7,1.5 -2019,10,31,9,30,752.0,436.26454543208905,128.0,19.7,1.5 -2019,10,31,9,45,752.0,464.3208266534366,128.0,19.7,1.5 -2019,10,31,10,0,887.0,539.5594636775207,112.0,21.9,1.6 -2019,10,31,10,15,887.0,568.0581134265285,112.0,21.9,1.6 -2019,10,31,10,30,887.0,594.071484453603,112.0,21.9,1.6 -2019,10,31,10,45,887.0,617.4881835103613,112.0,21.9,1.6 -2019,10,31,11,0,705.0,591.2374243190461,173.0,23.5,2.2 -2019,10,31,11,15,705.0,605.4916835261208,173.0,23.5,2.2 -2019,10,31,11,30,705.0,617.4708135256161,173.0,23.5,2.2 -2019,10,31,11,45,705.0,627.1235178438048,173.0,23.5,2.2 -2019,10,31,12,0,783.0,655.457908991614,143.0,25.0,2.7 -2019,10,31,12,15,783.0,660.8844754782089,143.0,25.0,2.7 -2019,10,31,12,30,783.0,663.6234329508303,143.0,25.0,2.7 -2019,10,31,12,45,783.0,663.663052773088,143.0,25.0,2.7 -2019,10,31,13,0,720.0,615.3247496890306,139.0,24.9,3.6 -2019,10,31,13,15,720.0,610.4070441734232,139.0,24.9,3.6 -2019,10,31,13,30,720.0,603.0385650627969,139.0,24.9,3.6 -2019,10,31,13,45,720.0,593.2508653159329,139.0,24.9,3.6 -2019,10,31,14,0,66.0,217.5245369251967,177.0,24.4,3.6 -2019,10,31,14,15,66.0,216.19626641736608,177.0,24.4,3.6 -2019,10,31,14,30,66.0,214.66053898870294,177.0,24.4,3.6 -2019,10,31,14,45,66.0,212.92393085982602,177.0,24.4,3.6 -2019,10,31,15,0,69.0,136.53905474668625,101.0,23.8,2.6 -2019,10,31,15,15,69.0,134.3276759386287,101.0,23.8,2.6 -2019,10,31,15,30,69.0,131.9321698473804,101.0,23.8,2.6 -2019,10,31,15,45,69.0,129.3627943977889,101.0,23.8,2.6 -2019,10,31,16,0,35.0,58.00100466303688,45.0,22.7,2.9 -2019,10,31,16,15,35.0,56.53840570986857,45.0,22.7,2.9 -2019,10,31,16,30,35.0,55.00539090828542,45.0,22.7,2.9 -2019,10,31,16,45,35.0,53.408524863020524,45.0,22.7,2.9 -2019,10,31,17,0,0.0,0.0,0.0,21.5,2.9 -2019,10,31,17,15,0.0,0.0,0.0,21.5,2.9 -2019,10,31,17,30,0.0,0.0,0.0,21.5,2.9 -2019,10,31,17,45,0.0,0.0,0.0,21.5,2.9 -2019,10,31,18,0,0.0,0.0,0.0,19.8,1.6 -2019,10,31,18,15,0.0,0.0,0.0,19.8,1.6 -2019,10,31,18,30,0.0,0.0,0.0,19.8,1.6 -2019,10,31,18,45,0.0,0.0,0.0,19.8,1.6 -2019,10,31,19,0,0.0,0.0,0.0,18.1,2.0 -2019,10,31,19,15,0.0,0.0,0.0,18.1,2.0 -2019,10,31,19,30,0.0,0.0,0.0,18.1,2.0 -2019,10,31,19,45,0.0,0.0,0.0,18.1,2.0 -2019,10,31,20,0,0.0,0.0,0.0,16.6,1.3 -2019,10,31,20,15,0.0,0.0,0.0,16.6,1.3 -2019,10,31,20,30,0.0,0.0,0.0,16.6,1.3 -2019,10,31,20,45,0.0,0.0,0.0,16.6,1.3 -2019,10,31,21,0,0.0,0.0,0.0,15.5,0.0 -2019,10,31,21,15,0.0,0.0,0.0,15.5,0.0 -2019,10,31,21,30,0.0,0.0,0.0,15.5,0.0 -2019,10,31,21,45,0.0,0.0,0.0,15.5,0.0 -2019,10,31,22,0,0.0,0.0,0.0,14.9,0.0 -2019,10,31,22,15,0.0,0.0,0.0,14.9,0.0 -2019,10,31,22,30,0.0,0.0,0.0,14.9,0.0 -2019,10,31,22,45,0.0,0.0,0.0,14.9,0.0 -2019,10,31,23,0,0.0,0.0,0.0,14.3,0.0 -2019,10,31,23,15,0.0,0.0,0.0,14.3,0.0 -2019,10,31,23,30,0.0,0.0,0.0,14.3,0.0 -2019,10,31,23,45,0.0,0.0,0.0,14.3,0.0 -2019,11,1,0,0,0.0,0.0,0.0,13.1,0.0 -2019,11,1,0,15,0.0,0.0,0.0,13.1,0.0 -2019,11,1,0,30,0.0,0.0,0.0,13.1,0.0 -2019,11,1,0,45,0.0,0.0,0.0,13.1,0.0 -2019,11,1,1,0,0.0,0.0,0.0,11.6,0.0 -2019,11,1,1,15,0.0,0.0,0.0,11.6,0.0 -2019,11,1,1,30,0.0,0.0,0.0,11.6,0.0 -2019,11,1,1,45,0.0,0.0,0.0,11.6,0.0 -2019,11,1,2,0,0.0,0.0,0.0,11.0,0.0 -2019,11,1,2,15,0.0,0.0,0.0,11.0,0.0 -2019,11,1,2,30,0.0,0.0,0.0,11.0,0.0 -2019,11,1,2,45,0.0,0.0,0.0,11.0,0.0 -2019,11,1,3,0,0.0,0.0,0.0,11.5,0.0 -2019,11,1,3,15,0.0,0.0,0.0,11.5,0.0 -2019,11,1,3,30,0.0,0.0,0.0,11.5,0.0 -2019,11,1,3,45,0.0,0.0,0.0,11.5,0.0 -2019,11,1,4,0,0.0,0.0,0.0,11.2,0.0 -2019,11,1,4,15,0.0,0.0,0.0,11.2,0.0 -2019,11,1,4,30,0.0,0.0,0.0,11.2,0.0 -2019,11,1,4,45,0.0,0.0,0.0,11.2,0.0 -2019,11,1,5,0,0.0,0.0,0.0,11.7,0.0 -2019,11,1,5,15,0.0,0.0,0.0,11.7,0.0 -2019,11,1,5,30,0.0,0.0,0.0,11.7,0.0 -2019,11,1,5,45,0.0,0.0,0.0,11.7,0.0 -2019,11,1,6,0,1.0,16.72512858119299,17.0,11.7,0.0 -2019,11,1,6,15,1.0,16.77730777619779,17.0,11.7,0.0 -2019,11,1,6,30,1.0,16.82982787287523,17.0,11.7,0.0 -2019,11,1,6,45,1.0,16.882463972108308,17.0,11.7,0.0 -2019,11,1,7,0,2.0,33.86998135607854,34.0,11.8,0.0 -2019,11,1,7,15,2.0,33.97436612649854,34.0,11.8,0.0 -2019,11,1,7,30,2.0,34.077635263864224,34.0,11.8,0.0 -2019,11,1,7,45,2.0,34.17934655387525,34.0,11.8,0.0 -2019,11,1,8,0,1.0,57.13953222658638,57.0,11.9,0.0 -2019,11,1,8,15,1.0,57.18818097720151,57.0,11.9,0.0 -2019,11,1,8,30,1.0,57.23541120736419,57.0,11.9,0.0 -2019,11,1,8,45,1.0,57.28102066997793,57.0,11.9,0.0 -2019,11,1,9,0,0.0,75.0,75.0,12.9,1.1 -2019,11,1,9,15,0.0,75.0,75.0,12.9,1.1 -2019,11,1,9,30,0.0,75.0,75.0,12.9,1.1 -2019,11,1,9,45,0.0,75.0,75.0,12.9,1.1 -2019,11,1,10,0,0.0,86.0,86.0,13.4,1.7 -2019,11,1,10,15,0.0,86.0,86.0,13.4,1.7 -2019,11,1,10,30,0.0,86.0,86.0,13.4,1.7 -2019,11,1,10,45,0.0,86.0,86.0,13.4,1.7 -2019,11,1,11,0,388.0,493.63480915309447,265.0,16.6,1.3 -2019,11,1,11,15,388.0,501.4683910337095,265.0,16.6,1.3 -2019,11,1,11,30,388.0,508.0516511208423,265.0,16.6,1.3 -2019,11,1,11,45,388.0,513.356398884119,265.0,16.6,1.3 -2019,11,1,12,0,836.0,670.7445668356346,127.0,20.1,0.4 -2019,11,1,12,15,836.0,676.5300917805788,127.0,20.1,0.4 -2019,11,1,12,30,836.0,679.4502267904672,127.0,20.1,0.4 -2019,11,1,12,45,836.0,679.49246739888,127.0,20.1,0.4 -2019,11,1,13,0,125.0,332.1855013045824,250.0,21.2,2.7 -2019,11,1,13,15,125.0,331.33296445101786,250.0,21.2,2.7 -2019,11,1,13,30,125.0,330.0555597799588,250.0,21.2,2.7 -2019,11,1,13,45,125.0,328.3587573343175,250.0,21.2,2.7 -2019,11,1,14,0,98.0,241.77986129680863,182.0,22.1,3.2 -2019,11,1,14,15,98.0,239.8104256393031,182.0,22.1,3.2 -2019,11,1,14,30,98.0,237.53339220342696,182.0,22.1,3.2 -2019,11,1,14,45,98.0,234.95851159592925,182.0,22.1,3.2 -2019,11,1,15,0,29.0,99.8245661803607,85.0,21.3,4.0 -2019,11,1,15,15,29.0,98.8964866859147,85.0,21.3,4.0 -2019,11,1,15,30,29.0,97.89113198412983,85.0,21.3,4.0 -2019,11,1,15,45,29.0,96.81280715818401,85.0,21.3,4.0 -2019,11,1,16,0,14.0,22.14916609129006,17.0,19.7,3.5 -2019,11,1,16,15,14.0,21.564970364052904,17.0,19.7,3.5 -2019,11,1,16,30,14.0,20.95264892423772,17.0,19.7,3.5 -2019,11,1,16,45,14.0,20.314823826255108,17.0,19.7,3.5 -2019,11,1,17,0,0.0,0.0,0.0,18.8,3.0 -2019,11,1,17,15,0.0,0.0,0.0,18.8,3.0 -2019,11,1,17,30,0.0,0.0,0.0,18.8,3.0 -2019,11,1,17,45,0.0,0.0,0.0,18.8,3.0 -2019,11,1,18,0,0.0,0.0,0.0,17.6,2.5 -2019,11,1,18,15,0.0,0.0,0.0,17.6,2.5 -2019,11,1,18,30,0.0,0.0,0.0,17.6,2.5 -2019,11,1,18,45,0.0,0.0,0.0,17.6,2.5 -2019,11,1,19,0,0.0,0.0,0.0,16.0,1.6 -2019,11,1,19,15,0.0,0.0,0.0,16.0,1.6 -2019,11,1,19,30,0.0,0.0,0.0,16.0,1.6 -2019,11,1,19,45,0.0,0.0,0.0,16.0,1.6 -2019,11,1,20,0,0.0,0.0,0.0,14.8,2.0 -2019,11,1,20,15,0.0,0.0,0.0,14.8,2.0 -2019,11,1,20,30,0.0,0.0,0.0,14.8,2.0 -2019,11,1,20,45,0.0,0.0,0.0,14.8,2.0 -2019,11,1,21,0,0.0,0.0,0.0,13.3,1.3 -2019,11,1,21,15,0.0,0.0,0.0,13.3,1.3 -2019,11,1,21,30,0.0,0.0,0.0,13.3,1.3 -2019,11,1,21,45,0.0,0.0,0.0,13.3,1.3 -2019,11,1,22,0,0.0,0.0,0.0,13.2,0.0 -2019,11,1,22,15,0.0,0.0,0.0,13.2,0.0 -2019,11,1,22,30,0.0,0.0,0.0,13.2,0.0 -2019,11,1,22,45,0.0,0.0,0.0,13.2,0.0 -2019,11,1,23,0,0.0,0.0,0.0,12.7,0.0 -2019,11,1,23,15,0.0,0.0,0.0,12.7,0.0 -2019,11,1,23,30,0.0,0.0,0.0,12.7,0.0 -2019,11,1,23,45,0.0,0.0,0.0,12.7,0.0 -2019,11,2,0,0,0.0,0.0,0.0,11.9,0.0 -2019,11,2,0,15,0.0,0.0,0.0,11.9,0.0 -2019,11,2,0,30,0.0,0.0,0.0,11.9,0.0 -2019,11,2,0,45,0.0,0.0,0.0,11.9,0.0 -2019,11,2,1,0,0.0,0.0,0.0,11.2,0.0 -2019,11,2,1,15,0.0,0.0,0.0,11.2,0.0 -2019,11,2,1,30,0.0,0.0,0.0,11.2,0.0 -2019,11,2,1,45,0.0,0.0,0.0,11.2,0.0 -2019,11,2,2,0,0.0,0.0,0.0,12.3,0.0 -2019,11,2,2,15,0.0,0.0,0.0,12.3,0.0 -2019,11,2,2,30,0.0,0.0,0.0,12.3,0.0 -2019,11,2,2,45,0.0,0.0,0.0,12.3,0.0 -2019,11,2,3,0,0.0,0.0,0.0,12.9,0.0 -2019,11,2,3,15,0.0,0.0,0.0,12.9,0.0 -2019,11,2,3,30,0.0,0.0,0.0,12.9,0.0 -2019,11,2,3,45,0.0,0.0,0.0,12.9,0.0 -2019,11,2,4,0,0.0,0.0,0.0,13.3,0.0 -2019,11,2,4,15,0.0,0.0,0.0,13.3,0.0 -2019,11,2,4,30,0.0,0.0,0.0,13.3,0.0 -2019,11,2,4,45,0.0,0.0,0.0,13.3,0.0 -2019,11,2,5,0,0.0,0.0,0.0,13.4,0.0 -2019,11,2,5,15,0.0,0.0,0.0,13.4,0.0 -2019,11,2,5,30,0.0,0.0,0.0,13.4,0.0 -2019,11,2,5,45,0.0,0.0,0.0,13.4,0.0 -2019,11,2,6,0,2.0,16.444887938535686,17.0,13.9,0.3 -2019,11,2,6,15,2.0,16.549094682993882,17.0,13.9,0.3 -2019,11,2,6,30,2.0,16.65398224005341,17.0,13.9,0.3 -2019,11,2,6,45,2.0,16.759101465092304,17.0,13.9,0.3 -2019,11,2,7,0,3.0,41.79600333217613,42.0,14.0,2.5 -2019,11,2,7,15,3.0,41.95235296197806,42.0,14.0,2.5 -2019,11,2,7,30,3.0,42.1070315739262,42.0,14.0,2.5 -2019,11,2,7,45,3.0,42.2593768104575,42.0,14.0,2.5 -2019,11,2,8,0,16.0,131.1799269646969,129.0,15.1,2.5 -2019,11,2,8,15,16.0,131.95717589283313,129.0,15.1,2.5 -2019,11,2,8,30,16.0,132.71176147427965,129.0,15.1,2.5 -2019,11,2,8,45,16.0,133.44045245773066,129.0,15.1,2.5 -2019,11,2,9,0,281.0,322.2735063689581,232.0,16.2,1.3 -2019,11,2,9,15,281.0,333.9993717724667,232.0,16.2,1.3 -2019,11,2,9,30,281.0,345.11283054357494,232.0,16.2,1.3 -2019,11,2,9,45,281.0,355.5662931456559,232.0,16.2,1.3 -2019,11,2,10,0,420.0,441.26084848306414,242.0,17.4,1.7 -2019,11,2,10,15,420.0,454.7160912804284,242.0,17.4,1.7 -2019,11,2,10,30,420.0,466.997944148191,242.0,17.4,1.7 -2019,11,2,10,45,420.0,478.05381430682775,242.0,17.4,1.7 -2019,11,2,11,0,599.0,553.609473654695,203.0,19.6,2.7 -2019,11,2,11,15,599.0,565.6854969433164,203.0,19.6,2.7 -2019,11,2,11,30,599.0,575.8340603130305,203.0,19.6,2.7 -2019,11,2,11,45,599.0,584.0117060574523,203.0,19.6,2.7 -2019,11,2,12,0,781.0,646.8251220117543,142.0,21.2,1.5 -2019,11,2,12,15,781.0,652.2221663348594,142.0,21.2,1.5 -2019,11,2,12,30,781.0,654.9462230501608,142.0,21.2,1.5 -2019,11,2,12,45,781.0,654.9856273285984,142.0,21.2,1.5 -2019,11,2,13,0,829.0,651.7055498727494,110.0,21.7,2.0 -2019,11,2,13,15,829.0,646.0597414514518,110.0,21.7,2.0 -2019,11,2,13,30,829.0,637.6003041624763,110.0,21.7,2.0 -2019,11,2,13,45,829.0,626.3634626150107,110.0,21.7,2.0 -2019,11,2,14,0,764.0,556.005505069855,93.0,22.2,3.1 -2019,11,2,14,15,764.0,540.674256061077,93.0,22.2,3.1 -2019,11,2,14,30,764.0,522.9484844809351,93.0,22.2,3.1 -2019,11,2,14,45,764.0,502.9040948046455,93.0,22.2,3.1 -2019,11,2,15,0,602.0,375.4337774241044,70.0,21.7,3.0 -2019,11,2,15,15,602.0,356.1961225837782,70.0,21.7,3.0 -2019,11,2,15,30,602.0,335.3566720186292,70.0,21.7,3.0 -2019,11,2,15,45,602.0,313.004663455308,70.0,21.7,3.0 -2019,11,2,16,0,517.0,207.28058905424456,19.0,20.7,2.5 -2019,11,2,16,15,517.0,185.73842437632058,19.0,20.7,2.5 -2019,11,2,16,30,517.0,163.15912658736693,19.0,20.7,2.5 -2019,11,2,16,45,517.0,139.63938370695274,19.0,20.7,2.5 -2019,11,2,17,0,0.0,0.0,0.0,19.9,1.9 -2019,11,2,17,15,0.0,0.0,0.0,19.9,1.9 -2019,11,2,17,30,0.0,0.0,0.0,19.9,1.9 -2019,11,2,17,45,0.0,0.0,0.0,19.9,1.9 -2019,11,2,18,0,0.0,0.0,0.0,18.8,0.2 -2019,11,2,18,15,0.0,0.0,0.0,18.8,0.2 -2019,11,2,18,30,0.0,0.0,0.0,18.8,0.2 -2019,11,2,18,45,0.0,0.0,0.0,18.8,0.2 -2019,11,2,19,0,0.0,0.0,0.0,17.7,1.3 -2019,11,2,19,15,0.0,0.0,0.0,17.7,1.3 -2019,11,2,19,30,0.0,0.0,0.0,17.7,1.3 -2019,11,2,19,45,0.0,0.0,0.0,17.7,1.3 -2019,11,2,20,0,0.0,0.0,0.0,16.6,0.0 -2019,11,2,20,15,0.0,0.0,0.0,16.6,0.0 -2019,11,2,20,30,0.0,0.0,0.0,16.6,0.0 -2019,11,2,20,45,0.0,0.0,0.0,16.6,0.0 -2019,11,2,21,0,0.0,0.0,0.0,15.4,0.2 -2019,11,2,21,15,0.0,0.0,0.0,15.4,0.2 -2019,11,2,21,30,0.0,0.0,0.0,15.4,0.2 -2019,11,2,21,45,0.0,0.0,0.0,15.4,0.2 -2019,11,2,22,0,0.0,0.0,0.0,13.8,1.3 -2019,11,2,22,15,0.0,0.0,0.0,13.8,1.3 -2019,11,2,22,30,0.0,0.0,0.0,13.8,1.3 -2019,11,2,22,45,0.0,0.0,0.0,13.8,1.3 -2019,11,2,23,0,0.0,0.0,0.0,13.2,0.0 -2019,11,2,23,15,0.0,0.0,0.0,13.2,0.0 -2019,11,2,23,30,0.0,0.0,0.0,13.2,0.0 -2019,11,2,23,45,0.0,0.0,0.0,13.2,0.0 -2019,11,3,0,0,0.0,0.0,0.0,12.7,0.0 -2019,11,3,0,15,0.0,0.0,0.0,12.7,0.0 -2019,11,3,0,30,0.0,0.0,0.0,12.7,0.0 -2019,11,3,0,45,0.0,0.0,0.0,12.7,0.0 -2019,11,3,1,0,0.0,0.0,0.0,11.6,0.0 -2019,11,3,1,15,0.0,0.0,0.0,11.6,0.0 -2019,11,3,1,30,0.0,0.0,0.0,11.6,0.0 -2019,11,3,1,45,0.0,0.0,0.0,11.6,0.0 -2019,11,3,2,0,0.0,0.0,0.0,11.1,0.2 -2019,11,3,2,15,0.0,0.0,0.0,11.1,0.2 -2019,11,3,2,30,0.0,0.0,0.0,11.1,0.2 -2019,11,3,2,45,0.0,0.0,0.0,11.1,0.2 -2019,11,3,3,0,0.0,0.0,0.0,11.0,1.6 -2019,11,3,3,15,0.0,0.0,0.0,11.0,1.6 -2019,11,3,3,30,0.0,0.0,0.0,11.0,1.6 -2019,11,3,3,45,0.0,0.0,0.0,11.0,1.6 -2019,11,3,4,0,0.0,0.0,0.0,10.5,2.1 -2019,11,3,4,15,0.0,0.0,0.0,10.5,2.1 -2019,11,3,4,30,0.0,0.0,0.0,10.5,2.1 -2019,11,3,4,45,0.0,0.0,0.0,10.5,2.1 -2019,11,3,5,0,0.0,0.0,0.0,10.0,2.0 -2019,11,3,5,15,0.0,0.0,0.0,10.0,2.0 -2019,11,3,5,30,0.0,0.0,0.0,10.0,2.0 -2019,11,3,5,45,0.0,0.0,0.0,10.0,2.0 -2019,11,3,6,0,252.0,-48.60872393162634,22.0,10.4,1.3 -2019,11,3,6,15,252.0,-35.49787242484227,22.0,10.4,1.3 -2019,11,3,6,30,252.0,-22.301363958267643,22.0,10.4,1.3 -2019,11,3,6,45,252.0,-9.075708007121204,22.0,10.4,1.3 -2019,11,3,7,0,504.0,37.244922278749385,73.0,13.6,1.3 -2019,11,3,7,15,504.0,63.473253789429855,73.0,13.6,1.3 -2019,11,3,7,30,504.0,89.42126477562354,73.0,13.6,1.3 -2019,11,3,7,45,504.0,114.97784187067643,73.0,13.6,1.3 -2019,11,3,8,0,614.0,196.66388572063812,115.0,16.6,0.0 -2019,11,3,8,15,614.0,226.4472014580592,115.0,16.6,0.0 -2019,11,3,8,30,614.0,255.362082919547,115.0,16.6,0.0 -2019,11,3,8,45,614.0,283.2847121435899,115.0,16.6,0.0 -2019,11,3,9,0,890.0,374.7931806663371,92.0,20.4,0.0 -2019,11,3,9,15,890.0,411.8777394886387,92.0,20.4,0.0 -2019,11,3,9,30,890.0,447.02548350018736,92.0,20.4,0.0 -2019,11,3,9,45,890.0,480.085904665145,92.0,20.4,0.0 -2019,11,3,10,0,981.0,545.7505639933137,84.0,24.0,0.3 -2019,11,3,10,15,981.0,577.1322144823342,84.0,24.0,0.3 -2019,11,3,10,30,981.0,605.7771687100798,84.0,24.0,0.3 -2019,11,3,10,45,981.0,631.5627645848932,84.0,24.0,0.3 -2019,11,3,11,0,1156.0,716.1280768255923,44.0,26.3,1.7 -2019,11,3,11,15,1156.0,739.3993143448357,44.0,26.3,1.7 -2019,11,3,11,30,1156.0,758.9562183861059,44.0,26.3,1.7 -2019,11,3,11,45,1156.0,774.7150432838672,44.0,26.3,1.7 -2019,11,3,12,0,1117.0,768.5549128791052,51.0,27.9,3.2 -2019,11,3,12,15,1117.0,776.2625746606284,51.0,27.9,3.2 -2019,11,3,12,30,1117.0,780.1528721231383,51.0,27.9,3.2 -2019,11,3,12,45,1117.0,780.2091464156509,51.0,27.9,3.2 -2019,11,3,13,0,1032.0,732.2282484986777,62.0,28.3,3.6 -2019,11,3,13,15,1032.0,725.2102086604212,62.0,28.3,3.6 -2019,11,3,13,30,1032.0,714.6946786471628,62.0,28.3,3.6 -2019,11,3,13,45,1032.0,700.7266875727926,62.0,28.3,3.6 -2019,11,3,14,0,858.0,591.6008426644648,75.0,28.2,3.8 -2019,11,3,14,15,858.0,574.4084630493045,75.0,28.2,3.8 -2019,11,3,14,30,858.0,554.5308787896702,75.0,28.2,3.8 -2019,11,3,14,45,858.0,532.0532087530239,75.0,28.2,3.8 -2019,11,3,15,0,662.0,395.37001074816175,62.0,27.4,5.0 -2019,11,3,15,15,662.0,374.24591380738866,62.0,27.4,5.0 -2019,11,3,15,30,662.0,351.36294924728696,62.0,27.4,5.0 -2019,11,3,15,45,662.0,326.81910543515943,62.0,27.4,5.0 -2019,11,3,16,0,562.0,219.65913803259215,17.0,26.0,4.0 -2019,11,3,16,15,562.0,196.27616982172825,17.0,26.0,4.0 -2019,11,3,16,30,562.0,171.7674442448699,17.0,26.0,4.0 -2019,11,3,16,45,562.0,146.2379114275849,17.0,26.0,4.0 -2019,11,3,17,0,0.0,0.0,0.0,24.6,2.7 -2019,11,3,17,15,0.0,0.0,0.0,24.6,2.7 -2019,11,3,17,30,0.0,0.0,0.0,24.6,2.7 -2019,11,3,17,45,0.0,0.0,0.0,24.6,2.7 -2019,11,3,18,0,0.0,0.0,0.0,21.8,0.0 -2019,11,3,18,15,0.0,0.0,0.0,21.8,0.0 -2019,11,3,18,30,0.0,0.0,0.0,21.8,0.0 -2019,11,3,18,45,0.0,0.0,0.0,21.8,0.0 -2019,11,3,19,0,0.0,0.0,0.0,20.5,0.0 -2019,11,3,19,15,0.0,0.0,0.0,20.5,0.0 -2019,11,3,19,30,0.0,0.0,0.0,20.5,0.0 -2019,11,3,19,45,0.0,0.0,0.0,20.5,0.0 -2019,11,3,20,0,0.0,0.0,0.0,19.1,0.0 -2019,11,3,20,15,0.0,0.0,0.0,19.1,0.0 -2019,11,3,20,30,0.0,0.0,0.0,19.1,0.0 -2019,11,3,20,45,0.0,0.0,0.0,19.1,0.0 -2019,11,3,21,0,0.0,0.0,0.0,17.1,0.2 -2019,11,3,21,15,0.0,0.0,0.0,17.1,0.2 -2019,11,3,21,30,0.0,0.0,0.0,17.1,0.2 -2019,11,3,21,45,0.0,0.0,0.0,17.1,0.2 -2019,11,3,22,0,0.0,0.0,0.0,16.0,1.3 -2019,11,3,22,15,0.0,0.0,0.0,16.0,1.3 -2019,11,3,22,30,0.0,0.0,0.0,16.0,1.3 -2019,11,3,22,45,0.0,0.0,0.0,16.0,1.3 -2019,11,3,23,0,0.0,0.0,0.0,15.5,0.2 -2019,11,3,23,15,0.0,0.0,0.0,15.5,0.2 -2019,11,3,23,30,0.0,0.0,0.0,15.5,0.2 -2019,11,3,23,45,0.0,0.0,0.0,15.5,0.2 -2019,11,4,0,0,0.0,0.0,0.0,14.7,1.6 -2019,11,4,0,15,0.0,0.0,0.0,14.7,1.6 -2019,11,4,0,30,0.0,0.0,0.0,14.7,1.6 -2019,11,4,0,45,0.0,0.0,0.0,14.7,1.6 -2019,11,4,1,0,0.0,0.0,0.0,12.9,2.1 -2019,11,4,1,15,0.0,0.0,0.0,12.9,2.1 -2019,11,4,1,30,0.0,0.0,0.0,12.9,2.1 -2019,11,4,1,45,0.0,0.0,0.0,12.9,2.1 -2019,11,4,2,0,0.0,0.0,0.0,13.1,2.0 -2019,11,4,2,15,0.0,0.0,0.0,13.1,2.0 -2019,11,4,2,30,0.0,0.0,0.0,13.1,2.0 -2019,11,4,2,45,0.0,0.0,0.0,13.1,2.0 -2019,11,4,3,0,0.0,0.0,0.0,11.8,1.6 -2019,11,4,3,15,0.0,0.0,0.0,11.8,1.6 -2019,11,4,3,30,0.0,0.0,0.0,11.8,1.6 -2019,11,4,3,45,0.0,0.0,0.0,11.8,1.6 -2019,11,4,4,0,0.0,0.0,0.0,12.1,2.2 -2019,11,4,4,15,0.0,0.0,0.0,12.1,2.2 -2019,11,4,4,30,0.0,0.0,0.0,12.1,2.2 -2019,11,4,4,45,0.0,0.0,0.0,12.1,2.2 -2019,11,4,5,0,0.0,0.0,0.0,11.5,3.0 -2019,11,4,5,15,0.0,0.0,0.0,11.5,3.0 -2019,11,4,5,30,0.0,0.0,0.0,11.5,3.0 -2019,11,4,5,45,0.0,0.0,0.0,11.5,3.0 -2019,11,4,6,0,389.0,-85.00253709904825,25.0,12.2,2.5 -2019,11,4,6,15,389.0,-64.79370131569749,25.0,12.2,2.5 -2019,11,4,6,30,389.0,-44.45283540194578,25.0,12.2,2.5 -2019,11,4,6,45,389.0,-24.06704206842233,25.0,12.2,2.5 -2019,11,4,7,0,778.0,-12.447232823730353,45.0,16.3,2.0 -2019,11,4,7,15,778.0,27.980655791769685,45.0,16.3,2.0 -2019,11,4,7,30,778.0,67.97646328400121,45.0,16.3,2.0 -2019,11,4,7,45,778.0,107.36892146501452,45.0,16.3,2.0 -2019,11,4,8,0,1065.0,175.24377025323778,37.0,21.6,1.3 -2019,11,4,8,15,1065.0,226.82784176563842,37.0,21.6,1.3 -2019,11,4,8,30,1065.0,276.90780352113654,37.0,21.6,1.3 -2019,11,4,8,45,1065.0,325.26920543507947,37.0,21.6,1.3 -2019,11,4,9,0,1066.0,388.0192335144109,53.0,26.6,0.2 -2019,11,4,9,15,1066.0,432.3720956473426,53.0,26.6,0.2 -2019,11,4,9,30,1066.0,474.40854137931353,53.0,26.6,0.2 -2019,11,4,9,45,1066.0,513.9485641961473,53.0,26.6,0.2 -2019,11,4,10,0,1096.0,566.8328715049086,55.0,30.2,1.3 -2019,11,4,10,15,1096.0,601.8417875007441,55.0,30.2,1.3 -2019,11,4,10,30,1096.0,633.7976846774892,55.0,30.2,1.3 -2019,11,4,10,45,1096.0,662.5637229774742,55.0,30.2,1.3 -2019,11,4,11,0,1168.0,715.6017619272601,41.0,31.7,0.0 -2019,11,4,11,15,1168.0,739.0800173590259,41.0,31.7,0.0 -2019,11,4,11,30,1168.0,758.8108970836553,41.0,31.7,0.0 -2019,11,4,11,45,1168.0,774.7099104450275,41.0,31.7,0.0 -2019,11,4,12,0,1125.0,767.2556484207634,49.0,32.0,0.0 -2019,11,4,12,15,1125.0,775.0071052785262,49.0,32.0,0.0 -2019,11,4,12,30,1125.0,778.9195074828883,49.0,32.0,0.0 -2019,11,4,12,45,1125.0,778.9761015269678,49.0,32.0,0.0 -2019,11,4,13,0,1027.0,725.9185906517083,63.0,33.0,2.6 -2019,11,4,13,15,1027.0,718.9448159749597,63.0,33.0,2.6 -2019,11,4,13,30,1027.0,708.49561098195,63.0,33.0,2.6 -2019,11,4,13,45,1027.0,694.6157207726501,63.0,33.0,2.6 -2019,11,4,14,0,957.0,629.4896827435247,57.0,33.1,2.2 -2019,11,4,14,15,957.0,610.3417462855542,57.0,33.1,2.2 -2019,11,4,14,30,957.0,588.2031750777732,57.0,33.1,2.2 -2019,11,4,14,45,957.0,563.1687698808687,57.0,33.1,2.2 -2019,11,4,15,0,782.0,438.87394181347315,48.0,32.3,2.2 -2019,11,4,15,15,782.0,413.9573721709866,48.0,32.3,2.2 -2019,11,4,15,30,782.0,386.96616011174746,48.0,32.3,2.2 -2019,11,4,15,45,782.0,358.01588614955966,48.0,32.3,2.2 -2019,11,4,16,0,748.0,277.0900624193582,10.0,31.3,3.2 -2019,11,4,16,15,748.0,246.0139805283584,10.0,31.3,3.2 -2019,11,4,16,30,748.0,213.4417614583841,10.0,31.3,3.2 -2019,11,4,16,45,748.0,179.51288445207152,10.0,31.3,3.2 -2019,11,4,17,0,0.0,0.0,0.0,30.4,3.9 -2019,11,4,17,15,0.0,0.0,0.0,30.4,3.9 -2019,11,4,17,30,0.0,0.0,0.0,30.4,3.9 -2019,11,4,17,45,0.0,0.0,0.0,30.4,3.9 -2019,11,4,18,0,0.0,0.0,0.0,28.6,2.5 -2019,11,4,18,15,0.0,0.0,0.0,28.6,2.5 -2019,11,4,18,30,0.0,0.0,0.0,28.6,2.5 -2019,11,4,18,45,0.0,0.0,0.0,28.6,2.5 -2019,11,4,19,0,0.0,0.0,0.0,26.2,1.5 -2019,11,4,19,15,0.0,0.0,0.0,26.2,1.5 -2019,11,4,19,30,0.0,0.0,0.0,26.2,1.5 -2019,11,4,19,45,0.0,0.0,0.0,26.2,1.5 -2019,11,4,20,0,0.0,0.0,0.0,22.5,1.5 -2019,11,4,20,15,0.0,0.0,0.0,22.5,1.5 -2019,11,4,20,30,0.0,0.0,0.0,22.5,1.5 -2019,11,4,20,45,0.0,0.0,0.0,22.5,1.5 -2019,11,4,21,0,0.0,0.0,0.0,20.4,1.6 -2019,11,4,21,15,0.0,0.0,0.0,20.4,1.6 -2019,11,4,21,30,0.0,0.0,0.0,20.4,1.6 -2019,11,4,21,45,0.0,0.0,0.0,20.4,1.6 -2019,11,4,22,0,0.0,0.0,0.0,18.8,2.0 -2019,11,4,22,15,0.0,0.0,0.0,18.8,2.0 -2019,11,4,22,30,0.0,0.0,0.0,18.8,2.0 -2019,11,4,22,45,0.0,0.0,0.0,18.8,2.0 -2019,11,4,23,0,0.0,0.0,0.0,17.8,1.5 -2019,11,4,23,15,0.0,0.0,0.0,17.8,1.5 -2019,11,4,23,30,0.0,0.0,0.0,17.8,1.5 -2019,11,4,23,45,0.0,0.0,0.0,17.8,1.5 -2019,11,5,0,0,0.0,0.0,0.0,17.6,1.6 -2019,11,5,0,15,0.0,0.0,0.0,17.6,1.6 -2019,11,5,0,30,0.0,0.0,0.0,17.6,1.6 -2019,11,5,0,45,0.0,0.0,0.0,17.6,1.6 -2019,11,5,1,0,0.0,0.0,0.0,16.1,2.7 -2019,11,5,1,15,0.0,0.0,0.0,16.1,2.7 -2019,11,5,1,30,0.0,0.0,0.0,16.1,2.7 -2019,11,5,1,45,0.0,0.0,0.0,16.1,2.7 -2019,11,5,2,0,0.0,0.0,0.0,15.9,2.9 -2019,11,5,2,15,0.0,0.0,0.0,15.9,2.9 -2019,11,5,2,30,0.0,0.0,0.0,15.9,2.9 -2019,11,5,2,45,0.0,0.0,0.0,15.9,2.9 -2019,11,5,3,0,0.0,0.0,0.0,14.5,1.7 -2019,11,5,3,15,0.0,0.0,0.0,14.5,1.7 -2019,11,5,3,30,0.0,0.0,0.0,14.5,1.7 -2019,11,5,3,45,0.0,0.0,0.0,14.5,1.7 -2019,11,5,4,0,0.0,0.0,0.0,15.0,3.0 -2019,11,5,4,15,0.0,0.0,0.0,15.0,3.0 -2019,11,5,4,30,0.0,0.0,0.0,15.0,3.0 -2019,11,5,4,45,0.0,0.0,0.0,15.0,3.0 -2019,11,5,5,0,0.0,0.0,0.0,15.1,2.7 -2019,11,5,5,15,0.0,0.0,0.0,15.1,2.7 -2019,11,5,5,30,0.0,0.0,0.0,15.1,2.7 -2019,11,5,5,45,0.0,0.0,0.0,15.1,2.7 -2019,11,5,6,0,757.0,-214.9903587233671,1.0,16.9,1.6 -2019,11,5,6,15,757.0,-175.72166378515786,1.0,16.9,1.6 -2019,11,5,6,30,757.0,-136.1964151805747,1.0,16.9,1.6 -2019,11,5,6,45,757.0,-96.5838660921689,1.0,16.9,1.6 -2019,11,5,7,0,766.0,-13.743845375177898,45.0,18.0,2.1 -2019,11,5,7,15,766.0,26.00176109830458,45.0,18.0,2.1 -2019,11,5,7,30,766.0,65.32257847499847,45.0,18.0,2.1 -2019,11,5,7,45,766.0,104.05022897825506,45.0,18.0,2.1 -2019,11,5,8,0,968.0,174.60348677209575,52.0,23.9,0.0 -2019,11,5,8,15,968.0,221.4201290401482,52.0,23.9,0.0 -2019,11,5,8,30,968.0,266.8716722309813,52.0,23.9,0.0 -2019,11,5,8,45,968.0,310.7634858588043,52.0,23.9,0.0 -2019,11,5,9,0,1069.0,384.30397118964703,52.0,28.3,0.0 -2019,11,5,9,15,1069.0,428.71604430487025,52.0,28.3,0.0 -2019,11,5,9,30,1069.0,470.8086086078679,52.0,28.3,0.0 -2019,11,5,9,45,1069.0,510.4014172761266,52.0,28.3,0.0 -2019,11,5,10,0,1120.0,568.9559580575057,50.0,32.0,0.2 -2019,11,5,10,15,1120.0,604.6787198183225,50.0,32.0,0.2 -2019,11,5,10,30,1120.0,637.286210488237,50.0,32.0,0.2 -2019,11,5,10,45,1120.0,666.6387997862071,50.0,32.0,0.2 -2019,11,5,11,0,1136.0,700.7909496388332,49.0,33.9,3.0 -2019,11,5,11,15,1136.0,723.592281045767,49.0,33.9,3.0 -2019,11,5,11,30,1136.0,742.7542809166316,49.0,33.9,3.0 -2019,11,5,11,45,1136.0,758.1948946261764,49.0,33.9,3.0 -2019,11,5,12,0,1123.0,762.5988622155105,50.0,34.4,2.6 -2019,11,5,12,15,1123.0,770.3251247848827,50.0,34.4,2.6 -2019,11,5,12,30,1123.0,774.2248106455633,50.0,34.4,2.6 -2019,11,5,12,45,1123.0,774.2812207440061,50.0,34.4,2.6 -2019,11,5,13,0,1076.0,742.3398630020446,52.0,34.4,2.7 -2019,11,5,13,15,1076.0,735.0441350057453,52.0,34.4,2.7 -2019,11,5,13,30,1076.0,724.1125289616401,52.0,34.4,2.7 -2019,11,5,13,45,1076.0,709.5918556850608,52.0,34.4,2.7 -2019,11,5,14,0,981.0,635.0789529038989,52.0,34.3,3.0 -2019,11,5,14,15,981.0,615.479771063013,52.0,34.3,3.0 -2019,11,5,14,30,981.0,592.8194763753268,52.0,34.3,3.0 -2019,11,5,14,45,981.0,567.1951037015647,52.0,34.3,3.0 -2019,11,5,15,0,794.0,439.9376209462957,46.0,33.1,2.1 -2019,11,5,15,15,794.0,414.6760185321233,46.0,33.1,2.1 -2019,11,5,15,30,794.0,387.3110450425757,46.0,33.1,2.1 -2019,11,5,15,45,794.0,357.9598814952825,46.0,33.1,2.1 -2019,11,5,16,0,566.0,215.1303390031511,15.0,31.7,1.8 -2019,11,5,16,15,566.0,191.65023665542648,15.0,31.7,1.8 -2019,11,5,16,30,566.0,167.03970048365142,15.0,31.7,1.8 -2019,11,5,16,45,566.0,141.40411658199167,15.0,31.7,1.8 -2019,11,5,17,0,0.0,0.0,0.0,29.7,1.5 -2019,11,5,17,15,0.0,0.0,0.0,29.7,1.5 -2019,11,5,17,30,0.0,0.0,0.0,29.7,1.5 -2019,11,5,17,45,0.0,0.0,0.0,29.7,1.5 -2019,11,5,18,0,0.0,0.0,0.0,27.5,1.3 -2019,11,5,18,15,0.0,0.0,0.0,27.5,1.3 -2019,11,5,18,30,0.0,0.0,0.0,27.5,1.3 -2019,11,5,18,45,0.0,0.0,0.0,27.5,1.3 -2019,11,5,19,0,0.0,0.0,0.0,25.1,0.0 -2019,11,5,19,15,0.0,0.0,0.0,25.1,0.0 -2019,11,5,19,30,0.0,0.0,0.0,25.1,0.0 -2019,11,5,19,45,0.0,0.0,0.0,25.1,0.0 -2019,11,5,20,0,0.0,0.0,0.0,21.6,0.0 -2019,11,5,20,15,0.0,0.0,0.0,21.6,0.0 -2019,11,5,20,30,0.0,0.0,0.0,21.6,0.0 -2019,11,5,20,45,0.0,0.0,0.0,21.6,0.0 -2019,11,5,21,0,0.0,0.0,0.0,20.5,0.2 -2019,11,5,21,15,0.0,0.0,0.0,20.5,0.2 -2019,11,5,21,30,0.0,0.0,0.0,20.5,0.2 -2019,11,5,21,45,0.0,0.0,0.0,20.5,0.2 -2019,11,5,22,0,0.0,0.0,0.0,19.2,1.3 -2019,11,5,22,15,0.0,0.0,0.0,19.2,1.3 -2019,11,5,22,30,0.0,0.0,0.0,19.2,1.3 -2019,11,5,22,45,0.0,0.0,0.0,19.2,1.3 -2019,11,5,23,0,0.0,0.0,0.0,17.8,0.2 -2019,11,5,23,15,0.0,0.0,0.0,17.8,0.2 -2019,11,5,23,30,0.0,0.0,0.0,17.8,0.2 -2019,11,5,23,45,0.0,0.0,0.0,17.8,0.2 -2019,11,6,0,0,0.0,0.0,0.0,17.4,1.9 -2019,11,6,0,15,0.0,0.0,0.0,17.4,1.9 -2019,11,6,0,30,0.0,0.0,0.0,17.4,1.9 -2019,11,6,0,45,0.0,0.0,0.0,17.4,1.9 -2019,11,6,1,0,0.0,0.0,0.0,14.6,0.2 -2019,11,6,1,15,0.0,0.0,0.0,14.6,0.2 -2019,11,6,1,30,0.0,0.0,0.0,14.6,0.2 -2019,11,6,1,45,0.0,0.0,0.0,14.6,0.2 -2019,11,6,2,0,0.0,0.0,0.0,15.9,2.0 -2019,11,6,2,15,0.0,0.0,0.0,15.9,2.0 -2019,11,6,2,30,0.0,0.0,0.0,15.9,2.0 -2019,11,6,2,45,0.0,0.0,0.0,15.9,2.0 -2019,11,6,3,0,0.0,0.0,0.0,14.3,1.3 -2019,11,6,3,15,0.0,0.0,0.0,14.3,1.3 -2019,11,6,3,30,0.0,0.0,0.0,14.3,1.3 -2019,11,6,3,45,0.0,0.0,0.0,14.3,1.3 -2019,11,6,4,0,0.0,0.0,0.0,14.0,0.2 -2019,11,6,4,15,0.0,0.0,0.0,14.0,0.2 -2019,11,6,4,30,0.0,0.0,0.0,14.0,0.2 -2019,11,6,4,45,0.0,0.0,0.0,14.0,0.2 -2019,11,6,5,0,0.0,0.0,0.0,14.3,1.9 -2019,11,6,5,15,0.0,0.0,0.0,14.3,1.9 -2019,11,6,5,30,0.0,0.0,0.0,14.3,1.9 -2019,11,6,5,45,0.0,0.0,0.0,14.3,1.9 -2019,11,6,6,0,403.0,-93.99010436615029,22.0,14.4,0.0 -2019,11,6,6,15,403.0,-73.11576002370523,22.0,14.4,0.0 -2019,11,6,6,30,403.0,-52.10503759223448,22.0,14.4,0.0 -2019,11,6,6,45,403.0,-31.047908210814377,22.0,14.4,0.0 -2019,11,6,7,0,807.0,-24.148573658426045,40.0,18.1,0.0 -2019,11,6,7,15,807.0,17.66247901284379,40.0,18.1,0.0 -2019,11,6,7,30,807.0,59.02666771911538,40.0,18.1,0.0 -2019,11,6,7,45,807.0,99.76686465400232,40.0,18.1,0.0 -2019,11,6,8,0,865.0,174.87478456545736,68.0,20.9,0.0 -2019,11,6,8,15,865.0,216.64803034066372,68.0,20.9,0.0 -2019,11,6,8,30,865.0,257.2032344858511,68.0,20.9,0.0 -2019,11,6,8,45,865.0,296.36673339072195,68.0,20.9,0.0 -2019,11,6,9,0,1026.0,375.475218886622,60.0,23.6,0.0 -2019,11,6,9,15,1026.0,418.0377954260002,60.0,23.6,0.0 -2019,11,6,9,30,1026.0,458.37745678873273,60.0,23.6,0.0 -2019,11,6,9,45,1026.0,496.3214623518077,60.0,23.6,0.0 -2019,11,6,10,0,1034.0,545.3853599221347,70.0,26.4,0.2 -2019,11,6,10,15,1034.0,578.3163472554611,70.0,26.4,0.2 -2019,11,6,10,30,1034.0,608.3755254738801,70.0,26.4,0.2 -2019,11,6,10,45,1034.0,635.4341765614911,70.0,26.4,0.2 -2019,11,6,11,0,1097.0,683.2862137800564,58.0,28.5,2.1 -2019,11,6,11,15,1097.0,705.2721878615099,58.0,28.5,2.1 -2019,11,6,11,30,1097.0,723.7489699840456,58.0,28.5,2.1 -2019,11,6,11,45,1097.0,738.6374397300074,58.0,28.5,2.1 -2019,11,6,12,0,1146.0,766.7779611436761,44.0,30.1,2.2 -2019,11,6,12,15,1146.0,774.6508030960736,44.0,30.1,2.2 -2019,11,6,12,30,1146.0,778.6244721462095,44.0,30.1,2.2 -2019,11,6,12,45,1146.0,778.6819524331621,44.0,30.1,2.2 -2019,11,6,13,0,1044.0,723.7759247133413,58.0,30.5,3.2 -2019,11,6,13,15,1044.0,716.7076394280423,58.0,30.5,3.2 -2019,11,6,13,30,1044.0,706.1168237910795,58.0,30.5,3.2 -2019,11,6,13,45,1044.0,692.0488293009419,58.0,30.5,3.2 -2019,11,6,14,0,877.0,586.9372968444534,69.0,29.8,3.7 -2019,11,6,14,15,877.0,569.4418218917956,69.0,29.8,3.7 -2019,11,6,14,30,877.0,549.2138031231134,69.0,29.8,3.7 -2019,11,6,14,45,877.0,526.339860020236,69.0,29.8,3.7 -2019,11,6,15,0,550.0,341.87214170531456,71.0,28.4,3.1 -2019,11,6,15,15,550.0,324.39943080495703,71.0,28.4,3.1 -2019,11,6,15,30,550.0,305.4718797042967,71.0,28.4,3.1 -2019,11,6,15,45,550.0,285.17053908295713,71.0,28.4,3.1 -2019,11,6,16,0,501.0,191.42500643908514,16.0,26.8,2.8 -2019,11,6,16,15,501.0,170.67212099067856,16.0,26.8,2.8 -2019,11,6,16,30,501.0,148.92010175187787,16.0,26.8,2.8 -2019,11,6,16,45,501.0,126.26209420849443,16.0,26.8,2.8 -2019,11,6,17,0,0.0,0.0,0.0,25.4,2.3 -2019,11,6,17,15,0.0,0.0,0.0,25.4,2.3 -2019,11,6,17,30,0.0,0.0,0.0,25.4,2.3 -2019,11,6,17,45,0.0,0.0,0.0,25.4,2.3 -2019,11,6,18,0,0.0,0.0,0.0,23.7,0.0 -2019,11,6,18,15,0.0,0.0,0.0,23.7,0.0 -2019,11,6,18,30,0.0,0.0,0.0,23.7,0.0 -2019,11,6,18,45,0.0,0.0,0.0,23.7,0.0 -2019,11,6,19,0,0.0,0.0,0.0,21.9,0.0 -2019,11,6,19,15,0.0,0.0,0.0,21.9,0.0 -2019,11,6,19,30,0.0,0.0,0.0,21.9,0.0 -2019,11,6,19,45,0.0,0.0,0.0,21.9,0.0 -2019,11,6,20,0,0.0,0.0,0.0,19.8,0.0 -2019,11,6,20,15,0.0,0.0,0.0,19.8,0.0 -2019,11,6,20,30,0.0,0.0,0.0,19.8,0.0 -2019,11,6,20,45,0.0,0.0,0.0,19.8,0.0 -2019,11,6,21,0,0.0,0.0,0.0,18.2,0.0 -2019,11,6,21,15,0.0,0.0,0.0,18.2,0.0 -2019,11,6,21,30,0.0,0.0,0.0,18.2,0.0 -2019,11,6,21,45,0.0,0.0,0.0,18.2,0.0 -2019,11,6,22,0,0.0,0.0,0.0,17.1,0.0 -2019,11,6,22,15,0.0,0.0,0.0,17.1,0.0 -2019,11,6,22,30,0.0,0.0,0.0,17.1,0.0 -2019,11,6,22,45,0.0,0.0,0.0,17.1,0.0 -2019,11,6,23,0,0.0,0.0,0.0,16.0,0.0 -2019,11,6,23,15,0.0,0.0,0.0,16.0,0.0 -2019,11,6,23,30,0.0,0.0,0.0,16.0,0.0 -2019,11,6,23,45,0.0,0.0,0.0,16.0,0.0 -2019,11,7,0,0,0.0,0.0,0.0,14.9,0.0 -2019,11,7,0,15,0.0,0.0,0.0,14.9,0.0 -2019,11,7,0,30,0.0,0.0,0.0,14.9,0.0 -2019,11,7,0,45,0.0,0.0,0.0,14.9,0.0 -2019,11,7,1,0,0.0,0.0,0.0,13.8,0.0 -2019,11,7,1,15,0.0,0.0,0.0,13.8,0.0 -2019,11,7,1,30,0.0,0.0,0.0,13.8,0.0 -2019,11,7,1,45,0.0,0.0,0.0,13.8,0.0 -2019,11,7,2,0,0.0,0.0,0.0,13.2,0.0 -2019,11,7,2,15,0.0,0.0,0.0,13.2,0.0 -2019,11,7,2,30,0.0,0.0,0.0,13.2,0.0 -2019,11,7,2,45,0.0,0.0,0.0,13.2,0.0 -2019,11,7,3,0,0.0,0.0,0.0,12.2,0.0 -2019,11,7,3,15,0.0,0.0,0.0,12.2,0.0 -2019,11,7,3,30,0.0,0.0,0.0,12.2,0.0 -2019,11,7,3,45,0.0,0.0,0.0,12.2,0.0 -2019,11,7,4,0,0.0,0.0,0.0,12.1,0.2 -2019,11,7,4,15,0.0,0.0,0.0,12.1,0.2 -2019,11,7,4,30,0.0,0.0,0.0,12.1,0.2 -2019,11,7,4,45,0.0,0.0,0.0,12.1,0.2 -2019,11,7,5,0,0.0,0.0,0.0,11.8,1.6 -2019,11,7,5,15,0.0,0.0,0.0,11.8,1.6 -2019,11,7,5,30,0.0,0.0,0.0,11.8,1.6 -2019,11,7,5,45,0.0,0.0,0.0,11.8,1.6 -2019,11,7,6,0,296.0,-61.91695559272175,24.0,13.1,2.0 -2019,11,7,6,15,296.0,-46.60763955315653,24.0,13.1,2.0 -2019,11,7,6,30,296.0,-31.198303353364196,24.0,13.1,2.0 -2019,11,7,6,45,296.0,-15.754932136636661,24.0,13.1,2.0 -2019,11,7,7,0,592.0,11.312686421133343,60.0,15.4,1.3 -2019,11,7,7,15,592.0,41.939058482454044,60.0,15.4,1.3 -2019,11,7,7,30,592.0,72.23810508367596,60.0,15.4,1.3 -2019,11,7,7,45,592.0,102.08008105565827,60.0,15.4,1.3 -2019,11,7,8,0,741.0,178.29200011928475,89.0,18.6,0.2 -2019,11,7,8,15,741.0,214.02394061152032,89.0,18.6,0.2 -2019,11,7,8,30,741.0,248.7139943594241,89.0,18.6,0.2 -2019,11,7,8,45,741.0,282.2136132271338,89.0,18.6,0.2 -2019,11,7,9,0,666.0,344.56767193612154,142.0,21.2,1.6 -2019,11,7,9,15,666.0,372.1550901700681,142.0,21.2,1.6 -2019,11,7,9,30,666.0,398.3017006413558,142.0,21.2,1.6 -2019,11,7,9,45,666.0,422.89553954984575,142.0,21.2,1.6 -2019,11,7,10,0,649.0,469.0758388945187,173.0,22.5,2.2 -2019,11,7,10,15,649.0,489.7146744278746,173.0,22.5,2.2 -2019,11,7,10,30,649.0,508.5536612228422,173.0,22.5,2.2 -2019,11,7,10,45,649.0,525.5121278457514,173.0,22.5,2.2 -2019,11,7,11,0,470.0,499.15285686184217,233.0,24.5,3.1 -2019,11,7,11,15,470.0,508.5586023379309,233.0,24.5,3.1 -2019,11,7,11,30,470.0,516.463092228525,233.0,24.5,3.1 -2019,11,7,11,45,470.0,522.8324782943939,233.0,24.5,3.1 -2019,11,7,12,0,583.0,558.478340954347,193.0,25.6,3.3 -2019,11,7,12,15,583.0,562.4775283089863,193.0,25.6,3.3 -2019,11,7,12,30,583.0,564.4960429842347,193.0,25.6,3.3 -2019,11,7,12,45,583.0,564.5252413903645,193.0,25.6,3.3 -2019,11,7,13,0,750.0,600.4266704485224,125.0,25.5,4.5 -2019,11,7,13,15,750.0,595.3564001202155,125.0,25.5,4.5 -2019,11,7,13,30,750.0,587.759324435064,125.0,25.5,4.5 -2019,11,7,13,45,750.0,577.6679752374753,125.0,25.5,4.5 -2019,11,7,14,0,609.0,474.3819589699805,117.0,24.3,3.5 -2019,11,7,14,15,609.0,462.2508719951704,117.0,24.3,3.5 -2019,11,7,14,30,609.0,448.22508214522395,117.0,24.3,3.5 -2019,11,7,14,45,609.0,432.3646500055574,117.0,24.3,3.5 -2019,11,7,15,0,483.0,313.13663188879997,77.0,23.7,3.1 -2019,11,7,15,15,483.0,297.8151415093093,77.0,23.7,3.1 -2019,11,7,15,30,483.0,281.2179292192488,77.0,23.7,3.1 -2019,11,7,15,45,483.0,263.41606682969507,77.0,23.7,3.1 -2019,11,7,16,0,241.0,111.56951159474617,28.0,22.7,2.8 -2019,11,7,16,15,241.0,101.60137258181861,28.0,22.7,2.8 -2019,11,7,16,30,241.0,91.15332418280005,28.0,22.7,2.8 -2019,11,7,16,45,241.0,80.27010654494859,28.0,22.7,2.8 -2019,11,7,17,0,0.0,0.0,0.0,21.5,2.3 -2019,11,7,17,15,0.0,0.0,0.0,21.5,2.3 -2019,11,7,17,30,0.0,0.0,0.0,21.5,2.3 -2019,11,7,17,45,0.0,0.0,0.0,21.5,2.3 -2019,11,7,18,0,0.0,0.0,0.0,19.7,0.0 -2019,11,7,18,15,0.0,0.0,0.0,19.7,0.0 -2019,11,7,18,30,0.0,0.0,0.0,19.7,0.0 -2019,11,7,18,45,0.0,0.0,0.0,19.7,0.0 -2019,11,7,19,0,0.0,0.0,0.0,17.6,0.0 -2019,11,7,19,15,0.0,0.0,0.0,17.6,0.0 -2019,11,7,19,30,0.0,0.0,0.0,17.6,0.0 -2019,11,7,19,45,0.0,0.0,0.0,17.6,0.0 -2019,11,7,20,0,0.0,0.0,0.0,16.0,0.0 -2019,11,7,20,15,0.0,0.0,0.0,16.0,0.0 -2019,11,7,20,30,0.0,0.0,0.0,16.0,0.0 -2019,11,7,20,45,0.0,0.0,0.0,16.0,0.0 -2019,11,7,21,0,0.0,0.0,0.0,15.5,0.0 -2019,11,7,21,15,0.0,0.0,0.0,15.5,0.0 -2019,11,7,21,30,0.0,0.0,0.0,15.5,0.0 -2019,11,7,21,45,0.0,0.0,0.0,15.5,0.0 -2019,11,7,22,0,0.0,0.0,0.0,14.9,0.0 -2019,11,7,22,15,0.0,0.0,0.0,14.9,0.0 -2019,11,7,22,30,0.0,0.0,0.0,14.9,0.0 -2019,11,7,22,45,0.0,0.0,0.0,14.9,0.0 -2019,11,7,23,0,0.0,0.0,0.0,13.9,0.0 -2019,11,7,23,15,0.0,0.0,0.0,13.9,0.0 -2019,11,7,23,30,0.0,0.0,0.0,13.9,0.0 -2019,11,7,23,45,0.0,0.0,0.0,13.9,0.0 -2019,11,8,0,0,0.0,0.0,0.0,13.1,1.8 -2019,11,8,0,15,0.0,0.0,0.0,13.1,1.8 -2019,11,8,0,30,0.0,0.0,0.0,13.1,1.8 -2019,11,8,0,45,0.0,0.0,0.0,13.1,1.8 -2019,11,8,1,0,0.0,0.0,0.0,13.5,2.0 -2019,11,8,1,15,0.0,0.0,0.0,13.5,2.0 -2019,11,8,1,30,0.0,0.0,0.0,13.5,2.0 -2019,11,8,1,45,0.0,0.0,0.0,13.5,2.0 -2019,11,8,2,0,0.0,0.0,0.0,14.0,1.7 -2019,11,8,2,15,0.0,0.0,0.0,14.0,1.7 -2019,11,8,2,30,0.0,0.0,0.0,14.0,1.7 -2019,11,8,2,45,0.0,0.0,0.0,14.0,1.7 -2019,11,8,3,0,0.0,0.0,0.0,14.2,2.6 -2019,11,8,3,15,0.0,0.0,0.0,14.2,2.6 -2019,11,8,3,30,0.0,0.0,0.0,14.2,2.6 -2019,11,8,3,45,0.0,0.0,0.0,14.2,2.6 -2019,11,8,4,0,0.0,0.0,0.0,14.4,2.1 -2019,11,8,4,15,0.0,0.0,0.0,14.4,2.1 -2019,11,8,4,30,0.0,0.0,0.0,14.4,2.1 -2019,11,8,4,45,0.0,0.0,0.0,14.4,2.1 -2019,11,8,5,0,0.0,0.0,0.0,14.3,2.5 -2019,11,8,5,15,0.0,0.0,0.0,14.3,2.5 -2019,11,8,5,30,0.0,0.0,0.0,14.3,2.5 -2019,11,8,5,45,0.0,0.0,0.0,14.3,2.5 -2019,11,8,6,0,1.0,14.707346247527244,15.0,14.0,0.0 -2019,11,8,6,15,1.0,14.758990285442538,15.0,14.0,0.0 -2019,11,8,6,30,1.0,14.810971728695451,15.0,14.0,0.0 -2019,11,8,6,45,1.0,14.86306798476564,15.0,14.0,0.0 -2019,11,8,7,0,2.0,31.830111938973296,32.0,14.5,0.0 -2019,11,8,7,15,2.0,31.93342612465312,32.0,14.5,0.0 -2019,11,8,7,30,2.0,32.035636119366586,32.0,14.5,0.0 -2019,11,8,7,45,2.0,32.136304244224775,32.0,14.5,0.0 -2019,11,8,8,0,13.0,117.52749624860417,116.0,15.8,0.4 -2019,11,8,8,15,13.0,118.1534436779175,116.0,15.8,0.4 -2019,11,8,8,30,13.0,118.7611394724115,116.0,15.8,0.4 -2019,11,8,8,45,13.0,119.34798138539901,116.0,15.8,0.4 -2019,11,8,9,0,310.0,309.27319273935757,216.0,17.4,3.0 -2019,11,8,9,15,310.0,322.0951592267742,216.0,17.4,3.0 -2019,11,8,9,30,310.0,334.2474730235707,216.0,17.4,3.0 -2019,11,8,9,45,310.0,345.6780960564122,216.0,17.4,3.0 -2019,11,8,10,0,6.0,178.71622091566343,176.0,19.0,2.7 -2019,11,8,10,15,6.0,178.90674411145068,176.0,19.0,2.7 -2019,11,8,10,30,6.0,179.0806523711376,176.0,19.0,2.7 -2019,11,8,10,45,6.0,179.23720099285737,176.0,19.0,2.7 -2019,11,8,11,0,9.0,209.06357941706696,204.0,19.4,3.2 -2019,11,8,11,15,9.0,209.24342260306375,204.0,19.4,3.2 -2019,11,8,11,30,9.0,209.39456093114396,204.0,19.4,3.2 -2019,11,8,11,45,9.0,209.5163472037835,204.0,19.4,3.2 -2019,11,8,12,0,11.0,206.85453989423632,200.0,19.3,3.4 -2019,11,8,12,15,11.0,206.92988447049316,200.0,19.3,3.4 -2019,11,8,12,30,11.0,206.96791322968556,200.0,19.3,3.4 -2019,11,8,12,45,11.0,206.96846332682833,200.0,19.3,3.4 -2019,11,8,13,0,7.0,159.41097516765888,155.0,18.9,2.4 -2019,11,8,13,15,7.0,159.36372275311328,155.0,18.9,2.4 -2019,11,8,13,30,7.0,159.29292176098377,155.0,18.9,2.4 -2019,11,8,13,45,7.0,159.19887537198818,155.0,18.9,2.4 -2019,11,8,14,0,3.0,88.74942270308678,87.0,18.8,4.6 -2019,11,8,14,15,3.0,88.6897521872345,87.0,18.8,4.6 -2019,11,8,14,30,3.0,88.62076198731923,87.0,18.8,4.6 -2019,11,8,14,45,3.0,88.54274752996855,87.0,18.8,4.6 -2019,11,8,15,0,4.0,46.941390513421105,45.0,17.7,4.6 -2019,11,8,15,15,4.0,46.81469244694892,45.0,17.7,4.6 -2019,11,8,15,30,4.0,46.67744504777985,45.0,17.7,4.6 -2019,11,8,15,45,4.0,46.53023603034774,45.0,17.7,4.6 -2019,11,8,16,0,2.0,12.686847883132586,12.0,16.6,4.3 -2019,11,8,16,15,2.0,12.604247292487726,12.0,16.6,4.3 -2019,11,8,16,30,2.0,12.5176699516495,12.0,16.6,4.3 -2019,11,8,16,45,2.0,12.427486598082977,12.0,16.6,4.3 -2019,11,8,17,0,0.0,0.0,0.0,15.5,4.0 -2019,11,8,17,15,0.0,0.0,0.0,15.5,4.0 -2019,11,8,17,30,0.0,0.0,0.0,15.5,4.0 -2019,11,8,17,45,0.0,0.0,0.0,15.5,4.0 -2019,11,8,18,0,0.0,0.0,0.0,15.0,2.9 -2019,11,8,18,15,0.0,0.0,0.0,15.0,2.9 -2019,11,8,18,30,0.0,0.0,0.0,15.0,2.9 -2019,11,8,18,45,0.0,0.0,0.0,15.0,2.9 -2019,11,8,19,0,0.0,0.0,0.0,14.9,2.8 -2019,11,8,19,15,0.0,0.0,0.0,14.9,2.8 -2019,11,8,19,30,0.0,0.0,0.0,14.9,2.8 -2019,11,8,19,45,0.0,0.0,0.0,14.9,2.8 -2019,11,8,20,0,0.0,0.0,0.0,14.3,3.9 -2019,11,8,20,15,0.0,0.0,0.0,14.3,3.9 -2019,11,8,20,30,0.0,0.0,0.0,14.3,3.9 -2019,11,8,20,45,0.0,0.0,0.0,14.3,3.9 -2019,11,8,21,0,0.0,0.0,0.0,13.9,3.1 -2019,11,8,21,15,0.0,0.0,0.0,13.9,3.1 -2019,11,8,21,30,0.0,0.0,0.0,13.9,3.1 -2019,11,8,21,45,0.0,0.0,0.0,13.9,3.1 -2019,11,8,22,0,0.0,0.0,0.0,13.9,2.8 -2019,11,8,22,15,0.0,0.0,0.0,13.9,2.8 -2019,11,8,22,30,0.0,0.0,0.0,13.9,2.8 -2019,11,8,22,45,0.0,0.0,0.0,13.9,2.8 -2019,11,8,23,0,0.0,0.0,0.0,12.9,3.2 -2019,11,8,23,15,0.0,0.0,0.0,12.9,3.2 -2019,11,8,23,30,0.0,0.0,0.0,12.9,3.2 -2019,11,8,23,45,0.0,0.0,0.0,12.9,3.2 -2019,11,9,0,0,0.0,0.0,0.0,12.7,3.7 -2019,11,9,0,15,0.0,0.0,0.0,12.7,3.7 -2019,11,9,0,30,0.0,0.0,0.0,12.7,3.7 -2019,11,9,0,45,0.0,0.0,0.0,12.7,3.7 -2019,11,9,1,0,0.0,0.0,0.0,12.1,4.3 -2019,11,9,1,15,0.0,0.0,0.0,12.1,4.3 -2019,11,9,1,30,0.0,0.0,0.0,12.1,4.3 -2019,11,9,1,45,0.0,0.0,0.0,12.1,4.3 -2019,11,9,2,0,0.0,0.0,0.0,12.7,3.7 -2019,11,9,2,15,0.0,0.0,0.0,12.7,3.7 -2019,11,9,2,30,0.0,0.0,0.0,12.7,3.7 -2019,11,9,2,45,0.0,0.0,0.0,12.7,3.7 -2019,11,9,3,0,0.0,0.0,0.0,12.1,4.3 -2019,11,9,3,15,0.0,0.0,0.0,12.1,4.3 -2019,11,9,3,30,0.0,0.0,0.0,12.1,4.3 -2019,11,9,3,45,0.0,0.0,0.0,12.1,4.3 -2019,11,9,4,0,0.0,0.0,0.0,11.6,2.1 -2019,11,9,4,15,0.0,0.0,0.0,11.6,2.1 -2019,11,9,4,30,0.0,0.0,0.0,11.6,2.1 -2019,11,9,4,45,0.0,0.0,0.0,11.6,2.1 -2019,11,9,5,0,0.0,0.0,0.0,11.2,1.9 -2019,11,9,5,15,0.0,0.0,0.0,11.2,1.9 -2019,11,9,5,30,0.0,0.0,0.0,11.2,1.9 -2019,11,9,5,45,0.0,0.0,0.0,11.2,1.9 -2019,11,9,6,0,3.0,13.115007365788212,14.0,11.8,0.4 -2019,11,9,6,15,3.0,13.269710159840013,14.0,11.8,0.4 -2019,11,9,6,30,3.0,13.425423671693224,14.0,11.8,0.4 -2019,11,9,6,45,3.0,13.581481112184521,14.0,11.8,0.4 -2019,11,9,7,0,5.0,41.56202369899224,42.0,12.8,3.2 -2019,11,9,7,15,5.0,41.81992686708673,42.0,12.8,3.2 -2019,11,9,7,30,5.0,42.07507364363119,42.0,12.8,3.2 -2019,11,9,7,45,5.0,42.32637145095764,42.0,12.8,3.2 -2019,11,9,8,0,1.0,53.114548838655026,53.0,13.0,3.1 -2019,11,9,8,15,1.0,53.162627372935454,53.0,13.0,3.1 -2019,11,9,8,30,1.0,53.20930401336787,53.0,13.0,3.1 -2019,11,9,8,45,1.0,53.25437888341201,53.0,13.0,3.1 -2019,11,9,9,0,6.0,143.78595379332592,142.0,13.4,5.0 -2019,11,9,9,15,6.0,144.0337535670316,142.0,13.4,5.0 -2019,11,9,9,30,6.0,144.26861150491516,142.0,13.4,5.0 -2019,11,9,9,45,6.0,144.4895219092305,142.0,13.4,5.0 -2019,11,9,10,0,231.0,370.77824409689634,267.0,14.2,4.7 -2019,11,9,10,15,231.0,378.10253016827727,267.0,14.2,4.7 -2019,11,9,10,30,231.0,384.7880880021147,267.0,14.2,4.7 -2019,11,9,10,45,231.0,390.80628901337866,267.0,14.2,4.7 -2019,11,9,11,0,12.0,222.70812271903418,216.0,16.0,5.9 -2019,11,9,11,15,12.0,222.94755871193203,216.0,16.0,5.9 -2019,11,9,11,30,12.0,223.1487782101756,216.0,16.0,5.9 -2019,11,9,11,45,12.0,223.3109195609817,216.0,16.0,5.9 -2019,11,9,12,0,49.0,285.3525945049575,255.0,15.6,7.0 -2019,11,9,12,15,49.0,285.6877235747198,255.0,15.6,7.0 -2019,11,9,12,30,49.0,285.85687367583546,255.0,15.6,7.0 -2019,11,9,12,45,49.0,285.859320481603,255.0,15.6,7.0 -2019,11,9,13,0,520.0,502.7434250510358,177.0,15.7,5.3 -2019,11,9,13,15,520.0,499.2384412071341,177.0,15.7,5.3 -2019,11,9,13,30,520.0,493.9867236825879,177.0,15.7,5.3 -2019,11,9,13,45,520.0,487.0107611380958,177.0,15.7,5.3 -2019,11,9,14,0,55.0,188.87254502767948,157.0,15.9,7.1 -2019,11,9,14,15,55.0,187.78020477277292,157.0,15.9,7.1 -2019,11,9,14,30,55.0,186.517256539711,157.0,15.9,7.1 -2019,11,9,14,45,55.0,185.08910846671915,157.0,15.9,7.1 -2019,11,9,15,0,309.0,237.89235847013853,89.0,15.0,6.7 -2019,11,9,15,15,309.0,228.1194194990191,89.0,15.0,6.7 -2019,11,9,15,30,309.0,217.53275078834338,89.0,15.0,6.7 -2019,11,9,15,45,309.0,206.17768607882533,89.0,15.0,6.7 -2019,11,9,16,0,154.0,80.38135541464436,28.0,13.8,6.7 -2019,11,9,16,15,154.0,74.03052392614016,28.0,13.8,6.7 -2019,11,9,16,30,154.0,67.3739359030549,28.0,13.8,6.7 -2019,11,9,16,45,154.0,60.440095877241326,28.0,13.8,6.7 -2019,11,9,17,0,0.0,0.0,0.0,13.2,6.3 -2019,11,9,17,15,0.0,0.0,0.0,13.2,6.3 -2019,11,9,17,30,0.0,0.0,0.0,13.2,6.3 -2019,11,9,17,45,0.0,0.0,0.0,13.2,6.3 -2019,11,9,18,0,0.0,0.0,0.0,12.7,2.7 -2019,11,9,18,15,0.0,0.0,0.0,12.7,2.7 -2019,11,9,18,30,0.0,0.0,0.0,12.7,2.7 -2019,11,9,18,45,0.0,0.0,0.0,12.7,2.7 -2019,11,9,19,0,0.0,0.0,0.0,11.6,0.4 -2019,11,9,19,15,0.0,0.0,0.0,11.6,0.4 -2019,11,9,19,30,0.0,0.0,0.0,11.6,0.4 -2019,11,9,19,45,0.0,0.0,0.0,11.6,0.4 -2019,11,9,20,0,0.0,0.0,0.0,11.1,3.0 -2019,11,9,20,15,0.0,0.0,0.0,11.1,3.0 -2019,11,9,20,30,0.0,0.0,0.0,11.1,3.0 -2019,11,9,20,45,0.0,0.0,0.0,11.1,3.0 -2019,11,9,21,0,0.0,0.0,0.0,11.2,2.7 -2019,11,9,21,15,0.0,0.0,0.0,11.2,2.7 -2019,11,9,21,30,0.0,0.0,0.0,11.2,2.7 -2019,11,9,21,45,0.0,0.0,0.0,11.2,2.7 -2019,11,9,22,0,0.0,0.0,0.0,11.6,3.0 -2019,11,9,22,15,0.0,0.0,0.0,11.6,3.0 -2019,11,9,22,30,0.0,0.0,0.0,11.6,3.0 -2019,11,9,22,45,0.0,0.0,0.0,11.6,3.0 -2019,11,9,23,0,0.0,0.0,0.0,11.0,2.3 -2019,11,9,23,15,0.0,0.0,0.0,11.0,2.3 -2019,11,9,23,30,0.0,0.0,0.0,11.0,2.3 -2019,11,9,23,45,0.0,0.0,0.0,11.0,2.3 -2019,11,10,0,0,0.0,0.0,0.0,9.9,0.0 -2019,11,10,0,15,0.0,0.0,0.0,9.9,0.0 -2019,11,10,0,30,0.0,0.0,0.0,9.9,0.0 -2019,11,10,0,45,0.0,0.0,0.0,9.9,0.0 -2019,11,10,1,0,0.0,0.0,0.0,8.9,0.0 -2019,11,10,1,15,0.0,0.0,0.0,8.9,0.0 -2019,11,10,1,30,0.0,0.0,0.0,8.9,0.0 -2019,11,10,1,45,0.0,0.0,0.0,8.9,0.0 -2019,11,10,2,0,0.0,0.0,0.0,8.8,0.0 -2019,11,10,2,15,0.0,0.0,0.0,8.8,0.0 -2019,11,10,2,30,0.0,0.0,0.0,8.8,0.0 -2019,11,10,2,45,0.0,0.0,0.0,8.8,0.0 -2019,11,10,3,0,0.0,0.0,0.0,8.2,0.0 -2019,11,10,3,15,0.0,0.0,0.0,8.2,0.0 -2019,11,10,3,30,0.0,0.0,0.0,8.2,0.0 -2019,11,10,3,45,0.0,0.0,0.0,8.2,0.0 -2019,11,10,4,0,0.0,0.0,0.0,7.7,0.0 -2019,11,10,4,15,0.0,0.0,0.0,7.7,0.0 -2019,11,10,4,30,0.0,0.0,0.0,7.7,0.0 -2019,11,10,4,45,0.0,0.0,0.0,7.7,0.0 -2019,11,10,5,0,0.0,0.0,0.0,6.7,0.0 -2019,11,10,5,15,0.0,0.0,0.0,6.7,0.0 -2019,11,10,5,30,0.0,0.0,0.0,6.7,0.0 -2019,11,10,5,45,0.0,0.0,0.0,6.7,0.0 -2019,11,10,6,0,141.0,-19.918029408576245,22.0,7.0,0.0 -2019,11,10,6,15,141.0,-12.657737368407041,22.0,7.0,0.0 -2019,11,10,6,30,141.0,-5.350011754374929,22.0,7.0,0.0 -2019,11,10,6,45,141.0,1.9738546305383515,22.0,7.0,0.0 -2019,11,10,7,0,283.0,55.474804695773685,81.0,9.5,0.2 -2019,11,10,7,15,283.0,70.05056383553504,81.0,9.5,0.2 -2019,11,10,7,30,283.0,84.47054164222959,81.0,9.5,0.2 -2019,11,10,7,45,283.0,98.67298955709389,81.0,9.5,0.2 -2019,11,10,8,0,333.0,186.17961534421582,149.0,10.9,1.6 -2019,11,10,8,15,333.0,202.16612033787055,149.0,10.9,1.6 -2019,11,10,8,30,333.0,217.6864841868903,149.0,10.9,1.6 -2019,11,10,8,45,333.0,232.6742463105439,149.0,10.9,1.6 -2019,11,10,9,0,419.0,316.391381482224,193.0,13.4,2.3 -2019,11,10,9,15,419.0,333.6705067393042,193.0,13.4,2.3 -2019,11,10,9,30,419.0,350.0471953279281,193.0,13.4,2.3 -2019,11,10,9,45,419.0,365.45131975336403,193.0,13.4,2.3 -2019,11,10,10,0,522.0,435.74088490011377,203.0,14.5,3.7 -2019,11,10,10,15,522.0,452.26742328104467,203.0,14.5,3.7 -2019,11,10,10,30,522.0,467.3527335846078,203.0,14.5,3.7 -2019,11,10,10,45,522.0,480.93221819614445,203.0,14.5,3.7 -2019,11,10,11,0,491.0,495.7286097505627,223.0,15.1,4.2 -2019,11,10,11,15,491.0,505.51106244958174,223.0,15.1,4.2 -2019,11,10,11,30,491.0,513.7321331410212,223.0,15.1,4.2 -2019,11,10,11,45,491.0,520.3566179380587,223.0,15.1,4.2 -2019,11,10,12,0,695.0,586.9786641485738,159.0,15.7,5.0 -2019,11,10,12,15,695.0,591.7250047511184,159.0,15.7,5.0 -2019,11,10,12,30,695.0,594.1206309897465,159.0,15.7,5.0 -2019,11,10,12,45,695.0,594.1552844251207,159.0,15.7,5.0 -2019,11,10,13,0,856.0,631.0956360662154,98.0,16.6,8.3 -2019,11,10,13,15,856.0,625.3344153145597,98.0,16.6,8.3 -2019,11,10,13,30,856.0,616.7020491377821,98.0,16.6,8.3 -2019,11,10,13,45,856.0,605.2355026531163,98.0,16.6,8.3 -2019,11,10,14,0,637.0,475.8583293067666,109.0,16.0,8.4 -2019,11,10,14,15,637.0,463.22572897410225,109.0,16.0,8.4 -2019,11,10,14,30,637.0,448.62009652812054,109.0,16.0,8.4 -2019,11,10,14,45,637.0,432.1039755292529,109.0,16.0,8.4 -2019,11,10,15,0,567.0,337.25928938462175,66.0,15.0,5.1 -2019,11,10,15,15,567.0,319.3529075526725,66.0,15.0,5.1 -2019,11,10,15,30,567.0,299.95557653260624,66.0,15.0,5.1 -2019,11,10,15,45,567.0,279.15035867378305,66.0,15.0,5.1 -2019,11,10,16,0,284.0,119.68162612369413,24.0,14.1,5.1 -2019,11,10,16,15,284.0,107.98700157605123,24.0,14.1,5.1 -2019,11,10,16,30,284.0,95.72934715092104,24.0,14.1,5.1 -2019,11,10,16,45,284.0,82.96115200638148,24.0,14.1,5.1 -2019,11,10,17,0,0.0,0.0,0.0,13.2,5.0 -2019,11,10,17,15,0.0,0.0,0.0,13.2,5.0 -2019,11,10,17,30,0.0,0.0,0.0,13.2,5.0 -2019,11,10,17,45,0.0,0.0,0.0,13.2,5.0 -2019,11,10,18,0,0.0,0.0,0.0,12.1,3.6 -2019,11,10,18,15,0.0,0.0,0.0,12.1,3.6 -2019,11,10,18,30,0.0,0.0,0.0,12.1,3.6 -2019,11,10,18,45,0.0,0.0,0.0,12.1,3.6 -2019,11,10,19,0,0.0,0.0,0.0,11.6,0.0 -2019,11,10,19,15,0.0,0.0,0.0,11.6,0.0 -2019,11,10,19,30,0.0,0.0,0.0,11.6,0.0 -2019,11,10,19,45,0.0,0.0,0.0,11.6,0.0 -2019,11,10,20,0,0.0,0.0,0.0,10.4,0.2 -2019,11,10,20,15,0.0,0.0,0.0,10.4,0.2 -2019,11,10,20,30,0.0,0.0,0.0,10.4,0.2 -2019,11,10,20,45,0.0,0.0,0.0,10.4,0.2 -2019,11,10,21,0,0.0,0.0,0.0,8.8,1.3 -2019,11,10,21,15,0.0,0.0,0.0,8.8,1.3 -2019,11,10,21,30,0.0,0.0,0.0,8.8,1.3 -2019,11,10,21,45,0.0,0.0,0.0,8.8,1.3 -2019,11,10,22,0,0.0,0.0,0.0,7.8,0.0 -2019,11,10,22,15,0.0,0.0,0.0,7.8,0.0 -2019,11,10,22,30,0.0,0.0,0.0,7.8,0.0 -2019,11,10,22,45,0.0,0.0,0.0,7.8,0.0 -2019,11,10,23,0,0.0,0.0,0.0,7.7,0.2 -2019,11,10,23,15,0.0,0.0,0.0,7.7,0.2 -2019,11,10,23,30,0.0,0.0,0.0,7.7,0.2 -2019,11,10,23,45,0.0,0.0,0.0,7.7,0.2 -2019,11,11,0,0,0.0,0.0,0.0,7.1,1.6 -2019,11,11,0,15,0.0,0.0,0.0,7.1,1.6 -2019,11,11,0,30,0.0,0.0,0.0,7.1,1.6 -2019,11,11,0,45,0.0,0.0,0.0,7.1,1.6 -2019,11,11,1,0,0.0,0.0,0.0,5.9,2.0 -2019,11,11,1,15,0.0,0.0,0.0,5.9,2.0 -2019,11,11,1,30,0.0,0.0,0.0,5.9,2.0 -2019,11,11,1,45,0.0,0.0,0.0,5.9,2.0 -2019,11,11,2,0,0.0,0.0,0.0,4.4,1.6 -2019,11,11,2,15,0.0,0.0,0.0,4.4,1.6 -2019,11,11,2,30,0.0,0.0,0.0,4.4,1.6 -2019,11,11,2,45,0.0,0.0,0.0,4.4,1.6 -2019,11,11,3,0,0.0,0.0,0.0,4.4,2.6 -2019,11,11,3,15,0.0,0.0,0.0,4.4,2.6 -2019,11,11,3,30,0.0,0.0,0.0,4.4,2.6 -2019,11,11,3,45,0.0,0.0,0.0,4.4,2.6 -2019,11,11,4,0,0.0,0.0,0.0,4.3,2.5 -2019,11,11,4,15,0.0,0.0,0.0,4.3,2.5 -2019,11,11,4,30,0.0,0.0,0.0,4.3,2.5 -2019,11,11,4,45,0.0,0.0,0.0,4.3,2.5 -2019,11,11,5,0,0.0,0.0,0.0,3.8,2.2 -2019,11,11,5,15,0.0,0.0,0.0,3.8,2.2 -2019,11,11,5,30,0.0,0.0,0.0,3.8,2.2 -2019,11,11,5,45,0.0,0.0,0.0,3.8,2.2 -2019,11,11,6,0,345.0,-88.33913720121551,15.0,3.8,2.3 -2019,11,11,6,15,345.0,-70.60074400842086,15.0,3.8,2.3 -2019,11,11,6,30,345.0,-52.74646079645565,15.0,3.8,2.3 -2019,11,11,6,45,345.0,-34.8527423470729,15.0,3.8,2.3 -2019,11,11,7,0,691.0,-17.085167263908986,47.0,7.8,0.3 -2019,11,11,7,15,691.0,18.45201581017282,47.0,7.8,0.3 -2019,11,11,7,30,691.0,53.60938815195341,47.0,7.8,0.3 -2019,11,11,7,45,691.0,88.23640049560734,47.0,7.8,0.3 -2019,11,11,8,0,894.0,157.27234232195332,60.0,12.6,2.8 -2019,11,11,8,15,894.0,200.12788684504238,60.0,12.6,2.8 -2019,11,11,8,30,894.0,241.7338316222283,60.0,12.6,2.8 -2019,11,11,8,45,894.0,281.9120136105141,60.0,12.6,2.8 -2019,11,11,9,0,996.0,355.21076301084383,65.0,15.7,4.0 -2019,11,11,9,15,996.0,396.2243046010965,65.0,15.7,4.0 -2019,11,11,9,30,996.0,435.0958324444936,65.0,15.7,4.0 -2019,11,11,9,45,996.0,471.65889269114405,65.0,15.7,4.0 -2019,11,11,10,0,1046.0,527.8832679439593,65.0,16.8,2.7 -2019,11,11,10,15,1046.0,560.950914174947,65.0,16.8,2.7 -2019,11,11,10,30,1046.0,591.134833693053,65.0,16.8,2.7 -2019,11,11,10,45,1046.0,618.3057743209803,65.0,16.8,2.7 -2019,11,11,11,0,1063.0,651.7306608341655,65.0,17.9,0.5 -2019,11,11,11,15,1063.0,672.8781949235146,65.0,17.9,0.5 -2019,11,11,11,30,1063.0,690.6503608666833,65.0,17.9,0.5 -2019,11,11,11,45,1063.0,704.9710555206703,65.0,17.9,0.5 -2019,11,11,12,0,1050.0,707.8202288297604,65.0,19.0,3.9 -2019,11,11,12,15,1050.0,714.9804032143147,65.0,19.0,3.9 -2019,11,11,12,30,1050.0,718.5943667001197,65.0,19.0,3.9 -2019,11,11,12,45,1050.0,718.6466437407036,65.0,19.0,3.9 -2019,11,11,13,0,1004.0,686.6548176377748,65.0,19.4,2.2 -2019,11,11,13,15,1004.0,679.9074454119108,65.0,19.4,2.2 -2019,11,11,13,30,1004.0,669.7974721448843,65.0,19.4,2.2 -2019,11,11,13,45,1004.0,656.368190294336,65.0,19.4,2.2 -2019,11,11,14,0,910.0,581.8726758538191,61.0,19.3,2.6 -2019,11,11,14,15,910.0,563.8526702831847,61.0,19.3,2.6 -2019,11,11,14,30,910.0,543.0181966903897,61.0,19.3,2.6 -2019,11,11,14,45,910.0,519.4584714899252,61.0,19.3,2.6 -2019,11,11,15,0,723.0,393.4443708718738,50.0,18.8,2.6 -2019,11,11,15,15,723.0,370.644977902324,50.0,18.8,2.6 -2019,11,11,15,30,723.0,345.94722619360886,50.0,18.8,2.6 -2019,11,11,15,45,723.0,319.456875310213,50.0,18.8,2.6 -2019,11,11,16,0,703.0,237.6127452061527,3.0,18.0,2.9 -2019,11,11,16,15,703.0,208.70704639698613,3.0,18.0,2.9 -2019,11,11,16,30,703.0,178.40970205076894,3.0,18.0,2.9 -2019,11,11,16,45,703.0,146.8504500473248,3.0,18.0,2.9 -2019,11,11,17,0,0.0,0.0,0.0,17.0,3.0 -2019,11,11,17,15,0.0,0.0,0.0,17.0,3.0 -2019,11,11,17,30,0.0,0.0,0.0,17.0,3.0 -2019,11,11,17,45,0.0,0.0,0.0,17.0,3.0 -2019,11,11,18,0,0.0,0.0,0.0,15.4,2.1 -2019,11,11,18,15,0.0,0.0,0.0,15.4,2.1 -2019,11,11,18,30,0.0,0.0,0.0,15.4,2.1 -2019,11,11,18,45,0.0,0.0,0.0,15.4,2.1 -2019,11,11,19,0,0.0,0.0,0.0,13.9,2.2 -2019,11,11,19,15,0.0,0.0,0.0,13.9,2.2 -2019,11,11,19,30,0.0,0.0,0.0,13.9,2.2 -2019,11,11,19,45,0.0,0.0,0.0,13.9,2.2 -2019,11,11,20,0,0.0,0.0,0.0,13.7,3.0 -2019,11,11,20,15,0.0,0.0,0.0,13.7,3.0 -2019,11,11,20,30,0.0,0.0,0.0,13.7,3.0 -2019,11,11,20,45,0.0,0.0,0.0,13.7,3.0 -2019,11,11,21,0,0.0,0.0,0.0,11.9,2.5 -2019,11,11,21,15,0.0,0.0,0.0,11.9,2.5 -2019,11,11,21,30,0.0,0.0,0.0,11.9,2.5 -2019,11,11,21,45,0.0,0.0,0.0,11.9,2.5 -2019,11,11,22,0,0.0,0.0,0.0,9.9,1.5 -2019,11,11,22,15,0.0,0.0,0.0,9.9,1.5 -2019,11,11,22,30,0.0,0.0,0.0,9.9,1.5 -2019,11,11,22,45,0.0,0.0,0.0,9.9,1.5 -2019,11,11,23,0,0.0,0.0,0.0,9.2,1.6 -2019,11,11,23,15,0.0,0.0,0.0,9.2,1.6 -2019,11,11,23,30,0.0,0.0,0.0,9.2,1.6 -2019,11,11,23,45,0.0,0.0,0.0,9.2,1.6 -2019,11,12,0,0,0.0,0.0,0.0,7.7,2.1 -2019,11,12,0,15,0.0,0.0,0.0,7.7,2.1 -2019,11,12,0,30,0.0,0.0,0.0,7.7,2.1 -2019,11,12,0,45,0.0,0.0,0.0,7.7,2.1 -2019,11,12,1,0,0.0,0.0,0.0,7.2,2.0 -2019,11,12,1,15,0.0,0.0,0.0,7.2,2.0 -2019,11,12,1,30,0.0,0.0,0.0,7.2,2.0 -2019,11,12,1,45,0.0,0.0,0.0,7.2,2.0 -2019,11,12,2,0,0.0,0.0,0.0,7.5,1.7 -2019,11,12,2,15,0.0,0.0,0.0,7.5,1.7 -2019,11,12,2,30,0.0,0.0,0.0,7.5,1.7 -2019,11,12,2,45,0.0,0.0,0.0,7.5,1.7 -2019,11,12,3,0,0.0,0.0,0.0,9.9,3.2 -2019,11,12,3,15,0.0,0.0,0.0,9.9,3.2 -2019,11,12,3,30,0.0,0.0,0.0,9.9,3.2 -2019,11,12,3,45,0.0,0.0,0.0,9.9,3.2 -2019,11,12,4,0,0.0,0.0,0.0,9.3,4.0 -2019,11,12,4,15,0.0,0.0,0.0,9.3,4.0 -2019,11,12,4,30,0.0,0.0,0.0,9.3,4.0 -2019,11,12,4,45,0.0,0.0,0.0,9.3,4.0 -2019,11,12,5,0,0.0,0.0,0.0,9.0,3.0 -2019,11,12,5,15,0.0,0.0,0.0,9.0,3.0 -2019,11,12,5,30,0.0,0.0,0.0,9.0,3.0 -2019,11,12,5,45,0.0,0.0,0.0,9.0,3.0 -2019,11,12,6,0,363.0,-96.52633383545115,13.0,10.3,2.6 -2019,11,12,6,15,363.0,-77.8898100494043,13.0,10.3,2.6 -2019,11,12,6,30,363.0,-59.13152849897803,13.0,10.3,2.6 -2019,11,12,6,45,363.0,-40.33181502559492,13.0,10.3,2.6 -2019,11,12,7,0,725.0,-25.04710838618763,44.0,13.2,2.6 -2019,11,12,7,15,725.0,12.184008051609233,44.0,13.2,2.6 -2019,11,12,7,30,725.0,49.01720950641068,44.0,13.2,2.6 -2019,11,12,7,45,725.0,85.29477055485128,44.0,13.2,2.6 -2019,11,12,8,0,936.0,152.2306469296268,53.0,16.4,2.8 -2019,11,12,8,15,936.0,197.03378650685298,53.0,16.4,2.8 -2019,11,12,8,30,936.0,240.53053755362401,53.0,16.4,2.8 -2019,11,12,8,45,936.0,282.53464030421526,53.0,16.4,2.8 -2019,11,12,9,0,1039.0,354.56304442842065,55.0,18.5,4.1 -2019,11,12,9,15,1039.0,397.2845532738079,55.0,18.5,4.1 -2019,11,12,9,30,1039.0,437.7748463869016,55.0,18.5,4.1 -2019,11,12,9,45,1039.0,475.8605381164087,55.0,18.5,4.1 -2019,11,12,10,0,1091.0,533.2194290611208,54.0,20.1,4.2 -2019,11,12,10,15,1091.0,567.6591361783936,54.0,20.1,4.2 -2019,11,12,10,30,1091.0,599.0954634147953,54.0,20.1,4.2 -2019,11,12,10,45,1091.0,627.3937955909068,54.0,20.1,4.2 -2019,11,12,11,0,1108.0,661.7577580509018,54.0,21.2,4.8 -2019,11,12,11,15,1108.0,683.7682287544818,54.0,21.2,4.8 -2019,11,12,11,30,1108.0,702.2655975814362,54.0,21.2,4.8 -2019,11,12,11,45,1108.0,717.17065595868,54.0,21.2,4.8 -2019,11,12,12,0,1095.0,720.5067130515192,54.0,22.3,6.0 -2019,11,12,12,15,1095.0,727.9628095539767,54.0,22.3,6.0 -2019,11,12,12,30,1095.0,731.7261341686185,54.0,22.3,6.0 -2019,11,12,12,45,1095.0,731.7805717616883,54.0,22.3,6.0 -2019,11,12,13,0,1048.0,700.19080539339,55.0,22.8,4.2 -2019,11,12,13,15,1048.0,693.1580527988309,55.0,22.8,4.2 -2019,11,12,13,30,1048.0,682.6204778223001,55.0,22.8,4.2 -2019,11,12,13,45,1048.0,668.623203977605,55.0,22.8,4.2 -2019,11,12,14,0,952.0,595.6100320541196,54.0,22.8,3.5 -2019,11,12,14,15,952.0,576.7859599535859,54.0,22.8,3.5 -2019,11,12,14,30,952.0,555.0218360996757,54.0,22.8,3.5 -2019,11,12,14,45,952.0,530.4108578120207,54.0,22.8,3.5 -2019,11,12,15,0,760.0,403.49201044041575,45.0,22.4,3.2 -2019,11,12,15,15,760.0,379.5609645394233,45.0,22.4,3.2 -2019,11,12,15,30,760.0,353.6373344418167,45.0,22.4,3.2 -2019,11,12,15,45,760.0,325.83212911154226,45.0,22.4,3.2 -2019,11,12,16,0,750.0,249.9583039867338,2.0,21.2,3.9 -2019,11,12,16,15,750.0,219.16526781505996,2.0,21.2,3.9 -2019,11,12,16,30,750.0,186.88972151126796,2.0,21.2,3.9 -2019,11,12,16,45,750.0,153.2698739196629,2.0,21.2,3.9 -2019,11,12,17,0,0.0,0.0,0.0,19.8,4.3 -2019,11,12,17,15,0.0,0.0,0.0,19.8,4.3 -2019,11,12,17,30,0.0,0.0,0.0,19.8,4.3 -2019,11,12,17,45,0.0,0.0,0.0,19.8,4.3 -2019,11,12,18,0,0.0,0.0,0.0,18.1,2.2 -2019,11,12,18,15,0.0,0.0,0.0,18.1,2.2 -2019,11,12,18,30,0.0,0.0,0.0,18.1,2.2 -2019,11,12,18,45,0.0,0.0,0.0,18.1,2.2 -2019,11,12,19,0,0.0,0.0,0.0,16.6,2.5 -2019,11,12,19,15,0.0,0.0,0.0,16.6,2.5 -2019,11,12,19,30,0.0,0.0,0.0,16.6,2.5 -2019,11,12,19,45,0.0,0.0,0.0,16.6,2.5 -2019,11,12,20,0,0.0,0.0,0.0,15.9,2.2 -2019,11,12,20,15,0.0,0.0,0.0,15.9,2.2 -2019,11,12,20,30,0.0,0.0,0.0,15.9,2.2 -2019,11,12,20,45,0.0,0.0,0.0,15.9,2.2 -2019,11,12,21,0,0.0,0.0,0.0,14.4,2.7 -2019,11,12,21,15,0.0,0.0,0.0,14.4,2.7 -2019,11,12,21,30,0.0,0.0,0.0,14.4,2.7 -2019,11,12,21,45,0.0,0.0,0.0,14.4,2.7 -2019,11,12,22,0,0.0,0.0,0.0,14.2,3.0 -2019,11,12,22,15,0.0,0.0,0.0,14.2,3.0 -2019,11,12,22,30,0.0,0.0,0.0,14.2,3.0 -2019,11,12,22,45,0.0,0.0,0.0,14.2,3.0 -2019,11,12,23,0,0.0,0.0,0.0,12.6,2.6 -2019,11,12,23,15,0.0,0.0,0.0,12.6,2.6 -2019,11,12,23,30,0.0,0.0,0.0,12.6,2.6 -2019,11,12,23,45,0.0,0.0,0.0,12.6,2.6 -2019,11,13,0,0,0.0,0.0,0.0,11.2,2.7 -2019,11,13,0,15,0.0,0.0,0.0,11.2,2.7 -2019,11,13,0,30,0.0,0.0,0.0,11.2,2.7 -2019,11,13,0,45,0.0,0.0,0.0,11.2,2.7 -2019,11,13,1,0,0.0,0.0,0.0,11.4,3.1 -2019,11,13,1,15,0.0,0.0,0.0,11.4,3.1 -2019,11,13,1,30,0.0,0.0,0.0,11.4,3.1 -2019,11,13,1,45,0.0,0.0,0.0,11.4,3.1 -2019,11,13,2,0,0.0,0.0,0.0,9.4,3.1 -2019,11,13,2,15,0.0,0.0,0.0,9.4,3.1 -2019,11,13,2,30,0.0,0.0,0.0,9.4,3.1 -2019,11,13,2,45,0.0,0.0,0.0,9.4,3.1 -2019,11,13,3,0,0.0,0.0,0.0,9.4,3.0 -2019,11,13,3,15,0.0,0.0,0.0,9.4,3.0 -2019,11,13,3,30,0.0,0.0,0.0,9.4,3.0 -2019,11,13,3,45,0.0,0.0,0.0,9.4,3.0 -2019,11,13,4,0,0.0,0.0,0.0,9.2,2.5 -2019,11,13,4,15,0.0,0.0,0.0,9.2,2.5 -2019,11,13,4,30,0.0,0.0,0.0,9.2,2.5 -2019,11,13,4,45,0.0,0.0,0.0,9.2,2.5 -2019,11,13,5,0,0.0,0.0,0.0,8.1,1.6 -2019,11,13,5,15,0.0,0.0,0.0,8.1,1.6 -2019,11,13,5,30,0.0,0.0,0.0,8.1,1.6 -2019,11,13,5,45,0.0,0.0,0.0,8.1,1.6 -2019,11,13,6,0,712.0,-216.35244463427657,0.0,10.3,2.5 -2019,11,13,6,15,712.0,-179.85142148813094,0.0,10.3,2.5 -2019,11,13,6,30,712.0,-143.11192667061243,0.0,10.3,2.5 -2019,11,13,6,45,712.0,-106.29128433887963,0.0,10.3,2.5 -2019,11,13,7,0,759.0,-34.13806053002716,40.0,12.8,2.1 -2019,11,13,7,15,759.0,4.782276323731111,40.0,12.8,2.1 -2019,11,13,7,30,759.0,43.28664431436861,40.0,12.8,2.1 -2019,11,13,7,45,759.0,81.21016182685156,40.0,12.8,2.1 -2019,11,13,8,0,976.0,147.80245600550413,47.0,17.9,2.3 -2019,11,13,8,15,976.0,194.45219076393803,47.0,17.9,2.3 -2019,11,13,8,30,976.0,239.74169320355992,47.0,17.9,2.3 -2019,11,13,8,45,976.0,283.4770267219527,47.0,17.9,2.3 -2019,11,13,9,0,1081.0,355.4293582060001,47.0,23.5,3.7 -2019,11,13,9,15,1081.0,399.8130568662589,47.0,23.5,3.7 -2019,11,13,9,30,1081.0,441.8787286266129,47.0,23.5,3.7 -2019,11,13,9,45,1081.0,481.4462418225445,47.0,23.5,3.7 -2019,11,13,10,0,1134.0,539.455641105116,45.0,25.2,3.9 -2019,11,13,10,15,1134.0,575.2005763839875,45.0,25.2,3.9 -2019,11,13,10,30,1134.0,607.8283068883223,45.0,25.2,3.9 -2019,11,13,10,45,1134.0,637.1991156670007,45.0,25.2,3.9 -2019,11,13,11,0,1151.0,671.4545895073309,44.0,26.8,2.3 -2019,11,13,11,15,1151.0,694.2859428374245,44.0,26.8,2.3 -2019,11,13,11,30,1151.0,713.4731728177701,44.0,26.8,2.3 -2019,11,13,11,45,1151.0,728.934116783915,44.0,26.8,2.3 -2019,11,13,12,0,1138.0,733.7347724300736,45.0,27.9,0.4 -2019,11,13,12,15,1138.0,741.4723751027341,45.0,27.9,0.4 -2019,11,13,12,30,1138.0,745.3777846674768,45.0,27.9,0.4 -2019,11,13,12,45,1138.0,745.4342775609756,45.0,27.9,0.4 -2019,11,13,13,0,1090.0,714.2577829002344,47.0,28.3,3.0 -2019,11,13,13,15,1090.0,706.9538408885829,47.0,28.3,3.0 -2019,11,13,13,30,1090.0,696.0099273160288,47.0,28.3,3.0 -2019,11,13,13,45,1090.0,681.4729057006298,47.0,28.3,3.0 -2019,11,13,14,0,994.0,609.1161427944064,47.0,28.2,2.5 -2019,11,13,14,15,994.0,589.490234045425,47.0,28.2,2.5 -2019,11,13,14,30,994.0,566.7990380875503,47.0,28.2,2.5 -2019,11,13,14,45,994.0,541.1397221054899,47.0,28.2,2.5 -2019,11,13,15,0,796.0,413.8724767914857,41.0,26.8,2.1 -2019,11,13,15,15,796.0,388.84437475642983,41.0,26.8,2.1 -2019,11,13,15,30,796.0,361.73234371999985,41.0,26.8,2.1 -2019,11,13,15,45,796.0,332.6524815614083,41.0,26.8,2.1 -2019,11,13,16,0,791.0,260.0915657756767,1.0,25.0,1.8 -2019,11,13,16,15,791.0,227.66249579765784,1.0,25.0,1.8 -2019,11,13,16,30,791.0,193.67214993409314,1.0,25.0,1.8 -2019,11,13,16,45,791.0,158.266080064263,1.0,25.0,1.8 -2019,11,13,17,0,0.0,0.0,0.0,23.0,1.3 -2019,11,13,17,15,0.0,0.0,0.0,23.0,1.3 -2019,11,13,17,30,0.0,0.0,0.0,23.0,1.3 -2019,11,13,17,45,0.0,0.0,0.0,23.0,1.3 -2019,11,13,18,0,0.0,0.0,0.0,20.8,0.2 -2019,11,13,18,15,0.0,0.0,0.0,20.8,0.2 -2019,11,13,18,30,0.0,0.0,0.0,20.8,0.2 -2019,11,13,18,45,0.0,0.0,0.0,20.8,0.2 -2019,11,13,19,0,0.0,0.0,0.0,18.6,2.1 -2019,11,13,19,15,0.0,0.0,0.0,18.6,2.1 -2019,11,13,19,30,0.0,0.0,0.0,18.6,2.1 -2019,11,13,19,45,0.0,0.0,0.0,18.6,2.1 -2019,11,13,20,0,0.0,0.0,0.0,16.0,2.0 -2019,11,13,20,15,0.0,0.0,0.0,16.0,2.0 -2019,11,13,20,30,0.0,0.0,0.0,16.0,2.0 -2019,11,13,20,45,0.0,0.0,0.0,16.0,2.0 -2019,11,13,21,0,0.0,0.0,0.0,15.5,1.6 -2019,11,13,21,15,0.0,0.0,0.0,15.5,1.6 -2019,11,13,21,30,0.0,0.0,0.0,15.5,1.6 -2019,11,13,21,45,0.0,0.0,0.0,15.5,1.6 -2019,11,13,22,0,0.0,0.0,0.0,14.8,2.0 -2019,11,13,22,15,0.0,0.0,0.0,14.8,2.0 -2019,11,13,22,30,0.0,0.0,0.0,14.8,2.0 -2019,11,13,22,45,0.0,0.0,0.0,14.8,2.0 -2019,11,13,23,0,0.0,0.0,0.0,13.2,1.3 -2019,11,13,23,15,0.0,0.0,0.0,13.2,1.3 -2019,11,13,23,30,0.0,0.0,0.0,13.2,1.3 -2019,11,13,23,45,0.0,0.0,0.0,13.2,1.3 -2019,11,14,0,0,0.0,0.0,0.0,12.7,0.3 -2019,11,14,0,15,0.0,0.0,0.0,12.7,0.3 -2019,11,14,0,30,0.0,0.0,0.0,12.7,0.3 -2019,11,14,0,45,0.0,0.0,0.0,12.7,0.3 -2019,11,14,1,0,0.0,0.0,0.0,12.1,2.7 -2019,11,14,1,15,0.0,0.0,0.0,12.1,2.7 -2019,11,14,1,30,0.0,0.0,0.0,12.1,2.7 -2019,11,14,1,45,0.0,0.0,0.0,12.1,2.7 -2019,11,14,2,0,0.0,0.0,0.0,11.7,2.9 -2019,11,14,2,15,0.0,0.0,0.0,11.7,2.9 -2019,11,14,2,30,0.0,0.0,0.0,11.7,2.9 -2019,11,14,2,45,0.0,0.0,0.0,11.7,2.9 -2019,11,14,3,0,0.0,0.0,0.0,11.6,1.6 -2019,11,14,3,15,0.0,0.0,0.0,11.6,1.6 -2019,11,14,3,30,0.0,0.0,0.0,11.6,1.6 -2019,11,14,3,45,0.0,0.0,0.0,11.6,1.6 -2019,11,14,4,0,0.0,0.0,0.0,10.5,2.0 -2019,11,14,4,15,0.0,0.0,0.0,10.5,2.0 -2019,11,14,4,30,0.0,0.0,0.0,10.5,2.0 -2019,11,14,4,45,0.0,0.0,0.0,10.5,2.0 -2019,11,14,5,0,0.0,0.0,0.0,9.5,1.5 -2019,11,14,5,15,0.0,0.0,0.0,9.5,1.5 -2019,11,14,5,30,0.0,0.0,0.0,9.5,1.5 -2019,11,14,5,45,0.0,0.0,0.0,9.5,1.5 -2019,11,14,6,0,53.0,-2.215588516008964,14.0,11.0,1.3 -2019,11,14,6,15,53.0,0.4975508299168201,14.0,11.0,1.3 -2019,11,14,6,30,53.0,3.228415894705318,14.0,11.0,1.3 -2019,11,14,6,45,53.0,5.965312694899088,14.0,11.0,1.3 -2019,11,14,7,0,105.0,66.49310847006576,77.0,14.9,0.0 -2019,11,14,7,15,105.0,71.86955460397004,77.0,14.9,0.0 -2019,11,14,7,30,105.0,77.1885388974398,77.0,14.9,0.0 -2019,11,14,7,45,105.0,82.42728464314501,77.0,14.9,0.0 -2019,11,14,8,0,457.0,172.9757613188939,127.0,18.8,0.0 -2019,11,14,8,15,457.0,194.7873222442414,127.0,18.8,0.0 -2019,11,14,8,30,457.0,215.96289262756292,127.0,18.8,0.0 -2019,11,14,8,45,457.0,236.41179542554414,127.0,18.8,0.0 -2019,11,14,9,0,1064.0,350.4495384596093,50.0,23.1,0.0 -2019,11,14,9,15,1064.0,394.07204437598887,50.0,23.1,0.0 -2019,11,14,9,30,1064.0,435.4162781968077,50.0,23.1,0.0 -2019,11,14,9,45,1064.0,474.3051975655631,50.0,23.1,0.0 -2019,11,14,10,0,234.0,359.2912708207225,258.0,25.1,0.2 -2019,11,14,10,15,234.0,366.6565379589863,258.0,25.1,0.2 -2019,11,14,10,30,234.0,373.37950302815943,258.0,25.1,0.2 -2019,11,14,10,45,234.0,379.4313772596872,258.0,25.1,0.2 -2019,11,14,11,0,477.0,480.44888525951967,222.0,26.2,1.3 -2019,11,14,11,15,477.0,489.8970160355224,222.0,26.2,1.3 -2019,11,14,11,30,477.0,497.8371260878074,222.0,26.2,1.3 -2019,11,14,11,45,477.0,504.23521464614294,222.0,26.2,1.3 -2019,11,14,12,0,1031.0,688.4672212171381,68.0,27.2,0.0 -2019,11,14,12,15,1031.0,695.4671563176997,68.0,27.2,0.0 -2019,11,14,12,30,1031.0,699.0002420356965,68.0,27.2,0.0 -2019,11,14,12,45,1031.0,699.0513491556745,68.0,27.2,0.0 -2019,11,14,13,0,124.0,302.48488079030886,227.0,27.1,0.5 -2019,11,14,13,15,124.0,301.6551758248558,227.0,27.1,0.5 -2019,11,14,13,30,124.0,300.41198147608463,227.0,27.1,0.5 -2019,11,14,13,45,124.0,298.7606212930555,227.0,27.1,0.5 -2019,11,14,14,0,65.0,190.54057122970627,154.0,25.8,3.9 -2019,11,14,14,15,65.0,189.25904372122278,154.0,25.8,3.9 -2019,11,14,14,30,65.0,187.77735988215395,154.0,25.8,3.9 -2019,11,14,14,45,65.0,186.10186451017088,154.0,25.8,3.9 -2019,11,14,15,0,28.0,82.02634623604811,69.0,24.3,2.4 -2019,11,14,15,15,28.0,81.14723452429854,69.0,24.3,2.4 -2019,11,14,15,30,28.0,80.19492483736904,69.0,24.3,2.4 -2019,11,14,15,45,28.0,79.17349511154029,69.0,24.3,2.4 -2019,11,14,16,0,14.0,15.543659632855523,11.0,22.7,1.1 -2019,11,14,16,15,14.0,14.970524235802937,11.0,22.7,1.1 -2019,11,14,16,30,14.0,14.36979561837192,11.0,22.7,1.1 -2019,11,14,16,45,14.0,13.74404619272785,11.0,22.7,1.1 -2019,11,14,17,0,0.0,0.0,0.0,21.5,0.0 -2019,11,14,17,15,0.0,0.0,0.0,21.5,0.0 -2019,11,14,17,30,0.0,0.0,0.0,21.5,0.0 -2019,11,14,17,45,0.0,0.0,0.0,21.5,0.0 -2019,11,14,18,0,0.0,0.0,0.0,19.7,0.2 -2019,11,14,18,15,0.0,0.0,0.0,19.7,0.2 -2019,11,14,18,30,0.0,0.0,0.0,19.7,0.2 -2019,11,14,18,45,0.0,0.0,0.0,19.7,0.2 -2019,11,14,19,0,0.0,0.0,0.0,17.7,1.9 -2019,11,14,19,15,0.0,0.0,0.0,17.7,1.9 -2019,11,14,19,30,0.0,0.0,0.0,17.7,1.9 -2019,11,14,19,45,0.0,0.0,0.0,17.7,1.9 -2019,11,14,20,0,0.0,0.0,0.0,16.5,0.2 -2019,11,14,20,15,0.0,0.0,0.0,16.5,0.2 -2019,11,14,20,30,0.0,0.0,0.0,16.5,0.2 -2019,11,14,20,45,0.0,0.0,0.0,16.5,0.2 -2019,11,14,21,0,0.0,0.0,0.0,14.9,1.3 -2019,11,14,21,15,0.0,0.0,0.0,14.9,1.3 -2019,11,14,21,30,0.0,0.0,0.0,14.9,1.3 -2019,11,14,21,45,0.0,0.0,0.0,14.9,1.3 -2019,11,14,22,0,0.0,0.0,0.0,13.8,0.0 -2019,11,14,22,15,0.0,0.0,0.0,13.8,0.0 -2019,11,14,22,30,0.0,0.0,0.0,13.8,0.0 -2019,11,14,22,45,0.0,0.0,0.0,13.8,0.0 -2019,11,14,23,0,0.0,0.0,0.0,13.3,0.0 -2019,11,14,23,15,0.0,0.0,0.0,13.3,0.0 -2019,11,14,23,30,0.0,0.0,0.0,13.3,0.0 -2019,11,14,23,45,0.0,0.0,0.0,13.3,0.0 -2019,11,15,0,0,0.0,0.0,0.0,13.2,0.0 -2019,11,15,0,15,0.0,0.0,0.0,13.2,0.0 -2019,11,15,0,30,0.0,0.0,0.0,13.2,0.0 -2019,11,15,0,45,0.0,0.0,0.0,13.2,0.0 -2019,11,15,1,0,0.0,0.0,0.0,12.3,0.2 -2019,11,15,1,15,0.0,0.0,0.0,12.3,0.2 -2019,11,15,1,30,0.0,0.0,0.0,12.3,0.2 -2019,11,15,1,45,0.0,0.0,0.0,12.3,0.2 -2019,11,15,2,0,0.0,0.0,0.0,13.2,1.3 -2019,11,15,2,15,0.0,0.0,0.0,13.2,1.3 -2019,11,15,2,30,0.0,0.0,0.0,13.2,1.3 -2019,11,15,2,45,0.0,0.0,0.0,13.2,1.3 -2019,11,15,3,0,0.0,0.0,0.0,12.1,0.0 -2019,11,15,3,15,0.0,0.0,0.0,12.1,0.0 -2019,11,15,3,30,0.0,0.0,0.0,12.1,0.0 -2019,11,15,3,45,0.0,0.0,0.0,12.1,0.0 -2019,11,15,4,0,0.0,0.0,0.0,11.1,0.0 -2019,11,15,4,15,0.0,0.0,0.0,11.1,0.0 -2019,11,15,4,30,0.0,0.0,0.0,11.1,0.0 -2019,11,15,4,45,0.0,0.0,0.0,11.1,0.0 -2019,11,15,5,0,0.0,0.0,0.0,11.2,0.3 -2019,11,15,5,15,0.0,0.0,0.0,11.2,0.3 -2019,11,15,5,30,0.0,0.0,0.0,11.2,0.3 -2019,11,15,5,45,0.0,0.0,0.0,11.2,0.3 -2019,11,15,6,0,4.0,11.768034880197469,13.0,11.8,2.3 -2019,11,15,6,15,4.0,11.972506289453987,13.0,11.8,2.3 -2019,11,15,6,30,4.0,12.17831356917414,13.0,11.8,2.3 -2019,11,15,6,45,4.0,12.384575420990057,13.0,11.8,2.3 -2019,11,15,7,0,8.0,42.18081719997273,43.0,12.5,0.2 -2019,11,15,7,15,8.0,42.589863393781044,43.0,12.5,0.2 -2019,11,15,7,30,8.0,42.99453782480525,43.0,12.5,0.2 -2019,11,15,7,45,8.0,43.39310761500495,43.0,12.5,0.2 -2019,11,15,8,0,6.0,87.58789952051173,87.0,14.7,2.1 -2019,11,15,8,15,6.0,87.87385483074398,87.0,14.7,2.1 -2019,11,15,8,30,6.0,88.15147213741142,87.0,14.7,2.1 -2019,11,15,8,45,6.0,88.4195626405863,87.0,14.7,2.1 -2019,11,15,9,0,10.0,150.79496389262673,148.0,17.3,2.0 -2019,11,15,9,15,10.0,151.2043615480925,148.0,17.3,2.0 -2019,11,15,9,30,10.0,151.5923775970952,148.0,17.3,2.0 -2019,11,15,9,45,10.0,151.95735049534375,148.0,17.3,2.0 -2019,11,15,10,0,15.0,206.44657605928424,200.0,18.5,1.3 -2019,11,15,10,15,15.0,206.91803108961327,200.0,18.5,1.3 -2019,11,15,10,30,15.0,207.3483719911838,200.0,18.5,1.3 -2019,11,15,10,45,15.0,207.7357559781881,200.0,18.5,1.3 -2019,11,15,11,0,26.0,248.00277530239745,234.0,20.1,0.0 -2019,11,15,11,15,26.0,248.5170287759127,234.0,20.1,0.0 -2019,11,15,11,30,26.0,248.94920200374864,234.0,20.1,0.0 -2019,11,15,11,45,26.0,249.29744435379519,234.0,20.1,0.0 -2019,11,15,12,0,28.0,242.75720802952682,226.0,20.7,0.2 -2019,11,15,12,15,28.0,242.94704017166876,226.0,20.7,0.2 -2019,11,15,12,30,28.0,243.0428543785983,226.0,20.7,0.2 -2019,11,15,12,45,28.0,243.04424035917162,226.0,20.7,0.2 -2019,11,15,13,0,97.0,280.723772903768,222.0,21.2,1.5 -2019,11,15,13,15,97.0,280.07566083718984,222.0,21.2,1.5 -2019,11,15,13,30,97.0,279.1045575027649,222.0,21.2,1.5 -2019,11,15,13,45,97.0,277.81462131405783,222.0,21.2,1.5 -2019,11,15,14,0,95.0,212.0936156464639,159.0,21.7,1.6 -2019,11,15,14,15,95.0,210.2233015353722,159.0,21.7,1.6 -2019,11,15,14,30,95.0,208.06087101863181,159.0,21.7,1.6 -2019,11,15,14,45,95.0,205.61558395569782,159.0,21.7,1.6 -2019,11,15,15,0,65.0,111.0354130913343,81.0,21.2,2.5 -2019,11,15,15,15,65.0,108.99754645042995,81.0,21.2,2.5 -2019,11,15,15,30,65.0,106.78999976794813,81.0,21.2,2.5 -2019,11,15,15,45,65.0,104.42222609769196,81.0,21.2,2.5 -2019,11,15,16,0,32.0,24.291379500319845,14.0,20.4,2.0 -2019,11,15,16,15,32.0,22.98323553200524,14.0,20.4,2.0 -2019,11,15,16,30,32.0,21.612111847222156,14.0,20.4,2.0 -2019,11,15,16,45,32.0,20.18387980808757,14.0,20.4,2.0 -2019,11,15,17,0,0.0,0.0,0.0,19.3,1.5 -2019,11,15,17,15,0.0,0.0,0.0,19.3,1.5 -2019,11,15,17,30,0.0,0.0,0.0,19.3,1.5 -2019,11,15,17,45,0.0,0.0,0.0,19.3,1.5 -2019,11,15,18,0,0.0,0.0,0.0,18.8,1.5 -2019,11,15,18,15,0.0,0.0,0.0,18.8,1.5 -2019,11,15,18,30,0.0,0.0,0.0,18.8,1.5 -2019,11,15,18,45,0.0,0.0,0.0,18.8,1.5 -2019,11,15,19,0,0.0,0.0,0.0,17.7,1.5 -2019,11,15,19,15,0.0,0.0,0.0,17.7,1.5 -2019,11,15,19,30,0.0,0.0,0.0,17.7,1.5 -2019,11,15,19,45,0.0,0.0,0.0,17.7,1.5 -2019,11,15,20,0,0.0,0.0,0.0,17.0,1.3 -2019,11,15,20,15,0.0,0.0,0.0,17.0,1.3 -2019,11,15,20,30,0.0,0.0,0.0,17.0,1.3 -2019,11,15,20,45,0.0,0.0,0.0,17.0,1.3 -2019,11,15,21,0,0.0,0.0,0.0,15.6,0.0 -2019,11,15,21,15,0.0,0.0,0.0,15.6,0.0 -2019,11,15,21,30,0.0,0.0,0.0,15.6,0.0 -2019,11,15,21,45,0.0,0.0,0.0,15.6,0.0 -2019,11,15,22,0,0.0,0.0,0.0,15.5,0.2 -2019,11,15,22,15,0.0,0.0,0.0,15.5,0.2 -2019,11,15,22,30,0.0,0.0,0.0,15.5,0.2 -2019,11,15,22,45,0.0,0.0,0.0,15.5,0.2 -2019,11,15,23,0,0.0,0.0,0.0,15.0,1.3 -2019,11,15,23,15,0.0,0.0,0.0,15.0,1.3 -2019,11,15,23,30,0.0,0.0,0.0,15.0,1.3 -2019,11,15,23,45,0.0,0.0,0.0,15.0,1.3 -2019,11,16,0,0,0.0,0.0,0.0,14.8,0.2 -2019,11,16,0,15,0.0,0.0,0.0,14.8,0.2 -2019,11,16,0,30,0.0,0.0,0.0,14.8,0.2 -2019,11,16,0,45,0.0,0.0,0.0,14.8,0.2 -2019,11,16,1,0,0.0,0.0,0.0,13.2,1.3 -2019,11,16,1,15,0.0,0.0,0.0,13.2,1.3 -2019,11,16,1,30,0.0,0.0,0.0,13.2,1.3 -2019,11,16,1,45,0.0,0.0,0.0,13.2,1.3 -2019,11,16,2,0,0.0,0.0,0.0,12.8,0.2 -2019,11,16,2,15,0.0,0.0,0.0,12.8,0.2 -2019,11,16,2,30,0.0,0.0,0.0,12.8,0.2 -2019,11,16,2,45,0.0,0.0,0.0,12.8,0.2 -2019,11,16,3,0,0.0,0.0,0.0,12.8,1.5 -2019,11,16,3,15,0.0,0.0,0.0,12.8,1.5 -2019,11,16,3,30,0.0,0.0,0.0,12.8,1.5 -2019,11,16,3,45,0.0,0.0,0.0,12.8,1.5 -2019,11,16,4,0,0.0,0.0,0.0,12.8,1.6 -2019,11,16,4,15,0.0,0.0,0.0,12.8,1.6 -2019,11,16,4,30,0.0,0.0,0.0,12.8,1.6 -2019,11,16,4,45,0.0,0.0,0.0,12.8,1.6 -2019,11,16,5,0,0.0,0.0,0.0,12.7,1.9 -2019,11,16,5,15,0.0,0.0,0.0,12.7,1.9 -2019,11,16,5,30,0.0,0.0,0.0,12.7,1.9 -2019,11,16,5,45,0.0,0.0,0.0,12.7,1.9 -2019,11,16,6,0,9.0,9.21021717341288,12.0,12.5,0.2 -2019,11,16,6,15,9.0,9.66962397058953,12.0,12.5,0.2 -2019,11,16,6,30,9.0,10.132032204364933,12.0,12.5,0.2 -2019,11,16,6,45,9.0,10.595461771691857,12.0,12.5,0.2 -2019,11,16,7,0,18.0,50.11585639203202,52.0,14.6,2.0 -2019,11,16,7,15,18.0,51.03490225021859,52.0,14.6,2.0 -2019,11,16,7,30,18.0,51.9441256224842,52.0,14.6,2.0 -2019,11,16,7,45,18.0,52.839633074762276,52.0,14.6,2.0 -2019,11,16,8,0,17.0,112.62216824518018,111.0,16.4,1.6 -2019,11,16,8,15,17.0,113.43122342933863,111.0,16.4,1.6 -2019,11,16,8,30,17.0,114.21668784679939,111.0,16.4,1.6 -2019,11,16,8,45,17.0,114.97519801834022,111.0,16.4,1.6 -2019,11,16,9,0,48.0,209.28048721023436,196.0,19.1,2.1 -2019,11,16,9,15,48.0,211.24280299260445,196.0,19.1,2.1 -2019,11,16,9,30,48.0,213.10263293204244,196.0,19.1,2.1 -2019,11,16,9,45,48.0,214.85201295122133,196.0,19.1,2.1 -2019,11,16,10,0,52.0,263.19040626435674,241.0,20.7,2.0 -2019,11,16,10,15,52.0,264.8224607997665,241.0,20.7,2.0 -2019,11,16,10,30,52.0,266.3121889286408,241.0,20.7,2.0 -2019,11,16,10,45,52.0,267.65321140642465,241.0,20.7,2.0 -2019,11,16,11,0,56.0,288.98130775122064,259.0,21.2,1.6 -2019,11,16,11,15,56.0,290.08735637834826,259.0,21.2,1.6 -2019,11,16,11,30,56.0,291.01686804904585,259.0,21.2,1.6 -2019,11,16,11,45,56.0,291.7658624516383,259.0,21.2,1.6 -2019,11,16,12,0,24.0,233.2847709759026,219.0,22.2,2.2 -2019,11,16,12,15,24.0,233.44725297997482,219.0,22.2,2.2 -2019,11,16,12,30,24.0,233.52926271860412,219.0,22.2,2.2 -2019,11,16,12,45,24.0,233.5304490134993,219.0,22.2,2.2 -2019,11,16,13,0,61.0,246.72913391127392,210.0,22.2,2.3 -2019,11,16,13,15,61.0,246.3221375596447,210.0,22.2,2.3 -2019,11,16,13,30,61.0,245.71231167528396,210.0,22.2,2.3 -2019,11,16,13,45,61.0,244.90226762625065,210.0,22.2,2.3 -2019,11,16,14,0,128.0,232.12492935454011,161.0,22.1,0.3 -2019,11,16,14,15,128.0,229.60850880493382,161.0,22.1,0.3 -2019,11,16,14,30,128.0,226.69905923325462,161.0,22.1,0.3 -2019,11,16,14,45,128.0,223.4090393492353,161.0,22.1,0.3 -2019,11,16,15,0,446.0,276.71587293209416,72.0,21.7,2.6 -2019,11,16,15,15,446.0,262.7528461706978,72.0,21.7,2.6 -2019,11,16,15,30,446.0,247.6272080225379,72.0,21.7,2.6 -2019,11,16,15,45,446.0,231.40372879229506,72.0,21.7,2.6 -2019,11,16,16,0,223.0,93.07593995435349,22.0,20.8,2.6 -2019,11,16,16,15,223.0,83.9727682186226,22.0,20.8,2.6 -2019,11,16,16,30,223.0,74.4313303678716,22.0,20.8,2.6 -2019,11,16,16,45,223.0,64.49248430380567,22.0,20.8,2.6 -2019,11,16,17,0,0.0,0.0,0.0,19.9,2.7 -2019,11,16,17,15,0.0,0.0,0.0,19.9,2.7 -2019,11,16,17,30,0.0,0.0,0.0,19.9,2.7 -2019,11,16,17,45,0.0,0.0,0.0,19.9,2.7 -2019,11,16,18,0,0.0,0.0,0.0,18.7,3.0 -2019,11,16,18,15,0.0,0.0,0.0,18.7,3.0 -2019,11,16,18,30,0.0,0.0,0.0,18.7,3.0 -2019,11,16,18,45,0.0,0.0,0.0,18.7,3.0 -2019,11,16,19,0,0.0,0.0,0.0,17.1,2.8 -2019,11,16,19,15,0.0,0.0,0.0,17.1,2.8 -2019,11,16,19,30,0.0,0.0,0.0,17.1,2.8 -2019,11,16,19,45,0.0,0.0,0.0,17.1,2.8 -2019,11,16,20,0,0.0,0.0,0.0,16.7,3.6 -2019,11,16,20,15,0.0,0.0,0.0,16.7,3.6 -2019,11,16,20,30,0.0,0.0,0.0,16.7,3.6 -2019,11,16,20,45,0.0,0.0,0.0,16.7,3.6 -2019,11,16,21,0,0.0,0.0,0.0,16.7,0.2 -2019,11,16,21,15,0.0,0.0,0.0,16.7,0.2 -2019,11,16,21,30,0.0,0.0,0.0,16.7,0.2 -2019,11,16,21,45,0.0,0.0,0.0,16.7,0.2 -2019,11,16,22,0,0.0,0.0,0.0,16.6,1.3 -2019,11,16,22,15,0.0,0.0,0.0,16.6,1.3 -2019,11,16,22,30,0.0,0.0,0.0,16.6,1.3 -2019,11,16,22,45,0.0,0.0,0.0,16.6,1.3 -2019,11,16,23,0,0.0,0.0,0.0,16.0,0.0 -2019,11,16,23,15,0.0,0.0,0.0,16.0,0.0 -2019,11,16,23,30,0.0,0.0,0.0,16.0,0.0 -2019,11,16,23,45,0.0,0.0,0.0,16.0,0.0 -2019,11,17,0,0,0.0,0.0,0.0,15.6,0.0 -2019,11,17,0,15,0.0,0.0,0.0,15.6,0.0 -2019,11,17,0,30,0.0,0.0,0.0,15.6,0.0 -2019,11,17,0,45,0.0,0.0,0.0,15.6,0.0 -2019,11,17,1,0,0.0,0.0,0.0,15.5,0.2 -2019,11,17,1,15,0.0,0.0,0.0,15.5,0.2 -2019,11,17,1,30,0.0,0.0,0.0,15.5,0.2 -2019,11,17,1,45,0.0,0.0,0.0,15.5,0.2 -2019,11,17,2,0,0.0,0.0,0.0,14.2,2.4 -2019,11,17,2,15,0.0,0.0,0.0,14.2,2.4 -2019,11,17,2,30,0.0,0.0,0.0,14.2,2.4 -2019,11,17,2,45,0.0,0.0,0.0,14.2,2.4 -2019,11,17,3,0,0.0,0.0,0.0,14.3,0.4 -2019,11,17,3,15,0.0,0.0,0.0,14.3,0.4 -2019,11,17,3,30,0.0,0.0,0.0,14.3,0.4 -2019,11,17,3,45,0.0,0.0,0.0,14.3,0.4 -2019,11,17,4,0,0.0,0.0,0.0,13.9,0.0 -2019,11,17,4,15,0.0,0.0,0.0,13.9,0.0 -2019,11,17,4,30,0.0,0.0,0.0,13.9,0.0 -2019,11,17,4,45,0.0,0.0,0.0,13.9,0.0 -2019,11,17,5,0,0.0,0.0,0.0,14.0,0.0 -2019,11,17,5,15,0.0,0.0,0.0,14.0,0.0 -2019,11,17,5,30,0.0,0.0,0.0,14.0,0.0 -2019,11,17,5,45,0.0,0.0,0.0,14.0,0.0 -2019,11,17,6,0,3.0,11.064275929583033,12.0,14.5,0.0 -2019,11,17,6,15,3.0,11.217196236106535,12.0,14.5,0.0 -2019,11,17,6,30,3.0,11.371115614928298,12.0,14.5,0.0 -2019,11,17,6,45,3.0,11.525374959638075,12.0,14.5,0.0 -2019,11,17,7,0,5.0,34.46552284673249,35.0,15.7,0.2 -2019,11,17,7,15,5.0,34.72045445129798,35.0,15.7,0.2 -2019,11,17,7,30,5.0,34.97266142349138,35.0,15.7,0.2 -2019,11,17,7,45,5.0,35.22106377433824,35.0,15.7,0.2 -2019,11,17,8,0,2.0,63.18583912273472,63.0,16.9,2.0 -2019,11,17,8,15,2.0,63.28088826834875,63.0,16.9,2.0 -2019,11,17,8,30,2.0,63.37316593154366,63.0,16.9,2.0 -2019,11,17,8,45,2.0,63.462276965198924,63.0,16.9,2.0 -2019,11,17,9,0,3.0,110.82175967328179,110.0,18.5,1.6 -2019,11,17,9,15,3.0,110.94423198408839,110.0,18.5,1.6 -2019,11,17,9,30,3.0,111.06030793498105,110.0,18.5,1.6 -2019,11,17,9,45,3.0,111.16949047091775,110.0,18.5,1.6 -2019,11,17,10,0,1.0,95.42377068517253,95.0,19.1,2.3 -2019,11,17,10,15,1.0,95.45511222437445,95.0,19.1,2.3 -2019,11,17,10,30,1.0,95.48372056529585,95.0,19.1,2.3 -2019,11,17,10,45,1.0,95.50947320262887,95.0,19.1,2.3 -2019,11,17,11,0,2.0,133.0645197192537,132.0,20.0,0.3 -2019,11,17,11,15,2.0,133.10396592065243,132.0,20.0,0.3 -2019,11,17,11,30,2.0,133.1371160947637,132.0,20.0,0.3 -2019,11,17,11,45,2.0,133.16382828745267,132.0,20.0,0.3 -2019,11,17,12,0,8.0,180.7359524520372,176.0,20.1,2.7 -2019,11,17,12,15,8.0,180.79003697586222,176.0,20.1,2.7 -2019,11,17,12,30,8.0,180.81733512305155,176.0,20.1,2.7 -2019,11,17,12,45,8.0,180.81772999874804,176.0,20.1,2.7 -2019,11,17,13,0,16.0,177.58243982406657,168.0,20.5,2.9 -2019,11,17,13,15,16.0,177.47583676633712,168.0,20.5,2.9 -2019,11,17,13,30,16.0,177.3161073149669,168.0,20.5,2.9 -2019,11,17,13,45,16.0,177.10393545598873,168.0,20.5,2.9 -2019,11,17,14,0,5.0,88.76257179433627,86.0,19.9,1.6 -2019,11,17,14,15,5.0,88.66441231280672,86.0,19.9,1.6 -2019,11,17,14,30,5.0,88.55092171937746,86.0,19.9,1.6 -2019,11,17,14,45,5.0,88.42258599819294,86.0,19.9,1.6 -2019,11,17,15,0,5.0,44.27995470251375,42.0,19.5,2.6 -2019,11,17,15,15,5.0,44.12363860144512,42.0,19.5,2.6 -2019,11,17,15,30,5.0,43.95430706452993,42.0,19.5,2.6 -2019,11,17,15,45,5.0,43.772685195405494,42.0,19.5,2.6 -2019,11,17,16,0,3.0,10.947730436079095,10.0,18.8,2.6 -2019,11,17,16,15,3.0,10.82543841409243,10.0,18.8,2.6 -2019,11,17,16,30,3.0,10.69725872449606,10.0,18.8,2.6 -2019,11,17,16,45,3.0,10.563740252399342,10.0,18.8,2.6 -2019,11,17,17,0,0.0,0.0,0.0,18.2,2.5 -2019,11,17,17,15,0.0,0.0,0.0,18.2,2.5 -2019,11,17,17,30,0.0,0.0,0.0,18.2,2.5 -2019,11,17,17,45,0.0,0.0,0.0,18.2,2.5 -2019,11,17,18,0,0.0,0.0,0.0,17.1,2.2 -2019,11,17,18,15,0.0,0.0,0.0,17.1,2.2 -2019,11,17,18,30,0.0,0.0,0.0,17.1,2.2 -2019,11,17,18,45,0.0,0.0,0.0,17.1,2.2 -2019,11,17,19,0,0.0,0.0,0.0,16.7,2.3 -2019,11,17,19,15,0.0,0.0,0.0,16.7,2.3 -2019,11,17,19,30,0.0,0.0,0.0,16.7,2.3 -2019,11,17,19,45,0.0,0.0,0.0,16.7,2.3 -2019,11,17,20,0,0.0,0.0,0.0,16.7,0.0 -2019,11,17,20,15,0.0,0.0,0.0,16.7,0.0 -2019,11,17,20,30,0.0,0.0,0.0,16.7,0.0 -2019,11,17,20,45,0.0,0.0,0.0,16.7,0.0 -2019,11,17,21,0,0.0,0.0,0.0,16.9,0.0 -2019,11,17,21,15,0.0,0.0,0.0,16.9,0.0 -2019,11,17,21,30,0.0,0.0,0.0,16.9,0.0 -2019,11,17,21,45,0.0,0.0,0.0,16.9,0.0 -2019,11,17,22,0,0.0,0.0,0.0,16.6,0.0 -2019,11,17,22,15,0.0,0.0,0.0,16.6,0.0 -2019,11,17,22,30,0.0,0.0,0.0,16.6,0.0 -2019,11,17,22,45,0.0,0.0,0.0,16.6,0.0 -2019,11,17,23,0,0.0,0.0,0.0,16.1,0.0 -2019,11,17,23,15,0.0,0.0,0.0,16.1,0.0 -2019,11,17,23,30,0.0,0.0,0.0,16.1,0.0 -2019,11,17,23,45,0.0,0.0,0.0,16.1,0.0 -2019,11,18,0,0,0.0,0.0,0.0,15.8,0.0 -2019,11,18,0,15,0.0,0.0,0.0,15.8,0.0 -2019,11,18,0,30,0.0,0.0,0.0,15.8,0.0 -2019,11,18,0,45,0.0,0.0,0.0,15.8,0.0 -2019,11,18,1,0,0.0,0.0,0.0,13.8,0.0 -2019,11,18,1,15,0.0,0.0,0.0,13.8,0.0 -2019,11,18,1,30,0.0,0.0,0.0,13.8,0.0 -2019,11,18,1,45,0.0,0.0,0.0,13.8,0.0 -2019,11,18,2,0,0.0,0.0,0.0,13.0,0.0 -2019,11,18,2,15,0.0,0.0,0.0,13.0,0.0 -2019,11,18,2,30,0.0,0.0,0.0,13.0,0.0 -2019,11,18,2,45,0.0,0.0,0.0,13.0,0.0 -2019,11,18,3,0,0.0,0.0,0.0,13.6,0.0 -2019,11,18,3,15,0.0,0.0,0.0,13.6,0.0 -2019,11,18,3,30,0.0,0.0,0.0,13.6,0.0 -2019,11,18,3,45,0.0,0.0,0.0,13.6,0.0 -2019,11,18,4,0,0.0,0.0,0.0,13.2,0.0 -2019,11,18,4,15,0.0,0.0,0.0,13.2,0.0 -2019,11,18,4,30,0.0,0.0,0.0,13.2,0.0 -2019,11,18,4,45,0.0,0.0,0.0,13.2,0.0 -2019,11,18,5,0,0.0,0.0,0.0,12.9,0.0 -2019,11,18,5,15,0.0,0.0,0.0,12.9,0.0 -2019,11,18,5,30,0.0,0.0,0.0,12.9,0.0 -2019,11,18,5,45,0.0,0.0,0.0,12.9,0.0 -2019,11,18,6,0,1.0,11.686212488414055,12.0,13.9,0.0 -2019,11,18,6,15,1.0,11.73711513201462,12.0,13.9,0.0 -2019,11,18,6,30,1.0,11.788350337210735,12.0,13.9,0.0 -2019,11,18,6,45,1.0,11.839698706987981,12.0,13.9,0.0 -2019,11,18,7,0,2.0,25.78188071948765,26.0,13.9,0.0 -2019,11,18,7,15,2.0,25.883711741708808,26.0,13.9,0.0 -2019,11,18,7,30,2.0,25.984454424568902,26.0,13.9,0.0 -2019,11,18,7,45,2.0,26.083677372433634,26.0,13.9,0.0 -2019,11,18,8,0,1.0,49.09047784870363,49.0,15.3,0.0 -2019,11,18,8,15,1.0,49.1379364193839,49.0,15.3,0.0 -2019,11,18,8,30,1.0,49.18401117337199,49.0,15.3,0.0 -2019,11,18,8,45,1.0,49.22850481149783,49.0,15.3,0.0 -2019,11,18,9,0,7.0,134.898587636205,133.0,17.8,0.0 -2019,11,18,9,15,7.0,135.18395948581465,133.0,17.8,0.0 -2019,11,18,9,30,7.0,135.45442722324262,133.0,17.8,0.0 -2019,11,18,9,45,7.0,135.70883266411425,133.0,17.8,0.0 -2019,11,18,10,0,146.0,318.4469450243015,257.0,18.4,0.2 -2019,11,18,10,15,146.0,323.0164547868512,257.0,18.4,0.2 -2019,11,18,10,30,146.0,327.1874717968477,257.0,18.4,0.2 -2019,11,18,10,45,146.0,330.9421351191081,257.0,18.4,0.2 -2019,11,18,11,0,228.0,388.6594219836993,268.0,19.5,1.5 -2019,11,18,11,15,228.0,393.1500436943202,268.0,19.5,1.5 -2019,11,18,11,30,228.0,396.9239151013579,268.0,19.5,1.5 -2019,11,18,11,45,228.0,399.9648759080724,268.0,19.5,1.5 -2019,11,18,12,0,255.0,403.15910344133874,253.0,20.1,1.7 -2019,11,18,12,15,255.0,404.88065342455934,253.0,20.1,1.7 -2019,11,18,12,30,255.0,405.7495734318386,253.0,20.1,1.7 -2019,11,18,12,45,255.0,405.7621426143063,253.0,20.1,1.7 -2019,11,18,13,0,318.0,395.4510653855541,206.0,20.6,3.2 -2019,11,18,13,15,318.0,393.33527211342346,206.0,20.6,3.2 -2019,11,18,13,30,318.0,390.16505818365073,206.0,20.6,3.2 -2019,11,18,13,45,318.0,385.9539989389834,206.0,20.6,3.2 -2019,11,18,14,0,294.0,313.5337021188383,152.0,20.5,4.1 -2019,11,18,14,15,294.0,307.76994044951607,152.0,20.5,4.1 -2019,11,18,14,30,294.0,301.1059613611661,152.0,20.5,4.1 -2019,11,18,14,45,294.0,293.57030103531736,152.0,20.5,4.1 -2019,11,18,15,0,282.0,209.75868839469177,82.0,19.7,4.1 -2019,11,18,15,15,282.0,200.95470427201326,82.0,19.7,4.1 -2019,11,18,15,30,282.0,191.41766904481273,82.0,19.7,4.1 -2019,11,18,15,45,282.0,181.1884217620853,82.0,19.7,4.1 -2019,11,18,16,0,141.0,63.15538281555914,19.0,18.8,4.1 -2019,11,18,16,15,141.0,57.4156402227163,19.0,18.8,4.1 -2019,11,18,16,30,141.0,51.39956156147801,19.0,18.8,4.1 -2019,11,18,16,45,141.0,45.13290860427688,19.0,18.8,4.1 -2019,11,18,17,0,0.0,0.0,0.0,17.7,3.9 -2019,11,18,17,15,0.0,0.0,0.0,17.7,3.9 -2019,11,18,17,30,0.0,0.0,0.0,17.7,3.9 -2019,11,18,17,45,0.0,0.0,0.0,17.7,3.9 -2019,11,18,18,0,0.0,0.0,0.0,16.6,2.3 -2019,11,18,18,15,0.0,0.0,0.0,16.6,2.3 -2019,11,18,18,30,0.0,0.0,0.0,16.6,2.3 -2019,11,18,18,45,0.0,0.0,0.0,16.6,2.3 -2019,11,18,19,0,0.0,0.0,0.0,15.5,0.0 -2019,11,18,19,15,0.0,0.0,0.0,15.5,0.0 -2019,11,18,19,30,0.0,0.0,0.0,15.5,0.0 -2019,11,18,19,45,0.0,0.0,0.0,15.5,0.0 -2019,11,18,20,0,0.0,0.0,0.0,14.3,0.0 -2019,11,18,20,15,0.0,0.0,0.0,14.3,0.0 -2019,11,18,20,30,0.0,0.0,0.0,14.3,0.0 -2019,11,18,20,45,0.0,0.0,0.0,14.3,0.0 -2019,11,18,21,0,0.0,0.0,0.0,13.7,0.0 -2019,11,18,21,15,0.0,0.0,0.0,13.7,0.0 -2019,11,18,21,30,0.0,0.0,0.0,13.7,0.0 -2019,11,18,21,45,0.0,0.0,0.0,13.7,0.0 -2019,11,18,22,0,0.0,0.0,0.0,12.1,0.0 -2019,11,18,22,15,0.0,0.0,0.0,12.1,0.0 -2019,11,18,22,30,0.0,0.0,0.0,12.1,0.0 -2019,11,18,22,45,0.0,0.0,0.0,12.1,0.0 -2019,11,18,23,0,0.0,0.0,0.0,11.7,0.0 -2019,11,18,23,15,0.0,0.0,0.0,11.7,0.0 -2019,11,18,23,30,0.0,0.0,0.0,11.7,0.0 -2019,11,18,23,45,0.0,0.0,0.0,11.7,0.0 -2019,11,19,0,0,0.0,0.0,0.0,11.5,0.0 -2019,11,19,0,15,0.0,0.0,0.0,11.5,0.0 -2019,11,19,0,30,0.0,0.0,0.0,11.5,0.0 -2019,11,19,0,45,0.0,0.0,0.0,11.5,0.0 -2019,11,19,1,0,0.0,0.0,0.0,10.0,0.0 -2019,11,19,1,15,0.0,0.0,0.0,10.0,0.0 -2019,11,19,1,30,0.0,0.0,0.0,10.0,0.0 -2019,11,19,1,45,0.0,0.0,0.0,10.0,0.0 -2019,11,19,2,0,0.0,0.0,0.0,9.9,0.0 -2019,11,19,2,15,0.0,0.0,0.0,9.9,0.0 -2019,11,19,2,30,0.0,0.0,0.0,9.9,0.0 -2019,11,19,2,45,0.0,0.0,0.0,9.9,0.0 -2019,11,19,3,0,0.0,0.0,0.0,9.4,0.0 -2019,11,19,3,15,0.0,0.0,0.0,9.4,0.0 -2019,11,19,3,30,0.0,0.0,0.0,9.4,0.0 -2019,11,19,3,45,0.0,0.0,0.0,9.4,0.0 -2019,11,19,4,0,0.0,0.0,0.0,9.3,0.0 -2019,11,19,4,15,0.0,0.0,0.0,9.3,0.0 -2019,11,19,4,30,0.0,0.0,0.0,9.3,0.0 -2019,11,19,4,45,0.0,0.0,0.0,9.3,0.0 -2019,11,19,5,0,0.0,0.0,0.0,8.9,0.0 -2019,11,19,5,15,0.0,0.0,0.0,8.9,0.0 -2019,11,19,5,30,0.0,0.0,0.0,8.9,0.0 -2019,11,19,5,45,0.0,0.0,0.0,8.9,0.0 -2019,11,19,6,0,188.0,-49.335454440938406,10.0,9.2,0.2 -2019,11,19,6,15,188.0,-39.7788680119819,10.0,9.2,0.2 -2019,11,19,6,30,188.0,-30.159845658169132,10.0,9.2,0.2 -2019,11,19,6,45,188.0,-20.519577509958168,10.0,9.2,0.2 -2019,11,19,7,0,377.0,22.090143921881165,64.0,12.0,1.3 -2019,11,19,7,15,377.0,41.25899409162412,64.0,12.0,1.3 -2019,11,19,7,30,377.0,60.22297335178588,64.0,12.0,1.3 -2019,11,19,7,45,377.0,78.90087503177133,64.0,12.0,1.3 -2019,11,19,8,0,418.0,161.82471063778559,125.0,14.2,0.0 -2019,11,19,8,15,418.0,181.63521538486273,125.0,14.2,0.0 -2019,11,19,8,30,418.0,200.86807721610157,125.0,14.2,0.0 -2019,11,19,8,45,418.0,219.4409380644579,125.0,14.2,0.0 -2019,11,19,9,0,516.0,298.59694091297985,160.0,16.2,0.0 -2019,11,19,9,15,516.0,319.6041034919116,160.0,16.2,0.0 -2019,11,19,9,30,516.0,339.51412524169825,160.0,16.2,0.0 -2019,11,19,9,45,516.0,358.2417483925653,160.0,16.2,0.0 -2019,11,19,10,0,438.0,394.09993979367005,211.0,17.5,0.2 -2019,11,19,10,15,438.0,407.7896882772064,211.0,17.5,0.2 -2019,11,19,10,30,438.0,420.2855963186729,211.0,17.5,0.2 -2019,11,19,10,45,438.0,431.5341545214293,211.0,17.5,0.2 -2019,11,19,11,0,664.0,515.414377554052,166.0,19.5,1.6 -2019,11,19,11,15,664.0,528.4744115944602,166.0,19.5,1.6 -2019,11,19,11,30,664.0,539.4499272838505,166.0,19.5,1.6 -2019,11,19,11,45,664.0,548.2939257790491,166.0,19.5,1.6 -2019,11,19,12,0,767.0,581.3055224364621,132.0,20.7,2.5 -2019,11,19,12,15,767.0,586.4765806253334,132.0,20.7,2.5 -2019,11,19,12,30,767.0,589.0865750855057,132.0,20.7,2.5 -2019,11,19,12,45,767.0,589.1243294200068,132.0,20.7,2.5 -2019,11,19,13,0,718.0,548.548098626529,123.0,21.1,1.5 -2019,11,19,13,15,718.0,543.7774749315802,123.0,21.1,1.5 -2019,11,19,13,30,718.0,536.629376915274,123.0,21.1,1.5 -2019,11,19,13,45,718.0,527.1344138307124,123.0,21.1,1.5 -2019,11,19,14,0,719.0,480.8796696992267,88.0,21.1,1.6 -2019,11,19,14,15,719.0,466.8032509029178,88.0,21.1,1.6 -2019,11,19,14,30,719.0,450.52829612872256,88.0,21.1,1.6 -2019,11,19,14,45,719.0,432.1244972315608,88.0,21.1,1.6 -2019,11,19,15,0,608.0,329.70203415724234,56.0,20.9,2.1 -2019,11,19,15,15,608.0,310.7463996412431,56.0,20.9,2.1 -2019,11,19,15,30,608.0,290.21245141803536,56.0,20.9,2.1 -2019,11,19,15,45,608.0,268.18811900634023,56.0,20.9,2.1 -2019,11,19,16,0,304.0,112.38385698939067,18.0,20.2,1.8 -2019,11,19,16,15,304.0,100.02576305262626,18.0,20.2,1.8 -2019,11,19,16,30,304.0,87.0726969483635,18.0,20.2,1.8 -2019,11,19,16,45,304.0,73.58012569425158,18.0,20.2,1.8 -2019,11,19,17,0,0.0,0.0,0.0,19.2,1.6 -2019,11,19,17,15,0.0,0.0,0.0,19.2,1.6 -2019,11,19,17,30,0.0,0.0,0.0,19.2,1.6 -2019,11,19,17,45,0.0,0.0,0.0,19.2,1.6 -2019,11,19,18,0,0.0,0.0,0.0,17.6,2.6 -2019,11,19,18,15,0.0,0.0,0.0,17.6,2.6 -2019,11,19,18,30,0.0,0.0,0.0,17.6,2.6 -2019,11,19,18,45,0.0,0.0,0.0,17.6,2.6 -2019,11,19,19,0,0.0,0.0,0.0,16.0,2.3 -2019,11,19,19,15,0.0,0.0,0.0,16.0,2.3 -2019,11,19,19,30,0.0,0.0,0.0,16.0,2.3 -2019,11,19,19,45,0.0,0.0,0.0,16.0,2.3 -2019,11,19,20,0,0.0,0.0,0.0,14.9,0.0 -2019,11,19,20,15,0.0,0.0,0.0,14.9,0.0 -2019,11,19,20,30,0.0,0.0,0.0,14.9,0.0 -2019,11,19,20,45,0.0,0.0,0.0,14.9,0.0 -2019,11,19,21,0,0.0,0.0,0.0,13.8,0.0 -2019,11,19,21,15,0.0,0.0,0.0,13.8,0.0 -2019,11,19,21,30,0.0,0.0,0.0,13.8,0.0 -2019,11,19,21,45,0.0,0.0,0.0,13.8,0.0 -2019,11,19,22,0,0.0,0.0,0.0,12.7,0.0 -2019,11,19,22,15,0.0,0.0,0.0,12.7,0.0 -2019,11,19,22,30,0.0,0.0,0.0,12.7,0.0 -2019,11,19,22,45,0.0,0.0,0.0,12.7,0.0 -2019,11,19,23,0,0.0,0.0,0.0,12.1,0.0 -2019,11,19,23,15,0.0,0.0,0.0,12.1,0.0 -2019,11,19,23,30,0.0,0.0,0.0,12.1,0.0 -2019,11,19,23,45,0.0,0.0,0.0,12.1,0.0 -2019,11,20,0,0,0.0,0.0,0.0,11.6,0.2 -2019,11,20,0,15,0.0,0.0,0.0,11.6,0.2 -2019,11,20,0,30,0.0,0.0,0.0,11.6,0.2 -2019,11,20,0,45,0.0,0.0,0.0,11.6,0.2 -2019,11,20,1,0,0.0,0.0,0.0,10.4,1.5 -2019,11,20,1,15,0.0,0.0,0.0,10.4,1.5 -2019,11,20,1,30,0.0,0.0,0.0,10.4,1.5 -2019,11,20,1,45,0.0,0.0,0.0,10.4,1.5 -2019,11,20,2,0,0.0,0.0,0.0,9.0,1.6 -2019,11,20,2,15,0.0,0.0,0.0,9.0,1.6 -2019,11,20,2,30,0.0,0.0,0.0,9.0,1.6 -2019,11,20,2,45,0.0,0.0,0.0,9.0,1.6 -2019,11,20,3,0,0.0,0.0,0.0,9.9,2.0 -2019,11,20,3,15,0.0,0.0,0.0,9.9,2.0 -2019,11,20,3,30,0.0,0.0,0.0,9.9,2.0 -2019,11,20,3,45,0.0,0.0,0.0,9.9,2.0 -2019,11,20,4,0,0.0,0.0,0.0,8.9,1.5 -2019,11,20,4,15,0.0,0.0,0.0,8.9,1.5 -2019,11,20,4,30,0.0,0.0,0.0,8.9,1.5 -2019,11,20,4,45,0.0,0.0,0.0,8.9,1.5 -2019,11,20,5,0,0.0,0.0,0.0,8.8,1.3 -2019,11,20,5,15,0.0,0.0,0.0,8.8,1.3 -2019,11,20,5,30,0.0,0.0,0.0,8.8,1.3 -2019,11,20,5,45,0.0,0.0,0.0,8.8,1.3 -2019,11,20,6,0,266.0,-77.42511408652406,7.0,8.6,0.2 -2019,11,20,6,15,266.0,-63.92180881053618,7.0,8.6,0.2 -2019,11,20,6,30,266.0,-50.33028256152721,7.0,8.6,0.2 -2019,11,20,6,45,266.0,-36.708736341504284,7.0,8.6,0.2 -2019,11,20,7,0,531.0,-8.117783240903435,52.0,11.5,1.3 -2019,11,20,7,15,531.0,18.844877084262393,52.0,11.5,1.3 -2019,11,20,7,30,531.0,45.51936859926841,52.0,11.5,1.3 -2019,11,20,7,45,531.0,71.79146703630491,52.0,11.5,1.3 -2019,11,20,8,0,722.0,141.93246823493797,80.0,14.7,0.0 -2019,11,20,8,15,722.0,176.10443407860595,80.0,14.7,0.0 -2019,11,20,8,30,722.0,209.27999956590335,80.0,14.7,0.0 -2019,11,20,8,45,722.0,241.31710183220812,80.0,14.7,0.0 -2019,11,20,9,0,816.0,314.08601013732346,97.0,17.5,0.0 -2019,11,20,9,15,816.0,347.2618067983079,97.0,17.5,0.0 -2019,11,20,9,30,816.0,378.70493152326,97.0,17.5,0.0 -2019,11,20,9,45,816.0,408.2807400248714,97.0,17.5,0.0 -2019,11,20,10,0,864.0,463.79567733590545,105.0,20.2,0.2 -2019,11,20,10,15,864.0,490.7636691628836,105.0,20.2,0.2 -2019,11,20,10,30,864.0,515.37986619077,105.0,20.2,0.2 -2019,11,20,10,45,864.0,537.5388580847441,105.0,20.2,0.2 -2019,11,20,11,0,880.0,568.5188262070055,108.0,21.8,1.5 -2019,11,20,11,15,880.0,585.8039465890738,108.0,21.8,1.5 -2019,11,20,11,30,880.0,600.3301805452345,108.0,21.8,1.5 -2019,11,20,11,45,880.0,612.0353245115791,108.0,21.8,1.5 -2019,11,20,12,0,869.0,612.4583895738294,106.0,22.9,1.5 -2019,11,20,12,15,869.0,618.3092177497563,106.0,22.9,1.5 -2019,11,20,12,30,869.0,621.2623133384797,106.0,22.9,1.5 -2019,11,20,12,45,869.0,621.3050307313216,106.0,22.9,1.5 -2019,11,20,13,0,827.0,586.670372444,99.0,23.9,1.6 -2019,11,20,13,15,827.0,581.1829330960685,99.0,23.9,1.6 -2019,11,20,13,30,827.0,572.9607892369584,99.0,23.9,1.6 -2019,11,20,13,45,827.0,562.039149348961,99.0,23.9,1.6 -2019,11,20,14,0,743.0,487.8117686905713,84.0,23.6,2.8 -2019,11,20,14,15,743.0,473.2851141208545,84.0,23.6,2.8 -2019,11,20,14,30,743.0,456.4896031628759,84.0,23.6,2.8 -2019,11,20,14,45,743.0,437.497156773052,84.0,23.6,2.8 -2019,11,20,15,0,575.0,315.23248253767605,58.0,22.1,4.0 -2019,11,20,15,15,575.0,297.3298829317034,58.0,22.1,4.0 -2019,11,20,15,30,575.0,277.93664905923225,58.0,22.1,4.0 -2019,11,20,15,45,575.0,257.1358257250081,58.0,22.1,4.0 -2019,11,20,16,0,288.0,107.6621700024506,19.0,20.4,3.5 -2019,11,20,16,15,288.0,95.97030201645562,19.0,20.4,3.5 -2019,11,20,16,30,288.0,83.71553686579034,19.0,20.4,3.5 -2019,11,20,16,45,288.0,70.95035133621579,19.0,20.4,3.5 -2019,11,20,17,0,0.0,0.0,0.0,19.2,2.9 -2019,11,20,17,15,0.0,0.0,0.0,19.2,2.9 -2019,11,20,17,30,0.0,0.0,0.0,19.2,2.9 -2019,11,20,17,45,0.0,0.0,0.0,19.2,2.9 -2019,11,20,18,0,0.0,0.0,0.0,17.7,1.3 -2019,11,20,18,15,0.0,0.0,0.0,17.7,1.3 -2019,11,20,18,30,0.0,0.0,0.0,17.7,1.3 -2019,11,20,18,45,0.0,0.0,0.0,17.7,1.3 -2019,11,20,19,0,0.0,0.0,0.0,16.6,0.0 -2019,11,20,19,15,0.0,0.0,0.0,16.6,0.0 -2019,11,20,19,30,0.0,0.0,0.0,16.6,0.0 -2019,11,20,19,45,0.0,0.0,0.0,16.6,0.0 -2019,11,20,20,0,0.0,0.0,0.0,15.8,0.0 -2019,11,20,20,15,0.0,0.0,0.0,15.8,0.0 -2019,11,20,20,30,0.0,0.0,0.0,15.8,0.0 -2019,11,20,20,45,0.0,0.0,0.0,15.8,0.0 -2019,11,20,21,0,0.0,0.0,0.0,13.8,0.0 -2019,11,20,21,15,0.0,0.0,0.0,13.8,0.0 -2019,11,20,21,30,0.0,0.0,0.0,13.8,0.0 -2019,11,20,21,45,0.0,0.0,0.0,13.8,0.0 -2019,11,20,22,0,0.0,0.0,0.0,12.7,0.0 -2019,11,20,22,15,0.0,0.0,0.0,12.7,0.0 -2019,11,20,22,30,0.0,0.0,0.0,12.7,0.0 -2019,11,20,22,45,0.0,0.0,0.0,12.7,0.0 -2019,11,20,23,0,0.0,0.0,0.0,12.1,0.0 -2019,11,20,23,15,0.0,0.0,0.0,12.1,0.0 -2019,11,20,23,30,0.0,0.0,0.0,12.1,0.0 -2019,11,20,23,45,0.0,0.0,0.0,12.1,0.0 -2019,11,21,0,0,0.0,0.0,0.0,11.0,0.0 -2019,11,21,0,15,0.0,0.0,0.0,11.0,0.0 -2019,11,21,0,30,0.0,0.0,0.0,11.0,0.0 -2019,11,21,0,45,0.0,0.0,0.0,11.0,0.0 -2019,11,21,1,0,0.0,0.0,0.0,10.5,0.0 -2019,11,21,1,15,0.0,0.0,0.0,10.5,0.0 -2019,11,21,1,30,0.0,0.0,0.0,10.5,0.0 -2019,11,21,1,45,0.0,0.0,0.0,10.5,0.0 -2019,11,21,2,0,0.0,0.0,0.0,9.9,0.0 -2019,11,21,2,15,0.0,0.0,0.0,9.9,0.0 -2019,11,21,2,30,0.0,0.0,0.0,9.9,0.0 -2019,11,21,2,45,0.0,0.0,0.0,9.9,0.0 -2019,11,21,3,0,0.0,0.0,0.0,9.4,0.0 -2019,11,21,3,15,0.0,0.0,0.0,9.4,0.0 -2019,11,21,3,30,0.0,0.0,0.0,9.4,0.0 -2019,11,21,3,45,0.0,0.0,0.0,9.4,0.0 -2019,11,21,4,0,0.0,0.0,0.0,9.3,0.2 -2019,11,21,4,15,0.0,0.0,0.0,9.3,0.2 -2019,11,21,4,30,0.0,0.0,0.0,9.3,0.2 -2019,11,21,4,45,0.0,0.0,0.0,9.3,0.2 -2019,11,21,5,0,0.0,0.0,0.0,8.8,2.0 -2019,11,21,5,15,0.0,0.0,0.0,8.8,2.0 -2019,11,21,5,30,0.0,0.0,0.0,8.8,2.0 -2019,11,21,5,45,0.0,0.0,0.0,8.8,2.0 -2019,11,21,6,0,200.0,-56.82158171095822,7.0,8.6,1.5 -2019,11,21,6,15,200.0,-46.682197623487035,7.0,8.6,1.5 -2019,11,21,6,30,200.0,-36.4765700266121,7.0,8.6,1.5 -2019,11,21,6,45,200.0,-26.248400984499597,7.0,8.6,1.5 -2019,11,21,7,0,401.0,13.801814380073886,60.0,11.4,1.3 -2019,11,21,7,15,401.0,34.13641849333548,60.0,11.4,1.3 -2019,11,21,7,30,401.0,54.25369246922479,60.0,11.4,1.3 -2019,11,21,7,45,401.0,74.06749105211699,60.0,11.4,1.3 -2019,11,21,8,0,497.0,153.5112352911757,112.0,14.2,0.0 -2019,11,21,8,15,497.0,177.00281836418662,112.0,14.2,0.0 -2019,11,21,8,30,497.0,199.80942411242967,112.0,14.2,0.0 -2019,11,21,8,45,497.0,221.83339114875693,112.0,14.2,0.0 -2019,11,21,9,0,632.0,300.5585890985259,134.0,16.3,0.2 -2019,11,21,9,15,632.0,326.219461059555,134.0,16.3,0.2 -2019,11,21,9,30,632.0,350.5401429671142,134.0,16.3,0.2 -2019,11,21,9,45,632.0,373.4164899274965,134.0,16.3,0.2 -2019,11,21,10,0,642.0,424.87634162475774,160.0,18.1,1.6 -2019,11,21,10,15,642.0,444.8884581562504,160.0,18.1,1.6 -2019,11,21,10,30,642.0,463.1553801667886,160.0,18.1,1.6 -2019,11,21,10,45,642.0,479.59888589193434,160.0,18.1,1.6 -2019,11,21,11,0,750.0,531.3604692940656,141.0,20.1,2.1 -2019,11,21,11,15,750.0,546.0725510427119,141.0,20.1,2.1 -2019,11,21,11,30,750.0,558.4364303064457,141.0,20.1,2.1 -2019,11,21,11,45,750.0,568.3991630561222,141.0,20.1,2.1 -2019,11,21,12,0,853.0,603.6468380020435,109.0,21.2,2.2 -2019,11,21,12,15,853.0,609.3823174585593,109.0,21.2,2.2 -2019,11,21,12,30,853.0,612.2771929484841,109.0,21.2,2.2 -2019,11,21,12,45,853.0,612.3190681705405,109.0,21.2,2.2 -2019,11,21,13,0,877.0,601.5900455570237,87.0,22.1,2.6 -2019,11,21,13,15,877.0,595.7785628941307,87.0,22.1,2.6 -2019,11,21,13,30,877.0,587.0708864244052,87.0,22.1,2.6 -2019,11,21,13,45,877.0,575.5043037553173,87.0,22.1,2.6 -2019,11,21,14,0,736.0,481.90018443605305,84.0,21.6,3.0 -2019,11,21,14,15,736.0,467.52949050689807,84.0,21.6,3.0 -2019,11,21,14,30,736.0,450.9142990185542,84.0,21.6,3.0 -2019,11,21,14,45,736.0,432.12575877178494,84.0,21.6,3.0 -2019,11,21,15,0,549.0,304.09936755983347,60.0,20.6,2.6 -2019,11,21,15,15,549.0,287.02896636697324,60.0,20.6,2.6 -2019,11,21,15,30,549.0,268.5372227143025,60.0,20.6,2.6 -2019,11,21,15,45,549.0,248.70332108704633,60.0,20.6,2.6 -2019,11,21,16,0,524.0,162.97957975881675,3.0,19.3,2.6 -2019,11,21,16,15,524.0,141.73511313395994,3.0,19.3,2.6 -2019,11,21,16,30,524.0,119.46784587173815,3.0,19.3,2.6 -2019,11,21,16,45,524.0,96.27312982910124,3.0,19.3,2.6 -2019,11,21,17,0,0.0,0.0,0.0,18.2,2.5 -2019,11,21,17,15,0.0,0.0,0.0,18.2,2.5 -2019,11,21,17,30,0.0,0.0,0.0,18.2,2.5 -2019,11,21,17,45,0.0,0.0,0.0,18.2,2.5 -2019,11,21,18,0,0.0,0.0,0.0,17.1,1.3 -2019,11,21,18,15,0.0,0.0,0.0,17.1,1.3 -2019,11,21,18,30,0.0,0.0,0.0,17.1,1.3 -2019,11,21,18,45,0.0,0.0,0.0,17.1,1.3 -2019,11,21,19,0,0.0,0.0,0.0,16.0,0.0 -2019,11,21,19,15,0.0,0.0,0.0,16.0,0.0 -2019,11,21,19,30,0.0,0.0,0.0,16.0,0.0 -2019,11,21,19,45,0.0,0.0,0.0,16.0,0.0 -2019,11,21,20,0,0.0,0.0,0.0,14.9,0.0 -2019,11,21,20,15,0.0,0.0,0.0,14.9,0.0 -2019,11,21,20,30,0.0,0.0,0.0,14.9,0.0 -2019,11,21,20,45,0.0,0.0,0.0,14.9,0.0 -2019,11,21,21,0,0.0,0.0,0.0,13.8,0.0 -2019,11,21,21,15,0.0,0.0,0.0,13.8,0.0 -2019,11,21,21,30,0.0,0.0,0.0,13.8,0.0 -2019,11,21,21,45,0.0,0.0,0.0,13.8,0.0 -2019,11,21,22,0,0.0,0.0,0.0,12.7,0.0 -2019,11,21,22,15,0.0,0.0,0.0,12.7,0.0 -2019,11,21,22,30,0.0,0.0,0.0,12.7,0.0 -2019,11,21,22,45,0.0,0.0,0.0,12.7,0.0 -2019,11,21,23,0,0.0,0.0,0.0,11.7,0.2 -2019,11,21,23,15,0.0,0.0,0.0,11.7,0.2 -2019,11,21,23,30,0.0,0.0,0.0,11.7,0.2 -2019,11,21,23,45,0.0,0.0,0.0,11.7,0.2 -2019,11,22,0,0,0.0,0.0,0.0,11.5,1.3 -2019,11,22,0,15,0.0,0.0,0.0,11.5,1.3 -2019,11,22,0,30,0.0,0.0,0.0,11.5,1.3 -2019,11,22,0,45,0.0,0.0,0.0,11.5,1.3 -2019,11,22,1,0,0.0,0.0,0.0,10.0,0.0 -2019,11,22,1,15,0.0,0.0,0.0,10.0,0.0 -2019,11,22,1,30,0.0,0.0,0.0,10.0,0.0 -2019,11,22,1,45,0.0,0.0,0.0,10.0,0.0 -2019,11,22,2,0,0.0,0.0,0.0,9.9,0.0 -2019,11,22,2,15,0.0,0.0,0.0,9.9,0.0 -2019,11,22,2,30,0.0,0.0,0.0,9.9,0.0 -2019,11,22,2,45,0.0,0.0,0.0,9.9,0.0 -2019,11,22,3,0,0.0,0.0,0.0,9.0,0.0 -2019,11,22,3,15,0.0,0.0,0.0,9.0,0.0 -2019,11,22,3,30,0.0,0.0,0.0,9.0,0.0 -2019,11,22,3,45,0.0,0.0,0.0,9.0,0.0 -2019,11,22,4,0,0.0,0.0,0.0,9.4,0.0 -2019,11,22,4,15,0.0,0.0,0.0,9.4,0.0 -2019,11,22,4,30,0.0,0.0,0.0,9.4,0.0 -2019,11,22,4,45,0.0,0.0,0.0,9.4,0.0 -2019,11,22,5,0,0.0,0.0,0.0,9.3,0.2 -2019,11,22,5,15,0.0,0.0,0.0,9.3,0.2 -2019,11,22,5,30,0.0,0.0,0.0,9.3,0.2 -2019,11,22,5,45,0.0,0.0,0.0,9.3,0.2 -2019,11,22,6,0,508.0,-162.9535638341696,0.0,9.2,2.1 -2019,11,22,6,15,508.0,-137.23310245522407,0.0,9.2,2.1 -2019,11,22,6,30,508.0,-111.34460191230883,0.0,9.2,2.1 -2019,11,22,6,45,508.0,-85.39892073922351,0.0,9.2,2.1 -2019,11,22,7,0,529.0,-11.967104075701727,50.0,12.1,1.9 -2019,11,22,7,15,529.0,14.823375287138106,50.0,12.1,1.9 -2019,11,22,7,30,529.0,41.32752605819599,50.0,12.1,1.9 -2019,11,22,7,45,529.0,67.43185339487889,50.0,12.1,1.9 -2019,11,22,8,0,723.0,136.80296296185944,78.0,15.4,0.0 -2019,11,22,8,15,723.0,170.93228461093156,78.0,15.4,0.0 -2019,11,22,8,30,723.0,204.06644934075013,78.0,15.4,0.0 -2019,11,22,8,45,723.0,236.0635715710926,78.0,15.4,0.0 -2019,11,22,9,0,819.0,308.8537397363185,95.0,18.6,0.2 -2019,11,22,9,15,819.0,342.0639554535789,95.0,18.6,0.2 -2019,11,22,9,30,819.0,373.53970163116594,95.0,18.6,0.2 -2019,11,22,9,45,819.0,403.1461942917029,95.0,18.6,0.2 -2019,11,22,10,0,868.0,458.8446588218367,103.0,20.9,1.5 -2019,11,22,10,15,868.0,485.86626646229996,103.0,20.9,1.5 -2019,11,22,10,30,868.0,510.5314036351195,103.0,20.9,1.5 -2019,11,22,10,45,868.0,532.7344504362603,103.0,20.9,1.5 -2019,11,22,11,0,885.0,563.1815576721449,105.0,23.1,1.3 -2019,11,22,11,15,885.0,580.5191824677147,105.0,23.1,1.3 -2019,11,22,11,30,885.0,595.0895405825387,105.0,23.1,1.3 -2019,11,22,11,45,885.0,606.8302395062871,105.0,23.1,1.3 -2019,11,22,12,0,873.0,607.7663799838567,104.0,25.0,0.4 -2019,11,22,12,15,873.0,613.628684911035,104.0,25.0,0.4 -2019,11,22,12,30,873.0,616.5875731743124,104.0,25.0,0.4 -2019,11,22,12,45,873.0,616.6303743598887,104.0,25.0,0.4 -2019,11,22,13,0,832.0,582.8164319761532,97.0,25.0,3.0 -2019,11,22,13,15,832.0,577.3103313649051,97.0,25.0,3.0 -2019,11,22,13,30,832.0,569.0602262688951,97.0,25.0,3.0 -2019,11,22,13,45,832.0,558.1014449047236,97.0,25.0,3.0 -2019,11,22,14,0,747.0,483.76471526333074,82.0,24.8,2.7 -2019,11,22,14,15,747.0,469.19825626787946,82.0,24.8,2.7 -2019,11,22,14,30,747.0,452.356724000219,82.0,24.8,2.7 -2019,11,22,14,45,747.0,433.3122364870788,82.0,24.8,2.7 -2019,11,22,15,0,578.0,312.4546017341379,57.0,23.9,2.9 -2019,11,22,15,15,578.0,294.5059146778,57.0,23.9,2.9 -2019,11,22,15,30,578.0,275.0627559495432,57.0,23.9,2.9 -2019,11,22,15,45,578.0,254.20838414000963,57.0,23.9,2.9 -2019,11,22,16,0,289.0,105.5160504354546,18.0,22.4,1.4 -2019,11,22,16,15,289.0,93.81443419588254,18.0,22.4,1.4 -2019,11,22,16,30,289.0,81.54945146849144,18.0,22.4,1.4 -2019,11,22,16,45,289.0,68.77362279227427,18.0,22.4,1.4 -2019,11,22,17,0,0.0,0.0,0.0,21.4,0.0 -2019,11,22,17,15,0.0,0.0,0.0,21.4,0.0 -2019,11,22,17,30,0.0,0.0,0.0,21.4,0.0 -2019,11,22,17,45,0.0,0.0,0.0,21.4,0.0 -2019,11,22,18,0,0.0,0.0,0.0,19.1,0.0 -2019,11,22,18,15,0.0,0.0,0.0,19.1,0.0 -2019,11,22,18,30,0.0,0.0,0.0,19.1,0.0 -2019,11,22,18,45,0.0,0.0,0.0,19.1,0.0 -2019,11,22,19,0,0.0,0.0,0.0,17.1,0.0 -2019,11,22,19,15,0.0,0.0,0.0,17.1,0.0 -2019,11,22,19,30,0.0,0.0,0.0,17.1,0.0 -2019,11,22,19,45,0.0,0.0,0.0,17.1,0.0 -2019,11,22,20,0,0.0,0.0,0.0,16.5,0.2 -2019,11,22,20,15,0.0,0.0,0.0,16.5,0.2 -2019,11,22,20,30,0.0,0.0,0.0,16.5,0.2 -2019,11,22,20,45,0.0,0.0,0.0,16.5,0.2 -2019,11,22,21,0,0.0,0.0,0.0,14.9,1.5 -2019,11,22,21,15,0.0,0.0,0.0,14.9,1.5 -2019,11,22,21,30,0.0,0.0,0.0,14.9,1.5 -2019,11,22,21,45,0.0,0.0,0.0,14.9,1.5 -2019,11,22,22,0,0.0,0.0,0.0,13.9,1.6 -2019,11,22,22,15,0.0,0.0,0.0,13.9,1.6 -2019,11,22,22,30,0.0,0.0,0.0,13.9,1.6 -2019,11,22,22,45,0.0,0.0,0.0,13.9,1.6 -2019,11,22,23,0,0.0,0.0,0.0,13.8,2.5 -2019,11,22,23,15,0.0,0.0,0.0,13.8,2.5 -2019,11,22,23,30,0.0,0.0,0.0,13.8,2.5 -2019,11,22,23,45,0.0,0.0,0.0,13.8,2.5 -2019,11,23,0,0,0.0,0.0,0.0,12.7,2.0 -2019,11,23,0,15,0.0,0.0,0.0,12.7,2.0 -2019,11,23,0,30,0.0,0.0,0.0,12.7,2.0 -2019,11,23,0,45,0.0,0.0,0.0,12.7,2.0 -2019,11,23,1,0,0.0,0.0,0.0,12.1,1.6 -2019,11,23,1,15,0.0,0.0,0.0,12.1,1.6 -2019,11,23,1,30,0.0,0.0,0.0,12.1,1.6 -2019,11,23,1,45,0.0,0.0,0.0,12.1,1.6 -2019,11,23,2,0,0.0,0.0,0.0,11.2,2.2 -2019,11,23,2,15,0.0,0.0,0.0,11.2,2.2 -2019,11,23,2,30,0.0,0.0,0.0,11.2,2.2 -2019,11,23,2,45,0.0,0.0,0.0,11.2,2.2 -2019,11,23,3,0,0.0,0.0,0.0,11.7,3.1 -2019,11,23,3,15,0.0,0.0,0.0,11.7,3.1 -2019,11,23,3,30,0.0,0.0,0.0,11.7,3.1 -2019,11,23,3,45,0.0,0.0,0.0,11.7,3.1 -2019,11,23,4,0,0.0,0.0,0.0,11.8,3.0 -2019,11,23,4,15,0.0,0.0,0.0,11.8,3.0 -2019,11,23,4,30,0.0,0.0,0.0,11.8,3.0 -2019,11,23,4,45,0.0,0.0,0.0,11.8,3.0 -2019,11,23,5,0,0.0,0.0,0.0,12.1,2.6 -2019,11,23,5,15,0.0,0.0,0.0,12.1,2.6 -2019,11,23,5,30,0.0,0.0,0.0,12.1,2.6 -2019,11,23,5,45,0.0,0.0,0.0,12.1,2.6 -2019,11,23,6,0,493.0,-158.9372631948882,0.0,11.6,2.5 -2019,11,23,6,15,493.0,-134.00817127274502,0.0,11.6,2.5 -2019,11,23,6,30,493.0,-108.9162104306628,0.0,11.6,2.5 -2019,11,23,6,45,493.0,-83.7688282971554,0.0,11.6,2.5 -2019,11,23,7,0,689.0,-44.000377420273594,38.0,15.6,2.2 -2019,11,23,7,15,689.0,-9.151520960296196,38.0,15.6,2.2 -2019,11,23,7,30,689.0,25.324881395360862,38.0,15.6,2.2 -2019,11,23,7,45,689.0,59.281196398897166,38.0,15.6,2.2 -2019,11,23,8,0,919.0,121.78909208532804,49.0,20.6,2.7 -2019,11,23,8,15,919.0,165.11516913133602,49.0,20.6,2.7 -2019,11,23,8,30,919.0,207.17792644893618,49.0,20.6,2.7 -2019,11,23,8,45,919.0,247.7972448537027,49.0,20.6,2.7 -2019,11,23,9,0,1029.0,319.2626361128338,53.0,25.3,3.0 -2019,11,23,9,15,1029.0,360.9349549058347,53.0,25.3,3.0 -2019,11,23,9,30,1029.0,400.4308540028786,53.0,25.3,3.0 -2019,11,23,9,45,1029.0,437.5812059005119,53.0,25.3,3.0 -2019,11,23,10,0,1084.0,494.6345859707632,53.0,27.9,2.2 -2019,11,23,10,15,1084.0,528.3373281325715,53.0,27.9,2.2 -2019,11,23,10,30,1084.0,559.1009588381096,53.0,27.9,2.2 -2019,11,23,10,45,1084.0,586.7937434977781,53.0,27.9,2.2 -2019,11,23,11,0,1102.0,620.5677133639505,53.0,28.5,2.7 -2019,11,23,11,15,1102.0,642.1288881973364,53.0,28.5,2.7 -2019,11,23,11,30,1102.0,660.2486734852868,53.0,28.5,2.7 -2019,11,23,11,45,1102.0,674.8494775253981,53.0,28.5,2.7 -2019,11,23,12,0,1090.0,678.9772843940142,53.0,30.1,3.4 -2019,11,23,12,15,1090.0,686.2874153299001,53.0,30.1,3.4 -2019,11,23,12,30,1090.0,689.9770665674084,53.0,30.1,3.4 -2019,11,23,12,45,1090.0,690.0304384534943,53.0,30.1,3.4 -2019,11,23,13,0,1044.0,659.7146639898863,53.0,30.6,2.1 -2019,11,23,13,15,1044.0,652.8143983129803,53.0,30.6,2.1 -2019,11,23,13,30,1044.0,642.4753360538253,53.0,30.6,2.1 -2019,11,23,13,45,1044.0,628.7417506642968,53.0,30.6,2.1 -2019,11,23,14,0,948.0,557.3002720203524,50.0,30.4,2.2 -2019,11,23,14,15,948.0,538.8379541786414,50.0,30.4,2.2 -2019,11,23,14,30,948.0,517.4920854425211,50.0,30.4,2.2 -2019,11,23,14,45,948.0,493.35407209899716,50.0,30.4,2.2 -2019,11,23,15,0,751.0,370.9704482036216,41.0,29.0,2.5 -2019,11,23,15,15,751.0,347.67938674869004,41.0,29.0,2.5 -2019,11,23,15,30,751.0,322.4490284836872,41.0,29.0,2.5 -2019,11,23,15,45,751.0,295.3874136761392,41.0,29.0,2.5 -2019,11,23,16,0,375.0,127.655005483635,15.0,27.3,2.0 -2019,11,23,16,15,375.0,112.4906564017888,15.0,27.3,2.0 -2019,11,23,16,30,375.0,96.59622987530629,15.0,27.3,2.0 -2019,11,23,16,45,375.0,80.03978827873048,15.0,27.3,2.0 -2019,11,23,17,0,0.0,0.0,0.0,25.8,1.3 -2019,11,23,17,15,0.0,0.0,0.0,25.8,1.3 -2019,11,23,17,30,0.0,0.0,0.0,25.8,1.3 -2019,11,23,17,45,0.0,0.0,0.0,25.8,1.3 -2019,11,23,18,0,0.0,0.0,0.0,23.2,0.2 -2019,11,23,18,15,0.0,0.0,0.0,23.2,0.2 -2019,11,23,18,30,0.0,0.0,0.0,23.2,0.2 -2019,11,23,18,45,0.0,0.0,0.0,23.2,0.2 -2019,11,23,19,0,0.0,0.0,0.0,21.9,1.6 -2019,11,23,19,15,0.0,0.0,0.0,21.9,1.6 -2019,11,23,19,30,0.0,0.0,0.0,21.9,1.6 -2019,11,23,19,45,0.0,0.0,0.0,21.9,1.6 -2019,11,23,20,0,0.0,0.0,0.0,20.0,2.6 -2019,11,23,20,15,0.0,0.0,0.0,20.0,2.6 -2019,11,23,20,30,0.0,0.0,0.0,20.0,2.6 -2019,11,23,20,45,0.0,0.0,0.0,20.0,2.6 -2019,11,23,21,0,0.0,0.0,0.0,19.8,2.5 -2019,11,23,21,15,0.0,0.0,0.0,19.8,2.5 -2019,11,23,21,30,0.0,0.0,0.0,19.8,2.5 -2019,11,23,21,45,0.0,0.0,0.0,19.8,2.5 -2019,11,23,22,0,0.0,0.0,0.0,18.2,2.1 -2019,11,23,22,15,0.0,0.0,0.0,18.2,2.1 -2019,11,23,22,30,0.0,0.0,0.0,18.2,2.1 -2019,11,23,22,45,0.0,0.0,0.0,18.2,2.1 -2019,11,23,23,0,0.0,0.0,0.0,17.7,1.9 -2019,11,23,23,15,0.0,0.0,0.0,17.7,1.9 -2019,11,23,23,30,0.0,0.0,0.0,17.7,1.9 -2019,11,23,23,45,0.0,0.0,0.0,17.7,1.9 -2019,11,24,0,0,0.0,0.0,0.0,16.4,0.2 -2019,11,24,0,15,0.0,0.0,0.0,16.4,0.2 -2019,11,24,0,30,0.0,0.0,0.0,16.4,0.2 -2019,11,24,0,45,0.0,0.0,0.0,16.4,0.2 -2019,11,24,1,0,0.0,0.0,0.0,14.3,1.6 -2019,11,24,1,15,0.0,0.0,0.0,14.3,1.6 -2019,11,24,1,30,0.0,0.0,0.0,14.3,1.6 -2019,11,24,1,45,0.0,0.0,0.0,14.3,1.6 -2019,11,24,2,0,0.0,0.0,0.0,13.0,2.1 -2019,11,24,2,15,0.0,0.0,0.0,13.0,2.1 -2019,11,24,2,30,0.0,0.0,0.0,13.0,2.1 -2019,11,24,2,45,0.0,0.0,0.0,13.0,2.1 -2019,11,24,3,0,0.0,0.0,0.0,11.2,2.0 -2019,11,24,3,15,0.0,0.0,0.0,11.2,2.0 -2019,11,24,3,30,0.0,0.0,0.0,11.2,2.0 -2019,11,24,3,45,0.0,0.0,0.0,11.2,2.0 -2019,11,24,4,0,0.0,0.0,0.0,12.1,1.6 -2019,11,24,4,15,0.0,0.0,0.0,12.1,1.6 -2019,11,24,4,30,0.0,0.0,0.0,12.1,1.6 -2019,11,24,4,45,0.0,0.0,0.0,12.1,1.6 -2019,11,24,5,0,0.0,0.0,0.0,11.8,2.1 -2019,11,24,5,15,0.0,0.0,0.0,11.8,2.1 -2019,11,24,5,30,0.0,0.0,0.0,11.8,2.1 -2019,11,24,5,45,0.0,0.0,0.0,11.8,2.1 -2019,11,24,6,0,467.0,-151.2834540232914,0.0,13.1,2.0 -2019,11,24,6,15,467.0,-127.69863003161169,0.0,13.1,2.0 -2019,11,24,6,30,467.0,-103.95971960860626,0.0,13.1,2.0 -2019,11,24,6,45,467.0,-80.16837641317011,0.0,13.1,2.0 -2019,11,24,7,0,721.0,-52.11668328004869,35.0,15.5,1.3 -2019,11,24,7,15,721.0,-15.694934567034139,35.0,15.5,1.3 -2019,11,24,7,30,721.0,20.337549441978766,35.0,15.5,1.3 -2019,11,24,7,45,721.0,55.826472118656,35.0,15.5,1.3 -2019,11,24,8,0,959.0,117.9798197023306,44.0,19.4,0.0 -2019,11,24,8,15,959.0,163.13511458341478,44.0,19.4,0.0 -2019,11,24,8,30,959.0,206.97375264360207,44.0,19.4,0.0 -2019,11,24,8,45,959.0,249.3080101044881,44.0,19.4,0.0 -2019,11,24,9,0,1072.0,319.93793613039617,45.0,23.6,0.0 -2019,11,24,9,15,1072.0,363.2973394021931,45.0,23.6,0.0 -2019,11,24,9,30,1072.0,404.3922116371062,45.0,23.6,0.0 -2019,11,24,9,45,1072.0,443.04657828322615,45.0,23.6,0.0 -2019,11,24,10,0,1126.0,499.9616368933645,44.0,25.9,0.0 -2019,11,24,10,15,1126.0,534.9263980122705,44.0,25.9,0.0 -2019,11,24,10,30,1126.0,566.8419909217486,44.0,25.9,0.0 -2019,11,24,10,45,1126.0,595.5717481531894,44.0,25.9,0.0 -2019,11,24,11,0,1145.0,629.7287548174043,43.0,28.5,0.0 -2019,11,24,11,15,1145.0,652.1032132730385,43.0,28.5,0.0 -2019,11,24,11,30,1145.0,670.9064735908614,43.0,28.5,0.0 -2019,11,24,11,45,1145.0,686.0580173234632,43.0,28.5,0.0 -2019,11,24,12,0,1133.0,691.6336483359463,44.0,30.1,0.2 -2019,11,24,12,15,1133.0,699.2226524299243,44.0,30.1,0.2 -2019,11,24,12,30,1133.0,703.053059654143,44.0,30.1,0.2 -2019,11,24,12,45,1133.0,703.1084676168131,44.0,30.1,0.2 -2019,11,24,13,0,1087.0,673.7797446161542,45.0,31.0,2.2 -2019,11,24,13,15,1087.0,666.6042626524473,45.0,31.0,2.2 -2019,11,24,13,30,1087.0,655.8528281083397,45.0,31.0,2.2 -2019,11,24,13,45,1087.0,641.5714802771395,45.0,31.0,2.2 -2019,11,24,14,0,990.0,571.1694207377594,44.0,30.5,2.6 -2019,11,24,14,15,990.0,551.9132778500075,44.0,30.5,2.6 -2019,11,24,14,30,990.0,529.649599910432,44.0,30.5,2.6 -2019,11,24,14,45,990.0,504.473723405953,44.0,30.5,2.6 -2019,11,24,15,0,788.0,382.24731593960416,38.0,29.1,2.5 -2019,11,24,15,15,788.0,357.83933918345815,38.0,29.1,2.5 -2019,11,24,15,30,788.0,331.3990672674251,38.0,29.1,2.5 -2019,11,24,15,45,788.0,303.0397214950342,38.0,29.1,2.5 -2019,11,24,16,0,784.0,233.69044276133468,0.0,27.3,2.0 -2019,11,24,16,15,784.0,202.02651489394492,0.0,27.3,2.0 -2019,11,24,16,30,784.0,168.83814839619882,0.0,27.3,2.0 -2019,11,24,16,45,784.0,134.26746094861028,0.0,27.3,2.0 -2019,11,24,17,0,0.0,0.0,0.0,25.3,1.3 -2019,11,24,17,15,0.0,0.0,0.0,25.3,1.3 -2019,11,24,17,30,0.0,0.0,0.0,25.3,1.3 -2019,11,24,17,45,0.0,0.0,0.0,25.3,1.3 -2019,11,24,18,0,0.0,0.0,0.0,23.1,0.2 -2019,11,24,18,15,0.0,0.0,0.0,23.1,0.2 -2019,11,24,18,30,0.0,0.0,0.0,23.1,0.2 -2019,11,24,18,45,0.0,0.0,0.0,23.1,0.2 -2019,11,24,19,0,0.0,0.0,0.0,21.4,1.3 -2019,11,24,19,15,0.0,0.0,0.0,21.4,1.3 -2019,11,24,19,30,0.0,0.0,0.0,21.4,1.3 -2019,11,24,19,45,0.0,0.0,0.0,21.4,1.3 -2019,11,24,20,0,0.0,0.0,0.0,19.1,0.2 -2019,11,24,20,15,0.0,0.0,0.0,19.1,0.2 -2019,11,24,20,30,0.0,0.0,0.0,19.1,0.2 -2019,11,24,20,45,0.0,0.0,0.0,19.1,0.2 -2019,11,24,21,0,0.0,0.0,0.0,17.2,1.5 -2019,11,24,21,15,0.0,0.0,0.0,17.2,1.5 -2019,11,24,21,30,0.0,0.0,0.0,17.2,1.5 -2019,11,24,21,45,0.0,0.0,0.0,17.2,1.5 -2019,11,24,22,0,0.0,0.0,0.0,17.0,1.3 -2019,11,24,22,15,0.0,0.0,0.0,17.0,1.3 -2019,11,24,22,30,0.0,0.0,0.0,17.0,1.3 -2019,11,24,22,45,0.0,0.0,0.0,17.0,1.3 -2019,11,24,23,0,0.0,0.0,0.0,15.6,0.0 -2019,11,24,23,15,0.0,0.0,0.0,15.6,0.0 -2019,11,24,23,30,0.0,0.0,0.0,15.6,0.0 -2019,11,24,23,45,0.0,0.0,0.0,15.6,0.0 -2019,11,25,0,0,0.0,0.0,0.0,15.3,0.0 -2019,11,25,0,15,0.0,0.0,0.0,15.3,0.0 -2019,11,25,0,30,0.0,0.0,0.0,15.3,0.0 -2019,11,25,0,45,0.0,0.0,0.0,15.3,0.0 -2019,11,25,1,0,0.0,0.0,0.0,13.1,0.2 -2019,11,25,1,15,0.0,0.0,0.0,13.1,0.2 -2019,11,25,1,30,0.0,0.0,0.0,13.1,0.2 -2019,11,25,1,45,0.0,0.0,0.0,13.1,0.2 -2019,11,25,2,0,0.0,0.0,0.0,11.6,1.3 -2019,11,25,2,15,0.0,0.0,0.0,11.6,1.3 -2019,11,25,2,30,0.0,0.0,0.0,11.6,1.3 -2019,11,25,2,45,0.0,0.0,0.0,11.6,1.3 -2019,11,25,3,0,0.0,0.0,0.0,11.1,0.2 -2019,11,25,3,15,0.0,0.0,0.0,11.1,0.2 -2019,11,25,3,30,0.0,0.0,0.0,11.1,0.2 -2019,11,25,3,45,0.0,0.0,0.0,11.1,0.2 -2019,11,25,4,0,0.0,0.0,0.0,11.0,1.3 -2019,11,25,4,15,0.0,0.0,0.0,11.0,1.3 -2019,11,25,4,30,0.0,0.0,0.0,11.0,1.3 -2019,11,25,4,45,0.0,0.0,0.0,11.0,1.3 -2019,11,25,5,0,0.0,0.0,0.0,10.1,0.0 -2019,11,25,5,15,0.0,0.0,0.0,10.1,0.0 -2019,11,25,5,30,0.0,0.0,0.0,10.1,0.0 -2019,11,25,5,45,0.0,0.0,0.0,10.1,0.0 -2019,11,25,6,0,435.0,-141.57207251013907,0.0,10.8,0.0 -2019,11,25,6,15,435.0,-119.63020275940455,0.0,10.8,0.0 -2019,11,25,6,30,435.0,-97.5449804694397,0.0,10.8,0.0 -2019,11,25,6,45,435.0,-75.41097795267518,0.0,10.8,0.0 -2019,11,25,7,0,553.0,-21.787599890797324,46.0,12.7,0.0 -2019,11,25,7,15,553.0,6.113368497143767,46.0,12.7,0.0 -2019,11,25,7,30,553.0,33.7161397203504,46.0,12.7,0.0 -2019,11,25,7,45,553.0,60.90251447479046,46.0,12.7,0.0 -2019,11,25,8,0,760.0,127.11142524923753,70.0,16.4,0.0 -2019,11,25,8,15,760.0,162.85288488877947,70.0,16.4,0.0 -2019,11,25,8,30,760.0,197.55218022074348,70.0,16.4,0.0 -2019,11,25,8,45,760.0,231.06072353538528,70.0,16.4,0.0 -2019,11,25,9,0,862.0,303.1692006622259,84.0,19.2,0.2 -2019,11,25,9,15,862.0,337.99205721892156,84.0,19.2,0.2 -2019,11,25,9,30,862.0,370.99622086208103,84.0,19.2,0.2 -2019,11,25,9,45,862.0,402.0403626960924,84.0,19.2,0.2 -2019,11,25,10,0,913.0,457.52120922957175,90.0,21.9,1.6 -2019,11,25,10,15,913.0,485.8371874265829,90.0,21.9,1.6 -2019,11,25,10,30,913.0,511.68381712029526,90.0,21.9,1.6 -2019,11,25,10,45,913.0,534.9504190743135,90.0,21.9,1.6 -2019,11,25,11,0,931.0,566.7155357506524,92.0,23.4,2.2 -2019,11,25,11,15,931.0,584.8859715551555,92.0,23.4,2.2 -2019,11,25,11,30,931.0,600.1562153109019,92.0,23.4,2.2 -2019,11,25,11,45,931.0,612.4608774897994,92.0,23.4,2.2 -2019,11,25,12,0,920.0,614.4881699551062,91.0,24.0,2.7 -2019,11,25,12,15,920.0,620.642932771606,91.0,24.0,2.7 -2019,11,25,12,30,920.0,623.7494336594341,91.0,24.0,2.7 -2019,11,25,12,45,920.0,623.7943701048697,91.0,24.0,2.7 -2019,11,25,13,0,877.0,591.0162076870947,86.0,24.4,3.0 -2019,11,25,13,15,877.0,585.2340525042833,86.0,24.4,3.0 -2019,11,25,13,30,877.0,576.5703190733723,86.0,24.4,3.0 -2019,11,25,13,45,877.0,565.0621068309929,86.0,24.4,3.0 -2019,11,25,14,0,789.0,492.12384368779436,74.0,24.2,2.6 -2019,11,25,14,15,789.0,476.7960472074713,74.0,24.2,2.6 -2019,11,25,14,30,789.0,459.0742673915186,74.0,24.2,2.6 -2019,11,25,14,45,789.0,439.03439162180507,74.0,24.2,2.6 -2019,11,25,15,0,612.0,318.8688048649534,53.0,23.3,2.5 -2019,11,25,15,15,612.0,299.93553598803123,53.0,23.3,2.5 -2019,11,25,15,30,612.0,279.4258156467446,53.0,23.3,2.5 -2019,11,25,15,45,612.0,257.4274696123041,53.0,23.3,2.5 -2019,11,25,16,0,306.0,107.5173490898384,17.0,21.9,2.0 -2019,11,25,16,15,306.0,95.17383639373051,17.0,21.9,2.0 -2019,11,25,16,30,306.0,82.23605353420355,17.0,21.9,2.0 -2019,11,25,16,45,306.0,68.75940208370662,17.0,21.9,2.0 -2019,11,25,17,0,0.0,0.0,0.0,20.8,1.6 -2019,11,25,17,15,0.0,0.0,0.0,20.8,1.6 -2019,11,25,17,30,0.0,0.0,0.0,20.8,1.6 -2019,11,25,17,45,0.0,0.0,0.0,20.8,1.6 -2019,11,25,18,0,0.0,0.0,0.0,18.0,2.1 -2019,11,25,18,15,0.0,0.0,0.0,18.0,2.1 -2019,11,25,18,30,0.0,0.0,0.0,18.0,2.1 -2019,11,25,18,45,0.0,0.0,0.0,18.0,2.1 -2019,11,25,19,0,0.0,0.0,0.0,15.5,2.0 -2019,11,25,19,15,0.0,0.0,0.0,15.5,2.0 -2019,11,25,19,30,0.0,0.0,0.0,15.5,2.0 -2019,11,25,19,45,0.0,0.0,0.0,15.5,2.0 -2019,11,25,20,0,0.0,0.0,0.0,14.8,1.3 -2019,11,25,20,15,0.0,0.0,0.0,14.8,1.3 -2019,11,25,20,30,0.0,0.0,0.0,14.8,1.3 -2019,11,25,20,45,0.0,0.0,0.0,14.8,1.3 -2019,11,25,21,0,0.0,0.0,0.0,13.3,0.0 -2019,11,25,21,15,0.0,0.0,0.0,13.3,0.0 -2019,11,25,21,30,0.0,0.0,0.0,13.3,0.0 -2019,11,25,21,45,0.0,0.0,0.0,13.3,0.0 -2019,11,25,22,0,0.0,0.0,0.0,13.2,0.0 -2019,11,25,22,15,0.0,0.0,0.0,13.2,0.0 -2019,11,25,22,30,0.0,0.0,0.0,13.2,0.0 -2019,11,25,22,45,0.0,0.0,0.0,13.2,0.0 -2019,11,25,23,0,0.0,0.0,0.0,12.0,1.2 -2019,11,25,23,15,0.0,0.0,0.0,12.0,1.2 -2019,11,25,23,30,0.0,0.0,0.0,12.0,1.2 -2019,11,25,23,45,0.0,0.0,0.0,12.0,1.2 -2019,11,26,0,0,0.0,0.0,0.0,11.7,1.6 -2019,11,26,0,15,0.0,0.0,0.0,11.7,1.6 -2019,11,26,0,30,0.0,0.0,0.0,11.7,1.6 -2019,11,26,0,45,0.0,0.0,0.0,11.7,1.6 -2019,11,26,1,0,0.0,0.0,0.0,11.7,2.0 -2019,11,26,1,15,0.0,0.0,0.0,11.7,2.0 -2019,11,26,1,30,0.0,0.0,0.0,11.7,2.0 -2019,11,26,1,45,0.0,0.0,0.0,11.7,2.0 -2019,11,26,2,0,0.0,0.0,0.0,11.8,1.5 -2019,11,26,2,15,0.0,0.0,0.0,11.8,1.5 -2019,11,26,2,30,0.0,0.0,0.0,11.8,1.5 -2019,11,26,2,45,0.0,0.0,0.0,11.8,1.5 -2019,11,26,3,0,0.0,0.0,0.0,12.1,0.2 -2019,11,26,3,15,0.0,0.0,0.0,12.1,0.2 -2019,11,26,3,30,0.0,0.0,0.0,12.1,0.2 -2019,11,26,3,45,0.0,0.0,0.0,12.1,0.2 -2019,11,26,4,0,0.0,0.0,0.0,11.8,2.0 -2019,11,26,4,15,0.0,0.0,0.0,11.8,2.0 -2019,11,26,4,30,0.0,0.0,0.0,11.8,2.0 -2019,11,26,4,45,0.0,0.0,0.0,11.8,2.0 -2019,11,26,5,0,0.0,0.0,0.0,12.1,1.5 -2019,11,26,5,15,0.0,0.0,0.0,12.1,1.5 -2019,11,26,5,30,0.0,0.0,0.0,12.1,1.5 -2019,11,26,5,45,0.0,0.0,0.0,12.1,1.5 -2019,11,26,6,0,1.0,5.673095362796571,6.0,11.8,0.0 -2019,11,26,6,15,1.0,5.72347627791453,6.0,11.8,0.0 -2019,11,26,6,30,1.0,5.774186346025966,6.0,11.8,0.0 -2019,11,26,6,45,1.0,5.825008418834073,6.0,11.8,0.0 -2019,11,26,7,0,3.0,22.62717460526222,23.0,12.0,0.0 -2019,11,26,7,15,3.0,22.77835555748812,23.0,12.0,0.0 -2019,11,26,7,30,3.0,22.927920733132762,23.0,12.0,0.0 -2019,11,26,7,45,3.0,23.075229671152375,23.0,12.0,0.0 -2019,11,26,8,0,1.0,45.07321719068636,45.0,12.2,0.0 -2019,11,26,8,15,1.0,45.120189333033714,45.0,12.2,0.0 -2019,11,26,8,30,1.0,45.16579184216803,45.0,12.2,0.0 -2019,11,26,8,45,1.0,45.20982944114416,45.0,12.2,0.0 -2019,11,26,9,0,1.0,63.25211355420252,63.0,12.4,0.3 -2019,11,26,9,15,1.0,63.29246311427942,63.0,12.4,0.3 -2019,11,26,9,30,1.0,63.33070533836404,63.0,12.4,0.3 -2019,11,26,9,45,1.0,63.36667646738178,63.0,12.4,0.3 -2019,11,26,10,0,1.0,103.40022246743581,103.0,13.5,0.5 -2019,11,26,10,15,1.0,103.43119968940383,103.0,13.5,0.5 -2019,11,26,10,30,1.0,103.45947548406565,103.0,13.5,0.5 -2019,11,26,10,45,1.0,103.48492877012754,103.0,13.5,0.5 -2019,11,26,11,0,462.0,445.44215535245746,211.0,16.4,1.6 -2019,11,26,11,15,462.0,454.4483082193757,211.0,16.4,1.6 -2019,11,26,11,30,462.0,462.01698467045316,211.0,16.4,1.6 -2019,11,26,11,45,462.0,468.11577447116207,211.0,16.4,1.6 -2019,11,26,12,0,793.0,571.2268818228295,122.0,18.6,2.2 -2019,11,26,12,15,793.0,576.525691945846,122.0,18.6,2.2 -2019,11,26,12,30,793.0,579.2001667944064,122.0,18.6,2.2 -2019,11,26,12,45,793.0,579.238853856616,122.0,18.6,2.2 -2019,11,26,13,0,986.0,628.2920620983299,63.0,20.7,2.6 -2019,11,26,13,15,986.0,621.7990121945107,63.0,20.7,2.6 -2019,11,26,13,30,986.0,612.0701045914218,63.0,20.7,2.6 -2019,11,26,13,45,986.0,599.1469999650284,63.0,20.7,2.6 -2019,11,26,14,0,590.0,416.2070708414461,105.0,20.9,2.5 -2019,11,26,14,15,590.0,404.75889188297685,105.0,20.9,2.5 -2019,11,26,14,30,590.0,391.52267054770124,105.0,20.9,2.5 -2019,11,26,14,45,590.0,376.5550863674383,105.0,20.9,2.5 -2019,11,26,15,0,483.0,271.68893637212386,63.0,20.1,2.1 -2019,11,26,15,15,483.0,256.7643265155322,63.0,20.1,2.1 -2019,11,26,15,30,483.0,240.59704043559853,63.0,20.1,2.1 -2019,11,26,15,45,483.0,223.25630893336387,63.0,20.1,2.1 -2019,11,26,16,0,427.0,129.37390795191902,4.0,18.8,2.1 -2019,11,26,16,15,427.0,112.17000862045454,4.0,18.8,2.1 -2019,11,26,16,30,427.0,94.1378390616359,4.0,18.8,2.1 -2019,11,26,16,45,427.0,75.35461579386306,4.0,18.8,2.1 -2019,11,26,17,0,0.0,0.0,0.0,18.1,1.9 -2019,11,26,17,15,0.0,0.0,0.0,18.1,1.9 -2019,11,26,17,30,0.0,0.0,0.0,18.1,1.9 -2019,11,26,17,45,0.0,0.0,0.0,18.1,1.9 -2019,11,26,18,0,0.0,0.0,0.0,16.6,0.0 -2019,11,26,18,15,0.0,0.0,0.0,16.6,0.0 -2019,11,26,18,30,0.0,0.0,0.0,16.6,0.0 -2019,11,26,18,45,0.0,0.0,0.0,16.6,0.0 -2019,11,26,19,0,0.0,0.0,0.0,15.5,0.0 -2019,11,26,19,15,0.0,0.0,0.0,15.5,0.0 -2019,11,26,19,30,0.0,0.0,0.0,15.5,0.0 -2019,11,26,19,45,0.0,0.0,0.0,15.5,0.0 -2019,11,26,20,0,0.0,0.0,0.0,14.3,0.0 -2019,11,26,20,15,0.0,0.0,0.0,14.3,0.0 -2019,11,26,20,30,0.0,0.0,0.0,14.3,0.0 -2019,11,26,20,45,0.0,0.0,0.0,14.3,0.0 -2019,11,26,21,0,0.0,0.0,0.0,13.2,0.0 -2019,11,26,21,15,0.0,0.0,0.0,13.2,0.0 -2019,11,26,21,30,0.0,0.0,0.0,13.2,0.0 -2019,11,26,21,45,0.0,0.0,0.0,13.2,0.0 -2019,11,26,22,0,0.0,0.0,0.0,12.1,0.0 -2019,11,26,22,15,0.0,0.0,0.0,12.1,0.0 -2019,11,26,22,30,0.0,0.0,0.0,12.1,0.0 -2019,11,26,22,45,0.0,0.0,0.0,12.1,0.0 -2019,11,26,23,0,0.0,0.0,0.0,11.7,0.0 -2019,11,26,23,15,0.0,0.0,0.0,11.7,0.0 -2019,11,26,23,30,0.0,0.0,0.0,11.7,0.0 -2019,11,26,23,45,0.0,0.0,0.0,11.7,0.0 -2019,11,27,0,0,0.0,0.0,0.0,11.5,0.0 -2019,11,27,0,15,0.0,0.0,0.0,11.5,0.0 -2019,11,27,0,30,0.0,0.0,0.0,11.5,0.0 -2019,11,27,0,45,0.0,0.0,0.0,11.5,0.0 -2019,11,27,1,0,0.0,0.0,0.0,9.9,0.2 -2019,11,27,1,15,0.0,0.0,0.0,9.9,0.2 -2019,11,27,1,30,0.0,0.0,0.0,9.9,0.2 -2019,11,27,1,45,0.0,0.0,0.0,9.9,0.2 -2019,11,27,2,0,0.0,0.0,0.0,9.4,1.3 -2019,11,27,2,15,0.0,0.0,0.0,9.4,1.3 -2019,11,27,2,30,0.0,0.0,0.0,9.4,1.3 -2019,11,27,2,45,0.0,0.0,0.0,9.4,1.3 -2019,11,27,3,0,0.0,0.0,0.0,9.3,0.0 -2019,11,27,3,15,0.0,0.0,0.0,9.3,0.0 -2019,11,27,3,30,0.0,0.0,0.0,9.3,0.0 -2019,11,27,3,45,0.0,0.0,0.0,9.3,0.0 -2019,11,27,4,0,0.0,0.0,0.0,8.9,0.0 -2019,11,27,4,15,0.0,0.0,0.0,8.9,0.0 -2019,11,27,4,30,0.0,0.0,0.0,8.9,0.0 -2019,11,27,4,45,0.0,0.0,0.0,8.9,0.0 -2019,11,27,5,0,0.0,0.0,0.0,8.9,0.2 -2019,11,27,5,15,0.0,0.0,0.0,8.9,0.2 -2019,11,27,5,30,0.0,0.0,0.0,8.9,0.2 -2019,11,27,5,45,0.0,0.0,0.0,8.9,0.2 -2019,11,27,6,0,2.0,5.343395767856069,6.0,9.0,1.5 -2019,11,27,6,15,2.0,5.44404058836458,6.0,9.0,1.5 -2019,11,27,6,30,2.0,5.545342950401874,6.0,9.0,1.5 -2019,11,27,6,45,2.0,5.646869061701487,6.0,9.0,1.5 -2019,11,27,7,0,3.0,23.62227625780239,24.0,9.8,1.3 -2019,11,27,7,15,3.0,23.77328165106943,24.0,9.8,1.3 -2019,11,27,7,30,3.0,23.922673144076594,24.0,9.8,1.3 -2019,11,27,7,45,3.0,24.06981101951584,24.0,9.8,1.3 -2019,11,27,8,0,3.0,64.21406521041551,64.0,13.1,0.0 -2019,11,27,8,15,3.0,64.35481799818388,64.0,13.1,0.0 -2019,11,27,8,30,3.0,64.49146665777495,64.0,13.1,0.0 -2019,11,27,8,45,3.0,64.62342603864967,64.0,13.1,0.0 -2019,11,27,9,0,7.0,123.75030583112087,122.0,15.3,0.0 -2019,11,27,9,15,7.0,124.03242476002681,122.0,15.3,0.0 -2019,11,27,9,30,7.0,124.29980946700182,122.0,15.3,0.0 -2019,11,27,9,45,7.0,124.55131496968096,122.0,15.3,0.0 -2019,11,27,10,0,22.0,203.75557346051127,195.0,17.5,0.0 -2019,11,27,10,15,22.0,204.4362809528773,195.0,17.5,0.0 -2019,11,27,10,30,22.0,205.05762605925182,195.0,17.5,0.0 -2019,11,27,10,45,22.0,205.61694808449866,195.0,17.5,0.0 -2019,11,27,11,0,180.0,349.9151521204852,259.0,19.8,0.0 -2019,11,27,11,15,180.0,353.41996814668624,259.0,19.8,0.0 -2019,11,27,11,30,180.0,356.3653787914807,259.0,19.8,0.0 -2019,11,27,11,45,180.0,358.73877135429984,259.0,19.8,0.0 -2019,11,27,12,0,1017.0,641.6444017115825,68.0,22.9,0.0 -2019,11,27,12,15,1017.0,648.4320839864041,68.0,22.9,0.0 -2019,11,27,12,30,1017.0,651.8580390786947,68.0,22.9,0.0 -2019,11,27,12,45,1017.0,651.9075965227865,68.0,22.9,0.0 -2019,11,27,13,0,185.0,316.6119967154649,211.0,23.8,0.2 -2019,11,27,13,15,185.0,315.3951414197662,211.0,23.8,0.2 -2019,11,27,13,30,185.0,313.5718576142284,211.0,23.8,0.2 -2019,11,27,13,45,185.0,311.14995288002245,211.0,23.8,0.2 -2019,11,27,14,0,101.0,201.03307900912876,148.0,23.2,1.6 -2019,11,27,14,15,101.0,199.07558178840205,148.0,23.2,1.6 -2019,11,27,14,30,101.0,196.81235140296525,148.0,23.2,1.6 -2019,11,27,14,45,101.0,194.25307935278624,148.0,23.2,1.6 -2019,11,27,15,0,68.0,102.22567612565302,73.0,22.4,2.2 -2019,11,27,15,15,68.0,100.12692882149842,73.0,22.4,2.2 -2019,11,27,15,30,68.0,97.85343233470275,73.0,22.4,2.2 -2019,11,27,15,45,68.0,95.41492212625599,73.0,22.4,2.2 -2019,11,27,16,0,34.0,23.910920135618788,14.0,20.9,2.7 -2019,11,27,16,15,34.0,22.542645372123953,14.0,20.9,2.7 -2019,11,27,16,30,34.0,21.108495935242146,14.0,20.9,2.7 -2019,11,27,16,45,34.0,19.6146130730367,14.0,20.9,2.7 -2019,11,27,17,0,0.0,0.0,0.0,19.1,2.7 -2019,11,27,17,15,0.0,0.0,0.0,19.1,2.7 -2019,11,27,17,30,0.0,0.0,0.0,19.1,2.7 -2019,11,27,17,45,0.0,0.0,0.0,19.1,2.7 -2019,11,27,18,0,0.0,0.0,0.0,16.9,0.2 -2019,11,27,18,15,0.0,0.0,0.0,16.9,0.2 -2019,11,27,18,30,0.0,0.0,0.0,16.9,0.2 -2019,11,27,18,45,0.0,0.0,0.0,16.9,0.2 -2019,11,27,19,0,0.0,0.0,0.0,14.9,1.3 -2019,11,27,19,15,0.0,0.0,0.0,14.9,1.3 -2019,11,27,19,30,0.0,0.0,0.0,14.9,1.3 -2019,11,27,19,45,0.0,0.0,0.0,14.9,1.3 -2019,11,27,20,0,0.0,0.0,0.0,13.8,0.0 -2019,11,27,20,15,0.0,0.0,0.0,13.8,0.0 -2019,11,27,20,30,0.0,0.0,0.0,13.8,0.0 -2019,11,27,20,45,0.0,0.0,0.0,13.8,0.0 -2019,11,27,21,0,0.0,0.0,0.0,13.2,0.0 -2019,11,27,21,15,0.0,0.0,0.0,13.2,0.0 -2019,11,27,21,30,0.0,0.0,0.0,13.2,0.0 -2019,11,27,21,45,0.0,0.0,0.0,13.2,0.0 -2019,11,27,22,0,0.0,0.0,0.0,12.2,0.0 -2019,11,27,22,15,0.0,0.0,0.0,12.2,0.0 -2019,11,27,22,30,0.0,0.0,0.0,12.2,0.0 -2019,11,27,22,45,0.0,0.0,0.0,12.2,0.0 -2019,11,27,23,0,0.0,0.0,0.0,11.7,0.0 -2019,11,27,23,15,0.0,0.0,0.0,11.7,0.0 -2019,11,27,23,30,0.0,0.0,0.0,11.7,0.0 -2019,11,27,23,45,0.0,0.0,0.0,11.7,0.0 -2019,11,28,0,0,0.0,0.0,0.0,12.6,0.0 -2019,11,28,0,15,0.0,0.0,0.0,12.6,0.0 -2019,11,28,0,30,0.0,0.0,0.0,12.6,0.0 -2019,11,28,0,45,0.0,0.0,0.0,12.6,0.0 -2019,11,28,1,0,0.0,0.0,0.0,10.6,0.9 -2019,11,28,1,15,0.0,0.0,0.0,10.6,0.9 -2019,11,28,1,30,0.0,0.0,0.0,10.6,0.9 -2019,11,28,1,45,0.0,0.0,0.0,10.6,0.9 -2019,11,28,2,0,0.0,0.0,0.0,10.7,0.0 -2019,11,28,2,15,0.0,0.0,0.0,10.7,0.0 -2019,11,28,2,30,0.0,0.0,0.0,10.7,0.0 -2019,11,28,2,45,0.0,0.0,0.0,10.7,0.0 -2019,11,28,3,0,0.0,0.0,0.0,11.0,3.1 -2019,11,28,3,15,0.0,0.0,0.0,11.0,3.1 -2019,11,28,3,30,0.0,0.0,0.0,11.0,3.1 -2019,11,28,3,45,0.0,0.0,0.0,11.0,3.1 -2019,11,28,4,0,0.0,0.0,0.0,11.7,1.5 -2019,11,28,4,15,0.0,0.0,0.0,11.7,1.5 -2019,11,28,4,30,0.0,0.0,0.0,11.7,1.5 -2019,11,28,4,45,0.0,0.0,0.0,11.7,1.5 -2019,11,28,5,0,0.0,0.0,0.0,11.8,1.7 -2019,11,28,5,15,0.0,0.0,0.0,11.8,1.7 -2019,11,28,5,30,0.0,0.0,0.0,11.8,1.7 -2019,11,28,5,45,0.0,0.0,0.0,11.8,1.7 -2019,11,28,6,0,1.0,4.670354627042485,5.0,11.8,1.9 -2019,11,28,6,15,1.0,4.720620259803785,5.0,11.8,1.9 -2019,11,28,6,30,1.0,4.771214292385802,5.0,11.8,1.9 -2019,11,28,6,45,1.0,4.821920073373684,5.0,11.8,1.9 -2019,11,28,7,0,3.0,21.61756141848624,22.0,12.2,0.3 -2019,11,28,7,15,3.0,21.768396436216626,22.0,12.2,0.3 -2019,11,28,7,30,3.0,21.917619374609675,22.0,12.2,0.3 -2019,11,28,7,45,3.0,22.06459123813407,22.0,12.2,0.3 -2019,11,28,8,0,1.0,44.06956089023556,44.0,12.3,2.1 -2019,11,28,8,15,1.0,44.11642555023062,44.0,12.3,2.1 -2019,11,28,8,30,1.0,44.16192371102766,44.0,12.3,2.1 -2019,11,28,8,45,1.0,44.205860542517144,44.0,12.3,2.1 -2019,11,28,9,0,1.0,62.24804790044132,62.0,14.0,3.0 -2019,11,28,9,15,1.0,62.28830513205684,62.0,14.0,3.0 -2019,11,28,9,30,1.0,62.32645984971753,62.0,14.0,3.0 -2019,11,28,9,45,1.0,62.36234866906473,62.0,14.0,3.0 -2019,11,28,10,0,2.0,119.79163581732851,119.0,15.7,0.4 -2019,11,28,10,15,2.0,119.85344849618771,119.0,15.7,0.4 -2019,11,28,10,30,2.0,119.90987068332652,119.0,15.7,0.4 -2019,11,28,10,45,2.0,119.9606607702775,119.0,15.7,0.4 -2019,11,28,11,0,529.0,458.9815348810452,193.0,17.0,2.6 -2019,11,28,11,15,529.0,469.2701782317025,193.0,17.0,2.6 -2019,11,28,11,30,529.0,477.9166462400012,193.0,17.0,2.6 -2019,11,28,11,45,529.0,484.88391340249973,193.0,17.0,2.6 -2019,11,28,12,0,575.0,496.98059218649337,174.0,17.4,0.2 -2019,11,28,12,15,575.0,500.81393903594767,174.0,17.4,0.2 -2019,11,28,12,30,575.0,502.74874883223384,174.0,17.4,0.2 -2019,11,28,12,45,575.0,502.776736422767,174.0,17.4,0.2 -2019,11,28,13,0,662.0,506.3588376656985,130.0,18.9,1.6 -2019,11,28,13,15,662.0,502.00938190915946,130.0,18.9,1.6 -2019,11,28,13,30,662.0,495.4923438752762,130.0,18.9,1.6 -2019,11,28,13,45,662.0,486.83563052142364,130.0,18.9,1.6 -2019,11,28,14,0,33.0,143.251538172757,126.0,18.9,2.3 -2019,11,28,14,15,33.0,142.6126814928108,126.0,18.9,2.3 -2019,11,28,14,30,33.0,141.8740445053944,126.0,18.9,2.3 -2019,11,28,14,45,33.0,141.0387901674856,126.0,18.9,2.3 -2019,11,28,15,0,27.0,71.54495059068257,60.0,18.7,0.2 -2019,11,28,15,15,27.0,70.71256467584965,60.0,18.7,0.2 -2019,11,28,15,30,27.0,69.81087134226694,60.0,18.7,0.2 -2019,11,28,15,45,27.0,68.84373177921934,60.0,18.7,0.2 -2019,11,28,16,0,13.0,11.762916168456263,8.0,18.0,2.0 -2019,11,28,16,15,13.0,11.240342560768923,8.0,18.0,2.0 -2019,11,28,16,30,13.0,10.692609996236444,8.0,18.0,2.0 -2019,11,28,16,45,13.0,10.122063949789586,8.0,18.0,2.0 -2019,11,28,17,0,0.0,0.0,0.0,17.1,3.4 -2019,11,28,17,15,0.0,0.0,0.0,17.1,3.4 -2019,11,28,17,30,0.0,0.0,0.0,17.1,3.4 -2019,11,28,17,45,0.0,0.0,0.0,17.1,3.4 -2019,11,28,18,0,0.0,0.0,0.0,16.6,1.6 -2019,11,28,18,15,0.0,0.0,0.0,16.6,1.6 -2019,11,28,18,30,0.0,0.0,0.0,16.6,1.6 -2019,11,28,18,45,0.0,0.0,0.0,16.6,1.6 -2019,11,28,19,0,0.0,0.0,0.0,16.0,2.0 -2019,11,28,19,15,0.0,0.0,0.0,16.0,2.0 -2019,11,28,19,30,0.0,0.0,0.0,16.0,2.0 -2019,11,28,19,45,0.0,0.0,0.0,16.0,2.0 -2019,11,28,20,0,0.0,0.0,0.0,15.6,1.3 -2019,11,28,20,15,0.0,0.0,0.0,15.6,1.3 -2019,11,28,20,30,0.0,0.0,0.0,15.6,1.3 -2019,11,28,20,45,0.0,0.0,0.0,15.6,1.3 -2019,11,28,21,0,0.0,0.0,0.0,15.6,0.0 -2019,11,28,21,15,0.0,0.0,0.0,15.6,0.0 -2019,11,28,21,30,0.0,0.0,0.0,15.6,0.0 -2019,11,28,21,45,0.0,0.0,0.0,15.6,0.0 -2019,11,28,22,0,0.0,0.0,0.0,15.6,0.0 -2019,11,28,22,15,0.0,0.0,0.0,15.6,0.0 -2019,11,28,22,30,0.0,0.0,0.0,15.6,0.0 -2019,11,28,22,45,0.0,0.0,0.0,15.6,0.0 -2019,11,28,23,0,0.0,0.0,0.0,15.5,0.0 -2019,11,28,23,15,0.0,0.0,0.0,15.5,0.0 -2019,11,28,23,30,0.0,0.0,0.0,15.5,0.0 -2019,11,28,23,45,0.0,0.0,0.0,15.5,0.0 -2019,11,29,0,0,0.0,0.0,0.0,14.9,0.0 -2019,11,29,0,15,0.0,0.0,0.0,14.9,0.0 -2019,11,29,0,30,0.0,0.0,0.0,14.9,0.0 -2019,11,29,0,45,0.0,0.0,0.0,14.9,0.0 -2019,11,29,1,0,0.0,0.0,0.0,14.5,0.0 -2019,11,29,1,15,0.0,0.0,0.0,14.5,0.0 -2019,11,29,1,30,0.0,0.0,0.0,14.5,0.0 -2019,11,29,1,45,0.0,0.0,0.0,14.5,0.0 -2019,11,29,2,0,0.0,0.0,0.0,14.8,0.0 -2019,11,29,2,15,0.0,0.0,0.0,14.8,0.0 -2019,11,29,2,30,0.0,0.0,0.0,14.8,0.0 -2019,11,29,2,45,0.0,0.0,0.0,14.8,0.0 -2019,11,29,3,0,0.0,0.0,0.0,13.3,1.5 -2019,11,29,3,15,0.0,0.0,0.0,13.3,1.5 -2019,11,29,3,30,0.0,0.0,0.0,13.3,1.5 -2019,11,29,3,45,0.0,0.0,0.0,13.3,1.5 -2019,11,29,4,0,0.0,0.0,0.0,13.2,1.5 -2019,11,29,4,15,0.0,0.0,0.0,13.2,1.5 -2019,11,29,4,30,0.0,0.0,0.0,13.2,1.5 -2019,11,29,4,45,0.0,0.0,0.0,13.2,1.5 -2019,11,29,5,0,0.0,0.0,0.0,13.1,1.7 -2019,11,29,5,15,0.0,0.0,0.0,13.1,1.7 -2019,11,29,5,30,0.0,0.0,0.0,13.1,1.7 -2019,11,29,5,45,0.0,0.0,0.0,13.1,1.7 -2019,11,29,6,0,1.0,3.669065686721835,4.0,13.4,1.3 -2019,11,29,6,15,1.0,3.7192763347604996,4.0,13.4,1.3 -2019,11,29,6,30,1.0,3.7698150233888903,4.0,13.4,1.3 -2019,11,29,6,45,1.0,3.8204653381834612,4.0,13.4,1.3 -2019,11,29,7,0,3.0,20.613031160160848,21.0,14.0,0.0 -2019,11,29,7,15,3.0,20.763701182025113,21.0,14.0,0.0 -2019,11,29,7,30,3.0,20.912760887978273,21.0,14.0,0.0 -2019,11,29,7,45,3.0,21.05957198147537,21.0,14.0,0.0 -2019,11,29,8,0,1.0,44.067835264958404,44.0,15.1,0.0 -2019,11,29,8,15,1.0,44.114648660497224,44.0,15.1,0.0 -2019,11,29,8,30,1.0,44.160097051628306,44.0,15.1,0.0 -2019,11,29,8,45,1.0,44.20398582136346,44.0,15.1,0.0 -2019,11,29,9,0,1.0,62.246127031252755,62.0,15.7,0.0 -2019,11,29,9,15,1.0,62.2863402261658,62.0,15.7,0.0 -2019,11,29,9,30,1.0,62.32445320702835,62.0,15.7,0.0 -2019,11,29,9,45,1.0,62.36030276820512,62.0,15.7,0.0 -2019,11,29,10,0,0.0,73.0,73.0,16.8,0.0 -2019,11,29,10,15,0.0,73.0,73.0,16.8,0.0 -2019,11,29,10,30,0.0,73.0,73.0,16.8,0.0 -2019,11,29,10,45,0.0,73.0,73.0,16.8,0.0 -2019,11,29,11,0,1.0,117.50060109416602,117.0,17.5,0.0 -2019,11,29,11,15,1.0,117.52002905026866,117.0,17.5,0.0 -2019,11,29,11,30,1.0,117.53635610089944,117.0,17.5,0.0 -2019,11,29,11,45,1.0,117.54951233112097,117.0,17.5,0.0 -2019,11,29,12,0,6.0,156.35664842361396,153.0,18.2,1.6 -2019,11,29,12,15,6.0,156.3966048091763,153.0,18.2,1.6 -2019,11,29,12,30,6.0,156.4167720440356,153.0,18.2,1.6 -2019,11,29,12,45,6.0,156.41706376899614,153.0,18.2,1.6 -2019,11,29,13,0,11.0,150.22871101388574,144.0,18.8,2.7 -2019,11,29,13,15,11.0,150.15651814746928,144.0,18.8,2.7 -2019,11,29,13,30,11.0,150.04834745151408,144.0,18.8,2.7 -2019,11,29,13,45,11.0,149.9046621295469,144.0,18.8,2.7 -2019,11,29,14,0,8.0,96.16441997394571,92.0,18.2,2.6 -2019,11,29,14,15,8.0,96.00971504171157,92.0,18.2,2.6 -2019,11,29,14,30,8.0,95.83084740414769,92.0,18.2,2.6 -2019,11,29,14,45,8.0,95.62858299993837,92.0,18.2,2.6 -2019,11,29,15,0,6.0,41.55284096723599,39.0,17.7,3.6 -2019,11,29,15,15,6.0,41.368068660123356,39.0,17.7,3.6 -2019,11,29,15,30,6.0,41.1679115520017,39.0,17.7,3.6 -2019,11,29,15,45,6.0,40.953226746336675,39.0,17.7,3.6 -2019,11,29,16,0,3.0,9.862466778212578,9.0,17.0,3.6 -2019,11,29,16,15,3.0,9.742004784377272,9.0,17.0,3.6 -2019,11,29,16,30,3.0,9.615743228413688,9.0,17.0,3.6 -2019,11,29,16,45,3.0,9.484222781688485,9.0,17.0,3.6 -2019,11,29,17,0,0.0,0.0,0.0,16.6,1.3 -2019,11,29,17,15,0.0,0.0,0.0,16.6,1.3 -2019,11,29,17,30,0.0,0.0,0.0,16.6,1.3 -2019,11,29,17,45,0.0,0.0,0.0,16.6,1.3 -2019,11,29,18,0,0.0,0.0,0.0,16.1,0.2 -2019,11,29,18,15,0.0,0.0,0.0,16.1,0.2 -2019,11,29,18,30,0.0,0.0,0.0,16.1,0.2 -2019,11,29,18,45,0.0,0.0,0.0,16.1,0.2 -2019,11,29,19,0,0.0,0.0,0.0,16.1,1.3 -2019,11,29,19,15,0.0,0.0,0.0,16.1,1.3 -2019,11,29,19,30,0.0,0.0,0.0,16.1,1.3 -2019,11,29,19,45,0.0,0.0,0.0,16.1,1.3 -2019,11,29,20,0,0.0,0.0,0.0,16.2,0.0 -2019,11,29,20,15,0.0,0.0,0.0,16.2,0.0 -2019,11,29,20,30,0.0,0.0,0.0,16.2,0.0 -2019,11,29,20,45,0.0,0.0,0.0,16.2,0.0 -2019,11,29,21,0,0.0,0.0,0.0,16.7,0.0 -2019,11,29,21,15,0.0,0.0,0.0,16.7,0.0 -2019,11,29,21,30,0.0,0.0,0.0,16.7,0.0 -2019,11,29,21,45,0.0,0.0,0.0,16.7,0.0 -2019,11,29,22,0,0.0,0.0,0.0,16.6,0.0 -2019,11,29,22,15,0.0,0.0,0.0,16.6,0.0 -2019,11,29,22,30,0.0,0.0,0.0,16.6,0.0 -2019,11,29,22,45,0.0,0.0,0.0,16.6,0.0 -2019,11,29,23,0,0.0,0.0,0.0,16.1,0.0 -2019,11,29,23,15,0.0,0.0,0.0,16.1,0.0 -2019,11,29,23,30,0.0,0.0,0.0,16.1,0.0 -2019,11,29,23,45,0.0,0.0,0.0,16.1,0.0 -2019,11,30,0,0,0.0,0.0,0.0,16.0,0.0 -2019,11,30,0,15,0.0,0.0,0.0,16.0,0.0 -2019,11,30,0,30,0.0,0.0,0.0,16.0,0.0 -2019,11,30,0,45,0.0,0.0,0.0,16.0,0.0 -2019,11,30,1,0,0.0,0.0,0.0,15.7,0.0 -2019,11,30,1,15,0.0,0.0,0.0,15.7,0.0 -2019,11,30,1,30,0.0,0.0,0.0,15.7,0.0 -2019,11,30,1,45,0.0,0.0,0.0,15.7,0.0 -2019,11,30,2,0,0.0,0.0,0.0,16.0,0.0 -2019,11,30,2,15,0.0,0.0,0.0,16.0,0.0 -2019,11,30,2,30,0.0,0.0,0.0,16.0,0.0 -2019,11,30,2,45,0.0,0.0,0.0,16.0,0.0 -2019,11,30,3,0,0.0,0.0,0.0,16.0,0.0 -2019,11,30,3,15,0.0,0.0,0.0,16.0,0.0 -2019,11,30,3,30,0.0,0.0,0.0,16.0,0.0 -2019,11,30,3,45,0.0,0.0,0.0,16.0,0.0 -2019,11,30,4,0,0.0,0.0,0.0,15.7,0.0 -2019,11,30,4,15,0.0,0.0,0.0,15.7,0.0 -2019,11,30,4,30,0.0,0.0,0.0,15.7,0.0 -2019,11,30,4,45,0.0,0.0,0.0,15.7,0.0 -2019,11,30,5,0,0.0,0.0,0.0,15.8,0.0 -2019,11,30,5,15,0.0,0.0,0.0,15.8,0.0 -2019,11,30,5,30,0.0,0.0,0.0,15.8,0.0 -2019,11,30,5,45,0.0,0.0,0.0,15.8,0.0 -2019,11,30,6,0,1.0,3.6678311487986934,4.0,16.0,0.0 -2019,11,30,6,15,1.0,3.7179886681499403,4.0,16.0,0.0 -2019,11,30,6,30,1.0,3.768473880985934,4.0,16.0,0.0 -2019,11,30,6,45,1.0,3.8190706018746816,4.0,16.0,0.0 -2019,11,30,7,0,3.0,20.608686503668757,21.0,16.1,0.6 -2019,11,30,7,15,3.0,20.759197099180096,21.0,16.1,0.6 -2019,11,30,7,30,3.0,20.908099082681275,21.0,16.1,0.6 -2019,11,30,7,45,3.0,21.054754833019093,21.0,16.1,0.6 -2019,11,30,8,0,1.0,43.066178782585204,43.0,17.0,0.0 -2019,11,30,8,15,1.0,43.112942644123656,43.0,17.0,0.0 -2019,11,30,8,30,1.0,43.1583429455873,43.0,17.0,0.0 -2019,11,30,8,45,1.0,43.202185275915284,43.0,17.0,0.0 -2019,11,30,9,0,1.0,61.24428189551835,61.0,18.0,1.2 -2019,11,30,9,15,1.0,61.28445254020857,61.0,18.0,1.2 -2019,11,30,9,30,1.0,61.32252519311826,61.0,18.0,1.2 -2019,11,30,9,45,1.0,61.35833682130265,61.0,18.0,1.2 -2019,11,30,10,0,1.0,102.39173407387196,102.0,19.4,0.2 -2019,11,30,10,15,1.0,102.42257393866342,102.0,19.4,0.2 -2019,11,30,10,30,1.0,102.45072435464141,102.0,19.4,0.2 -2019,11,30,10,45,1.0,102.47606477740294,102.0,19.4,0.2 -2019,11,30,11,0,0.0,82.0,82.0,19.4,1.5 -2019,11,30,11,15,0.0,82.0,82.0,19.4,1.5 -2019,11,30,11,30,0.0,82.0,82.0,19.4,1.5 -2019,11,30,11,45,0.0,82.0,82.0,19.4,1.5 -2019,11,30,12,0,1.0,98.55726474526698,98.0,19.3,1.5 -2019,11,30,12,15,1.0,98.5639170964459,98.0,19.3,1.5 -2019,11,30,12,30,1.0,98.56727474571034,98.0,19.3,1.5 -2019,11,30,12,45,1.0,98.5673233150906,98.0,19.3,1.5 -2019,11,30,13,0,3.0,105.69218778981563,104.0,19.0,0.5 -2019,11,30,13,15,3.0,105.67251965945384,104.0,19.0,0.5 -2019,11,30,13,30,3.0,105.64304977614017,104.0,19.0,0.5 -2019,11,30,13,45,3.0,105.60390433443928,104.0,19.0,0.5 -2019,11,30,14,0,5.0,82.59208493523707,80.0,18.2,2.8 -2019,11,30,14,15,5.0,82.4954966624382,80.0,18.2,2.8 -2019,11,30,14,30,5.0,82.38382267814812,80.0,18.2,2.8 -2019,11,30,14,45,5.0,82.2575411875121,80.0,18.2,2.8 -2019,11,30,15,0,6.0,41.54063153671214,39.0,18.0,2.1 -2019,11,30,15,15,6.0,41.35605474012429,39.0,18.0,2.1 -2019,11,30,15,30,6.0,41.15610942143072,39.0,18.0,2.1 -2019,11,30,15,45,6.0,40.94165177718223,39.0,18.0,2.1 -2019,11,30,16,0,3.0,9.856800073967815,9.0,17.6,1.0 -2019,11,30,16,15,3.0,9.736465542889238,9.0,17.6,1.0 -2019,11,30,16,30,3.0,9.610337586291559,9.0,17.6,1.0 -2019,11,30,16,45,3.0,9.478956303448443,9.0,17.6,1.0 -2019,11,30,17,0,0.0,0.0,0.0,17.2,0.3 -2019,11,30,17,15,0.0,0.0,0.0,17.2,0.3 -2019,11,30,17,30,0.0,0.0,0.0,17.2,0.3 -2019,11,30,17,45,0.0,0.0,0.0,17.2,0.3 -2019,11,30,18,0,0.0,0.0,0.0,17.1,1.6 -2019,11,30,18,15,0.0,0.0,0.0,17.1,1.6 -2019,11,30,18,30,0.0,0.0,0.0,17.1,1.6 -2019,11,30,18,45,0.0,0.0,0.0,17.1,1.6 -2019,11,30,19,0,0.0,0.0,0.0,16.9,0.0 -2019,11,30,19,15,0.0,0.0,0.0,16.9,0.0 -2019,11,30,19,30,0.0,0.0,0.0,16.9,0.0 -2019,11,30,19,45,0.0,0.0,0.0,16.9,0.0 -2019,11,30,20,0,0.0,0.0,0.0,17.1,0.0 -2019,11,30,20,15,0.0,0.0,0.0,17.1,0.0 -2019,11,30,20,30,0.0,0.0,0.0,17.1,0.0 -2019,11,30,20,45,0.0,0.0,0.0,17.1,0.0 -2019,11,30,21,0,0.0,0.0,0.0,17.0,0.0 -2019,11,30,21,15,0.0,0.0,0.0,17.0,0.0 -2019,11,30,21,30,0.0,0.0,0.0,17.0,0.0 -2019,11,30,21,45,0.0,0.0,0.0,17.0,0.0 -2019,11,30,22,0,0.0,0.0,0.0,16.5,0.0 -2019,11,30,22,15,0.0,0.0,0.0,16.5,0.0 -2019,11,30,22,30,0.0,0.0,0.0,16.5,0.0 -2019,11,30,22,45,0.0,0.0,0.0,16.5,0.0 -2019,11,30,23,0,0.0,0.0,0.0,16.1,0.0 -2019,11,30,23,15,0.0,0.0,0.0,16.1,0.0 -2019,11,30,23,30,0.0,0.0,0.0,16.1,0.0 -2019,11,30,23,45,0.0,0.0,0.0,16.1,0.0 -2019,12,1,0,0,0.0,0.0,0.0,16.1,0.0 -2019,12,1,0,15,0.0,0.0,0.0,16.1,0.0 -2019,12,1,0,30,0.0,0.0,0.0,16.1,0.0 -2019,12,1,0,45,0.0,0.0,0.0,16.1,0.0 -2019,12,1,1,0,0.0,0.0,0.0,15.6,1.3 -2019,12,1,1,15,0.0,0.0,0.0,15.6,1.3 -2019,12,1,1,30,0.0,0.0,0.0,15.6,1.3 -2019,12,1,1,45,0.0,0.0,0.0,15.6,1.3 -2019,12,1,2,0,0.0,0.0,0.0,15.9,0.0 -2019,12,1,2,15,0.0,0.0,0.0,15.9,0.0 -2019,12,1,2,30,0.0,0.0,0.0,15.9,0.0 -2019,12,1,2,45,0.0,0.0,0.0,15.9,0.0 -2019,12,1,3,0,0.0,0.0,0.0,16.1,0.0 -2019,12,1,3,15,0.0,0.0,0.0,16.1,0.0 -2019,12,1,3,30,0.0,0.0,0.0,16.1,0.0 -2019,12,1,3,45,0.0,0.0,0.0,16.1,0.0 -2019,12,1,4,0,0.0,0.0,0.0,15.9,0.0 -2019,12,1,4,15,0.0,0.0,0.0,15.9,0.0 -2019,12,1,4,30,0.0,0.0,0.0,15.9,0.0 -2019,12,1,4,45,0.0,0.0,0.0,15.9,0.0 -2019,12,1,5,0,0.0,0.0,0.0,15.0,1.8 -2019,12,1,5,15,0.0,0.0,0.0,15.0,1.8 -2019,12,1,5,30,0.0,0.0,0.0,15.0,1.8 -2019,12,1,5,45,0.0,0.0,0.0,15.0,1.8 -2019,12,1,6,0,1.0,2.666651090914958,3.0,15.0,1.5 -2019,12,1,6,15,1.0,2.716757398678226,3.0,15.0,1.5 -2019,12,1,6,30,1.0,2.767191065346223,3.0,15.0,1.5 -2019,12,1,6,45,1.0,2.8177361262155602,3.0,15.0,1.5 -2019,12,1,7,0,3.0,19.604528418727327,20.0,15.1,1.6 -2019,12,1,7,15,3.0,19.75488534063791,20.0,15.1,1.6 -2019,12,1,7,30,3.0,19.903635292955588,20.0,15.1,1.6 -2019,12,1,7,45,3.0,20.050141305548035,20.0,15.1,1.6 -2019,12,1,8,0,1.0,43.06459200572577,43.0,15.2,1.6 -2019,12,1,8,15,1.0,43.111308120652346,43.0,15.2,1.6 -2019,12,1,8,30,1.0,43.15666206771962,43.0,15.2,1.6 -2019,12,1,8,45,1.0,43.200459634363405,43.0,15.2,1.6 -2019,12,1,9,0,1.0,61.24251327267939,61.0,16.8,2.5 -2019,12,1,9,15,1.0,61.282642902532125,61.0,16.8,2.5 -2019,12,1,9,30,1.0,61.320676682685765,61.0,16.8,2.5 -2019,12,1,9,45,1.0,61.356451746654635,61.0,16.8,2.5 -2019,12,1,10,0,0.0,73.0,73.0,17.3,1.3 -2019,12,1,10,15,0.0,73.0,73.0,17.3,1.3 -2019,12,1,10,30,0.0,73.0,73.0,17.3,1.3 -2019,12,1,10,45,0.0,73.0,73.0,17.3,1.3 -2019,12,1,11,0,0.0,88.0,88.0,17.9,0.0 -2019,12,1,11,15,0.0,88.0,88.0,17.9,0.0 -2019,12,1,11,30,0.0,88.0,88.0,17.9,0.0 -2019,12,1,11,45,0.0,88.0,88.0,17.9,0.0 -2019,12,1,12,0,1.0,95.55517656219153,95.0,18.2,0.0 -2019,12,1,12,15,1.0,95.56182212121901,95.0,18.2,0.0 -2019,12,1,12,30,1.0,95.56517634227261,95.0,18.2,0.0 -2019,12,1,12,45,1.0,95.5652248620628,95.0,18.2,0.0 -2019,12,1,13,0,2.0,101.12393494564088,100.0,18.3,0.0 -2019,12,1,13,15,2.0,101.11083624637261,100.0,18.3,0.0 -2019,12,1,13,30,2.0,101.09120971696206,100.0,18.3,0.0 -2019,12,1,13,45,2.0,101.06513940122124,100.0,18.3,0.0 -2019,12,1,14,0,11.0,103.68005314934523,98.0,18.3,0.2 -2019,12,1,14,15,11.0,103.46777590898887,98.0,18.3,0.2 -2019,12,1,14,30,11.0,103.22234398938042,98.0,18.3,0.2 -2019,12,1,14,45,11.0,102.94480836767903,98.0,18.3,0.2 -2019,12,1,15,0,9.0,47.79338340420215,44.0,18.1,1.5 -2019,12,1,15,15,9.0,47.516800892883474,44.0,18.1,1.5 -2019,12,1,15,30,9.0,47.217189135647445,44.0,18.1,1.5 -2019,12,1,15,45,9.0,46.89583111603578,44.0,18.1,1.5 -2019,12,1,16,0,4.0,12.135156861521883,11.0,17.7,1.5 -2019,12,1,16,15,4.0,11.97487463792552,11.0,17.7,1.5 -2019,12,1,16,30,4.0,11.806875733870779,11.0,17.7,1.5 -2019,12,1,16,45,4.0,11.631879546456485,11.0,17.7,1.5 -2019,12,1,17,0,0.0,0.0,0.0,17.2,1.6 -2019,12,1,17,15,0.0,0.0,0.0,17.2,1.6 -2019,12,1,17,30,0.0,0.0,0.0,17.2,1.6 -2019,12,1,17,45,0.0,0.0,0.0,17.2,1.6 -2019,12,1,18,0,0.0,0.0,0.0,17.1,1.9 -2019,12,1,18,15,0.0,0.0,0.0,17.1,1.9 -2019,12,1,18,30,0.0,0.0,0.0,17.1,1.9 -2019,12,1,18,45,0.0,0.0,0.0,17.1,1.9 -2019,12,1,19,0,0.0,0.0,0.0,16.8,0.0 -2019,12,1,19,15,0.0,0.0,0.0,16.8,0.0 -2019,12,1,19,30,0.0,0.0,0.0,16.8,0.0 -2019,12,1,19,45,0.0,0.0,0.0,16.8,0.0 -2019,12,1,20,0,0.0,0.0,0.0,16.8,0.5 -2019,12,1,20,15,0.0,0.0,0.0,16.8,0.5 -2019,12,1,20,30,0.0,0.0,0.0,16.8,0.5 -2019,12,1,20,45,0.0,0.0,0.0,16.8,0.5 -2019,12,1,21,0,0.0,0.0,0.0,16.1,1.5 -2019,12,1,21,15,0.0,0.0,0.0,16.1,1.5 -2019,12,1,21,30,0.0,0.0,0.0,16.1,1.5 -2019,12,1,21,45,0.0,0.0,0.0,16.1,1.5 -2019,12,1,22,0,0.0,0.0,0.0,16.6,0.0 -2019,12,1,22,15,0.0,0.0,0.0,16.6,0.0 -2019,12,1,22,30,0.0,0.0,0.0,16.6,0.0 -2019,12,1,22,45,0.0,0.0,0.0,16.6,0.0 -2019,12,1,23,0,0.0,0.0,0.0,16.0,0.0 -2019,12,1,23,15,0.0,0.0,0.0,16.0,0.0 -2019,12,1,23,30,0.0,0.0,0.0,16.0,0.0 -2019,12,1,23,45,0.0,0.0,0.0,16.0,0.0 -2019,12,2,0,0,0.0,0.0,0.0,16.0,0.0 -2019,12,2,0,15,0.0,0.0,0.0,16.0,0.0 -2019,12,2,0,30,0.0,0.0,0.0,16.0,0.0 -2019,12,2,0,45,0.0,0.0,0.0,16.0,0.0 -2019,12,2,1,0,0.0,0.0,0.0,15.6,0.2 -2019,12,2,1,15,0.0,0.0,0.0,15.6,0.2 -2019,12,2,1,30,0.0,0.0,0.0,15.6,0.2 -2019,12,2,1,45,0.0,0.0,0.0,15.6,0.2 -2019,12,2,2,0,0.0,0.0,0.0,15.6,2.1 -2019,12,2,2,15,0.0,0.0,0.0,15.6,2.1 -2019,12,2,2,30,0.0,0.0,0.0,15.6,2.1 -2019,12,2,2,45,0.0,0.0,0.0,15.6,2.1 -2019,12,2,3,0,0.0,0.0,0.0,15.7,2.1 -2019,12,2,3,15,0.0,0.0,0.0,15.7,2.1 -2019,12,2,3,30,0.0,0.0,0.0,15.7,2.1 -2019,12,2,3,45,0.0,0.0,0.0,15.7,2.1 -2019,12,2,4,0,0.0,0.0,0.0,15.0,1.5 -2019,12,2,4,15,0.0,0.0,0.0,15.0,1.5 -2019,12,2,4,30,0.0,0.0,0.0,15.0,1.5 -2019,12,2,4,45,0.0,0.0,0.0,15.0,1.5 -2019,12,2,5,0,0.0,0.0,0.0,15.0,1.9 -2019,12,2,5,15,0.0,0.0,0.0,15.0,1.9 -2019,12,2,5,30,0.0,0.0,0.0,15.0,1.9 -2019,12,2,5,45,0.0,0.0,0.0,15.0,1.9 -2019,12,2,6,0,1.0,2.665525583067553,3.0,15.0,0.0 -2019,12,2,6,15,1.0,2.715582655142428,3.0,15.0,0.0 -2019,12,2,6,30,1.0,2.7659667644511328,3.0,15.0,0.0 -2019,12,2,6,45,1.0,2.8164621585025005,3.0,15.0,0.0 -2019,12,2,7,0,3.0,19.600557824801026,20.0,15.0,0.4 -2019,12,2,7,15,3.0,19.75076700230805,20.0,15.0,0.4 -2019,12,2,7,30,3.0,19.899370789269952,20.0,15.0,0.4 -2019,12,2,7,45,3.0,20.045732841456896,20.0,15.0,0.4 -2019,12,2,8,0,1.0,43.06307547136384,43.0,15.7,1.7 -2019,12,2,8,15,1.0,43.10974568188874,43.0,15.7,1.7 -2019,12,2,8,30,1.0,43.15505506305394,43.0,15.7,1.7 -2019,12,2,8,45,1.0,43.19880959313327,43.0,15.7,1.7 -2019,12,2,9,0,1.0,61.2408219085116,61.0,16.2,2.9 -2019,12,2,9,15,1.0,61.280912106004635,61.0,16.2,2.9 -2019,12,2,9,30,1.0,61.31890851323196,61.0,16.2,2.9 -2019,12,2,9,45,1.0,61.3546484237445,61.0,16.2,2.9 -2019,12,2,10,0,1.0,87.38797879375855,87.0,16.8,1.6 -2019,12,2,10,15,1.0,87.41875689751275,87.0,16.8,1.6 -2019,12,2,10,30,1.0,87.44685093844168,87.0,16.8,1.6 -2019,12,2,10,45,1.0,87.47214061354902,87.0,16.8,1.6 -2019,12,2,11,0,1.0,116.49451762856337,116.0,17.9,2.7 -2019,12,2,11,15,1.0,116.51388616167111,116.0,17.9,2.7 -2019,12,2,11,30,1.0,116.53016327383995,116.0,17.9,2.7 -2019,12,2,11,45,1.0,116.54327926397664,116.0,17.9,2.7 -2019,12,2,12,0,6.0,156.31906780438717,153.0,18.9,2.9 -2019,12,2,12,15,6.0,156.35890197801513,153.0,18.9,2.9 -2019,12,2,12,30,6.0,156.37900752869686,153.0,18.9,2.9 -2019,12,2,12,45,6.0,156.3792983613777,153.0,18.9,2.9 -2019,12,2,13,0,5.0,119.79981102555617,117.0,18.8,4.4 -2019,12,2,13,15,5.0,119.76709645514438,117.0,18.8,4.4 -2019,12,2,13,30,5.0,119.71807834539231,117.0,18.8,4.4 -2019,12,2,13,45,5.0,119.65296659937134,117.0,18.8,4.4 -2019,12,2,14,0,5.0,83.57204003557405,81.0,18.1,2.9 -2019,12,2,14,15,5.0,83.47564519397068,81.0,18.1,2.9 -2019,12,2,14,30,5.0,83.36419485207179,81.0,18.1,2.9 -2019,12,2,14,45,5.0,83.23816625735157,81.0,18.1,2.9 -2019,12,2,15,0,6.0,41.517718900321036,39.0,17.1,3.1 -2019,12,2,15,15,6.0,41.333511743953416,39.0,17.1,3.1 -2019,12,2,15,30,6.0,41.13396684304258,39.0,17.1,3.1 -2019,12,2,15,45,6.0,40.91993867948892,39.0,17.1,3.1 -2019,12,2,16,0,3.0,11.846171877373491,11.0,16.1,3.1 -2019,12,2,16,15,3.0,11.726078332612754,11.0,16.1,3.1 -2019,12,2,16,30,3.0,11.600202964458015,11.0,16.1,3.1 -2019,12,2,16,45,3.0,11.46908479056045,11.0,16.1,3.1 -2019,12,2,17,0,0.0,0.0,0.0,16.1,3.9 -2019,12,2,17,15,0.0,0.0,0.0,16.1,3.9 -2019,12,2,17,30,0.0,0.0,0.0,16.1,3.9 -2019,12,2,17,45,0.0,0.0,0.0,16.1,3.9 -2019,12,2,18,0,0.0,0.0,0.0,15.9,3.2 -2019,12,2,18,15,0.0,0.0,0.0,15.9,3.2 -2019,12,2,18,30,0.0,0.0,0.0,15.9,3.2 -2019,12,2,18,45,0.0,0.0,0.0,15.9,3.2 -2019,12,2,19,0,0.0,0.0,0.0,15.5,1.3 -2019,12,2,19,15,0.0,0.0,0.0,15.5,1.3 -2019,12,2,19,30,0.0,0.0,0.0,15.5,1.3 -2019,12,2,19,45,0.0,0.0,0.0,15.5,1.3 -2019,12,2,20,0,0.0,0.0,0.0,15.1,0.0 -2019,12,2,20,15,0.0,0.0,0.0,15.1,0.0 -2019,12,2,20,30,0.0,0.0,0.0,15.1,0.0 -2019,12,2,20,45,0.0,0.0,0.0,15.1,0.0 -2019,12,2,21,0,0.0,0.0,0.0,15.6,0.0 -2019,12,2,21,15,0.0,0.0,0.0,15.6,0.0 -2019,12,2,21,30,0.0,0.0,0.0,15.6,0.0 -2019,12,2,21,45,0.0,0.0,0.0,15.6,0.0 -2019,12,2,22,0,0.0,0.0,0.0,15.8,0.0 -2019,12,2,22,15,0.0,0.0,0.0,15.8,0.0 -2019,12,2,22,30,0.0,0.0,0.0,15.8,0.0 -2019,12,2,22,45,0.0,0.0,0.0,15.8,0.0 -2019,12,2,23,0,0.0,0.0,0.0,14.8,0.0 -2019,12,2,23,15,0.0,0.0,0.0,14.8,0.0 -2019,12,2,23,30,0.0,0.0,0.0,14.8,0.0 -2019,12,2,23,45,0.0,0.0,0.0,14.8,0.0 -2019,12,3,0,0,0.0,0.0,0.0,14.4,0.0 -2019,12,3,0,15,0.0,0.0,0.0,14.4,0.0 -2019,12,3,0,30,0.0,0.0,0.0,14.4,0.0 -2019,12,3,0,45,0.0,0.0,0.0,14.4,0.0 -2019,12,3,1,0,0.0,0.0,0.0,14.4,0.0 -2019,12,3,1,15,0.0,0.0,0.0,14.4,0.0 -2019,12,3,1,30,0.0,0.0,0.0,14.4,0.0 -2019,12,3,1,45,0.0,0.0,0.0,14.4,0.0 -2019,12,3,2,0,0.0,0.0,0.0,14.4,0.0 -2019,12,3,2,15,0.0,0.0,0.0,14.4,0.0 -2019,12,3,2,30,0.0,0.0,0.0,14.4,0.0 -2019,12,3,2,45,0.0,0.0,0.0,14.4,0.0 -2019,12,3,3,0,0.0,0.0,0.0,14.5,0.0 -2019,12,3,3,15,0.0,0.0,0.0,14.5,0.0 -2019,12,3,3,30,0.0,0.0,0.0,14.5,0.0 -2019,12,3,3,45,0.0,0.0,0.0,14.5,0.0 -2019,12,3,4,0,0.0,0.0,0.0,15.0,1.5 -2019,12,3,4,15,0.0,0.0,0.0,15.0,1.5 -2019,12,3,4,30,0.0,0.0,0.0,15.0,1.5 -2019,12,3,4,45,0.0,0.0,0.0,15.0,1.5 -2019,12,3,5,0,0.0,0.0,0.0,14.1,1.0 -2019,12,3,5,15,0.0,0.0,0.0,14.1,1.0 -2019,12,3,5,30,0.0,0.0,0.0,14.1,1.0 -2019,12,3,5,45,0.0,0.0,0.0,14.1,1.0 -2019,12,3,6,0,1.0,1.6644546881399631,2.0,14.5,1.5 -2019,12,3,6,15,1.0,1.7144645569013464,2.0,14.5,1.5 -2019,12,3,6,30,1.0,1.7648011545037516,2.0,14.5,1.5 -2019,12,3,6,45,1.0,1.8152489319084304,2.0,14.5,1.5 -2019,12,3,7,0,3.0,19.596775591962956,20.0,15.0,1.3 -2019,12,3,7,15,3.0,19.7468431237324,20.0,15.0,1.3 -2019,12,3,7,30,3.0,19.895306778823798,20.0,15.0,1.3 -2019,12,3,7,45,3.0,20.041530813073493,20.0,15.0,1.3 -2019,12,3,8,0,1.0,42.06162969090604,42.0,15.7,0.0 -2019,12,3,8,15,1.0,42.10825589189369,42.0,15.7,0.0 -2019,12,3,8,30,1.0,42.15352254676999,42.0,15.7,0.0 -2019,12,3,8,45,1.0,42.19723581676928,42.0,15.7,0.0 -2019,12,3,9,0,1.0,60.23920851495845,60.0,16.8,0.4 -2019,12,3,9,15,1.0,60.27926090780008,60.0,16.8,0.4 -2019,12,3,9,30,1.0,60.31722148479907,60.0,16.8,0.4 -2019,12,3,9,45,1.0,60.3529276929369,60.0,16.8,0.4 -2019,12,3,10,0,0.0,72.0,72.0,18.0,0.1 -2019,12,3,10,15,0.0,72.0,72.0,18.0,0.1 -2019,12,3,10,30,0.0,72.0,72.0,18.0,0.1 -2019,12,3,10,45,0.0,72.0,72.0,18.0,0.1 -2019,12,3,11,0,3.0,141.4779950075241,140.0,17.8,2.4 -2019,12,3,11,15,3.0,141.5360458138539,140.0,17.8,2.4 -2019,12,3,11,30,3.0,141.58483110290317,140.0,17.8,2.4 -2019,12,3,11,45,3.0,141.62414196857452,140.0,17.8,2.4 -2019,12,3,12,0,6.0,155.3076201514121,152.0,18.2,2.6 -2019,12,3,12,15,6.0,155.34741676181656,152.0,18.2,2.6 -2019,12,3,12,30,6.0,155.36750335316702,152.0,18.2,2.6 -2019,12,3,12,45,6.0,155.36779391159558,152.0,18.2,2.6 -2019,12,3,13,0,21.0,174.71900517510232,163.0,19.4,2.1 -2019,12,3,13,15,21.0,174.58173354731292,163.0,19.4,2.1 -2019,12,3,13,30,21.0,174.37605162540083,163.0,19.4,2.1 -2019,12,3,13,45,21.0,174.10284017093252,163.0,19.4,2.1 -2019,12,3,14,0,232.0,264.90849691493577,146.0,19.4,2.1 -2019,12,3,14,15,232.0,260.43999399494743,146.0,19.4,2.1 -2019,12,3,14,30,232.0,255.27357461061948,146.0,19.4,2.1 -2019,12,3,14,45,232.0,249.43136216291862,146.0,19.4,2.1 -2019,12,3,15,0,200.0,160.5675637090162,77.0,19.3,2.0 -2019,12,3,15,15,200.0,154.43311534637323,77.0,19.3,2.0 -2019,12,3,15,30,200.0,147.78789094356395,77.0,19.3,2.0 -2019,12,3,15,45,200.0,140.66034637167468,77.0,19.3,2.0 -2019,12,3,16,0,196.0,60.959382813386604,6.0,18.8,0.9 -2019,12,3,16,15,196.0,53.12067002635226,6.0,18.8,0.9 -2019,12,3,16,30,196.0,44.90456765471332,6.0,18.8,0.9 -2019,12,3,16,45,196.0,36.34625831018417,6.0,18.8,0.9 -2019,12,3,17,0,0.0,0.0,0.0,18.2,0.2 -2019,12,3,17,15,0.0,0.0,0.0,18.2,0.2 -2019,12,3,17,30,0.0,0.0,0.0,18.2,0.2 -2019,12,3,17,45,0.0,0.0,0.0,18.2,0.2 -2019,12,3,18,0,0.0,0.0,0.0,17.1,1.6 -2019,12,3,18,15,0.0,0.0,0.0,17.1,1.6 -2019,12,3,18,30,0.0,0.0,0.0,17.1,1.6 -2019,12,3,18,45,0.0,0.0,0.0,17.1,1.6 -2019,12,3,19,0,0.0,0.0,0.0,15.9,2.1 -2019,12,3,19,15,0.0,0.0,0.0,15.9,2.1 -2019,12,3,19,30,0.0,0.0,0.0,15.9,2.1 -2019,12,3,19,45,0.0,0.0,0.0,15.9,2.1 -2019,12,3,20,0,0.0,0.0,0.0,14.2,0.0 -2019,12,3,20,15,0.0,0.0,0.0,14.2,0.0 -2019,12,3,20,30,0.0,0.0,0.0,14.2,0.0 -2019,12,3,20,45,0.0,0.0,0.0,14.2,0.0 -2019,12,3,21,0,0.0,0.0,0.0,14.5,0.0 -2019,12,3,21,15,0.0,0.0,0.0,14.5,0.0 -2019,12,3,21,30,0.0,0.0,0.0,14.5,0.0 -2019,12,3,21,45,0.0,0.0,0.0,14.5,0.0 -2019,12,3,22,0,0.0,0.0,0.0,15.0,0.0 -2019,12,3,22,15,0.0,0.0,0.0,15.0,0.0 -2019,12,3,22,30,0.0,0.0,0.0,15.0,0.0 -2019,12,3,22,45,0.0,0.0,0.0,15.0,0.0 -2019,12,3,23,0,0.0,0.0,0.0,14.8,0.0 -2019,12,3,23,15,0.0,0.0,0.0,14.8,0.0 -2019,12,3,23,30,0.0,0.0,0.0,14.8,0.0 -2019,12,3,23,45,0.0,0.0,0.0,14.8,0.0 -2019,12,4,0,0,0.0,0.0,0.0,14.5,0.0 -2019,12,4,0,15,0.0,0.0,0.0,14.5,0.0 -2019,12,4,0,30,0.0,0.0,0.0,14.5,0.0 -2019,12,4,0,45,0.0,0.0,0.0,14.5,0.0 -2019,12,4,1,0,0.0,0.0,0.0,15.0,0.0 -2019,12,4,1,15,0.0,0.0,0.0,15.0,0.0 -2019,12,4,1,30,0.0,0.0,0.0,15.0,0.0 -2019,12,4,1,45,0.0,0.0,0.0,15.0,0.0 -2019,12,4,2,0,0.0,0.0,0.0,14.3,0.0 -2019,12,4,2,15,0.0,0.0,0.0,14.3,0.0 -2019,12,4,2,30,0.0,0.0,0.0,14.3,0.0 -2019,12,4,2,45,0.0,0.0,0.0,14.3,0.0 -2019,12,4,3,0,0.0,0.0,0.0,14.4,0.2 -2019,12,4,3,15,0.0,0.0,0.0,14.4,0.2 -2019,12,4,3,30,0.0,0.0,0.0,14.4,0.2 -2019,12,4,3,45,0.0,0.0,0.0,14.4,0.2 -2019,12,4,4,0,0.0,0.0,0.0,14.3,0.0 -2019,12,4,4,15,0.0,0.0,0.0,14.3,0.0 -2019,12,4,4,30,0.0,0.0,0.0,14.3,0.0 -2019,12,4,4,45,0.0,0.0,0.0,14.3,0.0 -2019,12,4,5,0,0.0,0.0,0.0,14.2,0.0 -2019,12,4,5,15,0.0,0.0,0.0,14.2,0.0 -2019,12,4,5,30,0.0,0.0,0.0,14.2,0.0 -2019,12,4,5,45,0.0,0.0,0.0,14.2,0.0 -2019,12,4,6,0,1.0,1.663438462418261,2.0,14.5,0.0 -2019,12,4,6,15,1.0,1.7134032143334599,2.0,14.5,0.0 -2019,12,4,6,30,1.0,1.7636944003283619,2.0,14.5,0.0 -2019,12,4,6,45,1.0,1.814096665823694,2.0,14.5,0.0 -2019,12,4,7,0,3.0,18.593182541742127,19.0,15.1,0.0 -2019,12,4,7,15,3.0,18.743114688758205,19.0,15.1,0.0 -2019,12,4,7,30,3.0,18.891444406047793,19.0,15.1,0.0 -2019,12,4,7,45,3.0,19.03753652298946,19.0,15.1,0.0 -2019,12,4,8,0,302.0,136.19705537147308,118.0,16.3,0.0 -2019,12,4,8,15,302.0,150.26546466916787,118.0,16.3,0.0 -2019,12,4,8,30,302.0,163.92366145225589,118.0,16.3,0.0 -2019,12,4,8,45,302.0,177.1131592252673,118.0,16.3,0.0 -2019,12,4,9,0,356.0,255.61186211275003,171.0,18.0,0.0 -2019,12,4,9,15,356.0,269.857650395273,171.0,18.0,0.0 -2019,12,4,9,30,356.0,283.3594240632861,171.0,18.0,0.0 -2019,12,4,9,45,356.0,296.05936644911276,171.0,18.0,0.0 -2019,12,4,10,0,458.0,366.12813836509724,190.0,19.5,0.0 -2019,12,4,10,15,458.0,380.1985119742245,190.0,19.5,0.0 -2019,12,4,10,30,458.0,393.0418520063794,190.0,19.5,0.0 -2019,12,4,10,45,458.0,404.6031613077986,190.0,19.5,0.0 -2019,12,4,11,0,12.0,188.8908191941606,183.0,20.7,0.0 -2019,12,4,11,15,12.0,189.12281293528275,183.0,20.7,0.0 -2019,12,4,11,30,12.0,189.3177780431568,183.0,20.7,0.0 -2019,12,4,11,45,12.0,189.4748796472592,183.0,20.7,0.0 -2019,12,4,12,0,5.0,149.74726875600106,147.0,21.2,0.0 -2019,12,4,12,15,5.0,149.7804026789509,147.0,21.2,0.0 -2019,12,4,12,30,5.0,149.797126403996,147.0,21.2,0.0 -2019,12,4,12,45,5.0,149.79736831757822,147.0,21.2,0.0 -2019,12,4,13,0,60.0,225.3735286054378,192.0,21.7,0.2 -2019,12,4,13,15,60.0,224.98167778551158,192.0,21.7,0.2 -2019,12,4,13,30,60.0,224.39454531652893,192.0,21.7,0.2 -2019,12,4,13,45,60.0,223.61464538986024,192.0,21.7,0.2 -2019,12,4,14,0,591.0,403.85637891873085,102.0,21.6,1.6 -2019,12,4,14,15,591.0,392.4835223337791,102.0,21.6,1.6 -2019,12,4,14,30,591.0,379.33438765315765,102.0,21.6,1.6 -2019,12,4,14,45,591.0,364.46528149026074,102.0,21.6,1.6 -2019,12,4,15,0,17.0,60.07441266647584,53.0,20.8,2.0 -2019,12,4,15,15,17.0,59.55345496664115,53.0,20.8,2.0 -2019,12,4,15,30,17.0,58.989120471488384,53.0,20.8,2.0 -2019,12,4,15,45,17.0,58.383825747963996,53.0,20.8,2.0 -2019,12,4,16,0,8.0,12.230664828706182,10.0,19.9,0.9 -2019,12,4,16,15,8.0,11.911006011447265,10.0,19.9,0.9 -2019,12,4,16,30,8.0,11.575957434219072,10.0,19.9,0.9 -2019,12,4,16,45,8.0,11.226953826466891,10.0,19.9,0.9 -2019,12,4,17,0,0.0,0.0,0.0,19.2,0.0 -2019,12,4,17,15,0.0,0.0,0.0,19.2,0.0 -2019,12,4,17,30,0.0,0.0,0.0,19.2,0.0 -2019,12,4,17,45,0.0,0.0,0.0,19.2,0.0 -2019,12,4,18,0,0.0,0.0,0.0,17.7,0.0 -2019,12,4,18,15,0.0,0.0,0.0,17.7,0.0 -2019,12,4,18,30,0.0,0.0,0.0,17.7,0.0 -2019,12,4,18,45,0.0,0.0,0.0,17.7,0.0 -2019,12,4,19,0,0.0,0.0,0.0,16.6,0.0 -2019,12,4,19,15,0.0,0.0,0.0,16.6,0.0 -2019,12,4,19,30,0.0,0.0,0.0,16.6,0.0 -2019,12,4,19,45,0.0,0.0,0.0,16.6,0.0 -2019,12,4,20,0,0.0,0.0,0.0,15.5,0.0 -2019,12,4,20,15,0.0,0.0,0.0,15.5,0.0 -2019,12,4,20,30,0.0,0.0,0.0,15.5,0.0 -2019,12,4,20,45,0.0,0.0,0.0,15.5,0.0 -2019,12,4,21,0,0.0,0.0,0.0,14.3,0.0 -2019,12,4,21,15,0.0,0.0,0.0,14.3,0.0 -2019,12,4,21,30,0.0,0.0,0.0,14.3,0.0 -2019,12,4,21,45,0.0,0.0,0.0,14.3,0.0 -2019,12,4,22,0,0.0,0.0,0.0,13.2,0.0 -2019,12,4,22,15,0.0,0.0,0.0,13.2,0.0 -2019,12,4,22,30,0.0,0.0,0.0,13.2,0.0 -2019,12,4,22,45,0.0,0.0,0.0,13.2,0.0 -2019,12,4,23,0,0.0,0.0,0.0,12.7,0.0 -2019,12,4,23,15,0.0,0.0,0.0,12.7,0.0 -2019,12,4,23,30,0.0,0.0,0.0,12.7,0.0 -2019,12,4,23,45,0.0,0.0,0.0,12.7,0.0 -2019,12,5,0,0,0.0,0.0,0.0,11.6,0.2 -2019,12,5,0,15,0.0,0.0,0.0,11.6,0.2 -2019,12,5,0,30,0.0,0.0,0.0,11.6,0.2 -2019,12,5,0,45,0.0,0.0,0.0,11.6,0.2 -2019,12,5,1,0,0.0,0.0,0.0,10.5,1.3 -2019,12,5,1,15,0.0,0.0,0.0,10.5,1.3 -2019,12,5,1,30,0.0,0.0,0.0,10.5,1.3 -2019,12,5,1,45,0.0,0.0,0.0,10.5,1.3 -2019,12,5,2,0,0.0,0.0,0.0,10.0,0.3 -2019,12,5,2,15,0.0,0.0,0.0,10.0,0.3 -2019,12,5,2,30,0.0,0.0,0.0,10.0,0.3 -2019,12,5,2,45,0.0,0.0,0.0,10.0,0.3 -2019,12,5,3,0,0.0,0.0,0.0,10.0,1.5 -2019,12,5,3,15,0.0,0.0,0.0,10.0,1.5 -2019,12,5,3,30,0.0,0.0,0.0,10.0,1.5 -2019,12,5,3,45,0.0,0.0,0.0,10.0,1.5 -2019,12,5,4,0,0.0,0.0,0.0,8.4,2.5 -2019,12,5,4,15,0.0,0.0,0.0,8.4,2.5 -2019,12,5,4,30,0.0,0.0,0.0,8.4,2.5 -2019,12,5,4,45,0.0,0.0,0.0,8.4,2.5 -2019,12,5,5,0,0.0,0.0,0.0,9.3,1.9 -2019,12,5,5,15,0.0,0.0,0.0,9.3,1.9 -2019,12,5,5,30,0.0,0.0,0.0,9.3,1.9 -2019,12,5,5,45,0.0,0.0,0.0,9.3,1.9 -2019,12,5,6,0,37.0,-10.488352624655965,2.0,9.0,0.0 -2019,12,5,6,15,37.0,-8.641247016610208,2.0,9.0,0.0 -2019,12,5,6,30,37.0,-6.782073736932643,2.0,9.0,0.0 -2019,12,5,6,45,37.0,-4.9187940510323225,2.0,9.0,0.0 -2019,12,5,7,0,74.0,37.881226382839664,48.0,10.4,0.0 -2019,12,5,7,15,74.0,41.576371446300506,48.0,10.4,0.0 -2019,12,5,7,30,74.0,45.23202390986712,48.0,10.4,0.0 -2019,12,5,7,45,74.0,48.83252970846456,48.0,10.4,0.0 -2019,12,5,8,0,203.0,134.9673188847461,123.0,13.6,0.2 -2019,12,5,8,15,203.0,144.4157642752605,123.0,13.6,0.2 -2019,12,5,8,30,203.0,153.5887079753738,123.0,13.6,0.2 -2019,12,5,8,45,203.0,162.44687003190631,123.0,13.6,0.2 -2019,12,5,9,0,325.0,250.77095315948623,174.0,16.4,1.5 -2019,12,5,9,15,325.0,263.7650505091931,174.0,16.4,1.5 -2019,12,5,9,30,325.0,276.0805052917906,174.0,16.4,1.5 -2019,12,5,9,45,325.0,287.6645808391967,174.0,16.4,1.5 -2019,12,5,10,0,392.0,352.12716174063735,202.0,18.5,1.6 -2019,12,5,10,15,392.0,364.1595679692665,202.0,18.5,1.6 -2019,12,5,10,30,392.0,375.1426654258298,202.0,18.5,1.6 -2019,12,5,10,45,392.0,385.02942280086245,202.0,18.5,1.6 -2019,12,5,11,0,510.0,441.5064458559577,192.0,20.2,2.1 -2019,12,5,11,15,510.0,451.3576986988848,192.0,20.2,2.1 -2019,12,5,11,30,510.0,459.63658830998077,192.0,20.2,2.1 -2019,12,5,11,45,510.0,466.30766321293294,192.0,20.2,2.1 -2019,12,5,12,0,796.0,552.9931687162986,117.0,21.7,2.2 -2019,12,5,12,15,796.0,558.2635518640745,117.0,21.7,2.2 -2019,12,5,12,30,796.0,560.9236787310057,117.0,21.7,2.2 -2019,12,5,12,45,796.0,560.9621582454575,117.0,21.7,2.2 -2019,12,5,13,0,55.0,219.49728066554434,189.0,21.8,2.5 -2019,12,5,13,15,55.0,219.1383930546501,189.0,21.8,2.5 -2019,12,5,13,30,55.0,218.6006512448683,189.0,21.8,2.5 -2019,12,5,13,45,55.0,217.88635792918396,189.0,21.8,2.5 -2019,12,5,14,0,238.0,266.1574562446179,145.0,22.6,2.1 -2019,12,5,14,15,238.0,261.58146372125,145.0,22.6,2.1 -2019,12,5,14,30,238.0,256.29076638959646,145.0,22.6,2.1 -2019,12,5,14,45,238.0,250.30801982787432,145.0,22.6,2.1 -2019,12,5,15,0,583.0,294.6727122391942,53.0,21.3,2.2 -2019,12,5,15,15,583.0,276.8222953984615,53.0,21.3,2.2 -2019,12,5,15,30,583.0,257.4855892142974,53.0,21.3,2.2 -2019,12,5,15,45,583.0,236.74539643120738,53.0,21.3,2.2 -2019,12,5,16,0,439.0,124.75324623554877,3.0,19.5,2.7 -2019,12,5,16,15,439.0,107.22705731024146,3.0,19.5,2.7 -2019,12,5,16,30,439.0,88.85708174063168,3.0,19.5,2.7 -2019,12,5,16,45,439.0,69.72198258231839,3.0,19.5,2.7 -2019,12,5,17,0,0.0,0.0,0.0,18.2,3.0 -2019,12,5,17,15,0.0,0.0,0.0,18.2,3.0 -2019,12,5,17,30,0.0,0.0,0.0,18.2,3.0 -2019,12,5,17,45,0.0,0.0,0.0,18.2,3.0 -2019,12,5,18,0,0.0,0.0,0.0,16.9,2.0 -2019,12,5,18,15,0.0,0.0,0.0,16.9,2.0 -2019,12,5,18,30,0.0,0.0,0.0,16.9,2.0 -2019,12,5,18,45,0.0,0.0,0.0,16.9,2.0 -2019,12,5,19,0,0.0,0.0,0.0,15.0,1.3 -2019,12,5,19,15,0.0,0.0,0.0,15.0,1.3 -2019,12,5,19,30,0.0,0.0,0.0,15.0,1.3 -2019,12,5,19,45,0.0,0.0,0.0,15.0,1.3 -2019,12,5,20,0,0.0,0.0,0.0,14.9,0.0 -2019,12,5,20,15,0.0,0.0,0.0,14.9,0.0 -2019,12,5,20,30,0.0,0.0,0.0,14.9,0.0 -2019,12,5,20,45,0.0,0.0,0.0,14.9,0.0 -2019,12,5,21,0,0.0,0.0,0.0,13.8,0.0 -2019,12,5,21,15,0.0,0.0,0.0,13.8,0.0 -2019,12,5,21,30,0.0,0.0,0.0,13.8,0.0 -2019,12,5,21,45,0.0,0.0,0.0,13.8,0.0 -2019,12,5,22,0,0.0,0.0,0.0,13.3,0.0 -2019,12,5,22,15,0.0,0.0,0.0,13.3,0.0 -2019,12,5,22,30,0.0,0.0,0.0,13.3,0.0 -2019,12,5,22,45,0.0,0.0,0.0,13.3,0.0 -2019,12,5,23,0,0.0,0.0,0.0,12.9,1.5 -2019,12,5,23,15,0.0,0.0,0.0,12.9,1.5 -2019,12,5,23,30,0.0,0.0,0.0,12.9,1.5 -2019,12,5,23,45,0.0,0.0,0.0,12.9,1.5 -2019,12,6,0,0,0.0,0.0,0.0,13.0,0.0 -2019,12,6,0,15,0.0,0.0,0.0,13.0,0.0 -2019,12,6,0,30,0.0,0.0,0.0,13.0,0.0 -2019,12,6,0,45,0.0,0.0,0.0,13.0,0.0 -2019,12,6,1,0,0.0,0.0,0.0,12.8,0.0 -2019,12,6,1,15,0.0,0.0,0.0,12.8,0.0 -2019,12,6,1,30,0.0,0.0,0.0,12.8,0.0 -2019,12,6,1,45,0.0,0.0,0.0,12.8,0.0 -2019,12,6,2,0,0.0,0.0,0.0,12.8,0.0 -2019,12,6,2,15,0.0,0.0,0.0,12.8,0.0 -2019,12,6,2,30,0.0,0.0,0.0,12.8,0.0 -2019,12,6,2,45,0.0,0.0,0.0,12.8,0.0 -2019,12,6,3,0,0.0,0.0,0.0,12.9,0.0 -2019,12,6,3,15,0.0,0.0,0.0,12.9,0.0 -2019,12,6,3,30,0.0,0.0,0.0,12.9,0.0 -2019,12,6,3,45,0.0,0.0,0.0,12.9,0.0 -2019,12,6,4,0,0.0,0.0,0.0,12.3,0.0 -2019,12,6,4,15,0.0,0.0,0.0,12.3,0.0 -2019,12,6,4,30,0.0,0.0,0.0,12.3,0.0 -2019,12,6,4,45,0.0,0.0,0.0,12.3,0.0 -2019,12,6,5,0,0.0,0.0,0.0,12.6,0.3 -2019,12,6,5,15,0.0,0.0,0.0,12.6,0.3 -2019,12,6,5,30,0.0,0.0,0.0,12.6,0.3 -2019,12,6,5,45,0.0,0.0,0.0,12.6,0.3 -2019,12,6,6,0,2.0,0.32314042745481364,1.0,12.0,2.1 -2019,12,6,6,15,2.0,0.4229023909552292,1.0,12.0,2.1 -2019,12,6,6,30,2.0,0.5233161280259395,1.0,12.0,2.1 -2019,12,6,6,45,2.0,0.6239516516290109,1.0,12.0,2.1 -2019,12,6,7,0,3.0,18.58656703750379,19.0,12.2,0.0 -2019,12,6,7,15,3.0,18.736247810496952,19.0,12.2,0.0 -2019,12,6,7,30,3.0,18.88432884037363,19.0,12.2,0.0 -2019,12,6,7,45,3.0,19.03017602143008,19.0,12.2,0.0 -2019,12,6,8,0,1.0,41.05772160454872,41.0,12.5,0.6 -2019,12,6,8,15,1.0,41.104227639020515,41.0,12.5,0.6 -2019,12,6,8,30,1.0,41.14937763124607,41.0,12.5,0.6 -2019,12,6,8,45,1.0,41.192978242027124,41.0,12.5,0.6 -2019,12,6,9,0,1.0,59.23484276685462,59.0,12.9,0.3 -2019,12,6,9,15,1.0,59.27479193540609,59.0,12.9,0.3 -2019,12,6,9,30,1.0,59.3126546792087,59.0,12.9,0.3 -2019,12,6,9,45,1.0,59.348268864180675,59.0,12.9,0.3 -2019,12,6,10,0,0.0,75.0,75.0,14.0,1.9 -2019,12,6,10,15,0.0,75.0,75.0,14.0,1.9 -2019,12,6,10,30,0.0,75.0,75.0,14.0,1.9 -2019,12,6,10,45,0.0,75.0,75.0,14.0,1.9 -2019,12,6,11,0,36.0,235.5552573806002,218.0,15.0,0.0 -2019,12,6,11,15,36.0,236.25007173212856,218.0,15.0,0.0 -2019,12,6,11,30,36.0,236.83398642889105,218.0,15.0,0.0 -2019,12,6,11,45,36.0,237.30450105851196,218.0,15.0,0.0 -2019,12,6,12,0,318.0,397.6598071118273,224.0,15.7,1.3 -2019,12,6,12,15,318.0,399.76359151404654,224.0,15.7,1.3 -2019,12,6,12,30,318.0,400.82543716239104,224.0,15.7,1.3 -2019,12,6,12,45,318.0,400.84079707077706,224.0,15.7,1.3 -2019,12,6,13,0,535.0,448.7803110822626,153.0,16.8,0.2 -2019,12,6,13,15,535.0,445.2921659319795,153.0,16.8,0.2 -2019,12,6,13,30,535.0,440.0656787840358,153.0,16.8,0.2 -2019,12,6,13,45,535.0,433.1232302587841,153.0,16.8,0.2 -2019,12,6,14,0,643.0,420.30092523066395,94.0,17.9,1.5 -2019,12,6,14,15,643.0,407.9481564643556,94.0,17.9,1.5 -2019,12,6,14,30,643.0,393.66606128681815,94.0,17.9,1.5 -2019,12,6,14,45,643.0,377.5157978222294,94.0,17.9,1.5 -2019,12,6,15,0,566.0,287.7646229730148,54.0,18.0,1.4 -2019,12,6,15,15,566.0,270.4488761062232,54.0,18.0,1.4 -2019,12,6,15,30,566.0,251.6913584241449,54.0,18.0,1.4 -2019,12,6,15,45,566.0,231.57239249720124,54.0,18.0,1.4 -2019,12,6,16,0,283.0,93.08906541310544,15.0,17.7,0.7 -2019,12,6,16,15,283.0,81.80009346207807,15.0,17.7,0.7 -2019,12,6,16,30,283.0,69.96762150652722,15.0,17.7,0.7 -2019,12,6,16,45,283.0,57.642318007920714,15.0,17.7,0.7 -2019,12,6,17,0,0.0,0.0,0.0,17.1,0.0 -2019,12,6,17,15,0.0,0.0,0.0,17.1,0.0 -2019,12,6,17,30,0.0,0.0,0.0,17.1,0.0 -2019,12,6,17,45,0.0,0.0,0.0,17.1,0.0 -2019,12,6,18,0,0.0,0.0,0.0,16.0,0.2 -2019,12,6,18,15,0.0,0.0,0.0,16.0,0.2 -2019,12,6,18,30,0.0,0.0,0.0,16.0,0.2 -2019,12,6,18,45,0.0,0.0,0.0,16.0,0.2 -2019,12,6,19,0,0.0,0.0,0.0,14.9,1.3 -2019,12,6,19,15,0.0,0.0,0.0,14.9,1.3 -2019,12,6,19,30,0.0,0.0,0.0,14.9,1.3 -2019,12,6,19,45,0.0,0.0,0.0,14.9,1.3 -2019,12,6,20,0,0.0,0.0,0.0,13.8,0.0 -2019,12,6,20,15,0.0,0.0,0.0,13.8,0.0 -2019,12,6,20,30,0.0,0.0,0.0,13.8,0.0 -2019,12,6,20,45,0.0,0.0,0.0,13.8,0.0 -2019,12,6,21,0,0.0,0.0,0.0,13.2,0.0 -2019,12,6,21,15,0.0,0.0,0.0,13.2,0.0 -2019,12,6,21,30,0.0,0.0,0.0,13.2,0.0 -2019,12,6,21,45,0.0,0.0,0.0,13.2,0.0 -2019,12,6,22,0,0.0,0.0,0.0,12.7,0.0 -2019,12,6,22,15,0.0,0.0,0.0,12.7,0.0 -2019,12,6,22,30,0.0,0.0,0.0,12.7,0.0 -2019,12,6,22,45,0.0,0.0,0.0,12.7,0.0 -2019,12,6,23,0,0.0,0.0,0.0,11.7,0.0 -2019,12,6,23,15,0.0,0.0,0.0,11.7,0.0 -2019,12,6,23,30,0.0,0.0,0.0,11.7,0.0 -2019,12,6,23,45,0.0,0.0,0.0,11.7,0.0 -2019,12,7,0,0,0.0,0.0,0.0,11.3,0.0 -2019,12,7,0,15,0.0,0.0,0.0,11.3,0.0 -2019,12,7,0,30,0.0,0.0,0.0,11.3,0.0 -2019,12,7,0,45,0.0,0.0,0.0,11.3,0.0 -2019,12,7,1,0,0.0,0.0,0.0,10.1,0.2 -2019,12,7,1,15,0.0,0.0,0.0,10.1,0.2 -2019,12,7,1,30,0.0,0.0,0.0,10.1,0.2 -2019,12,7,1,45,0.0,0.0,0.0,10.1,0.2 -2019,12,7,2,0,0.0,0.0,0.0,10.4,1.9 -2019,12,7,2,15,0.0,0.0,0.0,10.4,1.9 -2019,12,7,2,30,0.0,0.0,0.0,10.4,1.9 -2019,12,7,2,45,0.0,0.0,0.0,10.4,1.9 -2019,12,7,3,0,0.0,0.0,0.0,9.5,2.2 -2019,12,7,3,15,0.0,0.0,0.0,9.5,2.2 -2019,12,7,3,30,0.0,0.0,0.0,9.5,2.2 -2019,12,7,3,45,0.0,0.0,0.0,9.5,2.2 -2019,12,7,4,0,0.0,0.0,0.0,9.9,3.0 -2019,12,7,4,15,0.0,0.0,0.0,9.9,3.0 -2019,12,7,4,30,0.0,0.0,0.0,9.9,3.0 -2019,12,7,4,45,0.0,0.0,0.0,9.9,3.0 -2019,12,7,5,0,0.0,0.0,0.0,9.1,1.7 -2019,12,7,5,15,0.0,0.0,0.0,9.1,1.7 -2019,12,7,5,30,0.0,0.0,0.0,9.1,1.7 -2019,12,7,5,45,0.0,0.0,0.0,9.1,1.7 -2019,12,7,6,0,125.0,-42.41021565678104,0.0,7.9,0.0 -2019,12,7,6,15,125.0,-36.179912629679706,0.0,7.9,0.0 -2019,12,7,6,30,125.0,-29.90890524286541,0.0,7.9,0.0 -2019,12,7,6,45,125.0,-23.624046912711066,0.0,7.9,0.0 -2019,12,7,7,0,468.0,-24.96682537575282,40.0,11.4,0.2 -2019,12,7,7,15,468.0,-1.6346742759664181,40.0,11.4,0.2 -2019,12,7,7,30,468.0,21.44810980514274,40.0,11.4,0.2 -2019,12,7,7,45,468.0,44.18268284240588,40.0,11.4,0.2 -2019,12,7,8,0,684.0,110.68939585940326,72.0,13.7,1.3 -2019,12,7,8,15,684.0,142.4749345063493,72.0,13.7,1.3 -2019,12,7,8,30,684.0,173.33365723114025,72.0,13.7,1.3 -2019,12,7,8,45,684.0,203.13342224555146,72.0,13.7,1.3 -2019,12,7,9,0,789.0,275.2691302024697,91.0,17.2,0.0 -2019,12,7,9,15,789.0,306.76465960567816,91.0,17.2,0.0 -2019,12,7,9,30,789.0,336.6152723708608,91.0,17.2,0.0 -2019,12,7,9,45,789.0,364.69314359140776,91.0,17.2,0.0 -2019,12,7,10,0,842.0,421.0219382373107,101.0,21.0,0.0 -2019,12,7,10,15,842.0,446.82597575585953,101.0,21.0,0.0 -2019,12,7,10,30,842.0,470.3797233150731,101.0,21.0,0.0 -2019,12,7,10,45,842.0,491.5823201518654,101.0,21.0,0.0 -2019,12,7,11,0,861.0,523.5799289503339,105.0,24.5,0.3 -2019,12,7,11,15,861.0,540.1847269079067,105.0,24.5,0.3 -2019,12,7,11,30,861.0,554.1392250308533,105.0,24.5,0.3 -2019,12,7,11,45,861.0,565.3836680158776,105.0,24.5,0.3 -2019,12,7,12,0,852.0,566.9688262809846,103.0,24.8,2.8 -2019,12,7,12,15,852.0,572.6010237131411,103.0,24.8,2.8 -2019,12,7,12,30,852.0,575.4437695418694,103.0,24.8,2.8 -2019,12,7,12,45,852.0,575.4848906931045,103.0,24.8,2.8 -2019,12,7,13,0,814.0,544.774070210009,96.0,23.3,4.2 -2019,12,7,13,15,814.0,539.4709760769999,96.0,23.3,4.2 -2019,12,7,13,30,814.0,531.5250471846034,96.0,23.3,4.2 -2019,12,7,13,45,814.0,520.9703092202177,96.0,23.3,4.2 -2019,12,7,14,0,732.0,450.3631868902825,80.0,23.1,4.4 -2019,12,7,14,15,732.0,436.31149609704244,80.0,23.1,4.4 -2019,12,7,14,30,732.0,420.0651314875353,80.0,23.1,4.4 -2019,12,7,14,45,732.0,401.69366248920596,80.0,23.1,4.4 -2019,12,7,15,0,566.0,286.9536603017124,54.0,21.7,3.0 -2019,12,7,15,15,566.0,269.65129834565596,54.0,21.7,3.0 -2019,12,7,15,30,566.0,250.90828004969836,54.0,21.7,3.0 -2019,12,7,15,45,566.0,230.80486589566345,54.0,21.7,3.0 -2019,12,7,16,0,283.0,92.7135708946454,15.0,20.1,2.5 -2019,12,7,16,15,283.0,81.433325213586,15.0,20.1,2.5 -2019,12,7,16,30,283.0,69.60999964843462,15.0,20.1,2.5 -2019,12,7,16,45,283.0,57.29422349441124,15.0,20.1,2.5 -2019,12,7,17,0,0.0,0.0,0.0,18.8,1.9 -2019,12,7,17,15,0.0,0.0,0.0,18.8,1.9 -2019,12,7,17,30,0.0,0.0,0.0,18.8,1.9 -2019,12,7,17,45,0.0,0.0,0.0,18.8,1.9 -2019,12,7,18,0,0.0,0.0,0.0,18.0,0.0 -2019,12,7,18,15,0.0,0.0,0.0,18.0,0.0 -2019,12,7,18,30,0.0,0.0,0.0,18.0,0.0 -2019,12,7,18,45,0.0,0.0,0.0,18.0,0.0 -2019,12,7,19,0,0.0,0.0,0.0,16.0,0.2 -2019,12,7,19,15,0.0,0.0,0.0,16.0,0.2 -2019,12,7,19,30,0.0,0.0,0.0,16.0,0.2 -2019,12,7,19,45,0.0,0.0,0.0,16.0,0.2 -2019,12,7,20,0,0.0,0.0,0.0,14.9,1.5 -2019,12,7,20,15,0.0,0.0,0.0,14.9,1.5 -2019,12,7,20,30,0.0,0.0,0.0,14.9,1.5 -2019,12,7,20,45,0.0,0.0,0.0,14.9,1.5 -2019,12,7,21,0,0.0,0.0,0.0,13.8,1.5 -2019,12,7,21,15,0.0,0.0,0.0,13.8,1.5 -2019,12,7,21,30,0.0,0.0,0.0,13.8,1.5 -2019,12,7,21,45,0.0,0.0,0.0,13.8,1.5 -2019,12,7,22,0,0.0,0.0,0.0,13.1,1.3 -2019,12,7,22,15,0.0,0.0,0.0,13.1,1.3 -2019,12,7,22,30,0.0,0.0,0.0,13.1,1.3 -2019,12,7,22,45,0.0,0.0,0.0,13.1,1.3 -2019,12,7,23,0,0.0,0.0,0.0,11.7,0.2 -2019,12,7,23,15,0.0,0.0,0.0,11.7,0.2 -2019,12,7,23,30,0.0,0.0,0.0,11.7,0.2 -2019,12,7,23,45,0.0,0.0,0.0,11.7,0.2 -2019,12,8,0,0,0.0,0.0,0.0,11.4,1.9 -2019,12,8,0,15,0.0,0.0,0.0,11.4,1.9 -2019,12,8,0,30,0.0,0.0,0.0,11.4,1.9 -2019,12,8,0,45,0.0,0.0,0.0,11.4,1.9 -2019,12,8,1,0,0.0,0.0,0.0,9.1,0.2 -2019,12,8,1,15,0.0,0.0,0.0,9.1,0.2 -2019,12,8,1,30,0.0,0.0,0.0,9.1,0.2 -2019,12,8,1,45,0.0,0.0,0.0,9.1,0.2 -2019,12,8,2,0,0.0,0.0,0.0,10.5,2.2 -2019,12,8,2,15,0.0,0.0,0.0,10.5,2.2 -2019,12,8,2,30,0.0,0.0,0.0,10.5,2.2 -2019,12,8,2,45,0.0,0.0,0.0,10.5,2.2 -2019,12,8,3,0,0.0,0.0,0.0,9.1,2.5 -2019,12,8,3,15,0.0,0.0,0.0,9.1,2.5 -2019,12,8,3,30,0.0,0.0,0.0,9.1,2.5 -2019,12,8,3,45,0.0,0.0,0.0,9.1,2.5 -2019,12,8,4,0,0.0,0.0,0.0,7.3,1.3 -2019,12,8,4,15,0.0,0.0,0.0,7.3,1.3 -2019,12,8,4,30,0.0,0.0,0.0,7.3,1.3 -2019,12,8,4,45,0.0,0.0,0.0,7.3,1.3 -2019,12,8,5,0,0.0,0.0,0.0,8.2,0.2 -2019,12,8,5,15,0.0,0.0,0.0,8.2,0.2 -2019,12,8,5,30,0.0,0.0,0.0,8.2,0.2 -2019,12,8,5,45,0.0,0.0,0.0,8.2,0.2 -2019,12,8,6,0,164.0,-55.772927488754085,0.0,7.5,1.6 -2019,12,8,6,15,164.0,-47.60471977034045,0.0,7.5,1.6 -2019,12,8,6,30,164.0,-39.38314680408351,0.0,7.5,1.6 -2019,12,8,6,45,164.0,-31.143414627623514,0.0,7.5,1.6 -2019,12,8,7,0,406.0,-14.742973523692001,42.0,9.7,2.0 -2019,12,8,7,15,406.0,5.483432867695953,42.0,9.7,2.0 -2019,12,8,7,30,406.0,25.493665506445037,42.0,9.7,2.0 -2019,12,8,7,45,406.0,45.20203750436951,42.0,9.7,2.0 -2019,12,8,8,0,493.0,122.35075914122353,95.0,12.0,1.3 -2019,12,8,8,15,493.0,145.243835728475,95.0,12.0,1.3 -2019,12,8,8,30,493.0,167.46938649136177,95.0,12.0,1.3 -2019,12,8,8,45,493.0,188.93223820938857,95.0,12.0,1.3 -2019,12,8,9,0,712.0,270.421550432862,105.0,14.7,0.2 -2019,12,8,9,15,712.0,298.8226838035706,105.0,14.7,0.2 -2019,12,8,9,30,712.0,325.7405115208901,105.0,14.7,0.2 -2019,12,8,9,45,712.0,351.0597673140344,105.0,14.7,0.2 -2019,12,8,10,0,604.0,383.76672228446523,155.0,16.9,2.2 -2019,12,8,10,15,604.0,402.26350862210245,155.0,16.9,2.2 -2019,12,8,10,30,604.0,419.14724767806393,155.0,16.9,2.2 -2019,12,8,10,45,604.0,434.3456406896731,155.0,16.9,2.2 -2019,12,8,11,0,630.0,467.39730406787277,162.0,18.5,2.5 -2019,12,8,11,15,630.0,479.5383125272069,162.0,18.5,2.5 -2019,12,8,11,30,630.0,489.74148875309953,162.0,18.5,2.5 -2019,12,8,11,45,630.0,497.9631411785314,162.0,18.5,2.5 -2019,12,8,12,0,697.0,518.5573654089636,140.0,20.1,2.0 -2019,12,8,12,15,697.0,523.1615722064607,140.0,20.1,2.0 -2019,12,8,12,30,697.0,525.4854590775884,140.0,20.1,2.0 -2019,12,8,12,45,697.0,525.5190747819947,140.0,20.1,2.0 -2019,12,8,13,0,747.0,519.7559823571569,109.0,20.6,1.6 -2019,12,8,13,15,747.0,514.8929260152026,109.0,20.6,1.6 -2019,12,8,13,30,747.0,507.60633088343576,109.0,20.6,1.6 -2019,12,8,13,45,747.0,497.92739928086877,109.0,20.6,1.6 -2019,12,8,14,0,744.0,454.3839329874818,79.0,20.5,2.0 -2019,12,8,14,15,744.0,440.1122823060827,79.0,20.5,2.0 -2019,12,8,14,30,744.0,423.6116032090818,79.0,20.5,2.0 -2019,12,8,14,45,744.0,404.95255413760316,79.0,20.5,2.0 -2019,12,8,15,0,521.0,271.73257225574133,58.0,19.8,1.5 -2019,12,8,15,15,521.0,255.81743262607466,58.0,19.8,1.5 -2019,12,8,15,30,521.0,238.5771417328912,58.0,19.8,1.5 -2019,12,8,15,45,521.0,220.0855251485732,58.0,19.8,1.5 -2019,12,8,16,0,261.0,86.34756456528065,15.0,18.8,1.8 -2019,12,8,16,15,261.0,75.9518008830008,15.0,18.8,1.8 -2019,12,8,16,30,261.0,65.05554011091908,15.0,18.8,1.8 -2019,12,8,16,45,261.0,53.70544171048604,15.0,18.8,1.8 -2019,12,8,17,0,0.0,0.0,0.0,17.6,1.9 -2019,12,8,17,15,0.0,0.0,0.0,17.6,1.9 -2019,12,8,17,30,0.0,0.0,0.0,17.6,1.9 -2019,12,8,17,45,0.0,0.0,0.0,17.6,1.9 -2019,12,8,18,0,0.0,0.0,0.0,16.0,0.0 -2019,12,8,18,15,0.0,0.0,0.0,16.0,0.0 -2019,12,8,18,30,0.0,0.0,0.0,16.0,0.0 -2019,12,8,18,45,0.0,0.0,0.0,16.0,0.0 -2019,12,8,19,0,0.0,0.0,0.0,14.9,0.0 -2019,12,8,19,15,0.0,0.0,0.0,14.9,0.0 -2019,12,8,19,30,0.0,0.0,0.0,14.9,0.0 -2019,12,8,19,45,0.0,0.0,0.0,14.9,0.0 -2019,12,8,20,0,0.0,0.0,0.0,13.8,0.0 -2019,12,8,20,15,0.0,0.0,0.0,13.8,0.0 -2019,12,8,20,30,0.0,0.0,0.0,13.8,0.0 -2019,12,8,20,45,0.0,0.0,0.0,13.8,0.0 -2019,12,8,21,0,0.0,0.0,0.0,12.7,0.0 -2019,12,8,21,15,0.0,0.0,0.0,12.7,0.0 -2019,12,8,21,30,0.0,0.0,0.0,12.7,0.0 -2019,12,8,21,45,0.0,0.0,0.0,12.7,0.0 -2019,12,8,22,0,0.0,0.0,0.0,11.6,0.0 -2019,12,8,22,15,0.0,0.0,0.0,11.6,0.0 -2019,12,8,22,30,0.0,0.0,0.0,11.6,0.0 -2019,12,8,22,45,0.0,0.0,0.0,11.6,0.0 -2019,12,8,23,0,0.0,0.0,0.0,11.0,0.0 -2019,12,8,23,15,0.0,0.0,0.0,11.0,0.0 -2019,12,8,23,30,0.0,0.0,0.0,11.0,0.0 -2019,12,8,23,45,0.0,0.0,0.0,11.0,0.0 -2019,12,9,0,0,0.0,0.0,0.0,10.4,0.0 -2019,12,9,0,15,0.0,0.0,0.0,10.4,0.0 -2019,12,9,0,30,0.0,0.0,0.0,10.4,0.0 -2019,12,9,0,45,0.0,0.0,0.0,10.4,0.0 -2019,12,9,1,0,0.0,0.0,0.0,9.1,0.0 -2019,12,9,1,15,0.0,0.0,0.0,9.1,0.0 -2019,12,9,1,30,0.0,0.0,0.0,9.1,0.0 -2019,12,9,1,45,0.0,0.0,0.0,9.1,0.0 -2019,12,9,2,0,0.0,0.0,0.0,8.8,0.0 -2019,12,9,2,15,0.0,0.0,0.0,8.8,0.0 -2019,12,9,2,30,0.0,0.0,0.0,8.8,0.0 -2019,12,9,2,45,0.0,0.0,0.0,8.8,0.0 -2019,12,9,3,0,0.0,0.0,0.0,8.3,0.0 -2019,12,9,3,15,0.0,0.0,0.0,8.3,0.0 -2019,12,9,3,30,0.0,0.0,0.0,8.3,0.0 -2019,12,9,3,45,0.0,0.0,0.0,8.3,0.0 -2019,12,9,4,0,0.0,0.0,0.0,8.2,0.0 -2019,12,9,4,15,0.0,0.0,0.0,8.2,0.0 -2019,12,9,4,30,0.0,0.0,0.0,8.2,0.0 -2019,12,9,4,45,0.0,0.0,0.0,8.2,0.0 -2019,12,9,5,0,0.0,0.0,0.0,7.7,0.0 -2019,12,9,5,15,0.0,0.0,0.0,7.7,0.0 -2019,12,9,5,30,0.0,0.0,0.0,7.7,0.0 -2019,12,9,5,45,0.0,0.0,0.0,7.7,0.0 -2019,12,9,6,0,2.0,0.31835788289767064,1.0,7.1,0.0 -2019,12,9,6,15,2.0,0.4179022516477534,1.0,7.1,0.0 -2019,12,9,6,30,2.0,0.5180969723591096,1.0,7.1,0.0 -2019,12,9,6,45,2.0,0.6185129958554799,1.0,7.1,0.0 -2019,12,9,7,0,3.0,17.578080487962158,18.0,6.8,0.0 -2019,12,9,7,15,3.0,17.727434786322238,18.0,6.8,0.0 -2019,12,9,7,30,3.0,17.875192830828595,18.0,6.8,0.0 -2019,12,9,7,45,3.0,18.020721898850425,18.0,6.8,0.0 -2019,12,9,8,0,312.0,128.9934765079489,112.0,10.3,0.0 -2019,12,9,8,15,312.0,143.47171118601932,112.0,10.3,0.0 -2019,12,9,8,30,312.0,157.52778349102513,112.0,10.3,0.0 -2019,12,9,8,45,312.0,171.1015031634288,112.0,10.3,0.0 -2019,12,9,9,0,448.0,254.57809603323588,151.0,12.5,0.0 -2019,12,9,9,15,448.0,272.43628719602,151.0,12.5,0.0 -2019,12,9,9,30,448.0,289.3617988222054,151.0,12.5,0.0 -2019,12,9,9,45,448.0,305.28215327255737,151.0,12.5,0.0 -2019,12,9,10,0,746.0,403.6302815855037,122.0,15.4,0.2 -2019,12,9,10,15,746.0,426.46007305927884,122.0,15.4,0.2 -2019,12,9,10,30,746.0,447.29894933266223,122.0,15.4,0.2 -2019,12,9,10,45,746.0,466.05767513820854,122.0,15.4,0.2 -2019,12,9,11,0,774.0,500.19260615906984,126.0,18.5,1.6 -2019,12,9,11,15,774.0,515.0985317471689,126.0,18.5,1.6 -2019,12,9,11,30,774.0,527.6253153413677,126.0,18.5,1.6 -2019,12,9,11,45,774.0,537.7193153311694,126.0,18.5,1.6 -2019,12,9,12,0,283.0,381.323589234477,228.0,20.2,2.3 -2019,12,9,12,15,283.0,383.1917414316674,228.0,20.2,2.3 -2019,12,9,12,30,283.0,384.1346561518923,228.0,20.2,2.3 -2019,12,9,12,45,283.0,384.1482956895604,228.0,20.2,2.3 -2019,12,9,13,0,1022.0,615.5926461982883,55.0,21.7,0.3 -2019,12,9,13,15,1022.0,608.9438446396882,55.0,21.7,0.3 -2019,12,9,13,30,1022.0,598.9815654345265,55.0,21.7,0.3 -2019,12,9,13,45,1022.0,585.7484685917967,55.0,21.7,0.3 -2019,12,9,14,0,877.0,500.33284752575196,59.0,21.6,2.7 -2019,12,9,14,15,877.0,483.52141813246106,59.0,21.6,2.7 -2019,12,9,14,30,877.0,464.084283089482,59.0,21.6,2.7 -2019,12,9,14,45,877.0,442.10467519311214,59.0,21.6,2.7 -2019,12,9,15,0,644.0,311.3840412054559,48.0,20.8,3.0 -2019,12,9,15,15,644.0,291.7249981791143,48.0,20.8,3.0 -2019,12,9,15,30,644.0,270.42907314532073,48.0,20.8,3.0 -2019,12,9,15,45,644.0,247.58745852447976,48.0,20.8,3.0 -2019,12,9,16,0,322.0,100.64898280855311,13.0,19.3,2.5 -2019,12,9,16,15,322.0,87.83230288041013,13.0,19.3,2.5 -2019,12,9,16,30,322.0,74.39857246891592,13.0,19.3,2.5 -2019,12,9,16,45,322.0,60.405316870076135,13.0,19.3,2.5 -2019,12,9,17,0,0.0,0.0,0.0,18.0,1.9 -2019,12,9,17,15,0.0,0.0,0.0,18.0,1.9 -2019,12,9,17,30,0.0,0.0,0.0,18.0,1.9 -2019,12,9,17,45,0.0,0.0,0.0,18.0,1.9 -2019,12,9,18,0,0.0,0.0,0.0,15.9,0.0 -2019,12,9,18,15,0.0,0.0,0.0,15.9,0.0 -2019,12,9,18,30,0.0,0.0,0.0,15.9,0.0 -2019,12,9,18,45,0.0,0.0,0.0,15.9,0.0 -2019,12,9,19,0,0.0,0.0,0.0,14.1,0.0 -2019,12,9,19,15,0.0,0.0,0.0,14.1,0.0 -2019,12,9,19,30,0.0,0.0,0.0,14.1,0.0 -2019,12,9,19,45,0.0,0.0,0.0,14.1,0.0 -2019,12,9,20,0,0.0,0.0,0.0,12.2,0.2 -2019,12,9,20,15,0.0,0.0,0.0,12.2,0.2 -2019,12,9,20,30,0.0,0.0,0.0,12.2,0.2 -2019,12,9,20,45,0.0,0.0,0.0,12.2,0.2 -2019,12,9,21,0,0.0,0.0,0.0,12.1,1.6 -2019,12,9,21,15,0.0,0.0,0.0,12.1,1.6 -2019,12,9,21,30,0.0,0.0,0.0,12.1,1.6 -2019,12,9,21,45,0.0,0.0,0.0,12.1,1.6 -2019,12,9,22,0,0.0,0.0,0.0,11.8,2.1 -2019,12,9,22,15,0.0,0.0,0.0,11.8,2.1 -2019,12,9,22,30,0.0,0.0,0.0,11.8,2.1 -2019,12,9,22,45,0.0,0.0,0.0,11.8,2.1 -2019,12,9,23,0,0.0,0.0,0.0,12.1,2.0 -2019,12,9,23,15,0.0,0.0,0.0,12.1,2.0 -2019,12,9,23,30,0.0,0.0,0.0,12.1,2.0 -2019,12,9,23,45,0.0,0.0,0.0,12.1,2.0 -2019,12,10,0,0,0.0,0.0,0.0,11.2,1.7 -2019,12,10,0,15,0.0,0.0,0.0,11.2,1.7 -2019,12,10,0,30,0.0,0.0,0.0,11.2,1.7 -2019,12,10,0,45,0.0,0.0,0.0,11.2,1.7 -2019,12,10,1,0,0.0,0.0,0.0,12.1,3.2 -2019,12,10,1,15,0.0,0.0,0.0,12.1,3.2 -2019,12,10,1,30,0.0,0.0,0.0,12.1,3.2 -2019,12,10,1,45,0.0,0.0,0.0,12.1,3.2 -2019,12,10,2,0,0.0,0.0,0.0,11.2,3.8 -2019,12,10,2,15,0.0,0.0,0.0,11.2,3.8 -2019,12,10,2,30,0.0,0.0,0.0,11.2,3.8 -2019,12,10,2,45,0.0,0.0,0.0,11.2,3.8 -2019,12,10,3,0,0.0,0.0,0.0,12.0,1.7 -2019,12,10,3,15,0.0,0.0,0.0,12.0,1.7 -2019,12,10,3,30,0.0,0.0,0.0,12.0,1.7 -2019,12,10,3,45,0.0,0.0,0.0,12.0,1.7 -2019,12,10,4,0,0.0,0.0,0.0,10.7,3.0 -2019,12,10,4,15,0.0,0.0,0.0,10.7,3.0 -2019,12,10,4,30,0.0,0.0,0.0,10.7,3.0 -2019,12,10,4,45,0.0,0.0,0.0,10.7,3.0 -2019,12,10,5,0,0.0,0.0,0.0,11.0,2.2 -2019,12,10,5,15,0.0,0.0,0.0,11.0,2.2 -2019,12,10,5,30,0.0,0.0,0.0,11.0,2.2 -2019,12,10,5,45,0.0,0.0,0.0,11.0,2.2 -2019,12,10,6,0,254.0,-86.74313256806249,0.0,10.9,2.3 -2019,12,10,6,15,254.0,-74.10902469017608,0.0,10.9,2.3 -2019,12,10,6,30,254.0,-61.39237455560055,0.0,10.9,2.3 -2019,12,10,6,45,254.0,-48.647636812507834,0.0,10.9,2.3 -2019,12,10,7,0,589.0,-51.31656921450066,32.0,13.2,0.0 -2019,12,10,7,15,589.0,-22.011960358313722,32.0,13.2,0.0 -2019,12,10,7,30,589.0,6.979449645666399,32.0,13.2,0.0 -2019,12,10,7,45,589.0,35.53351512896034,32.0,13.2,0.0 -2019,12,10,8,0,846.0,95.28464663285325,50.0,16.7,0.3 -2019,12,10,8,15,846.0,134.51801029460387,50.0,16.7,0.3 -2019,12,10,8,30,846.0,172.6073912626743,50.0,16.7,0.3 -2019,12,10,8,45,846.0,209.3896849601713,50.0,16.7,0.3 -2019,12,10,9,0,968.0,280.7857537492765,58.0,21.2,2.3 -2019,12,10,9,15,968.0,319.3477025653729,58.0,21.2,2.3 -2019,12,10,9,30,968.0,355.8956769411526,58.0,21.2,2.3 -2019,12,10,9,45,968.0,390.27317283939175,58.0,21.2,2.3 -2019,12,10,10,0,1028.0,446.91560330597406,60.0,22.3,0.2 -2019,12,10,10,15,1028.0,478.3554482028351,60.0,22.3,0.2 -2019,12,10,10,30,1028.0,507.05352188487717,60.0,22.3,0.2 -2019,12,10,10,45,1028.0,532.8869347947851,60.0,22.3,0.2 -2019,12,10,11,0,1050.0,567.354394462144,61.0,23.5,1.8 -2019,12,10,11,15,1050.0,587.5627721556997,61.0,23.5,1.8 -2019,12,10,11,30,1050.0,604.5456809097276,61.0,23.5,1.8 -2019,12,10,11,45,1050.0,618.2303973016787,61.0,23.5,1.8 -2019,12,10,12,0,1041.0,623.6935356641179,61.0,25.1,4.1 -2019,12,10,12,15,1041.0,630.5610679846026,61.0,25.1,4.1 -2019,12,10,12,30,1041.0,634.0273258871136,61.0,25.1,4.1 -2019,12,10,12,45,1041.0,634.0774663231625,61.0,25.1,4.1 -2019,12,10,13,0,999.0,605.7258052921431,59.0,25.5,3.9 -2019,12,10,13,15,999.0,599.230760858153,59.0,25.5,3.9 -2019,12,10,13,30,999.0,589.4988647365659,59.0,25.5,3.9 -2019,12,10,13,45,999.0,576.5717904006425,59.0,25.5,3.9 -2019,12,10,14,0,908.0,509.8222656247236,54.0,24.9,2.5 -2019,12,10,14,15,908.0,492.42764108216966,54.0,24.9,2.5 -2019,12,10,14,30,908.0,472.31622412017896,54.0,24.9,2.5 -2019,12,10,14,45,908.0,449.57413491374376,54.0,24.9,2.5 -2019,12,10,15,0,719.0,335.22115354539386,42.0,24.0,2.0 -2019,12,10,15,15,719.0,313.286561616933,42.0,24.0,2.0 -2019,12,10,15,30,719.0,289.52561736702944,42.0,24.0,2.0 -2019,12,10,15,45,719.0,264.040068806808,42.0,24.0,2.0 -2019,12,10,16,0,359.0,111.33396186292886,14.0,22.7,0.9 -2019,12,10,16,15,359.0,97.05363070844005,14.0,22.7,0.9 -2019,12,10,16,30,359.0,82.08578256119677,14.0,22.7,0.9 -2019,12,10,16,45,359.0,66.49451204487121,14.0,22.7,0.9 -2019,12,10,17,0,0.0,0.0,0.0,21.3,0.0 -2019,12,10,17,15,0.0,0.0,0.0,21.3,0.0 -2019,12,10,17,30,0.0,0.0,0.0,21.3,0.0 -2019,12,10,17,45,0.0,0.0,0.0,21.3,0.0 -2019,12,10,18,0,0.0,0.0,0.0,18.1,0.3 -2019,12,10,18,15,0.0,0.0,0.0,18.1,0.3 -2019,12,10,18,30,0.0,0.0,0.0,18.1,0.3 -2019,12,10,18,45,0.0,0.0,0.0,18.1,0.3 -2019,12,10,19,0,0.0,0.0,0.0,16.5,2.5 -2019,12,10,19,15,0.0,0.0,0.0,16.5,2.5 -2019,12,10,19,30,0.0,0.0,0.0,16.5,2.5 -2019,12,10,19,45,0.0,0.0,0.0,16.5,2.5 -2019,12,10,20,0,0.0,0.0,0.0,14.9,1.3 -2019,12,10,20,15,0.0,0.0,0.0,14.9,1.3 -2019,12,10,20,30,0.0,0.0,0.0,14.9,1.3 -2019,12,10,20,45,0.0,0.0,0.0,14.9,1.3 -2019,12,10,21,0,0.0,0.0,0.0,13.8,0.0 -2019,12,10,21,15,0.0,0.0,0.0,13.8,0.0 -2019,12,10,21,30,0.0,0.0,0.0,13.8,0.0 -2019,12,10,21,45,0.0,0.0,0.0,13.8,0.0 -2019,12,10,22,0,0.0,0.0,0.0,12.7,0.2 -2019,12,10,22,15,0.0,0.0,0.0,12.7,0.2 -2019,12,10,22,30,0.0,0.0,0.0,12.7,0.2 -2019,12,10,22,45,0.0,0.0,0.0,12.7,0.2 -2019,12,10,23,0,0.0,0.0,0.0,11.5,1.3 -2019,12,10,23,15,0.0,0.0,0.0,11.5,1.3 -2019,12,10,23,30,0.0,0.0,0.0,11.5,1.3 -2019,12,10,23,45,0.0,0.0,0.0,11.5,1.3 -2019,12,11,0,0,0.0,0.0,0.0,9.9,0.2 -2019,12,11,0,15,0.0,0.0,0.0,9.9,0.2 -2019,12,11,0,30,0.0,0.0,0.0,9.9,0.2 -2019,12,11,0,45,0.0,0.0,0.0,9.9,0.2 -2019,12,11,1,0,0.0,0.0,0.0,8.9,1.5 -2019,12,11,1,15,0.0,0.0,0.0,8.9,1.5 -2019,12,11,1,30,0.0,0.0,0.0,8.9,1.5 -2019,12,11,1,45,0.0,0.0,0.0,8.9,1.5 -2019,12,11,2,0,0.0,0.0,0.0,8.8,1.6 -2019,12,11,2,15,0.0,0.0,0.0,8.8,1.6 -2019,12,11,2,30,0.0,0.0,0.0,8.8,1.6 -2019,12,11,2,45,0.0,0.0,0.0,8.8,1.6 -2019,12,11,3,0,0.0,0.0,0.0,7.9,2.5 -2019,12,11,3,15,0.0,0.0,0.0,7.9,2.5 -2019,12,11,3,30,0.0,0.0,0.0,7.9,2.5 -2019,12,11,3,45,0.0,0.0,0.0,7.9,2.5 -2019,12,11,4,0,0.0,0.0,0.0,8.2,1.3 -2019,12,11,4,15,0.0,0.0,0.0,8.2,1.3 -2019,12,11,4,30,0.0,0.0,0.0,8.2,1.3 -2019,12,11,4,45,0.0,0.0,0.0,8.2,1.3 -2019,12,11,5,0,0.0,0.0,0.0,7.8,0.2 -2019,12,11,5,15,0.0,0.0,0.0,7.8,0.2 -2019,12,11,5,30,0.0,0.0,0.0,7.8,0.2 -2019,12,11,5,45,0.0,0.0,0.0,7.8,0.2 -2019,12,11,6,0,0.0,0.0,0.0,8.0,2.2 -2019,12,11,6,15,0.0,0.0,0.0,8.0,2.2 -2019,12,11,6,30,0.0,0.0,0.0,8.0,2.2 -2019,12,11,6,45,0.0,0.0,0.0,8.0,2.2 -2019,12,11,7,0,159.0,23.389536976912826,46.0,9.7,2.3 -2019,12,11,7,15,159.0,31.295643512707912,46.0,9.7,2.3 -2019,12,11,7,30,159.0,39.11725195796069,46.0,9.7,2.3 -2019,12,11,7,45,159.0,46.820868984513446,46.0,9.7,2.3 -2019,12,11,8,0,407.0,123.43407015271772,102.0,12.2,0.0 -2019,12,11,8,15,407.0,142.29766646161693,102.0,12.2,0.0 -2019,12,11,8,30,407.0,160.61123020374475,102.0,12.2,0.0 -2019,12,11,8,45,407.0,178.29633988760784,102.0,12.2,0.0 -2019,12,11,9,0,824.0,271.8463550137137,83.0,16.4,0.2 -2019,12,11,9,15,824.0,304.6525401867151,83.0,16.4,0.2 -2019,12,11,9,30,824.0,335.74535711845317,83.0,16.4,0.2 -2019,12,11,9,45,824.0,364.99166159337045,83.0,16.4,0.2 -2019,12,11,10,0,988.0,439.81920127230825,69.0,18.6,1.6 -2019,12,11,10,15,988.0,470.0179625124487,69.0,18.6,1.6 -2019,12,11,10,30,988.0,497.5831835884113,69.0,18.6,1.6 -2019,12,11,10,45,988.0,522.3968259916586,69.0,18.6,1.6 -2019,12,11,11,0,1059.0,568.5125903803869,59.0,20.8,2.1 -2019,12,11,11,15,1059.0,588.8822144956093,59.0,20.8,2.1 -2019,12,11,11,30,1059.0,606.0006330519376,59.0,20.8,2.1 -2019,12,11,11,45,1059.0,619.7945423530467,59.0,20.8,2.1 -2019,12,11,12,0,988.0,604.9087972280357,72.0,22.3,2.2 -2019,12,11,12,15,988.0,611.4228583724795,72.0,22.3,2.2 -2019,12,11,12,30,988.0,614.7107083403663,72.0,22.3,2.2 -2019,12,11,12,45,988.0,614.7582680533739,72.0,22.3,2.2 -2019,12,11,13,0,984.0,599.3808588176652,62.0,22.9,2.5 -2019,12,11,13,15,984.0,592.9870942522288,62.0,22.9,2.5 -2019,12,11,13,30,984.0,583.4069515435688,62.0,22.9,2.5 -2019,12,11,13,45,984.0,570.681454333534,62.0,22.9,2.5 -2019,12,11,14,0,910.0,509.8000371858713,54.0,23.1,2.1 -2019,12,11,14,15,910.0,492.37733526212446,54.0,23.1,2.1 -2019,12,11,14,30,910.0,472.2334556321993,54.0,23.1,2.1 -2019,12,11,14,45,910.0,449.454657481216,54.0,23.1,2.1 -2019,12,11,15,0,618.0,302.36877205286953,51.0,21.5,2.1 -2019,12,11,15,15,618.0,283.52646626528343,51.0,21.5,2.1 -2019,12,11,15,30,618.0,263.1152829244369,51.0,21.5,2.1 -2019,12,11,15,45,618.0,241.22262585097732,51.0,21.5,2.1 -2019,12,11,16,0,309.0,98.47112138175754,15.0,19.8,1.8 -2019,12,11,16,15,309.0,86.18691191825002,15.0,19.8,1.8 -2019,12,11,16,30,309.0,73.31128740579508,15.0,19.8,1.8 -2019,12,11,16,45,309.0,59.899383245256914,15.0,19.8,1.8 -2019,12,11,17,0,0.0,0.0,0.0,18.1,1.3 -2019,12,11,17,15,0.0,0.0,0.0,18.1,1.3 -2019,12,11,17,30,0.0,0.0,0.0,18.1,1.3 -2019,12,11,17,45,0.0,0.0,0.0,18.1,1.3 -2019,12,11,18,0,0.0,0.0,0.0,16.7,0.2 -2019,12,11,18,15,0.0,0.0,0.0,16.7,0.2 -2019,12,11,18,30,0.0,0.0,0.0,16.7,0.2 -2019,12,11,18,45,0.0,0.0,0.0,16.7,0.2 -2019,12,11,19,0,0.0,0.0,0.0,16.4,1.3 -2019,12,11,19,15,0.0,0.0,0.0,16.4,1.3 -2019,12,11,19,30,0.0,0.0,0.0,16.4,1.3 -2019,12,11,19,45,0.0,0.0,0.0,16.4,1.3 -2019,12,11,20,0,0.0,0.0,0.0,14.2,0.0 -2019,12,11,20,15,0.0,0.0,0.0,14.2,0.0 -2019,12,11,20,30,0.0,0.0,0.0,14.2,0.0 -2019,12,11,20,45,0.0,0.0,0.0,14.2,0.0 -2019,12,11,21,0,0.0,0.0,0.0,12.8,0.0 -2019,12,11,21,15,0.0,0.0,0.0,12.8,0.0 -2019,12,11,21,30,0.0,0.0,0.0,12.8,0.0 -2019,12,11,21,45,0.0,0.0,0.0,12.8,0.0 -2019,12,11,22,0,0.0,0.0,0.0,12.5,0.0 -2019,12,11,22,15,0.0,0.0,0.0,12.5,0.0 -2019,12,11,22,30,0.0,0.0,0.0,12.5,0.0 -2019,12,11,22,45,0.0,0.0,0.0,12.5,0.0 -2019,12,11,23,0,0.0,0.0,0.0,10.5,0.0 -2019,12,11,23,15,0.0,0.0,0.0,10.5,0.0 -2019,12,11,23,30,0.0,0.0,0.0,10.5,0.0 -2019,12,11,23,45,0.0,0.0,0.0,10.5,0.0 -2019,12,12,0,0,0.0,0.0,0.0,9.9,0.0 -2019,12,12,0,15,0.0,0.0,0.0,9.9,0.0 -2019,12,12,0,30,0.0,0.0,0.0,9.9,0.0 -2019,12,12,0,45,0.0,0.0,0.0,9.9,0.0 -2019,12,12,1,0,0.0,0.0,0.0,8.8,0.0 -2019,12,12,1,15,0.0,0.0,0.0,8.8,0.0 -2019,12,12,1,30,0.0,0.0,0.0,8.8,0.0 -2019,12,12,1,45,0.0,0.0,0.0,8.8,0.0 -2019,12,12,2,0,0.0,0.0,0.0,7.7,0.0 -2019,12,12,2,15,0.0,0.0,0.0,7.7,0.0 -2019,12,12,2,30,0.0,0.0,0.0,7.7,0.0 -2019,12,12,2,45,0.0,0.0,0.0,7.7,0.0 -2019,12,12,3,0,0.0,0.0,0.0,6.8,0.0 -2019,12,12,3,15,0.0,0.0,0.0,6.8,0.0 -2019,12,12,3,30,0.0,0.0,0.0,6.8,0.0 -2019,12,12,3,45,0.0,0.0,0.0,6.8,0.0 -2019,12,12,4,0,0.0,0.0,0.0,7.1,0.0 -2019,12,12,4,15,0.0,0.0,0.0,7.1,0.0 -2019,12,12,4,30,0.0,0.0,0.0,7.1,0.0 -2019,12,12,4,45,0.0,0.0,0.0,7.1,0.0 -2019,12,12,5,0,0.0,0.0,0.0,6.1,0.3 -2019,12,12,5,15,0.0,0.0,0.0,6.1,0.3 -2019,12,12,5,30,0.0,0.0,0.0,6.1,0.3 -2019,12,12,5,45,0.0,0.0,0.0,6.1,0.3 -2019,12,12,6,0,0.0,0.0,0.0,6.3,2.5 -2019,12,12,6,15,0.0,0.0,0.0,6.3,2.5 -2019,12,12,6,30,0.0,0.0,0.0,6.3,2.5 -2019,12,12,6,45,0.0,0.0,0.0,6.3,2.5 -2019,12,12,7,0,10.0,23.57110637725168,25.0,8.6,2.1 -2019,12,12,7,15,10.0,24.06807790691913,25.0,8.6,2.1 -2019,12,12,7,30,10.0,24.559737954238003,25.0,8.6,2.1 -2019,12,12,7,45,10.0,25.043981155404666,25.0,8.6,2.1 -2019,12,12,8,0,220.0,126.41214594716583,115.0,11.0,2.2 -2019,12,12,8,15,220.0,136.60319136636537,115.0,11.0,2.2 -2019,12,12,8,30,220.0,146.49708205545852,115.0,11.0,2.2 -2019,12,12,8,45,220.0,156.05145085557692,115.0,11.0,2.2 -2019,12,12,9,0,345.0,243.76253477265118,165.0,14.2,2.3 -2019,12,12,9,15,345.0,257.4907344419877,165.0,14.2,2.3 -2019,12,12,9,30,345.0,270.50195159113406,165.0,14.2,2.3 -2019,12,12,9,45,345.0,282.7404701907395,165.0,14.2,2.3 -2019,12,12,10,0,39.0,212.60000416807384,198.0,16.1,0.0 -2019,12,12,10,15,39.0,213.7914183427277,198.0,16.1,0.0 -2019,12,12,10,30,39.0,214.87893298798792,198.0,16.1,0.0 -2019,12,12,10,45,39.0,215.85789119918516,198.0,16.1,0.0 -2019,12,12,11,0,21.0,206.08220819144364,196.0,16.2,0.0 -2019,12,12,11,15,21.0,206.48592080754364,196.0,16.2,0.0 -2019,12,12,11,30,21.0,206.82519665769078,196.0,16.2,0.0 -2019,12,12,11,45,21.0,207.0985829106082,196.0,16.2,0.0 -2019,12,12,12,0,18.0,192.6899219009056,183.0,17.1,0.0 -2019,12,12,12,15,18.0,192.8085351938917,183.0,17.1,0.0 -2019,12,12,12,30,18.0,192.86840302486343,183.0,17.1,0.0 -2019,12,12,12,45,18.0,192.86926903057756,183.0,17.1,0.0 -2019,12,12,13,0,16.0,160.72100400236857,152.0,16.6,0.5 -2019,12,12,13,15,16.0,160.61709635867464,152.0,16.6,0.5 -2019,12,12,13,30,16.0,160.4614056001363,152.0,16.6,0.5 -2019,12,12,13,45,16.0,160.25459841848362,152.0,16.6,0.5 -2019,12,12,14,0,33.0,139.49496831224997,123.0,15.5,3.9 -2019,12,12,14,15,33.0,138.86349641749678,123.0,15.5,3.9 -2019,12,12,14,30,33.0,138.1333976134616,123.0,15.5,3.9 -2019,12,12,14,45,33.0,137.3077982953101,123.0,15.5,3.9 -2019,12,12,15,0,334.0,207.52539670386943,72.0,15.0,2.0 -2019,12,12,15,15,334.0,197.34750064999594,72.0,15.0,2.0 -2019,12,12,15,30,334.0,186.32215668617175,72.0,15.0,2.0 -2019,12,12,15,45,334.0,174.4965770278917,72.0,15.0,2.0 -2019,12,12,16,0,167.0,55.960700311374275,11.0,14.7,0.9 -2019,12,12,16,15,167.0,49.32523815334259,11.0,14.7,0.9 -2019,12,12,16,30,167.0,42.37031610750627,11.0,14.7,0.9 -2019,12,12,16,45,167.0,35.1257162178046,11.0,14.7,0.9 -2019,12,12,17,0,0.0,0.0,0.0,14.3,0.0 -2019,12,12,17,15,0.0,0.0,0.0,14.3,0.0 -2019,12,12,17,30,0.0,0.0,0.0,14.3,0.0 -2019,12,12,17,45,0.0,0.0,0.0,14.3,0.0 -2019,12,12,18,0,0.0,0.0,0.0,13.9,0.0 -2019,12,12,18,15,0.0,0.0,0.0,13.9,0.0 -2019,12,12,18,30,0.0,0.0,0.0,13.9,0.0 -2019,12,12,18,45,0.0,0.0,0.0,13.9,0.0 -2019,12,12,19,0,0.0,0.0,0.0,14.0,0.4 -2019,12,12,19,15,0.0,0.0,0.0,14.0,0.4 -2019,12,12,19,30,0.0,0.0,0.0,14.0,0.4 -2019,12,12,19,45,0.0,0.0,0.0,14.0,0.4 -2019,12,12,20,0,0.0,0.0,0.0,14.3,3.8 -2019,12,12,20,15,0.0,0.0,0.0,14.3,3.8 -2019,12,12,20,30,0.0,0.0,0.0,14.3,3.8 -2019,12,12,20,45,0.0,0.0,0.0,14.3,3.8 -2019,12,12,21,0,0.0,0.0,0.0,13.8,5.3 -2019,12,12,21,15,0.0,0.0,0.0,13.8,5.3 -2019,12,12,21,30,0.0,0.0,0.0,13.8,5.3 -2019,12,12,21,45,0.0,0.0,0.0,13.8,5.3 -2019,12,12,22,0,0.0,0.0,0.0,12.4,2.0 -2019,12,12,22,15,0.0,0.0,0.0,12.4,2.0 -2019,12,12,22,30,0.0,0.0,0.0,12.4,2.0 -2019,12,12,22,45,0.0,0.0,0.0,12.4,2.0 -2019,12,12,23,0,0.0,0.0,0.0,12.1,0.2 -2019,12,12,23,15,0.0,0.0,0.0,12.1,0.2 -2019,12,12,23,30,0.0,0.0,0.0,12.1,0.2 -2019,12,12,23,45,0.0,0.0,0.0,12.1,0.2 -2019,12,13,0,0,0.0,0.0,0.0,11.8,1.9 -2019,12,13,0,15,0.0,0.0,0.0,11.8,1.9 -2019,12,13,0,30,0.0,0.0,0.0,11.8,1.9 -2019,12,13,0,45,0.0,0.0,0.0,11.8,1.9 -2019,12,13,1,0,0.0,0.0,0.0,12.1,0.0 -2019,12,13,1,15,0.0,0.0,0.0,12.1,0.0 -2019,12,13,1,30,0.0,0.0,0.0,12.1,0.0 -2019,12,13,1,45,0.0,0.0,0.0,12.1,0.0 -2019,12,13,2,0,0.0,0.0,0.0,11.7,0.0 -2019,12,13,2,15,0.0,0.0,0.0,11.7,0.0 -2019,12,13,2,30,0.0,0.0,0.0,11.7,0.0 -2019,12,13,2,45,0.0,0.0,0.0,11.7,0.0 -2019,12,13,3,0,0.0,0.0,0.0,11.7,0.2 -2019,12,13,3,15,0.0,0.0,0.0,11.7,0.2 -2019,12,13,3,30,0.0,0.0,0.0,11.7,0.2 -2019,12,13,3,45,0.0,0.0,0.0,11.7,0.2 -2019,12,13,4,0,0.0,0.0,0.0,11.4,1.8 -2019,12,13,4,15,0.0,0.0,0.0,11.4,1.8 -2019,12,13,4,30,0.0,0.0,0.0,11.4,1.8 -2019,12,13,4,45,0.0,0.0,0.0,11.4,1.8 -2019,12,13,5,0,0.0,0.0,0.0,11.1,1.3 -2019,12,13,5,15,0.0,0.0,0.0,11.1,1.3 -2019,12,13,5,30,0.0,0.0,0.0,11.1,1.3 -2019,12,13,5,45,0.0,0.0,0.0,11.1,1.3 -2019,12,13,6,0,0.0,0.0,0.0,11.1,0.0 -2019,12,13,6,15,0.0,0.0,0.0,11.1,0.0 -2019,12,13,6,30,0.0,0.0,0.0,11.1,0.0 -2019,12,13,6,45,0.0,0.0,0.0,11.1,0.0 -2019,12,13,7,0,1.0,15.85649028553829,16.0,11.1,0.2 -2019,12,13,7,15,1.0,15.906163109453749,16.0,11.1,0.2 -2019,12,13,7,30,1.0,15.955305045155939,16.0,11.1,0.2 -2019,12,13,7,45,1.0,16.00370565933178,16.0,11.1,0.2 -2019,12,13,8,0,1.0,39.051157693120764,39.0,11.2,1.3 -2019,12,13,8,15,1.0,39.097457949629245,39.0,11.2,1.3 -2019,12,13,8,30,1.0,39.14240816405071,39.0,11.2,1.3 -2019,12,13,8,45,1.0,39.185815852666124,39.0,11.2,1.3 -2019,12,13,9,0,1.0,57.22749513708876,57.0,11.9,0.0 -2019,12,13,9,15,1.0,57.267267540224005,57.0,11.9,0.0 -2019,12,13,9,30,1.0,57.30496275053566,57.0,11.9,0.0 -2019,12,13,9,45,1.0,57.3404193513461,57.0,11.9,0.0 -2019,12,13,10,0,0.0,69.0,69.0,12.0,0.0 -2019,12,13,10,15,0.0,69.0,69.0,12.0,0.0 -2019,12,13,10,30,0.0,69.0,69.0,12.0,0.0 -2019,12,13,10,45,0.0,69.0,69.0,12.0,0.0 -2019,12,13,11,0,0.0,75.0,75.0,12.9,2.0 -2019,12,13,11,15,0.0,75.0,75.0,12.9,2.0 -2019,12,13,11,30,0.0,75.0,75.0,12.9,2.0 -2019,12,13,11,45,0.0,75.0,75.0,12.9,2.0 -2019,12,13,12,0,0.0,78.0,78.0,13.2,1.5 -2019,12,13,12,15,0.0,78.0,78.0,13.2,1.5 -2019,12,13,12,30,0.0,78.0,78.0,13.2,1.5 -2019,12,13,12,45,0.0,78.0,78.0,13.2,1.5 -2019,12,13,13,0,2.0,96.08821122726793,95.0,12.3,1.5 -2019,12,13,13,15,2.0,96.07522913025493,95.0,12.3,1.5 -2019,12,13,13,30,2.0,96.0557773126646,95.0,12.3,1.5 -2019,12,13,13,45,2.0,96.02993907016618,95.0,12.3,1.5 -2019,12,13,14,0,5.0,83.49456261520204,81.0,12.4,1.5 -2019,12,13,14,15,5.0,83.39893189397466,81.0,12.4,1.5 -2019,12,13,14,30,5.0,83.28836501716312,81.0,12.4,1.5 -2019,12,13,14,45,5.0,83.16333544910844,81.0,12.4,1.5 -2019,12,13,15,0,6.0,41.42925430273914,39.0,12.3,1.6 -2019,12,13,15,15,6.0,41.24650735356977,39.0,12.3,1.6 -2019,12,13,15,30,6.0,41.048544241914186,39.0,12.3,1.6 -2019,12,13,15,45,6.0,40.83621267620837,39.0,12.3,1.6 -2019,12,13,16,0,3.0,11.805210946407197,11.0,12.2,2.1 -2019,12,13,16,15,3.0,11.68606938126539,11.0,12.2,2.1 -2019,12,13,16,30,3.0,11.561191825151651,11.0,12.2,2.1 -2019,12,13,16,45,3.0,11.43111302293281,11.0,12.2,2.1 -2019,12,13,17,0,0.0,0.0,0.0,12.1,2.7 -2019,12,13,17,15,0.0,0.0,0.0,12.1,2.7 -2019,12,13,17,30,0.0,0.0,0.0,12.1,2.7 -2019,12,13,17,45,0.0,0.0,0.0,12.1,2.7 -2019,12,13,18,0,0.0,0.0,0.0,11.6,3.2 -2019,12,13,18,15,0.0,0.0,0.0,11.6,3.2 -2019,12,13,18,30,0.0,0.0,0.0,11.6,3.2 -2019,12,13,18,45,0.0,0.0,0.0,11.6,3.2 -2019,12,13,19,0,0.0,0.0,0.0,10.6,3.2 -2019,12,13,19,15,0.0,0.0,0.0,10.6,3.2 -2019,12,13,19,30,0.0,0.0,0.0,10.6,3.2 -2019,12,13,19,45,0.0,0.0,0.0,10.6,3.2 -2019,12,13,20,0,0.0,0.0,0.0,10.6,0.3 -2019,12,13,20,15,0.0,0.0,0.0,10.6,0.3 -2019,12,13,20,30,0.0,0.0,0.0,10.6,0.3 -2019,12,13,20,45,0.0,0.0,0.0,10.6,0.3 -2019,12,13,21,0,0.0,0.0,0.0,10.5,2.3 -2019,12,13,21,15,0.0,0.0,0.0,10.5,2.3 -2019,12,13,21,30,0.0,0.0,0.0,10.5,2.3 -2019,12,13,21,45,0.0,0.0,0.0,10.5,2.3 -2019,12,13,22,0,0.0,0.0,0.0,9.3,0.0 -2019,12,13,22,15,0.0,0.0,0.0,9.3,0.0 -2019,12,13,22,30,0.0,0.0,0.0,9.3,0.0 -2019,12,13,22,45,0.0,0.0,0.0,9.3,0.0 -2019,12,13,23,0,0.0,0.0,0.0,8.2,0.0 -2019,12,13,23,15,0.0,0.0,0.0,8.2,0.0 -2019,12,13,23,30,0.0,0.0,0.0,8.2,0.0 -2019,12,13,23,45,0.0,0.0,0.0,8.2,0.0 -2019,12,14,0,0,0.0,0.0,0.0,7.7,0.0 -2019,12,14,0,15,0.0,0.0,0.0,7.7,0.0 -2019,12,14,0,30,0.0,0.0,0.0,7.7,0.0 -2019,12,14,0,45,0.0,0.0,0.0,7.7,0.0 -2019,12,14,1,0,0.0,0.0,0.0,7.0,0.0 -2019,12,14,1,15,0.0,0.0,0.0,7.0,0.0 -2019,12,14,1,30,0.0,0.0,0.0,7.0,0.0 -2019,12,14,1,45,0.0,0.0,0.0,7.0,0.0 -2019,12,14,2,0,0.0,0.0,0.0,6.6,1.3 -2019,12,14,2,15,0.0,0.0,0.0,6.6,1.3 -2019,12,14,2,30,0.0,0.0,0.0,6.6,1.3 -2019,12,14,2,45,0.0,0.0,0.0,6.6,1.3 -2019,12,14,3,0,0.0,0.0,0.0,6.1,0.0 -2019,12,14,3,15,0.0,0.0,0.0,6.1,0.0 -2019,12,14,3,30,0.0,0.0,0.0,6.1,0.0 -2019,12,14,3,45,0.0,0.0,0.0,6.1,0.0 -2019,12,14,4,0,0.0,0.0,0.0,6.2,0.0 -2019,12,14,4,15,0.0,0.0,0.0,6.2,0.0 -2019,12,14,4,30,0.0,0.0,0.0,6.2,0.0 -2019,12,14,4,45,0.0,0.0,0.0,6.2,0.0 -2019,12,14,5,0,0.0,0.0,0.0,6.7,0.0 -2019,12,14,5,15,0.0,0.0,0.0,6.7,0.0 -2019,12,14,5,30,0.0,0.0,0.0,6.7,0.0 -2019,12,14,5,45,0.0,0.0,0.0,6.7,0.0 -2019,12,14,6,0,0.0,0.0,0.0,6.8,0.2 -2019,12,14,6,15,0.0,0.0,0.0,6.8,0.2 -2019,12,14,6,30,0.0,0.0,0.0,6.8,0.2 -2019,12,14,6,45,0.0,0.0,0.0,6.8,0.2 -2019,12,14,7,0,171.0,19.36486776820732,44.0,7.9,1.3 -2019,12,14,7,15,171.0,27.85518551967314,44.0,7.9,1.3 -2019,12,14,7,30,171.0,36.254761306703244,44.0,7.9,1.3 -2019,12,14,7,45,171.0,44.527626856251196,44.0,7.9,1.3 -2019,12,14,8,0,311.0,123.71069513307434,108.0,9.2,0.2 -2019,12,14,8,15,311.0,138.10374298623327,108.0,9.2,0.2 -2019,12,14,8,30,311.0,152.07711237910829,108.0,9.2,0.2 -2019,12,14,8,45,311.0,165.57096719872837,108.0,9.2,0.2 -2019,12,14,9,0,141.0,209.97550154626038,178.0,11.2,1.9 -2019,12,14,9,15,141.0,215.580944390752,178.0,11.2,1.9 -2019,12,14,9,30,141.0,220.89363183874383,178.0,11.2,1.9 -2019,12,14,9,45,141.0,225.89081414696497,178.0,11.2,1.9 -2019,12,14,10,0,174.0,288.8502845018773,224.0,12.3,0.0 -2019,12,14,10,15,174.0,294.16088617498843,224.0,12.3,0.0 -2019,12,14,10,30,174.0,299.0083667720105,224.0,12.3,0.0 -2019,12,14,10,45,174.0,303.37196863682846,224.0,12.3,0.0 -2019,12,14,11,0,10.0,173.78350610093935,169.0,12.8,0.2 -2019,12,14,11,15,10.0,173.9755715962726,169.0,12.8,0.2 -2019,12,14,11,30,10.0,174.13698142498347,169.0,12.8,0.2 -2019,12,14,11,45,10.0,174.26704440540536,169.0,12.8,0.2 -2019,12,14,12,0,11.0,172.90172394667732,167.0,12.9,2.3 -2019,12,14,12,15,11.0,172.97414250371807,167.0,12.9,2.3 -2019,12,14,12,30,11.0,173.01069440968905,167.0,12.9,2.3 -2019,12,14,12,45,11.0,173.01122314371733,167.0,12.9,2.3 -2019,12,14,13,0,6.0,127.2594871500087,124.0,13.2,3.8 -2019,12,14,13,15,6.0,127.22055798504321,124.0,13.2,3.8 -2019,12,14,13,30,6.0,127.16222819324663,124.0,13.2,3.8 -2019,12,14,13,45,6.0,127.08474755174238,124.0,13.2,3.8 -2019,12,14,14,0,7.0,88.48652248528782,85.0,12.1,5.7 -2019,12,14,14,15,7.0,88.35269834870509,85.0,12.1,5.7 -2019,12,14,14,30,7.0,88.19797278944915,85.0,12.1,5.7 -2019,12,14,14,45,7.0,88.02300836611865,85.0,12.1,5.7 -2019,12,14,15,0,6.0,41.42447511705883,39.0,11.8,5.5 -2019,12,14,15,15,6.0,41.24180852824244,39.0,11.8,5.5 -2019,12,14,15,30,6.0,41.04393246802932,39.0,11.8,5.5 -2019,12,14,15,45,6.0,40.83169427208779,39.0,11.8,5.5 -2019,12,14,16,0,3.0,11.803001388478133,11.0,11.4,4.0 -2019,12,14,16,15,3.0,11.68391221413285,11.0,11.4,4.0 -2019,12,14,16,30,3.0,11.559089571135495,11.0,11.4,4.0 -2019,12,14,16,45,3.0,11.4290679692065,11.0,11.4,4.0 -2019,12,14,17,0,0.0,0.0,0.0,11.0,2.5 -2019,12,14,17,15,0.0,0.0,0.0,11.0,2.5 -2019,12,14,17,30,0.0,0.0,0.0,11.0,2.5 -2019,12,14,17,45,0.0,0.0,0.0,11.0,2.5 -2019,12,14,18,0,0.0,0.0,0.0,10.5,1.5 -2019,12,14,18,15,0.0,0.0,0.0,10.5,1.5 -2019,12,14,18,30,0.0,0.0,0.0,10.5,1.5 -2019,12,14,18,45,0.0,0.0,0.0,10.5,1.5 -2019,12,14,19,0,0.0,0.0,0.0,9.9,1.5 -2019,12,14,19,15,0.0,0.0,0.0,9.9,1.5 -2019,12,14,19,30,0.0,0.0,0.0,9.9,1.5 -2019,12,14,19,45,0.0,0.0,0.0,9.9,1.5 -2019,12,14,20,0,0.0,0.0,0.0,9.3,1.3 -2019,12,14,20,15,0.0,0.0,0.0,9.3,1.3 -2019,12,14,20,30,0.0,0.0,0.0,9.3,1.3 -2019,12,14,20,45,0.0,0.0,0.0,9.3,1.3 -2019,12,14,21,0,0.0,0.0,0.0,8.9,0.0 -2019,12,14,21,15,0.0,0.0,0.0,8.9,0.0 -2019,12,14,21,30,0.0,0.0,0.0,8.9,0.0 -2019,12,14,21,45,0.0,0.0,0.0,8.9,0.0 -2019,12,14,22,0,0.0,0.0,0.0,8.8,0.0 -2019,12,14,22,15,0.0,0.0,0.0,8.8,0.0 -2019,12,14,22,30,0.0,0.0,0.0,8.8,0.0 -2019,12,14,22,45,0.0,0.0,0.0,8.8,0.0 -2019,12,14,23,0,0.0,0.0,0.0,8.2,0.0 -2019,12,14,23,15,0.0,0.0,0.0,8.2,0.0 -2019,12,14,23,30,0.0,0.0,0.0,8.2,0.0 -2019,12,14,23,45,0.0,0.0,0.0,8.2,0.0 -2019,12,15,0,0,0.0,0.0,0.0,8.1,1.2 -2019,12,15,0,15,0.0,0.0,0.0,8.1,1.2 -2019,12,15,0,30,0.0,0.0,0.0,8.1,1.2 -2019,12,15,0,45,0.0,0.0,0.0,8.1,1.2 -2019,12,15,1,0,0.0,0.0,0.0,7.8,0.0 -2019,12,15,1,15,0.0,0.0,0.0,7.8,0.0 -2019,12,15,1,30,0.0,0.0,0.0,7.8,0.0 -2019,12,15,1,45,0.0,0.0,0.0,7.8,0.0 -2019,12,15,2,0,0.0,0.0,0.0,7.8,0.0 -2019,12,15,2,15,0.0,0.0,0.0,7.8,0.0 -2019,12,15,2,30,0.0,0.0,0.0,7.8,0.0 -2019,12,15,2,45,0.0,0.0,0.0,7.8,0.0 -2019,12,15,3,0,0.0,0.0,0.0,7.9,0.0 -2019,12,15,3,15,0.0,0.0,0.0,7.9,0.0 -2019,12,15,3,30,0.0,0.0,0.0,7.9,0.0 -2019,12,15,3,45,0.0,0.0,0.0,7.9,0.0 -2019,12,15,4,0,0.0,0.0,0.0,7.2,0.0 -2019,12,15,4,15,0.0,0.0,0.0,7.2,0.0 -2019,12,15,4,30,0.0,0.0,0.0,7.2,0.0 -2019,12,15,4,45,0.0,0.0,0.0,7.2,0.0 -2019,12,15,5,0,0.0,0.0,0.0,7.2,0.3 -2019,12,15,5,15,0.0,0.0,0.0,7.2,0.3 -2019,12,15,5,30,0.0,0.0,0.0,7.2,0.3 -2019,12,15,5,45,0.0,0.0,0.0,7.2,0.3 -2019,12,15,6,0,0.0,0.0,0.0,6.8,0.2 -2019,12,15,6,15,0.0,0.0,0.0,6.8,0.2 -2019,12,15,6,30,0.0,0.0,0.0,6.8,0.2 -2019,12,15,6,45,0.0,0.0,0.0,6.8,0.2 -2019,12,15,7,0,37.0,40.651449861711356,46.0,7.6,1.5 -2019,12,15,7,15,37.0,42.48782087724131,46.0,7.6,1.5 -2019,12,15,7,30,37.0,44.3045653112628,46.0,7.6,1.5 -2019,12,15,7,45,37.0,46.09390358519764,46.0,7.6,1.5 -2019,12,15,8,0,74.0,110.69634695570531,107.0,8.2,0.0 -2019,12,15,8,15,74.0,114.11972587245415,107.0,8.2,0.0 -2019,12,15,8,30,74.0,117.44328448655358,107.0,8.2,0.0 -2019,12,15,8,45,74.0,120.65279080977604,107.0,8.2,0.0 -2019,12,15,9,0,1.0,66.22614190869342,66.0,9.6,0.3 -2019,12,15,9,15,1.0,66.26588134364832,66.0,9.6,0.3 -2019,12,15,9,30,1.0,66.30354530760839,66.0,9.6,0.3 -2019,12,15,9,45,1.0,66.33897251769768,66.0,9.6,0.3 -2019,12,15,10,0,109.0,261.5492283388441,221.0,10.1,1.5 -2019,12,15,10,15,109.0,264.87468926505306,221.0,10.1,1.5 -2019,12,15,10,30,109.0,267.9101470734541,221.0,10.1,1.5 -2019,12,15,10,45,109.0,270.64260346769976,221.0,10.1,1.5 -2019,12,15,11,0,347.0,387.73343215188424,222.0,11.8,2.1 -2019,12,15,11,15,347.0,394.3955099060263,222.0,11.8,2.1 -2019,12,15,11,30,347.0,399.9942502070309,222.0,11.8,2.1 -2019,12,15,11,45,347.0,404.5056783893948,222.0,11.8,2.1 -2019,12,15,12,0,590.0,480.1013854085593,164.0,12.9,1.9 -2019,12,15,12,15,590.0,483.98414110283267,164.0,12.9,1.9 -2019,12,15,12,30,590.0,485.9438890851829,164.0,12.9,1.9 -2019,12,15,12,45,590.0,485.9722374138834,164.0,12.9,1.9 -2019,12,15,13,0,688.0,494.2330788331569,121.0,13.4,0.2 -2019,12,15,13,15,688.0,489.77093929039495,121.0,13.4,0.2 -2019,12,15,13,30,688.0,483.085060702262,121.0,13.4,0.2 -2019,12,15,13,45,688.0,474.2040730273077,121.0,13.4,0.2 -2019,12,15,14,0,791.0,465.3914400587039,72.0,14.3,1.5 -2019,12,15,14,15,791.0,450.2752005241242,72.0,14.3,1.5 -2019,12,15,14,30,791.0,432.7980198334149,72.0,14.3,1.5 -2019,12,15,14,45,791.0,413.0347379574396,72.0,14.3,1.5 -2019,12,15,15,0,310.0,199.0463908141903,74.0,13.6,1.5 -2019,12,15,15,15,310.0,189.61229171764484,74.0,13.6,1.5 -2019,12,15,15,30,310.0,179.39267589747436,74.0,13.6,1.5 -2019,12,15,15,45,310.0,168.43130531756492,74.0,13.6,1.5 -2019,12,15,16,0,295.0,84.76987059232302,6.0,12.7,1.8 -2019,12,15,16,15,295.0,73.0639946497177,6.0,12.7,1.8 -2019,12,15,16,30,295.0,60.794547138739674,6.0,12.7,1.8 -2019,12,15,16,45,295.0,48.01406771727068,6.0,12.7,1.8 -2019,12,15,17,0,0.0,0.0,0.0,12.2,1.9 -2019,12,15,17,15,0.0,0.0,0.0,12.2,1.9 -2019,12,15,17,30,0.0,0.0,0.0,12.2,1.9 -2019,12,15,17,45,0.0,0.0,0.0,12.2,1.9 -2019,12,15,18,0,0.0,0.0,0.0,12.1,0.0 -2019,12,15,18,15,0.0,0.0,0.0,12.1,0.0 -2019,12,15,18,30,0.0,0.0,0.0,12.1,0.0 -2019,12,15,18,45,0.0,0.0,0.0,12.1,0.0 -2019,12,15,19,0,0.0,0.0,0.0,11.6,0.0 -2019,12,15,19,15,0.0,0.0,0.0,11.6,0.0 -2019,12,15,19,30,0.0,0.0,0.0,11.6,0.0 -2019,12,15,19,45,0.0,0.0,0.0,11.6,0.0 -2019,12,15,20,0,0.0,0.0,0.0,11.1,0.0 -2019,12,15,20,15,0.0,0.0,0.0,11.1,0.0 -2019,12,15,20,30,0.0,0.0,0.0,11.1,0.0 -2019,12,15,20,45,0.0,0.0,0.0,11.1,0.0 -2019,12,15,21,0,0.0,0.0,0.0,11.0,0.3 -2019,12,15,21,15,0.0,0.0,0.0,11.0,0.3 -2019,12,15,21,30,0.0,0.0,0.0,11.0,0.3 -2019,12,15,21,45,0.0,0.0,0.0,11.0,0.3 -2019,12,15,22,0,0.0,0.0,0.0,10.5,2.5 -2019,12,15,22,15,0.0,0.0,0.0,10.5,2.5 -2019,12,15,22,30,0.0,0.0,0.0,10.5,2.5 -2019,12,15,22,45,0.0,0.0,0.0,10.5,2.5 -2019,12,15,23,0,0.0,0.0,0.0,10.1,2.2 -2019,12,15,23,15,0.0,0.0,0.0,10.1,2.2 -2019,12,15,23,30,0.0,0.0,0.0,10.1,2.2 -2019,12,15,23,45,0.0,0.0,0.0,10.1,2.2 -2019,12,16,0,0,0.0,0.0,0.0,11.0,2.3 -2019,12,16,0,15,0.0,0.0,0.0,11.0,2.3 -2019,12,16,0,30,0.0,0.0,0.0,11.0,2.3 -2019,12,16,0,45,0.0,0.0,0.0,11.0,2.3 -2019,12,16,1,0,0.0,0.0,0.0,10.6,0.0 -2019,12,16,1,15,0.0,0.0,0.0,10.6,0.0 -2019,12,16,1,30,0.0,0.0,0.0,10.6,0.0 -2019,12,16,1,45,0.0,0.0,0.0,10.6,0.0 -2019,12,16,2,0,0.0,0.0,0.0,10.6,0.0 -2019,12,16,2,15,0.0,0.0,0.0,10.6,0.0 -2019,12,16,2,30,0.0,0.0,0.0,10.6,0.0 -2019,12,16,2,45,0.0,0.0,0.0,10.6,0.0 -2019,12,16,3,0,0.0,0.0,0.0,10.5,0.0 -2019,12,16,3,15,0.0,0.0,0.0,10.5,0.0 -2019,12,16,3,30,0.0,0.0,0.0,10.5,0.0 -2019,12,16,3,45,0.0,0.0,0.0,10.5,0.0 -2019,12,16,4,0,0.0,0.0,0.0,10.0,0.0 -2019,12,16,4,15,0.0,0.0,0.0,10.0,0.0 -2019,12,16,4,30,0.0,0.0,0.0,10.0,0.0 -2019,12,16,4,45,0.0,0.0,0.0,10.0,0.0 -2019,12,16,5,0,0.0,0.0,0.0,10.0,0.4 -2019,12,16,5,15,0.0,0.0,0.0,10.0,0.4 -2019,12,16,5,30,0.0,0.0,0.0,10.0,0.4 -2019,12,16,5,45,0.0,0.0,0.0,10.0,0.4 -2019,12,16,6,0,0.0,0.0,0.0,10.0,2.4 -2019,12,16,6,15,0.0,0.0,0.0,10.0,2.4 -2019,12,16,6,30,0.0,0.0,0.0,10.0,2.4 -2019,12,16,6,45,0.0,0.0,0.0,10.0,2.4 -2019,12,16,7,0,1.0,15.85501945894114,16.0,10.1,2.2 -2019,12,16,7,15,1.0,15.904634309028829,16.0,10.1,2.2 -2019,12,16,7,30,1.0,15.9537188905101,16.0,10.1,2.2 -2019,12,16,7,45,1.0,16.002063015671443,16.0,10.1,2.2 -2019,12,16,8,0,3.0,46.148379002640986,46.0,11.2,2.3 -2019,12,16,8,15,3.0,46.287117659190876,46.0,11.2,2.3 -2019,12,16,8,30,3.0,46.4218109164371,46.0,11.2,2.3 -2019,12,16,8,45,3.0,46.55188199717366,46.0,11.2,2.3 -2019,12,16,9,0,1.0,57.225591305687985,57.0,11.8,0.2 -2019,12,16,9,15,1.0,57.26531728991108,57.0,11.8,0.2 -2019,12,16,9,30,1.0,57.30296850563057,57.0,11.8,0.2 -2019,12,16,9,45,1.0,57.3383837245604,57.0,11.8,0.2 -2019,12,16,10,0,0.0,69.0,69.0,12.2,1.6 -2019,12,16,10,15,0.0,69.0,69.0,12.2,1.6 -2019,12,16,10,30,0.0,69.0,69.0,12.2,1.6 -2019,12,16,10,45,0.0,69.0,69.0,12.2,1.6 -2019,12,16,11,0,0.0,75.0,75.0,12.2,2.3 -2019,12,16,11,15,0.0,75.0,75.0,12.2,2.3 -2019,12,16,11,30,0.0,75.0,75.0,12.2,2.3 -2019,12,16,11,45,0.0,75.0,75.0,12.2,2.3 -2019,12,16,12,0,0.0,78.0,78.0,12.1,0.2 -2019,12,16,12,15,0.0,78.0,78.0,12.1,0.2 -2019,12,16,12,30,0.0,78.0,78.0,12.1,0.2 -2019,12,16,12,45,0.0,78.0,78.0,12.1,0.2 -2019,12,16,13,0,2.0,96.08366452368755,95.0,11.7,2.0 -2019,12,16,13,15,2.0,96.07069757825636,95.0,11.7,2.0 -2019,12,16,13,30,2.0,96.05126846314667,95.0,11.7,2.0 -2019,12,16,13,45,2.0,96.02546037681218,95.0,11.7,2.0 -2019,12,16,14,0,5.0,83.48345958360174,81.0,11.8,1.2 -2019,12,16,14,15,5.0,83.38794047428858,81.0,11.8,1.2 -2019,12,16,14,30,5.0,83.27750264158139,81.0,11.8,1.2 -2019,12,16,14,45,5.0,83.15261899723455,81.0,11.8,1.2 -2019,12,16,15,0,6.0,42.41658917462277,40.0,11.7,0.0 -2019,12,16,15,15,6.0,42.234055511901026,40.0,11.7,0.0 -2019,12,16,15,30,6.0,42.036323445683074,40.0,11.7,0.0 -2019,12,16,15,45,6.0,41.824239695032844,40.0,11.7,0.0 -2019,12,16,16,0,3.0,11.799356217565157,11.0,11.7,0.0 -2019,12,16,16,15,3.0,11.680353704162977,11.0,11.7,0.0 -2019,12,16,16,30,3.0,11.555621894341872,11.0,11.7,0.0 -2019,12,16,16,45,3.0,11.425694908860667,11.0,11.7,0.0 -2019,12,16,17,0,0.0,0.0,0.0,11.6,0.0 -2019,12,16,17,15,0.0,0.0,0.0,11.6,0.0 -2019,12,16,17,30,0.0,0.0,0.0,11.6,0.0 -2019,12,16,17,45,0.0,0.0,0.0,11.6,0.0 -2019,12,16,18,0,0.0,0.0,0.0,11.4,0.0 -2019,12,16,18,15,0.0,0.0,0.0,11.4,0.0 -2019,12,16,18,30,0.0,0.0,0.0,11.4,0.0 -2019,12,16,18,45,0.0,0.0,0.0,11.4,0.0 -2019,12,16,19,0,0.0,0.0,0.0,11.7,0.0 -2019,12,16,19,15,0.0,0.0,0.0,11.7,0.0 -2019,12,16,19,30,0.0,0.0,0.0,11.7,0.0 -2019,12,16,19,45,0.0,0.0,0.0,11.7,0.0 -2019,12,16,20,0,0.0,0.0,0.0,11.8,0.0 -2019,12,16,20,15,0.0,0.0,0.0,11.8,0.0 -2019,12,16,20,30,0.0,0.0,0.0,11.8,0.0 -2019,12,16,20,45,0.0,0.0,0.0,11.8,0.0 -2019,12,16,21,0,0.0,0.0,0.0,11.1,0.0 -2019,12,16,21,15,0.0,0.0,0.0,11.1,0.0 -2019,12,16,21,30,0.0,0.0,0.0,11.1,0.0 -2019,12,16,21,45,0.0,0.0,0.0,11.1,0.0 -2019,12,16,22,0,0.0,0.0,0.0,11.1,1.5 -2019,12,16,22,15,0.0,0.0,0.0,11.1,1.5 -2019,12,16,22,30,0.0,0.0,0.0,11.1,1.5 -2019,12,16,22,45,0.0,0.0,0.0,11.1,1.5 -2019,12,16,23,0,0.0,0.0,0.0,11.1,1.5 -2019,12,16,23,15,0.0,0.0,0.0,11.1,1.5 -2019,12,16,23,30,0.0,0.0,0.0,11.1,1.5 -2019,12,16,23,45,0.0,0.0,0.0,11.1,1.5 -2019,12,17,0,0,0.0,0.0,0.0,10.7,0.0 -2019,12,17,0,15,0.0,0.0,0.0,10.7,0.0 -2019,12,17,0,30,0.0,0.0,0.0,10.7,0.0 -2019,12,17,0,45,0.0,0.0,0.0,10.7,0.0 -2019,12,17,1,0,0.0,0.0,0.0,11.1,0.0 -2019,12,17,1,15,0.0,0.0,0.0,11.1,0.0 -2019,12,17,1,30,0.0,0.0,0.0,11.1,0.0 -2019,12,17,1,45,0.0,0.0,0.0,11.1,0.0 -2019,12,17,2,0,0.0,0.0,0.0,11.1,0.0 -2019,12,17,2,15,0.0,0.0,0.0,11.1,0.0 -2019,12,17,2,30,0.0,0.0,0.0,11.1,0.0 -2019,12,17,2,45,0.0,0.0,0.0,11.1,0.0 -2019,12,17,3,0,0.0,0.0,0.0,11.1,0.0 -2019,12,17,3,15,0.0,0.0,0.0,11.1,0.0 -2019,12,17,3,30,0.0,0.0,0.0,11.1,0.0 -2019,12,17,3,45,0.0,0.0,0.0,11.1,0.0 -2019,12,17,4,0,0.0,0.0,0.0,11.1,0.0 -2019,12,17,4,15,0.0,0.0,0.0,11.1,0.0 -2019,12,17,4,30,0.0,0.0,0.0,11.1,0.0 -2019,12,17,4,45,0.0,0.0,0.0,11.1,0.0 -2019,12,17,5,0,0.0,0.0,0.0,11.1,0.0 -2019,12,17,5,15,0.0,0.0,0.0,11.1,0.0 -2019,12,17,5,30,0.0,0.0,0.0,11.1,0.0 -2019,12,17,5,45,0.0,0.0,0.0,11.1,0.0 -2019,12,17,6,0,0.0,0.0,0.0,10.7,0.0 -2019,12,17,6,15,0.0,0.0,0.0,10.7,0.0 -2019,12,17,6,30,0.0,0.0,0.0,10.7,0.0 -2019,12,17,6,45,0.0,0.0,0.0,10.7,0.0 -2019,12,17,7,0,1.0,14.854659588593604,15.0,11.2,0.0 -2019,12,17,7,15,1.0,14.904260191743326,15.0,11.2,0.0 -2019,12,17,7,30,1.0,14.953330678553618,15.0,11.2,0.0 -2019,12,17,7,45,1.0,15.00166092166652,15.0,11.2,0.0 -2019,12,17,8,0,2.0,43.098087927122464,43.0,13.0,0.0 -2019,12,17,8,15,2.0,43.19055380555596,43.0,13.0,0.0 -2019,12,17,8,30,2.0,43.28032352554645,43.0,13.0,0.0 -2019,12,17,8,45,2.0,43.36701267937125,43.0,13.0,0.0 -2019,12,17,9,0,1.0,64.22512502538245,64.0,13.4,0.2 -2019,12,17,9,15,1.0,64.26483960226216,64.0,13.4,0.2 -2019,12,17,9,30,1.0,64.30248000640943,64.0,13.4,0.2 -2019,12,17,9,45,1.0,64.33788505583503,64.0,13.4,0.2 -2019,12,17,10,0,2.0,105.74180628136376,105.0,14.5,1.2 -2019,12,17,10,15,2.0,105.80278574488324,105.0,14.5,1.2 -2019,12,17,10,30,2.0,105.85844737880394,105.0,14.5,1.2 -2019,12,17,10,45,2.0,105.90855283146412,105.0,14.5,1.2 -2019,12,17,11,0,1.0,89.47644377181157,89.0,15.7,0.0 -2019,12,17,11,15,1.0,89.49563083361859,89.0,15.7,0.0 -2019,12,17,11,30,1.0,89.51175543920878,89.0,15.7,0.0 -2019,12,17,11,45,1.0,89.52474854054553,89.0,15.7,0.0 -2019,12,17,12,0,3.0,122.60366349752256,121.0,16.2,0.0 -2019,12,17,12,15,3.0,122.62339397342333,121.0,16.2,0.0 -2019,12,17,12,30,3.0,122.63335256041205,121.0,16.2,0.0 -2019,12,17,12,45,3.0,122.63349661429034,121.0,16.2,0.0 -2019,12,17,13,0,7.0,130.78892620912728,127.0,16.6,0.2 -2019,12,17,13,15,7.0,130.74355493225335,127.0,16.6,0.2 -2019,12,17,13,30,7.0,130.6755725561621,127.0,16.6,0.2 -2019,12,17,13,45,7.0,130.58527019182483,127.0,16.6,0.2 -2019,12,17,14,0,7.0,89.47303452782907,86.0,16.1,1.5 -2019,12,17,14,15,7.0,89.3393461745188,86.0,16.1,1.5 -2019,12,17,14,30,7.0,89.18477760594708,86.0,16.1,1.5 -2019,12,17,14,45,7.0,89.00999070845435,86.0,16.1,1.5 -2019,12,17,15,0,6.0,42.41348623974525,40.0,16.1,1.5 -2019,12,17,15,15,6.0,42.23100499168898,40.0,16.1,1.5 -2019,12,17,15,30,6.0,42.033329704368406,40.0,16.1,1.5 -2019,12,17,15,45,6.0,41.82130685371151,40.0,16.1,1.5 -2019,12,17,16,0,3.0,11.797922177057572,11.0,15.8,1.5 -2019,12,17,16,15,3.0,11.678953835308103,11.0,15.8,1.5 -2019,12,17,16,30,3.0,11.554257842311074,11.0,15.8,1.5 -2019,12,17,16,45,3.0,11.424368165452174,11.0,15.8,1.5 -2019,12,17,17,0,0.0,0.0,0.0,15.5,1.7 -2019,12,17,17,15,0.0,0.0,0.0,15.5,1.7 -2019,12,17,17,30,0.0,0.0,0.0,15.5,1.7 -2019,12,17,17,45,0.0,0.0,0.0,15.5,1.7 -2019,12,17,18,0,0.0,0.0,0.0,14.9,3.1 -2019,12,17,18,15,0.0,0.0,0.0,14.9,3.1 -2019,12,17,18,30,0.0,0.0,0.0,14.9,3.1 -2019,12,17,18,45,0.0,0.0,0.0,14.9,3.1 -2019,12,17,19,0,0.0,0.0,0.0,13.9,3.0 -2019,12,17,19,15,0.0,0.0,0.0,13.9,3.0 -2019,12,17,19,30,0.0,0.0,0.0,13.9,3.0 -2019,12,17,19,45,0.0,0.0,0.0,13.9,3.0 -2019,12,17,20,0,0.0,0.0,0.0,13.7,2.7 -2019,12,17,20,15,0.0,0.0,0.0,13.7,2.7 -2019,12,17,20,30,0.0,0.0,0.0,13.7,2.7 -2019,12,17,20,45,0.0,0.0,0.0,13.7,2.7 -2019,12,17,21,0,0.0,0.0,0.0,13.2,1.6 -2019,12,17,21,15,0.0,0.0,0.0,13.2,1.6 -2019,12,17,21,30,0.0,0.0,0.0,13.2,1.6 -2019,12,17,21,45,0.0,0.0,0.0,13.2,1.6 -2019,12,17,22,0,0.0,0.0,0.0,12.7,2.5 -2019,12,17,22,15,0.0,0.0,0.0,12.7,2.5 -2019,12,17,22,30,0.0,0.0,0.0,12.7,2.5 -2019,12,17,22,45,0.0,0.0,0.0,12.7,2.5 -2019,12,17,23,0,0.0,0.0,0.0,12.3,1.2 -2019,12,17,23,15,0.0,0.0,0.0,12.3,1.2 -2019,12,17,23,30,0.0,0.0,0.0,12.3,1.2 -2019,12,17,23,45,0.0,0.0,0.0,12.3,1.2 -2019,12,18,0,0,0.0,0.0,0.0,11.7,0.0 -2019,12,18,0,15,0.0,0.0,0.0,11.7,0.0 -2019,12,18,0,30,0.0,0.0,0.0,11.7,0.0 -2019,12,18,0,45,0.0,0.0,0.0,11.7,0.0 -2019,12,18,1,0,0.0,0.0,0.0,12.2,0.0 -2019,12,18,1,15,0.0,0.0,0.0,12.2,0.0 -2019,12,18,1,30,0.0,0.0,0.0,12.2,0.0 -2019,12,18,1,45,0.0,0.0,0.0,12.2,0.0 -2019,12,18,2,0,0.0,0.0,0.0,11.9,0.0 -2019,12,18,2,15,0.0,0.0,0.0,11.9,0.0 -2019,12,18,2,30,0.0,0.0,0.0,11.9,0.0 -2019,12,18,2,45,0.0,0.0,0.0,11.9,0.0 -2019,12,18,3,0,0.0,0.0,0.0,11.9,0.0 -2019,12,18,3,15,0.0,0.0,0.0,11.9,0.0 -2019,12,18,3,30,0.0,0.0,0.0,11.9,0.0 -2019,12,18,3,45,0.0,0.0,0.0,11.9,0.0 -2019,12,18,4,0,0.0,0.0,0.0,11.8,0.0 -2019,12,18,4,15,0.0,0.0,0.0,11.8,0.0 -2019,12,18,4,30,0.0,0.0,0.0,11.8,0.0 -2019,12,18,4,45,0.0,0.0,0.0,11.8,0.0 -2019,12,18,5,0,0.0,0.0,0.0,12.2,0.0 -2019,12,18,5,15,0.0,0.0,0.0,12.2,0.0 -2019,12,18,5,30,0.0,0.0,0.0,12.2,0.0 -2019,12,18,5,45,0.0,0.0,0.0,12.2,0.0 -2019,12,18,6,0,0.0,0.0,0.0,11.8,1.0 -2019,12,18,6,15,0.0,0.0,0.0,11.8,1.0 -2019,12,18,6,30,0.0,0.0,0.0,11.8,1.0 -2019,12,18,6,45,0.0,0.0,0.0,11.8,1.0 -2019,12,18,7,0,1.0,14.854365051634538,15.0,12.0,1.5 -2019,12,18,7,15,1.0,14.903953976073081,15.0,12.0,1.5 -2019,12,18,7,30,1.0,14.953012908990752,15.0,12.0,1.5 -2019,12,18,7,45,1.0,15.00133177250513,15.0,12.0,1.5 -2019,12,18,8,0,2.0,38.0974073156492,38.0,12.0,0.1 -2019,12,18,8,15,2.0,38.18985142252712,38.0,12.0,0.1 -2019,12,18,8,30,2.0,38.27960000578609,38.0,12.0,0.1 -2019,12,18,8,45,2.0,38.36626874821415,38.0,12.0,0.1 -2019,12,18,9,0,1.0,56.224743260475286,56.0,12.8,0.5 -2019,12,18,9,15,1.0,56.264448486358354,56.0,12.8,0.5 -2019,12,18,9,30,1.0,56.30208002788338,56.0,12.8,0.5 -2019,12,18,9,45,1.0,56.33747674101225,56.0,12.8,0.5 -2019,12,18,10,0,0.0,69.0,69.0,13.9,3.0 -2019,12,18,10,15,0.0,69.0,69.0,13.9,3.0 -2019,12,18,10,30,0.0,69.0,69.0,13.9,3.0 -2019,12,18,10,45,0.0,69.0,69.0,13.9,3.0 -2019,12,18,11,0,1.0,103.47600283264308,103.0,14.4,5.6 -2019,12,18,11,15,1.0,103.49518537675999,103.0,14.4,5.6 -2019,12,18,11,30,1.0,103.5113061857308,103.0,14.4,5.6 -2019,12,18,11,45,1.0,103.52429622777657,103.0,14.4,5.6 -2019,12,18,12,0,2.0,118.06819975508601,117.0,14.4,4.9 -2019,12,18,12,15,2.0,118.08135030859343,117.0,14.4,4.9 -2019,12,18,12,30,2.0,118.08798780338634,117.0,14.4,4.9 -2019,12,18,12,45,2.0,118.08808381669307,117.0,14.4,4.9 -2019,12,18,13,0,22.0,173.89801731106874,162.0,14.4,7.1 -2019,12,18,13,15,22.0,173.75545544427803,162.0,14.4,7.1 -2019,12,18,13,30,22.0,173.54184685505172,162.0,14.4,7.1 -2019,12,18,13,45,22.0,173.25810624816265,162.0,14.4,7.1 -2019,12,18,14,0,275.0,279.3181080556278,143.0,14.3,6.1 -2019,12,18,14,15,275.0,274.06730222393105,143.0,14.3,6.1 -2019,12,18,14,30,275.0,267.9963953636327,143.0,14.3,6.1 -2019,12,18,14,45,275.0,261.1313840299311,143.0,14.3,6.1 -2019,12,18,15,0,428.0,238.9807735609649,67.0,13.4,5.5 -2019,12,18,15,15,428.0,225.96684278331048,67.0,13.4,5.5 -2019,12,18,15,30,428.0,211.86932573405446,67.0,13.4,5.5 -2019,12,18,15,45,428.0,196.74859014549216,67.0,13.4,5.5 -2019,12,18,16,0,214.0,74.83469266439552,18.0,12.7,4.0 -2019,12,18,16,15,214.0,66.35028245375034,18.0,12.7,4.0 -2019,12,18,16,30,214.0,57.45739598788302,18.0,12.7,4.0 -2019,12,18,16,45,214.0,48.19411397190106,18.0,12.7,4.0 -2019,12,18,17,0,0.0,0.0,0.0,12.2,2.8 -2019,12,18,17,15,0.0,0.0,0.0,12.2,2.8 -2019,12,18,17,30,0.0,0.0,0.0,12.2,2.8 -2019,12,18,17,45,0.0,0.0,0.0,12.2,2.8 -2019,12,18,18,0,0.0,0.0,0.0,12.0,4.3 -2019,12,18,18,15,0.0,0.0,0.0,12.0,4.3 -2019,12,18,18,30,0.0,0.0,0.0,12.0,4.3 -2019,12,18,18,45,0.0,0.0,0.0,12.0,4.3 -2019,12,18,19,0,0.0,0.0,0.0,10.4,2.3 -2019,12,18,19,15,0.0,0.0,0.0,10.4,2.3 -2019,12,18,19,30,0.0,0.0,0.0,10.4,2.3 -2019,12,18,19,45,0.0,0.0,0.0,10.4,2.3 -2019,12,18,20,0,0.0,0.0,0.0,8.8,3.5 -2019,12,18,20,15,0.0,0.0,0.0,8.8,3.5 -2019,12,18,20,30,0.0,0.0,0.0,8.8,3.5 -2019,12,18,20,45,0.0,0.0,0.0,8.8,3.5 -2019,12,18,21,0,0.0,0.0,0.0,8.2,2.5 -2019,12,18,21,15,0.0,0.0,0.0,8.2,2.5 -2019,12,18,21,30,0.0,0.0,0.0,8.2,2.5 -2019,12,18,21,45,0.0,0.0,0.0,8.2,2.5 -2019,12,18,22,0,0.0,0.0,0.0,7.8,2.5 -2019,12,18,22,15,0.0,0.0,0.0,7.8,2.5 -2019,12,18,22,30,0.0,0.0,0.0,7.8,2.5 -2019,12,18,22,45,0.0,0.0,0.0,7.8,2.5 -2019,12,18,23,0,0.0,0.0,0.0,7.7,4.8 -2019,12,18,23,15,0.0,0.0,0.0,7.7,4.8 -2019,12,18,23,30,0.0,0.0,0.0,7.7,4.8 -2019,12,18,23,45,0.0,0.0,0.0,7.7,4.8 -2019,12,19,0,0,0.0,0.0,0.0,6.9,2.5 -2019,12,19,0,15,0.0,0.0,0.0,6.9,2.5 -2019,12,19,0,30,0.0,0.0,0.0,6.9,2.5 -2019,12,19,0,45,0.0,0.0,0.0,6.9,2.5 -2019,12,19,1,0,0.0,0.0,0.0,4.9,1.6 -2019,12,19,1,15,0.0,0.0,0.0,4.9,1.6 -2019,12,19,1,30,0.0,0.0,0.0,4.9,1.6 -2019,12,19,1,45,0.0,0.0,0.0,4.9,1.6 -2019,12,19,2,0,0.0,0.0,0.0,3.9,2.3 -2019,12,19,2,15,0.0,0.0,0.0,3.9,2.3 -2019,12,19,2,30,0.0,0.0,0.0,3.9,2.3 -2019,12,19,2,45,0.0,0.0,0.0,3.9,2.3 -2019,12,19,3,0,0.0,0.0,0.0,3.8,0.0 -2019,12,19,3,15,0.0,0.0,0.0,3.8,0.0 -2019,12,19,3,30,0.0,0.0,0.0,3.8,0.0 -2019,12,19,3,45,0.0,0.0,0.0,3.8,0.0 -2019,12,19,4,0,0.0,0.0,0.0,2.8,0.0 -2019,12,19,4,15,0.0,0.0,0.0,2.8,0.0 -2019,12,19,4,30,0.0,0.0,0.0,2.8,0.0 -2019,12,19,4,45,0.0,0.0,0.0,2.8,0.0 -2019,12,19,5,0,0.0,0.0,0.0,3.4,0.5 -2019,12,19,5,15,0.0,0.0,0.0,3.4,0.5 -2019,12,19,5,30,0.0,0.0,0.0,3.4,0.5 -2019,12,19,5,45,0.0,0.0,0.0,3.4,0.5 -2019,12,19,6,0,0.0,0.0,0.0,7.9,4.7 -2019,12,19,6,15,0.0,0.0,0.0,7.9,4.7 -2019,12,19,6,30,0.0,0.0,0.0,7.9,4.7 -2019,12,19,6,45,0.0,0.0,0.0,7.9,4.7 -2019,12,19,7,0,499.0,-41.78618256149751,31.0,8.5,5.8 -2019,12,19,7,15,499.0,-17.04584878003798,31.0,8.5,5.8 -2019,12,19,7,30,499.0,7.430067749459788,31.0,8.5,5.8 -2019,12,19,7,45,499.0,31.536757394805324,31.0,8.5,5.8 -2019,12,19,8,0,743.0,94.99007367983612,59.0,10.1,6.0 -2019,12,19,8,15,743.0,129.32675907214417,59.0,10.1,6.0 -2019,12,19,8,30,743.0,162.6622411471481,59.0,10.1,6.0 -2019,12,19,8,45,743.0,194.8537722528466,59.0,10.1,6.0 -2019,12,19,9,0,864.0,266.9214897182067,73.0,11.2,4.2 -2019,12,19,9,15,864.0,301.22051147909735,73.0,11.2,4.2 -2019,12,19,9,30,864.0,333.72819864007676,73.0,11.2,4.2 -2019,12,19,9,45,864.0,364.30534829405025,73.0,11.2,4.2 -2019,12,19,10,0,923.0,422.6606545297835,81.0,12.4,4.5 -2019,12,19,10,15,923.0,450.7908892495689,81.0,12.4,4.5 -2019,12,19,10,30,923.0,476.4679735777468,81.0,12.4,4.5 -2019,12,19,10,45,923.0,499.58195429720604,81.0,12.4,4.5 -2019,12,19,11,0,947.0,533.4496853119201,83.0,14.0,4.2 -2019,12,19,11,15,947.0,551.6122220132036,83.0,14.0,4.2 -2019,12,19,11,30,947.0,566.8758274454168,83.0,14.0,4.2 -2019,12,19,11,45,947.0,579.1751405067876,83.0,14.0,4.2 -2019,12,19,12,0,940.0,584.7212714166089,83.0,14.5,4.5 -2019,12,19,12,15,940.0,590.9008976880624,83.0,14.5,4.5 -2019,12,19,12,30,940.0,594.0199479376108,83.0,14.5,4.5 -2019,12,19,12,45,940.0,594.0650659132402,83.0,14.5,4.5 -2019,12,19,13,0,903.0,566.0388944114957,78.0,15.0,3.6 -2019,12,19,13,15,903.0,560.1884512646408,78.0,15.0,3.6 -2019,12,19,13,30,903.0,551.4223980760769,78.0,15.0,3.6 -2019,12,19,13,45,903.0,539.778272431347,78.0,15.0,3.6 -2019,12,19,14,0,822.0,475.18214796134,68.0,14.9,3.7 -2019,12,19,14,15,822.0,459.4898912992047,68.0,14.9,3.7 -2019,12,19,14,30,822.0,441.3467278158703,68.0,14.9,3.7 -2019,12,19,14,45,822.0,420.83034932276144,68.0,14.9,3.7 -2019,12,19,15,0,655.0,312.97900196717507,50.0,14.1,4.0 -2019,12,19,15,15,655.0,293.0664765329875,50.0,14.1,4.0 -2019,12,19,15,30,655.0,271.4959632423982,50.0,14.1,4.0 -2019,12,19,15,45,655.0,248.35983034488322,50.0,14.1,4.0 -2019,12,19,16,0,327.0,105.74593611067574,19.0,13.0,3.5 -2019,12,19,16,15,327.0,92.78381850615547,19.0,13.0,3.5 -2019,12,19,16,30,327.0,79.19764841862334,19.0,13.0,3.5 -2019,12,19,16,45,327.0,65.04560391418093,19.0,13.0,3.5 -2019,12,19,17,0,0.0,0.0,0.0,12.1,3.0 -2019,12,19,17,15,0.0,0.0,0.0,12.1,3.0 -2019,12,19,17,30,0.0,0.0,0.0,12.1,3.0 -2019,12,19,17,45,0.0,0.0,0.0,12.1,3.0 -2019,12,19,18,0,0.0,0.0,0.0,11.0,2.5 -2019,12,19,18,15,0.0,0.0,0.0,11.0,2.5 -2019,12,19,18,30,0.0,0.0,0.0,11.0,2.5 -2019,12,19,18,45,0.0,0.0,0.0,11.0,2.5 -2019,12,19,19,0,0.0,0.0,0.0,9.9,2.2 -2019,12,19,19,15,0.0,0.0,0.0,9.9,2.2 -2019,12,19,19,30,0.0,0.0,0.0,9.9,2.2 -2019,12,19,19,45,0.0,0.0,0.0,9.9,2.2 -2019,12,19,20,0,0.0,0.0,0.0,9.3,3.0 -2019,12,19,20,15,0.0,0.0,0.0,9.3,3.0 -2019,12,19,20,30,0.0,0.0,0.0,9.3,3.0 -2019,12,19,20,45,0.0,0.0,0.0,9.3,3.0 -2019,12,19,21,0,0.0,0.0,0.0,8.2,2.5 -2019,12,19,21,15,0.0,0.0,0.0,8.2,2.5 -2019,12,19,21,30,0.0,0.0,0.0,8.2,2.5 -2019,12,19,21,45,0.0,0.0,0.0,8.2,2.5 -2019,12,19,22,0,0.0,0.0,0.0,7.5,1.6 -2019,12,19,22,15,0.0,0.0,0.0,7.5,1.6 -2019,12,19,22,30,0.0,0.0,0.0,7.5,1.6 -2019,12,19,22,45,0.0,0.0,0.0,7.5,1.6 -2019,12,19,23,0,0.0,0.0,0.0,5.9,2.7 -2019,12,19,23,15,0.0,0.0,0.0,5.9,2.7 -2019,12,19,23,30,0.0,0.0,0.0,5.9,2.7 -2019,12,19,23,45,0.0,0.0,0.0,5.9,2.7 -2019,12,20,0,0,0.0,0.0,0.0,7.8,3.7 -2019,12,20,0,15,0.0,0.0,0.0,7.8,3.7 -2019,12,20,0,30,0.0,0.0,0.0,7.8,3.7 -2019,12,20,0,45,0.0,0.0,0.0,7.8,3.7 -2019,12,20,1,0,0.0,0.0,0.0,7.9,4.5 -2019,12,20,1,15,0.0,0.0,0.0,7.9,4.5 -2019,12,20,1,30,0.0,0.0,0.0,7.9,4.5 -2019,12,20,1,45,0.0,0.0,0.0,7.9,4.5 -2019,12,20,2,0,0.0,0.0,0.0,8.2,3.6 -2019,12,20,2,15,0.0,0.0,0.0,8.2,3.6 -2019,12,20,2,30,0.0,0.0,0.0,8.2,3.6 -2019,12,20,2,45,0.0,0.0,0.0,8.2,3.6 -2019,12,20,3,0,0.0,0.0,0.0,7.2,3.5 -2019,12,20,3,15,0.0,0.0,0.0,7.2,3.5 -2019,12,20,3,30,0.0,0.0,0.0,7.2,3.5 -2019,12,20,3,45,0.0,0.0,0.0,7.2,3.5 -2019,12,20,4,0,0.0,0.0,0.0,7.2,2.7 -2019,12,20,4,15,0.0,0.0,0.0,7.2,2.7 -2019,12,20,4,30,0.0,0.0,0.0,7.2,2.7 -2019,12,20,4,45,0.0,0.0,0.0,7.2,2.7 -2019,12,20,5,0,0.0,0.0,0.0,7.1,2.7 -2019,12,20,5,15,0.0,0.0,0.0,7.1,2.7 -2019,12,20,5,30,0.0,0.0,0.0,7.1,2.7 -2019,12,20,5,45,0.0,0.0,0.0,7.1,2.7 -2019,12,20,6,0,0.0,0.0,0.0,6.4,0.2 -2019,12,20,6,15,0.0,0.0,0.0,6.4,0.2 -2019,12,20,6,30,0.0,0.0,0.0,6.4,0.2 -2019,12,20,6,45,0.0,0.0,0.0,6.4,0.2 -2019,12,20,7,0,524.0,-46.51856757993167,30.0,8.6,2.0 -2019,12,20,7,15,524.0,-20.542146948629835,30.0,8.6,2.0 -2019,12,20,7,30,524.0,5.156645505954305,30.0,8.6,2.0 -2019,12,20,7,45,524.0,30.467763609179926,30.0,8.6,2.0 -2019,12,20,8,0,778.0,92.53823462998382,55.0,11.3,1.6 -2019,12,20,8,15,778.0,128.48767753891127,55.0,11.3,1.6 -2019,12,20,8,30,778.0,163.38889167780988,55.0,11.3,1.6 -2019,12,20,8,45,778.0,197.0924246896051,55.0,11.3,1.6 -2019,12,20,9,0,903.0,268.48318694489296,66.0,13.1,2.3 -2019,12,20,9,15,903.0,304.3257248978015,66.0,13.1,2.3 -2019,12,20,9,30,903.0,338.29631504907024,66.0,13.1,2.3 -2019,12,20,9,45,903.0,370.24949011641206,66.0,13.1,2.3 -2019,12,20,10,0,964.0,428.61426192413734,72.0,15.1,3.7 -2019,12,20,10,15,964.0,457.9901970906678,72.0,15.1,3.7 -2019,12,20,10,30,964.0,484.80434819903206,72.0,15.1,3.7 -2019,12,20,10,45,964.0,508.941892937601,72.0,15.1,3.7 -2019,12,20,11,0,988.0,543.709415961132,74.0,16.2,4.1 -2019,12,20,11,15,988.0,562.6558063939162,74.0,16.2,4.1 -2019,12,20,11,30,988.0,578.5781542843538,74.0,16.2,4.1 -2019,12,20,11,45,988.0,591.4082776943349,74.0,16.2,4.1 -2019,12,20,12,0,982.0,596.8902771422252,73.0,17.3,4.1 -2019,12,20,12,15,982.0,603.3451673131952,73.0,17.3,4.1 -2019,12,20,12,30,982.0,606.6031518440036,73.0,17.3,4.1 -2019,12,20,12,45,982.0,606.6502795447142,73.0,17.3,4.1 -2019,12,20,13,0,944.0,579.9583636306215,70.0,17.8,4.0 -2019,12,20,13,15,944.0,573.8430882397151,70.0,17.8,4.0 -2019,12,20,13,30,944.0,564.6802217706654,70.0,17.8,4.0 -2019,12,20,13,45,944.0,552.5090010244014,70.0,17.8,4.0 -2019,12,20,14,0,862.0,488.7827243873426,62.0,17.7,3.0 -2019,12,20,14,15,862.0,472.3290134479232,62.0,17.7,3.0 -2019,12,20,14,30,862.0,453.3054673825738,62.0,17.7,3.0 -2019,12,20,14,45,862.0,431.79354793609406,62.0,17.7,3.0 -2019,12,20,15,0,691.0,324.2700607459813,47.0,16.8,2.1 -2019,12,20,15,15,691.0,303.2658627693252,47.0,16.8,2.1 -2019,12,20,15,30,691.0,280.5127803885364,47.0,16.8,2.1 -2019,12,20,15,45,691.0,256.10824579548574,47.0,16.8,2.1 -2019,12,20,16,0,346.0,110.7109116961907,19.0,15.6,2.1 -2019,12,20,16,15,346.0,96.99744311689308,19.0,15.6,2.1 -2019,12,20,16,30,346.0,82.62374876440609,19.0,15.6,2.1 -2019,12,20,16,45,346.0,67.65137900463677,19.0,15.6,2.1 -2019,12,20,17,0,0.0,0.0,0.0,14.1,1.9 -2019,12,20,17,15,0.0,0.0,0.0,14.1,1.9 -2019,12,20,17,30,0.0,0.0,0.0,14.1,1.9 -2019,12,20,17,45,0.0,0.0,0.0,14.1,1.9 -2019,12,20,18,0,0.0,0.0,0.0,12.1,0.4 -2019,12,20,18,15,0.0,0.0,0.0,12.1,0.4 -2019,12,20,18,30,0.0,0.0,0.0,12.1,0.4 -2019,12,20,18,45,0.0,0.0,0.0,12.1,0.4 -2019,12,20,19,0,0.0,0.0,0.0,11.0,3.2 -2019,12,20,19,15,0.0,0.0,0.0,11.0,3.2 -2019,12,20,19,30,0.0,0.0,0.0,11.0,3.2 -2019,12,20,19,45,0.0,0.0,0.0,11.0,3.2 -2019,12,20,20,0,0.0,0.0,0.0,10.5,3.4 -2019,12,20,20,15,0.0,0.0,0.0,10.5,3.4 -2019,12,20,20,30,0.0,0.0,0.0,10.5,3.4 -2019,12,20,20,45,0.0,0.0,0.0,10.5,3.4 -2019,12,20,21,0,0.0,0.0,0.0,9.2,1.5 -2019,12,20,21,15,0.0,0.0,0.0,9.2,1.5 -2019,12,20,21,30,0.0,0.0,0.0,9.2,1.5 -2019,12,20,21,45,0.0,0.0,0.0,9.2,1.5 -2019,12,20,22,0,0.0,0.0,0.0,7.7,1.5 -2019,12,20,22,15,0.0,0.0,0.0,7.7,1.5 -2019,12,20,22,30,0.0,0.0,0.0,7.7,1.5 -2019,12,20,22,45,0.0,0.0,0.0,7.7,1.5 -2019,12,20,23,0,0.0,0.0,0.0,6.8,1.3 -2019,12,20,23,15,0.0,0.0,0.0,6.8,1.3 -2019,12,20,23,30,0.0,0.0,0.0,6.8,1.3 -2019,12,20,23,45,0.0,0.0,0.0,6.8,1.3 -2019,12,21,0,0,0.0,0.0,0.0,6.9,0.2 -2019,12,21,0,15,0.0,0.0,0.0,6.9,0.2 -2019,12,21,0,30,0.0,0.0,0.0,6.9,0.2 -2019,12,21,0,45,0.0,0.0,0.0,6.9,0.2 -2019,12,21,1,0,0.0,0.0,0.0,4.9,1.3 -2019,12,21,1,15,0.0,0.0,0.0,4.9,1.3 -2019,12,21,1,30,0.0,0.0,0.0,4.9,1.3 -2019,12,21,1,45,0.0,0.0,0.0,4.9,1.3 -2019,12,21,2,0,0.0,0.0,0.0,4.4,0.2 -2019,12,21,2,15,0.0,0.0,0.0,4.4,0.2 -2019,12,21,2,30,0.0,0.0,0.0,4.4,0.2 -2019,12,21,2,45,0.0,0.0,0.0,4.4,0.2 -2019,12,21,3,0,0.0,0.0,0.0,4.4,2.2 -2019,12,21,3,15,0.0,0.0,0.0,4.4,2.2 -2019,12,21,3,30,0.0,0.0,0.0,4.4,2.2 -2019,12,21,3,45,0.0,0.0,0.0,4.4,2.2 -2019,12,21,4,0,0.0,0.0,0.0,4.3,2.5 -2019,12,21,4,15,0.0,0.0,0.0,4.3,2.5 -2019,12,21,4,30,0.0,0.0,0.0,4.3,2.5 -2019,12,21,4,45,0.0,0.0,0.0,4.3,2.5 -2019,12,21,5,0,0.0,0.0,0.0,4.0,1.6 -2019,12,21,5,15,0.0,0.0,0.0,4.0,1.6 -2019,12,21,5,30,0.0,0.0,0.0,4.0,1.6 -2019,12,21,5,45,0.0,0.0,0.0,4.0,1.6 -2019,12,21,6,0,0.0,0.0,0.0,4.4,1.9 -2019,12,21,6,15,0.0,0.0,0.0,4.4,1.9 -2019,12,21,6,30,0.0,0.0,0.0,4.4,1.9 -2019,12,21,6,45,0.0,0.0,0.0,4.4,1.9 -2019,12,21,7,0,385.0,-21.258524686734958,35.0,5.0,0.2 -2019,12,21,7,15,385.0,-2.1742996737365345,35.0,5.0,0.2 -2019,12,21,7,30,385.0,16.7059588779226,35.0,5.0,0.2 -2019,12,21,7,45,385.0,35.301402802574124,35.0,5.0,0.2 -2019,12,21,8,0,820.0,88.47161276544637,49.0,9.6,2.0 -2019,12,21,8,15,820.0,126.35878549479891,49.0,9.6,2.0 -2019,12,21,8,30,820.0,163.14122832414796,49.0,9.6,2.0 -2019,12,21,8,45,820.0,198.66143318635488,49.0,9.6,2.0 -2019,12,21,9,0,830.0,265.00836170995393,79.0,11.4,1.3 -2019,12,21,9,15,830.0,297.9507342059298,79.0,11.4,1.3 -2019,12,21,9,30,830.0,329.17262580695194,79.0,11.4,1.3 -2019,12,21,9,45,830.0,358.5403395799127,79.0,11.4,1.3 -2019,12,21,10,0,869.0,413.3500421045785,92.0,14.1,0.0 -2019,12,21,10,15,869.0,439.8289592942699,92.0,14.1,0.0 -2019,12,21,10,30,869.0,463.9987323648207,92.0,14.1,0.0 -2019,12,21,10,45,869.0,485.75586263733203,92.0,14.1,0.0 -2019,12,21,11,0,668.0,466.47847879189936,149.0,15.8,0.2 -2019,12,21,11,15,668.0,479.28737711932604,149.0,15.8,0.2 -2019,12,21,11,30,668.0,490.05184098837117,149.0,15.8,0.2 -2019,12,21,11,45,668.0,498.72577531215745,149.0,15.8,0.2 -2019,12,21,12,0,977.0,595.074521140571,74.0,17.2,1.3 -2019,12,21,12,15,977.0,601.4960392398523,74.0,17.2,1.3 -2019,12,21,12,30,977.0,604.7371798445142,74.0,17.2,1.3 -2019,12,21,12,45,977.0,604.7840638928984,74.0,17.2,1.3 -2019,12,21,13,0,105.0,258.70607115162005,202.0,17.2,0.2 -2019,12,21,13,15,105.0,258.02592992217706,202.0,17.2,0.2 -2019,12,21,13,30,105.0,257.0068354632833,202.0,17.2,0.2 -2019,12,21,13,45,105.0,255.65315169386616,202.0,17.2,0.2 -2019,12,21,14,0,100.0,196.49588123394994,147.0,17.1,1.9 -2019,12,21,14,15,100.0,194.5872484674884,147.0,17.1,1.9 -2019,12,21,14,30,100.0,192.380514467584,147.0,17.1,1.9 -2019,12,21,14,45,100.0,189.88512880800826,147.0,17.1,1.9 -2019,12,21,15,0,54.0,93.66035964115719,72.0,16.5,0.0 -2019,12,21,15,15,54.0,92.01906106256757,72.0,16.5,0.0 -2019,12,21,15,30,54.0,90.24110211304586,72.0,16.5,0.0 -2019,12,21,15,45,54.0,88.33409628577112,72.0,16.5,0.0 -2019,12,21,16,0,27.0,21.15310483623231,14.0,15.5,0.0 -2019,12,21,16,15,27.0,20.08306299746567,14.0,15.5,0.0 -2019,12,21,16,30,27.0,18.961504710015056,14.0,15.5,0.0 -2019,12,21,16,45,27.0,17.793232658652087,14.0,15.5,0.0 -2019,12,21,17,0,0.0,0.0,0.0,14.7,0.0 -2019,12,21,17,15,0.0,0.0,0.0,14.7,0.0 -2019,12,21,17,30,0.0,0.0,0.0,14.7,0.0 -2019,12,21,17,45,0.0,0.0,0.0,14.7,0.0 -2019,12,21,18,0,0.0,0.0,0.0,12.5,0.0 -2019,12,21,18,15,0.0,0.0,0.0,12.5,0.0 -2019,12,21,18,30,0.0,0.0,0.0,12.5,0.0 -2019,12,21,18,45,0.0,0.0,0.0,12.5,0.0 -2019,12,21,19,0,0.0,0.0,0.0,10.5,0.0 -2019,12,21,19,15,0.0,0.0,0.0,10.5,0.0 -2019,12,21,19,30,0.0,0.0,0.0,10.5,0.0 -2019,12,21,19,45,0.0,0.0,0.0,10.5,0.0 -2019,12,21,20,0,0.0,0.0,0.0,9.8,0.0 -2019,12,21,20,15,0.0,0.0,0.0,9.8,0.0 -2019,12,21,20,30,0.0,0.0,0.0,9.8,0.0 -2019,12,21,20,45,0.0,0.0,0.0,9.8,0.0 -2019,12,21,21,0,0.0,0.0,0.0,8.2,0.2 -2019,12,21,21,15,0.0,0.0,0.0,8.2,0.2 -2019,12,21,21,30,0.0,0.0,0.0,8.2,0.2 -2019,12,21,21,45,0.0,0.0,0.0,8.2,0.2 -2019,12,21,22,0,0.0,0.0,0.0,7.2,1.5 -2019,12,21,22,15,0.0,0.0,0.0,7.2,1.5 -2019,12,21,22,30,0.0,0.0,0.0,7.2,1.5 -2019,12,21,22,45,0.0,0.0,0.0,7.2,1.5 -2019,12,21,23,0,0.0,0.0,0.0,7.0,1.3 -2019,12,21,23,15,0.0,0.0,0.0,7.0,1.3 -2019,12,21,23,30,0.0,0.0,0.0,7.0,1.3 -2019,12,21,23,45,0.0,0.0,0.0,7.0,1.3 -2019,12,22,0,0,0.0,0.0,0.0,5.5,0.2 -2019,12,22,0,15,0.0,0.0,0.0,5.5,0.2 -2019,12,22,0,30,0.0,0.0,0.0,5.5,0.2 -2019,12,22,0,45,0.0,0.0,0.0,5.5,0.2 -2019,12,22,1,0,0.0,0.0,0.0,4.4,2.1 -2019,12,22,1,15,0.0,0.0,0.0,4.4,2.1 -2019,12,22,1,30,0.0,0.0,0.0,4.4,2.1 -2019,12,22,1,45,0.0,0.0,0.0,4.4,2.1 -2019,12,22,2,0,0.0,0.0,0.0,4.4,2.2 -2019,12,22,2,15,0.0,0.0,0.0,4.4,2.2 -2019,12,22,2,30,0.0,0.0,0.0,4.4,2.2 -2019,12,22,2,45,0.0,0.0,0.0,4.4,2.2 -2019,12,22,3,0,0.0,0.0,0.0,4.3,3.0 -2019,12,22,3,15,0.0,0.0,0.0,4.3,3.0 -2019,12,22,3,30,0.0,0.0,0.0,4.3,3.0 -2019,12,22,3,45,0.0,0.0,0.0,4.3,3.0 -2019,12,22,4,0,0.0,0.0,0.0,3.7,1.9 -2019,12,22,4,15,0.0,0.0,0.0,3.7,1.9 -2019,12,22,4,30,0.0,0.0,0.0,3.7,1.9 -2019,12,22,4,45,0.0,0.0,0.0,3.7,1.9 -2019,12,22,5,0,0.0,0.0,0.0,2.3,0.0 -2019,12,22,5,15,0.0,0.0,0.0,2.3,0.0 -2019,12,22,5,30,0.0,0.0,0.0,2.3,0.0 -2019,12,22,5,45,0.0,0.0,0.0,2.3,0.0 -2019,12,22,6,0,0.0,0.0,0.0,3.3,0.0 -2019,12,22,6,15,0.0,0.0,0.0,3.3,0.0 -2019,12,22,6,30,0.0,0.0,0.0,3.3,0.0 -2019,12,22,6,45,0.0,0.0,0.0,3.3,0.0 -2019,12,22,7,0,240.0,2.9218913321457194,38.0,3.7,0.0 -2019,12,22,7,15,240.0,14.818238466445049,38.0,3.7,0.0 -2019,12,22,7,30,240.0,26.58744101791769,38.0,3.7,0.0 -2019,12,22,7,45,240.0,38.17910145439747,38.0,3.7,0.0 -2019,12,22,8,0,357.0,116.17107897813815,99.0,7.0,0.0 -2019,12,22,8,15,357.0,132.66542683511844,99.0,7.0,0.0 -2019,12,22,8,30,357.0,148.67882565457546,99.0,7.0,0.0 -2019,12,22,8,45,357.0,164.14270360434236,99.0,7.0,0.0 -2019,12,22,9,0,645.0,255.52126913252792,111.0,9.7,0.0 -2019,12,22,9,15,645.0,281.1203919286519,111.0,9.7,0.0 -2019,12,22,9,30,645.0,305.382549644204,111.0,9.7,0.0 -2019,12,22,9,45,645.0,328.2038479950521,111.0,9.7,0.0 -2019,12,22,10,0,801.0,403.1670336513688,107.0,12.0,0.2 -2019,12,22,10,15,801.0,427.5733113660782,107.0,12.0,0.2 -2019,12,22,10,30,801.0,449.8511934122152,107.0,12.0,0.2 -2019,12,22,10,45,801.0,469.90528247869514,107.0,12.0,0.2 -2019,12,22,11,0,868.0,514.4893170606272,102.0,14.5,1.6 -2019,12,22,11,15,868.0,531.1327775278362,102.0,14.5,1.6 -2019,12,22,11,30,868.0,545.1197672185531,102.0,14.5,1.6 -2019,12,22,11,45,868.0,556.3903916956003,102.0,14.5,1.6 -2019,12,22,12,0,884.0,567.4290407356773,96.0,15.7,1.9 -2019,12,22,12,15,884.0,573.2391459890314,96.0,15.7,1.9 -2019,12,22,12,30,884.0,576.1716874477427,96.0,15.7,1.9 -2019,12,22,12,45,884.0,576.2141075190723,96.0,15.7,1.9 -2019,12,22,13,0,718.0,503.72505568959446,116.0,16.1,0.4 -2019,12,22,13,15,718.0,499.07430740039615,116.0,16.1,0.4 -2019,12,22,13,30,718.0,492.1058255527175,116.0,16.1,0.4 -2019,12,22,13,45,718.0,482.8494502556511,116.0,16.1,0.4 -2019,12,22,14,0,613.0,404.37935080926303,101.0,16.0,3.2 -2019,12,22,14,15,613.0,392.6797393950654,101.0,16.0,3.2 -2019,12,22,14,30,613.0,379.15281543826643,101.0,16.0,3.2 -2019,12,22,14,45,613.0,363.8565033039404,101.0,16.0,3.2 -2019,12,22,15,0,32.0,78.83426057547689,66.0,15.5,3.5 -2019,12,22,15,15,32.0,77.86166475359646,66.0,15.5,3.5 -2019,12,22,15,30,32.0,76.80808713625295,66.0,15.5,3.5 -2019,12,22,15,45,32.0,75.67803930455202,66.0,15.5,3.5 -2019,12,22,16,0,16.0,17.238180148398534,13.0,14.7,2.8 -2019,12,22,16,15,16.0,16.60409794349223,13.0,14.7,2.8 -2019,12,22,16,30,16.0,15.939488274904575,13.0,14.7,2.8 -2019,12,22,16,45,16.0,15.24719710326919,13.0,14.7,2.8 -2019,12,22,17,0,0.0,0.0,0.0,14.3,2.3 -2019,12,22,17,15,0.0,0.0,0.0,14.3,2.3 -2019,12,22,17,30,0.0,0.0,0.0,14.3,2.3 -2019,12,22,17,45,0.0,0.0,0.0,14.3,2.3 -2019,12,22,18,0,0.0,0.0,0.0,13.8,3.4 -2019,12,22,18,15,0.0,0.0,0.0,13.8,3.4 -2019,12,22,18,30,0.0,0.0,0.0,13.8,3.4 -2019,12,22,18,45,0.0,0.0,0.0,13.8,3.4 -2019,12,22,19,0,0.0,0.0,0.0,12.7,1.9 -2019,12,22,19,15,0.0,0.0,0.0,12.7,1.9 -2019,12,22,19,30,0.0,0.0,0.0,12.7,1.9 -2019,12,22,19,45,0.0,0.0,0.0,12.7,1.9 -2019,12,22,20,0,0.0,0.0,0.0,11.8,0.2 -2019,12,22,20,15,0.0,0.0,0.0,11.8,0.2 -2019,12,22,20,30,0.0,0.0,0.0,11.8,0.2 -2019,12,22,20,45,0.0,0.0,0.0,11.8,0.2 -2019,12,22,21,0,0.0,0.0,0.0,12.1,1.3 -2019,12,22,21,15,0.0,0.0,0.0,12.1,1.3 -2019,12,22,21,30,0.0,0.0,0.0,12.1,1.3 -2019,12,22,21,45,0.0,0.0,0.0,12.1,1.3 -2019,12,22,22,0,0.0,0.0,0.0,11.6,0.0 -2019,12,22,22,15,0.0,0.0,0.0,11.6,0.0 -2019,12,22,22,30,0.0,0.0,0.0,11.6,0.0 -2019,12,22,22,45,0.0,0.0,0.0,11.6,0.0 -2019,12,22,23,0,0.0,0.0,0.0,11.2,0.0 -2019,12,22,23,15,0.0,0.0,0.0,11.2,0.0 -2019,12,22,23,30,0.0,0.0,0.0,11.2,0.0 -2019,12,22,23,45,0.0,0.0,0.0,11.2,0.0 -2019,12,23,0,0,0.0,0.0,0.0,11.5,0.0 -2019,12,23,0,15,0.0,0.0,0.0,11.5,0.0 -2019,12,23,0,30,0.0,0.0,0.0,11.5,0.0 -2019,12,23,0,45,0.0,0.0,0.0,11.5,0.0 -2019,12,23,1,0,0.0,0.0,0.0,10.6,1.5 -2019,12,23,1,15,0.0,0.0,0.0,10.6,1.5 -2019,12,23,1,30,0.0,0.0,0.0,10.6,1.5 -2019,12,23,1,45,0.0,0.0,0.0,10.6,1.5 -2019,12,23,2,0,0.0,0.0,0.0,10.5,1.3 -2019,12,23,2,15,0.0,0.0,0.0,10.5,1.3 -2019,12,23,2,30,0.0,0.0,0.0,10.5,1.3 -2019,12,23,2,45,0.0,0.0,0.0,10.5,1.3 -2019,12,23,3,0,0.0,0.0,0.0,10.1,0.0 -2019,12,23,3,15,0.0,0.0,0.0,10.1,0.0 -2019,12,23,3,30,0.0,0.0,0.0,10.1,0.0 -2019,12,23,3,45,0.0,0.0,0.0,10.1,0.0 -2019,12,23,4,0,0.0,0.0,0.0,10.7,0.0 -2019,12,23,4,15,0.0,0.0,0.0,10.7,0.0 -2019,12,23,4,30,0.0,0.0,0.0,10.7,0.0 -2019,12,23,4,45,0.0,0.0,0.0,10.7,0.0 -2019,12,23,5,0,0.0,0.0,0.0,10.9,0.0 -2019,12,23,5,15,0.0,0.0,0.0,10.9,0.0 -2019,12,23,5,30,0.0,0.0,0.0,10.9,0.0 -2019,12,23,5,45,0.0,0.0,0.0,10.9,0.0 -2019,12,23,6,0,0.0,0.0,0.0,10.7,0.0 -2019,12,23,6,15,0.0,0.0,0.0,10.7,0.0 -2019,12,23,6,30,0.0,0.0,0.0,10.7,0.0 -2019,12,23,6,45,0.0,0.0,0.0,10.7,0.0 -2019,12,23,7,0,1.0,13.853873961852637,14.0,11.2,0.0 -2019,12,23,7,15,1.0,13.903443377470815,14.0,11.2,0.0 -2019,12,23,7,30,1.0,13.952483010072527,14.0,11.2,0.0 -2019,12,23,7,45,1.0,14.00078286442227,14.0,11.2,0.0 -2019,12,23,8,0,3.0,44.14440833938578,44.0,12.3,0.0 -2019,12,23,8,15,3.0,44.28301994693219,44.0,12.3,0.0 -2019,12,23,8,30,3.0,44.41758985972249,44.0,12.3,0.0 -2019,12,23,8,45,3.0,44.547541828730566,44.0,12.3,0.0 -2019,12,23,9,0,2.0,71.44821291978302,71.0,13.0,0.0 -2019,12,23,9,15,2.0,71.5275921306167,71.0,13.0,0.0 -2019,12,23,9,30,2.0,71.6028256043541,71.0,13.0,0.0 -2019,12,23,9,45,2.0,71.67359117971063,71.0,13.0,0.0 -2019,12,23,10,0,3.0,118.10937874144274,117.0,14.4,0.3 -2019,12,23,10,15,3.0,118.20079042334041,117.0,14.4,0.3 -2019,12,23,10,30,3.0,118.28423037640329,117.0,14.4,0.3 -2019,12,23,10,45,3.0,118.35934129794246,117.0,14.4,0.3 -2019,12,23,11,0,9.0,168.27740465438188,164.0,14.4,2.5 -2019,12,23,11,15,9.0,168.4499796318472,164.0,14.4,2.5 -2019,12,23,11,30,9.0,168.59500983367565,164.0,14.4,2.5 -2019,12,23,11,45,9.0,168.71187421827756,164.0,14.4,2.5 -2019,12,23,12,0,210.0,348.00168826972356,236.0,14.6,2.2 -2019,12,23,12,15,210.0,349.3819531631208,236.0,14.6,2.2 -2019,12,23,12,30,210.0,350.078615933826,236.0,14.6,2.2 -2019,12,23,12,45,210.0,350.0886933649014,236.0,14.6,2.2 -2019,12,23,13,0,546.0,446.8715699884242,152.0,16.0,2.7 -2019,12,23,13,15,546.0,443.3348355953206,152.0,16.0,2.7 -2019,12,23,13,30,546.0,438.03554440907334,152.0,16.0,2.7 -2019,12,23,13,45,546.0,430.99638880810403,152.0,16.0,2.7 -2019,12,23,14,0,21.0,126.39413505912948,116.0,15.0,3.1 -2019,12,23,14,15,21.0,125.99332217817256,116.0,15.0,3.1 -2019,12,23,14,30,21.0,125.52990803819264,116.0,15.0,3.1 -2019,12,23,14,45,21.0,125.00587704968174,116.0,15.0,3.1 -2019,12,23,15,0,18.0,65.22011988038572,58.0,14.9,3.1 -2019,12,23,15,15,18.0,64.67302035418919,58.0,14.9,3.1 -2019,12,23,15,30,18.0,64.08036737101529,58.0,14.9,3.1 -2019,12,23,15,45,18.0,63.44469876192371,58.0,14.9,3.1 -2019,12,23,16,0,9.0,14.384368278744104,12.0,14.7,3.1 -2019,12,23,16,15,9.0,14.02768766582189,12.0,14.7,3.1 -2019,12,23,16,30,9.0,13.653834903338351,12.0,14.7,3.1 -2019,12,23,16,45,9.0,13.264410886217362,12.0,14.7,3.1 -2019,12,23,17,0,0.0,0.0,0.0,14.3,3.0 -2019,12,23,17,15,0.0,0.0,0.0,14.3,3.0 -2019,12,23,17,30,0.0,0.0,0.0,14.3,3.0 -2019,12,23,17,45,0.0,0.0,0.0,14.3,3.0 -2019,12,23,18,0,0.0,0.0,0.0,13.8,2.0 -2019,12,23,18,15,0.0,0.0,0.0,13.8,2.0 -2019,12,23,18,30,0.0,0.0,0.0,13.8,2.0 -2019,12,23,18,45,0.0,0.0,0.0,13.8,2.0 -2019,12,23,19,0,0.0,0.0,0.0,13.2,1.3 -2019,12,23,19,15,0.0,0.0,0.0,13.2,1.3 -2019,12,23,19,30,0.0,0.0,0.0,13.2,1.3 -2019,12,23,19,45,0.0,0.0,0.0,13.2,1.3 -2019,12,23,20,0,0.0,0.0,0.0,12.8,0.2 -2019,12,23,20,15,0.0,0.0,0.0,12.8,0.2 -2019,12,23,20,30,0.0,0.0,0.0,12.8,0.2 -2019,12,23,20,45,0.0,0.0,0.0,12.8,0.2 -2019,12,23,21,0,0.0,0.0,0.0,12.7,1.5 -2019,12,23,21,15,0.0,0.0,0.0,12.7,1.5 -2019,12,23,21,30,0.0,0.0,0.0,12.7,1.5 -2019,12,23,21,45,0.0,0.0,0.0,12.7,1.5 -2019,12,23,22,0,0.0,0.0,0.0,12.3,1.3 -2019,12,23,22,15,0.0,0.0,0.0,12.3,1.3 -2019,12,23,22,30,0.0,0.0,0.0,12.3,1.3 -2019,12,23,22,45,0.0,0.0,0.0,12.3,1.3 -2019,12,23,23,0,0.0,0.0,0.0,12.8,0.0 -2019,12,23,23,15,0.0,0.0,0.0,12.8,0.0 -2019,12,23,23,30,0.0,0.0,0.0,12.8,0.0 -2019,12,23,23,45,0.0,0.0,0.0,12.8,0.0 -2019,12,24,0,0,0.0,0.0,0.0,12.7,0.0 -2019,12,24,0,15,0.0,0.0,0.0,12.7,0.0 -2019,12,24,0,30,0.0,0.0,0.0,12.7,0.0 -2019,12,24,0,45,0.0,0.0,0.0,12.7,0.0 -2019,12,24,1,0,0.0,0.0,0.0,12.2,0.0 -2019,12,24,1,15,0.0,0.0,0.0,12.2,0.0 -2019,12,24,1,30,0.0,0.0,0.0,12.2,0.0 -2019,12,24,1,45,0.0,0.0,0.0,12.2,0.0 -2019,12,24,2,0,0.0,0.0,0.0,12.2,0.4 -2019,12,24,2,15,0.0,0.0,0.0,12.2,0.4 -2019,12,24,2,30,0.0,0.0,0.0,12.2,0.4 -2019,12,24,2,45,0.0,0.0,0.0,12.2,0.4 -2019,12,24,3,0,0.0,0.0,0.0,11.1,1.6 -2019,12,24,3,15,0.0,0.0,0.0,11.1,1.6 -2019,12,24,3,30,0.0,0.0,0.0,11.1,1.6 -2019,12,24,3,45,0.0,0.0,0.0,11.1,1.6 -2019,12,24,4,0,0.0,0.0,0.0,10.5,1.7 -2019,12,24,4,15,0.0,0.0,0.0,10.5,1.7 -2019,12,24,4,30,0.0,0.0,0.0,10.5,1.7 -2019,12,24,4,45,0.0,0.0,0.0,10.5,1.7 -2019,12,24,5,0,0.0,0.0,0.0,10.0,2.2 -2019,12,24,5,15,0.0,0.0,0.0,10.0,2.2 -2019,12,24,5,30,0.0,0.0,0.0,10.0,2.2 -2019,12,24,5,45,0.0,0.0,0.0,10.0,2.2 -2019,12,24,6,0,0.0,0.0,0.0,10.0,2.0 -2019,12,24,6,15,0.0,0.0,0.0,10.0,2.0 -2019,12,24,6,30,0.0,0.0,0.0,10.0,2.0 -2019,12,24,6,45,0.0,0.0,0.0,10.0,2.0 -2019,12,24,7,0,1.0,13.85397219927494,14.0,10.1,1.6 -2019,12,24,7,15,1.0,13.9035455210904,14.0,10.1,1.6 -2019,12,24,7,30,1.0,13.952589018141135,14.0,10.1,1.6 -2019,12,24,7,45,1.0,14.000892678643472,14.0,10.1,1.6 -2019,12,24,8,0,2.0,37.09649931781487,37.0,11.0,2.6 -2019,12,24,8,15,2.0,37.188914338146304,37.0,11.0,2.6 -2019,12,24,8,30,2.0,37.278634682976374,37.0,11.0,2.6 -2019,12,24,8,45,2.0,37.36527615601441,37.0,11.0,2.6 -2019,12,24,9,0,1.0,56.22423387258571,56.0,12.0,1.5 -2019,12,24,9,15,1.0,56.26392660564541,56.0,12.0,1.5 -2019,12,24,9,30,1.0,56.3015463068096,56.0,12.0,1.5 -2019,12,24,9,45,1.0,56.33693188274243,56.0,12.0,1.5 -2019,12,24,10,0,2.0,97.73986361395049,97.0,14.0,1.5 -2019,12,24,10,15,2.0,97.8008095375325,97.0,14.0,1.5 -2019,12,24,10,30,2.0,97.85644055642953,97.0,14.0,1.5 -2019,12,24,10,45,2.0,97.90651845007801,97.0,14.0,1.5 -2019,12,24,11,0,3.0,129.42624316587387,128.0,15.0,2.5 -2019,12,24,11,15,3.0,129.48377269147952,128.0,15.0,2.5 -2019,12,24,11,30,3.0,129.53211990167313,128.0,15.0,2.5 -2019,12,24,11,45,3.0,129.57107776627834,128.0,15.0,2.5 -2019,12,24,12,0,4.0,138.1339726156506,136.0,15.0,1.1 -2019,12,24,12,15,4.0,138.16026544730425,136.0,15.0,1.1 -2019,12,24,12,30,4.0,138.17353626005703,136.0,15.0,1.1 -2019,12,24,12,45,4.0,138.17372822625137,136.0,15.0,1.1 -2019,12,24,13,0,14.0,157.562941833505,150.0,16.6,0.4 -2019,12,24,13,15,14.0,157.47224918999578,150.0,16.6,0.4 -2019,12,24,13,30,14.0,157.33635922117512,150.0,16.6,0.4 -2019,12,24,13,45,14.0,157.15585382875173,150.0,16.6,0.4 -2019,12,24,14,0,182.0,242.1095775388589,152.0,16.0,3.0 -2019,12,24,14,15,182.0,238.63559216649887,152.0,16.0,3.0 -2019,12,24,14,30,182.0,234.6190197953926,152.0,16.0,3.0 -2019,12,24,14,45,182.0,230.07706000506857,152.0,16.0,3.0 -2019,12,24,15,0,208.0,166.4618996167353,83.0,15.5,2.5 -2019,12,24,15,15,208.0,160.13936245444233,83.0,15.5,2.5 -2019,12,24,15,30,208.0,153.290388307982,83.0,15.5,2.5 -2019,12,24,15,45,208.0,145.94430553612307,83.0,15.5,2.5 -2019,12,24,16,0,104.0,48.56628559654287,21.0,14.9,2.0 -2019,12,24,16,15,104.0,44.44431816230312,21.0,14.9,2.0 -2019,12,24,16,30,104.0,40.123901362711656,21.0,14.9,2.0 -2019,12,24,16,45,104.0,35.62353588578678,21.0,14.9,2.0 -2019,12,24,17,0,0.0,0.0,0.0,14.3,1.5 -2019,12,24,17,15,0.0,0.0,0.0,14.3,1.5 -2019,12,24,17,30,0.0,0.0,0.0,14.3,1.5 -2019,12,24,17,45,0.0,0.0,0.0,14.3,1.5 -2019,12,24,18,0,0.0,0.0,0.0,13.2,1.3 -2019,12,24,18,15,0.0,0.0,0.0,13.2,1.3 -2019,12,24,18,30,0.0,0.0,0.0,13.2,1.3 -2019,12,24,18,45,0.0,0.0,0.0,13.2,1.3 -2019,12,24,19,0,0.0,0.0,0.0,12.8,0.0 -2019,12,24,19,15,0.0,0.0,0.0,12.8,0.0 -2019,12,24,19,30,0.0,0.0,0.0,12.8,0.0 -2019,12,24,19,45,0.0,0.0,0.0,12.8,0.0 -2019,12,24,20,0,0.0,0.0,0.0,12.9,0.0 -2019,12,24,20,15,0.0,0.0,0.0,12.9,0.0 -2019,12,24,20,30,0.0,0.0,0.0,12.9,0.0 -2019,12,24,20,45,0.0,0.0,0.0,12.9,0.0 -2019,12,24,21,0,0.0,0.0,0.0,11.6,1.3 -2019,12,24,21,15,0.0,0.0,0.0,11.6,1.3 -2019,12,24,21,30,0.0,0.0,0.0,11.6,1.3 -2019,12,24,21,45,0.0,0.0,0.0,11.6,1.3 -2019,12,24,22,0,0.0,0.0,0.0,11.0,0.0 -2019,12,24,22,15,0.0,0.0,0.0,11.0,0.0 -2019,12,24,22,30,0.0,0.0,0.0,11.0,0.0 -2019,12,24,22,45,0.0,0.0,0.0,11.0,0.0 -2019,12,24,23,0,0.0,0.0,0.0,10.0,0.2 -2019,12,24,23,15,0.0,0.0,0.0,10.0,0.2 -2019,12,24,23,30,0.0,0.0,0.0,10.0,0.2 -2019,12,24,23,45,0.0,0.0,0.0,10.0,0.2 -2019,12,25,0,0,0.0,0.0,0.0,9.9,2.0 -2019,12,25,0,15,0.0,0.0,0.0,9.9,2.0 -2019,12,25,0,30,0.0,0.0,0.0,9.9,2.0 -2019,12,25,0,45,0.0,0.0,0.0,9.9,2.0 -2019,12,25,1,0,0.0,0.0,0.0,9.2,1.3 -2019,12,25,1,15,0.0,0.0,0.0,9.2,1.3 -2019,12,25,1,30,0.0,0.0,0.0,9.2,1.3 -2019,12,25,1,45,0.0,0.0,0.0,9.2,1.3 -2019,12,25,2,0,0.0,0.0,0.0,7.8,0.0 -2019,12,25,2,15,0.0,0.0,0.0,7.8,0.0 -2019,12,25,2,30,0.0,0.0,0.0,7.8,0.0 -2019,12,25,2,45,0.0,0.0,0.0,7.8,0.0 -2019,12,25,3,0,0.0,0.0,0.0,8.2,0.0 -2019,12,25,3,15,0.0,0.0,0.0,8.2,0.0 -2019,12,25,3,30,0.0,0.0,0.0,8.2,0.0 -2019,12,25,3,45,0.0,0.0,0.0,8.2,0.0 -2019,12,25,4,0,0.0,0.0,0.0,7.7,1.2 -2019,12,25,4,15,0.0,0.0,0.0,7.7,1.2 -2019,12,25,4,30,0.0,0.0,0.0,7.7,1.2 -2019,12,25,4,45,0.0,0.0,0.0,7.7,1.2 -2019,12,25,5,0,0.0,0.0,0.0,6.8,0.8 -2019,12,25,5,15,0.0,0.0,0.0,6.8,0.8 -2019,12,25,5,30,0.0,0.0,0.0,6.8,0.8 -2019,12,25,5,45,0.0,0.0,0.0,6.8,0.8 -2019,12,25,6,0,0.0,0.0,0.0,6.2,1.5 -2019,12,25,6,15,0.0,0.0,0.0,6.2,1.5 -2019,12,25,6,30,0.0,0.0,0.0,6.2,1.5 -2019,12,25,6,45,0.0,0.0,0.0,6.2,1.5 -2019,12,25,7,0,4.0,13.416543626761543,14.0,7.4,1.5 -2019,12,25,7,15,4.0,13.614862935630958,14.0,7.4,1.5 -2019,12,25,7,30,4.0,13.811062667330338,14.0,7.4,1.5 -2019,12,25,7,45,4.0,14.004302664487417,14.0,7.4,1.5 -2019,12,25,8,0,291.0,117.09570853409463,103.0,9.2,1.5 -2019,12,25,8,15,291.0,130.54385853296628,103.0,9.2,1.5 -2019,12,25,8,30,291.0,143.59988179518183,103.0,9.2,1.5 -2019,12,25,8,45,291.0,156.20787042473535,103.0,9.2,1.5 -2019,12,25,9,0,231.0,221.84706495938167,170.0,12.0,1.7 -2019,12,25,9,15,231.0,231.01728952739757,170.0,12.0,1.7 -2019,12,25,9,30,231.0,239.7085808864094,170.0,12.0,1.7 -2019,12,25,9,45,231.0,247.8837215925065,170.0,12.0,1.7 -2019,12,25,10,0,217.0,298.32541932065334,218.0,14.5,2.7 -2019,12,25,10,15,217.0,304.93891979106877,218.0,14.5,2.7 -2019,12,25,10,30,217.0,310.97567742835435,218.0,14.5,2.7 -2019,12,25,10,45,217.0,316.4098419095273,218.0,14.5,2.7 -2019,12,25,11,0,902.0,523.0450012157888,94.0,15.7,0.0 -2019,12,25,11,15,902.0,540.3444817908232,94.0,15.7,0.0 -2019,12,25,11,30,902.0,554.8827839026039,94.0,15.7,0.0 -2019,12,25,11,45,902.0,566.5976523095273,94.0,15.7,0.0 -2019,12,25,12,0,799.0,542.4630807041176,116.0,16.1,0.0 -2019,12,25,12,15,799.0,547.715763034853,116.0,16.1,0.0 -2019,12,25,12,30,799.0,550.3669557469692,116.0,16.1,0.0 -2019,12,25,12,45,799.0,550.4053060262543,116.0,16.1,0.0 -2019,12,25,13,0,110.0,264.45102811214235,205.0,16.1,0.0 -2019,12,25,13,15,110.0,263.73834954497283,205.0,16.1,0.0 -2019,12,25,13,30,110.0,262.6705025341843,205.0,16.1,0.0 -2019,12,25,13,45,110.0,261.2520597646159,205.0,16.1,0.0 -2019,12,25,14,0,721.0,443.15125143567656,86.0,16.0,0.0 -2019,12,25,14,15,721.0,429.3871187673073,86.0,16.0,0.0 -2019,12,25,14,30,721.0,413.4732247630687,86.0,16.0,0.0 -2019,12,25,14,45,721.0,395.4777151602324,86.0,16.0,0.0 -2019,12,25,15,0,37.0,84.8553024011992,70.0,15.4,0.1 -2019,12,25,15,15,37.0,83.73047272018403,70.0,15.4,0.1 -2019,12,25,15,30,37.0,82.51198570987593,70.0,15.4,0.1 -2019,12,25,15,45,37.0,81.2050591187186,70.0,15.4,0.1 -2019,12,25,16,0,18.0,19.77500565746839,15.0,14.7,0.8 -2019,12,25,16,15,18.0,19.061494596669107,15.0,14.7,0.8 -2019,12,25,16,30,18.0,18.313632023043485,15.0,14.7,0.8 -2019,12,25,16,45,18.0,17.53462039894574,15.0,14.7,0.8 -2019,12,25,17,0,0.0,0.0,0.0,13.8,1.3 -2019,12,25,17,15,0.0,0.0,0.0,13.8,1.3 -2019,12,25,17,30,0.0,0.0,0.0,13.8,1.3 -2019,12,25,17,45,0.0,0.0,0.0,13.8,1.3 -2019,12,25,18,0,0.0,0.0,0.0,13.1,0.2 -2019,12,25,18,15,0.0,0.0,0.0,13.1,0.2 -2019,12,25,18,30,0.0,0.0,0.0,13.1,0.2 -2019,12,25,18,45,0.0,0.0,0.0,13.1,0.2 -2019,12,25,19,0,0.0,0.0,0.0,11.4,1.5 -2019,12,25,19,15,0.0,0.0,0.0,11.4,1.5 -2019,12,25,19,30,0.0,0.0,0.0,11.4,1.5 -2019,12,25,19,45,0.0,0.0,0.0,11.4,1.5 -2019,12,25,20,0,0.0,0.0,0.0,9.3,1.3 -2019,12,25,20,15,0.0,0.0,0.0,9.3,1.3 -2019,12,25,20,30,0.0,0.0,0.0,9.3,1.3 -2019,12,25,20,45,0.0,0.0,0.0,9.3,1.3 -2019,12,25,21,0,0.0,0.0,0.0,8.8,0.2 -2019,12,25,21,15,0.0,0.0,0.0,8.8,0.2 -2019,12,25,21,30,0.0,0.0,0.0,8.8,0.2 -2019,12,25,21,45,0.0,0.0,0.0,8.8,0.2 -2019,12,25,22,0,0.0,0.0,0.0,8.0,1.5 -2019,12,25,22,15,0.0,0.0,0.0,8.0,1.5 -2019,12,25,22,30,0.0,0.0,0.0,8.0,1.5 -2019,12,25,22,45,0.0,0.0,0.0,8.0,1.5 -2019,12,25,23,0,0.0,0.0,0.0,6.2,1.3 -2019,12,25,23,15,0.0,0.0,0.0,6.2,1.3 -2019,12,25,23,30,0.0,0.0,0.0,6.2,1.3 -2019,12,25,23,45,0.0,0.0,0.0,6.2,1.3 -2019,12,26,0,0,0.0,0.0,0.0,6.6,0.2 -2019,12,26,0,15,0.0,0.0,0.0,6.6,0.2 -2019,12,26,0,30,0.0,0.0,0.0,6.6,0.2 -2019,12,26,0,45,0.0,0.0,0.0,6.6,0.2 -2019,12,26,1,0,0.0,0.0,0.0,6.2,1.3 -2019,12,26,1,15,0.0,0.0,0.0,6.2,1.3 -2019,12,26,1,30,0.0,0.0,0.0,6.2,1.3 -2019,12,26,1,45,0.0,0.0,0.0,6.2,1.3 -2019,12,26,2,0,0.0,0.0,0.0,7.3,0.2 -2019,12,26,2,15,0.0,0.0,0.0,7.3,0.2 -2019,12,26,2,30,0.0,0.0,0.0,7.3,0.2 -2019,12,26,2,45,0.0,0.0,0.0,7.3,0.2 -2019,12,26,3,0,0.0,0.0,0.0,7.8,1.9 -2019,12,26,3,15,0.0,0.0,0.0,7.8,1.9 -2019,12,26,3,30,0.0,0.0,0.0,7.8,1.9 -2019,12,26,3,45,0.0,0.0,0.0,7.8,1.9 -2019,12,26,4,0,0.0,0.0,0.0,7.9,0.0 -2019,12,26,4,15,0.0,0.0,0.0,7.9,0.0 -2019,12,26,4,30,0.0,0.0,0.0,7.9,0.0 -2019,12,26,4,45,0.0,0.0,0.0,7.9,0.0 -2019,12,26,5,0,0.0,0.0,0.0,8.2,0.0 -2019,12,26,5,15,0.0,0.0,0.0,8.2,0.0 -2019,12,26,5,30,0.0,0.0,0.0,8.2,0.0 -2019,12,26,5,45,0.0,0.0,0.0,8.2,0.0 -2019,12,26,6,0,0.0,0.0,0.0,7.1,0.0 -2019,12,26,6,15,0.0,0.0,0.0,7.1,0.0 -2019,12,26,6,30,0.0,0.0,0.0,7.1,0.0 -2019,12,26,6,45,0.0,0.0,0.0,7.1,0.0 -2019,12,26,7,0,1.0,13.854365051634538,14.0,7.5,0.0 -2019,12,26,7,15,1.0,13.903953976073081,14.0,7.5,0.0 -2019,12,26,7,30,1.0,13.953012908990752,14.0,7.5,0.0 -2019,12,26,7,45,1.0,14.00133177250513,14.0,7.5,0.0 -2019,12,26,8,0,2.0,37.0974073156492,37.0,8.1,0.0 -2019,12,26,8,15,2.0,37.18985142252712,37.0,8.1,0.0 -2019,12,26,8,30,2.0,37.27960000578609,37.0,8.1,0.0 -2019,12,26,8,45,2.0,37.36626874821415,37.0,8.1,0.0 -2019,12,26,9,0,2.0,71.44948652095057,71.0,11.2,2.0 -2019,12,26,9,15,2.0,71.52889697271671,71.0,11.2,2.0 -2019,12,26,9,30,2.0,71.60416005576676,71.0,11.2,2.0 -2019,12,26,9,45,2.0,71.6749534820245,71.0,11.2,2.0 -2019,12,26,10,0,3.0,117.11146115475547,116.0,12.0,4.8 -2019,12,26,10,15,3.0,117.20290881315316,116.0,12.0,4.8 -2019,12,26,10,30,3.0,117.28638160531725,116.0,12.0,4.8 -2019,12,26,10,45,3.0,117.36152208793672,116.0,12.0,4.8 -2019,12,26,11,0,7.0,160.3320198285015,157.0,12.9,4.3 -2019,12,26,11,15,7.0,160.46629763731997,157.0,12.9,4.3 -2019,12,26,11,30,7.0,160.57914330011565,157.0,12.9,4.3 -2019,12,26,11,45,7.0,160.67007359443605,157.0,12.9,4.3 -2019,12,26,12,0,6.0,153.20459926525805,150.0,13.4,5.5 -2019,12,26,12,15,6.0,153.24405092578027,150.0,13.4,5.5 -2019,12,26,12,30,6.0,153.26396341015902,150.0,13.4,5.5 -2019,12,26,12,45,6.0,153.2642514500792,150.0,13.4,5.5 -2019,12,26,13,0,21.0,175.3571983423838,164.0,14.0,3.9 -2019,12,26,13,15,21.0,175.2211165604472,164.0,14.0,3.9 -2019,12,26,13,30,21.0,175.01721745254935,164.0,14.0,3.9 -2019,12,26,13,45,21.0,174.74637414597345,164.0,14.0,3.9 -2019,12,26,14,0,38.0,149.83668402223222,131.0,14.9,6.4 -2019,12,26,14,15,38.0,149.11111812548864,131.0,14.9,6.4 -2019,12,26,14,30,38.0,148.27222917752016,131.0,14.9,6.4 -2019,12,26,14,45,38.0,147.32360942959048,131.0,14.9,6.4 -2019,12,26,15,0,54.0,97.69850881376661,76.0,14.2,7.5 -2019,12,26,15,15,54.0,96.05656427639899,76.0,14.2,7.5 -2019,12,26,15,30,54.0,94.27790558326855,76.0,14.2,7.5 -2019,12,26,15,45,54.0,92.37014922396396,76.0,14.2,7.5 -2019,12,26,16,0,27.0,38.1707322520499,31.0,13.3,6.2 -2019,12,26,16,15,27.0,37.10026928154794,31.0,13.3,6.2 -2019,12,26,16,30,27.0,35.97826958725627,31.0,13.3,6.2 -2019,12,26,16,45,27.0,34.80953774411836,31.0,13.3,6.2 -2019,12,26,17,0,0.0,0.0,0.0,12.7,4.7 -2019,12,26,17,15,0.0,0.0,0.0,12.7,4.7 -2019,12,26,17,30,0.0,0.0,0.0,12.7,4.7 -2019,12,26,17,45,0.0,0.0,0.0,12.7,4.7 -2019,12,26,18,0,0.0,0.0,0.0,11.6,1.9 -2019,12,26,18,15,0.0,0.0,0.0,11.6,1.9 -2019,12,26,18,30,0.0,0.0,0.0,11.6,1.9 -2019,12,26,18,45,0.0,0.0,0.0,11.6,1.9 -2019,12,26,19,0,0.0,0.0,0.0,10.5,0.0 -2019,12,26,19,15,0.0,0.0,0.0,10.5,0.0 -2019,12,26,19,30,0.0,0.0,0.0,10.5,0.0 -2019,12,26,19,45,0.0,0.0,0.0,10.5,0.0 -2019,12,26,20,0,0.0,0.0,0.0,9.9,0.2 -2019,12,26,20,15,0.0,0.0,0.0,9.9,0.2 -2019,12,26,20,30,0.0,0.0,0.0,9.9,0.2 -2019,12,26,20,45,0.0,0.0,0.0,9.9,0.2 -2019,12,26,21,0,0.0,0.0,0.0,8.8,1.3 -2019,12,26,21,15,0.0,0.0,0.0,8.8,1.3 -2019,12,26,21,30,0.0,0.0,0.0,8.8,1.3 -2019,12,26,21,45,0.0,0.0,0.0,8.8,1.3 -2019,12,26,22,0,0.0,0.0,0.0,7.7,0.0 -2019,12,26,22,15,0.0,0.0,0.0,7.7,0.0 -2019,12,26,22,30,0.0,0.0,0.0,7.7,0.0 -2019,12,26,22,45,0.0,0.0,0.0,7.7,0.0 -2019,12,26,23,0,0.0,0.0,0.0,7.1,0.0 -2019,12,26,23,15,0.0,0.0,0.0,7.1,0.0 -2019,12,26,23,30,0.0,0.0,0.0,7.1,0.0 -2019,12,26,23,45,0.0,0.0,0.0,7.1,0.0 -2019,12,27,0,0,0.0,0.0,0.0,6.6,0.0 -2019,12,27,0,15,0.0,0.0,0.0,6.6,0.0 -2019,12,27,0,30,0.0,0.0,0.0,6.6,0.0 -2019,12,27,0,45,0.0,0.0,0.0,6.6,0.0 -2019,12,27,1,0,0.0,0.0,0.0,6.0,0.0 -2019,12,27,1,15,0.0,0.0,0.0,6.0,0.0 -2019,12,27,1,30,0.0,0.0,0.0,6.0,0.0 -2019,12,27,1,45,0.0,0.0,0.0,6.0,0.0 -2019,12,27,2,0,0.0,0.0,0.0,5.1,0.2 -2019,12,27,2,15,0.0,0.0,0.0,5.1,0.2 -2019,12,27,2,30,0.0,0.0,0.0,5.1,0.2 -2019,12,27,2,45,0.0,0.0,0.0,5.1,0.2 -2019,12,27,3,0,0.0,0.0,0.0,5.4,1.3 -2019,12,27,3,15,0.0,0.0,0.0,5.4,1.3 -2019,12,27,3,30,0.0,0.0,0.0,5.4,1.3 -2019,12,27,3,45,0.0,0.0,0.0,5.4,1.3 -2019,12,27,4,0,0.0,0.0,0.0,4.0,0.0 -2019,12,27,4,15,0.0,0.0,0.0,4.0,0.0 -2019,12,27,4,30,0.0,0.0,0.0,4.0,0.0 -2019,12,27,4,45,0.0,0.0,0.0,4.0,0.0 -2019,12,27,5,0,0.0,0.0,0.0,4.4,0.2 -2019,12,27,5,15,0.0,0.0,0.0,4.4,0.2 -2019,12,27,5,30,0.0,0.0,0.0,4.4,0.2 -2019,12,27,5,45,0.0,0.0,0.0,4.4,0.2 -2019,12,27,6,0,0.0,0.0,0.0,4.5,1.5 -2019,12,27,6,15,0.0,0.0,0.0,4.5,1.5 -2019,12,27,6,30,0.0,0.0,0.0,4.5,1.5 -2019,12,27,6,45,0.0,0.0,0.0,4.5,1.5 -2019,12,27,7,0,45.0,33.45968148671214,40.0,5.3,1.3 -2019,12,27,7,15,45.0,35.69170862844964,40.0,5.3,1.3 -2019,12,27,7,30,45.0,37.8998805349128,40.0,5.3,1.3 -2019,12,27,7,45,45.0,40.074741474993424,40.0,5.3,1.3 -2019,12,27,8,0,91.0,107.46300068407199,103.0,7.5,0.0 -2019,12,27,8,15,91.0,111.67019815279596,103.0,7.5,0.0 -2019,12,27,8,30,91.0,115.75472041236351,103.0,7.5,0.0 -2019,12,27,8,45,91.0,119.69907691139191,103.0,7.5,0.0 -2019,12,27,9,0,148.0,206.31850375660386,173.0,10.1,0.0 -2019,12,27,9,15,148.0,212.19626113479873,173.0,10.1,0.0 -2019,12,27,9,30,148.0,217.76704094859403,173.0,10.1,0.0 -2019,12,27,9,45,148.0,223.0069882635854,173.0,10.1,0.0 -2019,12,27,10,0,214.0,297.373272105923,218.0,11.3,0.2 -2019,12,27,10,15,214.0,303.89807470250594,218.0,11.3,0.2 -2019,12,27,10,30,214.0,309.8538695320221,218.0,11.3,0.2 -2019,12,27,10,45,214.0,315.21515296666126,218.0,11.3,0.2 -2019,12,27,11,0,365.0,391.90197671122485,218.0,12.9,1.6 -2019,12,27,11,15,365.0,398.90525427078353,218.0,12.9,1.6 -2019,12,27,11,30,365.0,404.79073531120565,218.0,12.9,1.6 -2019,12,27,11,45,365.0,409.5332172991207,218.0,12.9,1.6 -2019,12,27,12,0,512.0,457.69190357718276,184.0,14.0,2.5 -2019,12,27,12,15,512.0,461.0592381309146,184.0,14.0,2.5 -2019,12,27,12,30,512.0,462.75883697698856,184.0,14.0,2.5 -2019,12,27,12,45,512.0,462.7834221722185,184.0,14.0,2.5 -2019,12,27,13,0,707.0,502.6815471218555,120.0,14.4,2.0 -2019,12,27,13,15,707.0,498.099048157589,120.0,14.4,2.0 -2019,12,27,13,30,707.0,491.23282817237384,120.0,14.4,2.0 -2019,12,27,13,45,707.0,482.1122893743083,120.0,14.4,2.0 -2019,12,27,14,0,758.0,457.0800245849197,81.0,14.4,1.6 -2019,12,27,14,15,758.0,442.60348575503525,81.0,14.4,1.6 -2019,12,27,14,30,758.0,425.86591790112675,81.0,14.4,1.6 -2019,12,27,14,45,758.0,406.9389938583432,81.0,14.4,1.6 -2019,12,27,15,0,581.0,293.7059175486649,60.0,14.3,2.4 -2019,12,27,15,15,581.0,276.03565002854907,60.0,14.3,2.4 -2019,12,27,15,30,581.0,256.89409303967403,60.0,14.3,2.4 -2019,12,27,15,45,581.0,236.36321366773137,60.0,14.3,2.4 -2019,12,27,16,0,290.0,103.13247711556527,26.0,13.8,1.1 -2019,12,27,16,15,290.0,91.63220407978334,26.0,13.8,1.1 -2019,12,27,16,30,290.0,79.57825809007049,26.0,13.8,1.1 -2019,12,27,16,45,290.0,67.02225599371019,26.0,13.8,1.1 -2019,12,27,17,0,0.0,0.0,0.0,13.2,0.0 -2019,12,27,17,15,0.0,0.0,0.0,13.2,0.0 -2019,12,27,17,30,0.0,0.0,0.0,13.2,0.0 -2019,12,27,17,45,0.0,0.0,0.0,13.2,0.0 -2019,12,27,18,0,0.0,0.0,0.0,12.0,0.0 -2019,12,27,18,15,0.0,0.0,0.0,12.0,0.0 -2019,12,27,18,30,0.0,0.0,0.0,12.0,0.0 -2019,12,27,18,45,0.0,0.0,0.0,12.0,0.0 -2019,12,27,19,0,0.0,0.0,0.0,10.3,0.2 -2019,12,27,19,15,0.0,0.0,0.0,10.3,0.2 -2019,12,27,19,30,0.0,0.0,0.0,10.3,0.2 -2019,12,27,19,45,0.0,0.0,0.0,10.3,0.2 -2019,12,27,20,0,0.0,0.0,0.0,8.3,1.3 -2019,12,27,20,15,0.0,0.0,0.0,8.3,1.3 -2019,12,27,20,30,0.0,0.0,0.0,8.3,1.3 -2019,12,27,20,45,0.0,0.0,0.0,8.3,1.3 -2019,12,27,21,0,0.0,0.0,0.0,8.2,0.2 -2019,12,27,21,15,0.0,0.0,0.0,8.2,0.2 -2019,12,27,21,30,0.0,0.0,0.0,8.2,0.2 -2019,12,27,21,45,0.0,0.0,0.0,8.2,0.2 -2019,12,27,22,0,0.0,0.0,0.0,7.7,1.5 -2019,12,27,22,15,0.0,0.0,0.0,7.7,1.5 -2019,12,27,22,30,0.0,0.0,0.0,7.7,1.5 -2019,12,27,22,45,0.0,0.0,0.0,7.7,1.5 -2019,12,27,23,0,0.0,0.0,0.0,7.0,1.3 -2019,12,27,23,15,0.0,0.0,0.0,7.0,1.3 -2019,12,27,23,30,0.0,0.0,0.0,7.0,1.3 -2019,12,27,23,45,0.0,0.0,0.0,7.0,1.3 -2019,12,28,0,0,0.0,0.0,0.0,5.6,0.3 -2019,12,28,0,15,0.0,0.0,0.0,5.6,0.3 -2019,12,28,0,30,0.0,0.0,0.0,5.6,0.3 -2019,12,28,0,45,0.0,0.0,0.0,5.6,0.3 -2019,12,28,1,0,0.0,0.0,0.0,5.5,2.5 -2019,12,28,1,15,0.0,0.0,0.0,5.5,2.5 -2019,12,28,1,30,0.0,0.0,0.0,5.5,2.5 -2019,12,28,1,45,0.0,0.0,0.0,5.5,2.5 -2019,12,28,2,0,0.0,0.0,0.0,4.5,2.0 -2019,12,28,2,15,0.0,0.0,0.0,4.5,2.0 -2019,12,28,2,30,0.0,0.0,0.0,4.5,2.0 -2019,12,28,2,45,0.0,0.0,0.0,4.5,2.0 -2019,12,28,3,0,0.0,0.0,0.0,4.9,1.5 -2019,12,28,3,15,0.0,0.0,0.0,4.9,1.5 -2019,12,28,3,30,0.0,0.0,0.0,4.9,1.5 -2019,12,28,3,45,0.0,0.0,0.0,4.9,1.5 -2019,12,28,4,0,0.0,0.0,0.0,4.4,1.6 -2019,12,28,4,15,0.0,0.0,0.0,4.4,1.6 -2019,12,28,4,30,0.0,0.0,0.0,4.4,1.6 -2019,12,28,4,45,0.0,0.0,0.0,4.4,1.6 -2019,12,28,5,0,0.0,0.0,0.0,4.3,2.1 -2019,12,28,5,15,0.0,0.0,0.0,4.3,2.1 -2019,12,28,5,30,0.0,0.0,0.0,4.3,2.1 -2019,12,28,5,45,0.0,0.0,0.0,4.3,2.1 -2019,12,28,6,0,0.0,0.0,0.0,4.0,2.2 -2019,12,28,6,15,0.0,0.0,0.0,4.0,2.2 -2019,12,28,6,30,0.0,0.0,0.0,4.0,2.2 -2019,12,28,6,45,0.0,0.0,0.0,4.0,2.2 -2019,12,28,7,0,246.0,0.33478689952021057,36.0,5.3,2.3 -2019,12,28,7,15,246.0,12.540040021092054,36.0,5.3,2.3 -2019,12,28,7,30,246.0,24.61484706548439,36.0,5.3,2.3 -2019,12,28,7,45,246.0,36.507501855174965,36.0,5.3,2.3 -2019,12,28,8,0,506.0,108.02659177877953,83.0,8.3,0.0 -2019,12,28,8,15,506.0,131.42717851686075,83.0,8.3,0.0 -2019,12,28,8,30,506.0,154.14544123905776,83.0,8.3,0.0 -2019,12,28,8,45,506.0,176.08409685662332,83.0,8.3,0.0 -2019,12,28,9,0,783.0,262.6379923536904,86.0,12.0,0.2 -2019,12,28,9,15,783.0,293.74343800037786,86.0,12.0,0.2 -2019,12,28,9,30,783.0,323.2243399087331,86.0,12.0,0.2 -2019,12,28,9,45,783.0,350.95445633079413,86.0,12.0,0.2 -2019,12,28,10,0,838.0,410.2426637821212,99.0,14.0,1.6 -2019,12,28,10,15,838.0,435.8003979175282,99.0,14.0,1.6 -2019,12,28,10,30,838.0,459.1293214465744,99.0,14.0,1.6 -2019,12,28,10,45,838.0,480.1295363371871,99.0,14.0,1.6 -2019,12,28,11,0,854.0,513.3428322723089,106.0,15.1,1.9 -2019,12,28,11,15,854.0,529.7332895864677,106.0,15.1,1.9 -2019,12,28,11,30,854.0,543.5076580797836,106.0,15.1,1.9 -2019,12,28,11,45,854.0,554.6069537916884,106.0,15.1,1.9 -2019,12,28,12,0,880.0,568.8964989389643,98.0,16.1,0.0 -2019,12,28,12,15,880.0,574.6857675956257,98.0,16.1,0.0 -2019,12,28,12,30,880.0,577.6077921736614,98.0,16.1,0.0 -2019,12,28,12,45,880.0,577.6500601152311,98.0,16.1,0.0 -2019,12,28,13,0,706.0,503.53357686170324,121.0,16.1,0.2 -2019,12,28,13,15,706.0,498.9562451244952,121.0,16.1,0.2 -2019,12,28,13,30,706.0,492.09776749077315,121.0,16.1,0.2 -2019,12,28,13,45,706.0,482.9875130146973,121.0,16.1,0.2 -2019,12,28,14,0,688.0,433.7240387035997,92.0,16.0,1.3 -2019,12,28,14,15,688.0,420.58060926210914,92.0,16.0,1.3 -2019,12,28,14,30,688.0,405.3843634816,92.0,16.0,1.3 -2019,12,28,14,45,688.0,388.2003740194751,92.0,16.0,1.3 -2019,12,28,15,0,340.0,216.9400532286238,80.0,15.3,0.0 -2019,12,28,15,15,340.0,206.5964790077248,80.0,15.3,0.0 -2019,12,28,15,30,340.0,195.3916619220409,80.0,15.3,0.0 -2019,12,28,15,45,340.0,183.37358271852793,80.0,15.3,0.0 -2019,12,28,16,0,170.0,68.29685232869221,23.0,14.3,0.0 -2019,12,28,16,15,170.0,61.553376569235354,23.0,14.3,0.0 -2019,12,28,16,30,170.0,54.48524067937266,23.0,14.3,0.0 -2019,12,28,16,45,170.0,47.122711502104494,23.0,14.3,0.0 -2019,12,28,17,0,0.0,0.0,0.0,13.2,0.0 -2019,12,28,17,15,0.0,0.0,0.0,13.2,0.0 -2019,12,28,17,30,0.0,0.0,0.0,13.2,0.0 -2019,12,28,17,45,0.0,0.0,0.0,13.2,0.0 -2019,12,28,18,0,0.0,0.0,0.0,12.1,0.0 -2019,12,28,18,15,0.0,0.0,0.0,12.1,0.0 -2019,12,28,18,30,0.0,0.0,0.0,12.1,0.0 -2019,12,28,18,45,0.0,0.0,0.0,12.1,0.0 -2019,12,28,19,0,0.0,0.0,0.0,11.0,0.2 -2019,12,28,19,15,0.0,0.0,0.0,11.0,0.2 -2019,12,28,19,30,0.0,0.0,0.0,11.0,0.2 -2019,12,28,19,45,0.0,0.0,0.0,11.0,0.2 -2019,12,28,20,0,0.0,0.0,0.0,10.5,1.9 -2019,12,28,20,15,0.0,0.0,0.0,10.5,1.9 -2019,12,28,20,30,0.0,0.0,0.0,10.5,1.9 -2019,12,28,20,45,0.0,0.0,0.0,10.5,1.9 -2019,12,28,21,0,0.0,0.0,0.0,9.4,0.2 -2019,12,28,21,15,0.0,0.0,0.0,9.4,0.2 -2019,12,28,21,30,0.0,0.0,0.0,9.4,0.2 -2019,12,28,21,45,0.0,0.0,0.0,9.4,0.2 -2019,12,28,22,0,0.0,0.0,0.0,9.3,1.6 -2019,12,28,22,15,0.0,0.0,0.0,9.3,1.6 -2019,12,28,22,30,0.0,0.0,0.0,9.3,1.6 -2019,12,28,22,45,0.0,0.0,0.0,9.3,1.6 -2019,12,28,23,0,0.0,0.0,0.0,8.3,2.0 -2019,12,28,23,15,0.0,0.0,0.0,8.3,2.0 -2019,12,28,23,30,0.0,0.0,0.0,8.3,2.0 -2019,12,28,23,45,0.0,0.0,0.0,8.3,2.0 -2019,12,29,0,0,0.0,0.0,0.0,8.2,1.6 -2019,12,29,0,15,0.0,0.0,0.0,8.2,1.6 -2019,12,29,0,30,0.0,0.0,0.0,8.2,1.6 -2019,12,29,0,45,0.0,0.0,0.0,8.2,1.6 -2019,12,29,1,0,0.0,0.0,0.0,7.1,2.1 -2019,12,29,1,15,0.0,0.0,0.0,7.1,2.1 -2019,12,29,1,30,0.0,0.0,0.0,7.1,2.1 -2019,12,29,1,45,0.0,0.0,0.0,7.1,2.1 -2019,12,29,2,0,0.0,0.0,0.0,6.5,1.9 -2019,12,29,2,15,0.0,0.0,0.0,6.5,1.9 -2019,12,29,2,30,0.0,0.0,0.0,6.5,1.9 -2019,12,29,2,45,0.0,0.0,0.0,6.5,1.9 -2019,12,29,3,0,0.0,0.0,0.0,4.9,0.2 -2019,12,29,3,15,0.0,0.0,0.0,4.9,0.2 -2019,12,29,3,30,0.0,0.0,0.0,4.9,0.2 -2019,12,29,3,45,0.0,0.0,0.0,4.9,0.2 -2019,12,29,4,0,0.0,0.0,0.0,4.0,1.5 -2019,12,29,4,15,0.0,0.0,0.0,4.0,1.5 -2019,12,29,4,30,0.0,0.0,0.0,4.0,1.5 -2019,12,29,4,45,0.0,0.0,0.0,4.0,1.5 -2019,12,29,5,0,0.0,0.0,0.0,4.3,1.7 -2019,12,29,5,15,0.0,0.0,0.0,4.3,1.7 -2019,12,29,5,30,0.0,0.0,0.0,4.3,1.7 -2019,12,29,5,45,0.0,0.0,0.0,4.3,1.7 -2019,12,29,6,0,0.0,0.0,0.0,4.1,3.0 -2019,12,29,6,15,0.0,0.0,0.0,4.1,3.0 -2019,12,29,6,30,0.0,0.0,0.0,4.1,3.0 -2019,12,29,6,45,0.0,0.0,0.0,4.1,3.0 -2019,12,29,7,0,13.0,45.120779681141826,47.0,5.9,2.6 -2019,12,29,7,15,13.0,45.76599111903073,47.0,5.9,2.6 -2019,12,29,7,30,13.0,46.404306730984224,47.0,5.9,2.6 -2019,12,29,7,45,13.0,47.03299315155593,47.0,5.9,2.6 -2019,12,29,8,0,27.0,84.34866713248708,83.0,8.8,2.5 -2019,12,29,8,15,27.0,85.59773781832787,83.0,8.8,2.5 -2019,12,29,8,30,27.0,86.81038758293171,83.0,8.8,2.5 -2019,12,29,8,45,27.0,87.9814236738372,83.0,8.8,2.5 -2019,12,29,9,0,44.0,161.9502439825105,152.0,12.1,1.6 -2019,12,29,9,15,44.0,163.698779120526,152.0,12.1,1.6 -2019,12,29,9,30,44.0,165.3559935347692,152.0,12.1,1.6 -2019,12,29,9,45,44.0,166.91479077869803,152.0,12.1,1.6 -2019,12,29,10,0,15.0,169.58016903745562,164.0,11.5,2.6 -2019,12,29,10,15,15.0,170.0378012750073,164.0,11.5,2.6 -2019,12,29,10,30,15.0,170.45552482662214,164.0,11.5,2.6 -2019,12,29,10,45,15.0,170.831550935922,164.0,11.5,2.6 -2019,12,29,11,0,0.0,75.0,75.0,9.9,2.3 -2019,12,29,11,15,0.0,75.0,75.0,9.9,2.3 -2019,12,29,11,30,0.0,75.0,75.0,9.9,2.3 -2019,12,29,11,45,0.0,75.0,75.0,9.9,2.3 -2019,12,29,12,0,0.0,79.0,79.0,8.9,0.0 -2019,12,29,12,15,0.0,79.0,79.0,8.9,0.0 -2019,12,29,12,30,0.0,79.0,79.0,8.9,0.0 -2019,12,29,12,45,0.0,79.0,79.0,8.9,0.0 -2019,12,29,13,0,2.0,98.08497988032894,97.0,8.9,0.0 -2019,12,29,13,15,2.0,98.07200854444882,97.0,8.9,0.0 -2019,12,29,13,30,2.0,98.05257285087868,97.0,8.9,0.0 -2019,12,29,13,45,2.0,98.02675602624217,97.0,8.9,0.0 -2019,12,29,14,0,5.0,85.48667155536475,83.0,9.0,1.1 -2019,12,29,14,15,5.0,85.39112010445085,83.0,9.0,1.1 -2019,12,29,14,30,5.0,85.28064487884586,83.0,9.0,1.1 -2019,12,29,14,45,5.0,85.15571895042629,83.0,9.0,1.1 -2019,12,29,15,0,5.0,45.01687727119662,43.0,8.9,2.0 -2019,12,29,15,15,5.0,44.86471438254266,43.0,8.9,2.0 -2019,12,29,15,30,5.0,44.699881869314105,43.0,8.9,2.0 -2019,12,29,15,45,5.0,44.52308556963814,43.0,8.9,2.0 -2019,12,29,16,0,3.0,13.801049531447353,13.0,9.0,1.5 -2019,12,29,16,15,3.0,13.682006725251366,13.0,9.0,1.5 -2019,12,29,16,30,3.0,13.557232682766845,13.0,9.0,1.5 -2019,12,29,16,45,3.0,13.427261705599363,13.0,9.0,1.5 -2019,12,29,17,0,0.0,0.0,0.0,8.2,0.0 -2019,12,29,17,15,0.0,0.0,0.0,8.2,0.0 -2019,12,29,17,30,0.0,0.0,0.0,8.2,0.0 -2019,12,29,17,45,0.0,0.0,0.0,8.2,0.0 -2019,12,29,18,0,0.0,0.0,0.0,7.8,1.9 -2019,12,29,18,15,0.0,0.0,0.0,7.8,1.9 -2019,12,29,18,30,0.0,0.0,0.0,7.8,1.9 -2019,12,29,18,45,0.0,0.0,0.0,7.8,1.9 -2019,12,29,19,0,0.0,0.0,0.0,7.8,0.0 -2019,12,29,19,15,0.0,0.0,0.0,7.8,0.0 -2019,12,29,19,30,0.0,0.0,0.0,7.8,0.0 -2019,12,29,19,45,0.0,0.0,0.0,7.8,0.0 -2019,12,29,20,0,0.0,0.0,0.0,7.9,0.0 -2019,12,29,20,15,0.0,0.0,0.0,7.9,0.0 -2019,12,29,20,30,0.0,0.0,0.0,7.9,0.0 -2019,12,29,20,45,0.0,0.0,0.0,7.9,0.0 -2019,12,29,21,0,0.0,0.0,0.0,7.5,0.0 -2019,12,29,21,15,0.0,0.0,0.0,7.5,0.0 -2019,12,29,21,30,0.0,0.0,0.0,7.5,0.0 -2019,12,29,21,45,0.0,0.0,0.0,7.5,0.0 -2019,12,29,22,0,0.0,0.0,0.0,7.7,0.0 -2019,12,29,22,15,0.0,0.0,0.0,7.7,0.0 -2019,12,29,22,30,0.0,0.0,0.0,7.7,0.0 -2019,12,29,22,45,0.0,0.0,0.0,7.7,0.0 -2019,12,29,23,0,0.0,0.0,0.0,7.1,0.0 -2019,12,29,23,15,0.0,0.0,0.0,7.1,0.0 -2019,12,29,23,30,0.0,0.0,0.0,7.1,0.0 -2019,12,29,23,45,0.0,0.0,0.0,7.1,0.0 -2019,12,30,0,0,0.0,0.0,0.0,7.2,0.0 -2019,12,30,0,15,0.0,0.0,0.0,7.2,0.0 -2019,12,30,0,30,0.0,0.0,0.0,7.2,0.0 -2019,12,30,0,45,0.0,0.0,0.0,7.2,0.0 -2019,12,30,1,0,0.0,0.0,0.0,6.0,0.0 -2019,12,30,1,15,0.0,0.0,0.0,6.0,0.0 -2019,12,30,1,30,0.0,0.0,0.0,6.0,0.0 -2019,12,30,1,45,0.0,0.0,0.0,6.0,0.0 -2019,12,30,2,0,0.0,0.0,0.0,5.6,0.0 -2019,12,30,2,15,0.0,0.0,0.0,5.6,0.0 -2019,12,30,2,30,0.0,0.0,0.0,5.6,0.0 -2019,12,30,2,45,0.0,0.0,0.0,5.6,0.0 -2019,12,30,3,0,0.0,0.0,0.0,5.5,0.0 -2019,12,30,3,15,0.0,0.0,0.0,5.5,0.0 -2019,12,30,3,30,0.0,0.0,0.0,5.5,0.0 -2019,12,30,3,45,0.0,0.0,0.0,5.5,0.0 -2019,12,30,4,0,0.0,0.0,0.0,5.0,0.0 -2019,12,30,4,15,0.0,0.0,0.0,5.0,0.0 -2019,12,30,4,30,0.0,0.0,0.0,5.0,0.0 -2019,12,30,4,45,0.0,0.0,0.0,5.0,0.0 -2019,12,30,5,0,0.0,0.0,0.0,5.0,0.0 -2019,12,30,5,15,0.0,0.0,0.0,5.0,0.0 -2019,12,30,5,30,0.0,0.0,0.0,5.0,0.0 -2019,12,30,5,45,0.0,0.0,0.0,5.0,0.0 -2019,12,30,6,0,0.0,0.0,0.0,4.8,0.3 -2019,12,30,6,15,0.0,0.0,0.0,4.8,0.3 -2019,12,30,6,30,0.0,0.0,0.0,4.8,0.3 -2019,12,30,6,45,0.0,0.0,0.0,4.8,0.3 -2019,12,30,7,0,1.0,12.855934899229283,13.0,4.5,0.0 -2019,12,30,7,15,1.0,12.905585880232007,13.0,4.5,0.0 -2019,12,30,7,30,1.0,12.954706206471949,13.0,4.5,0.0 -2019,12,30,7,45,1.0,13.00308553717106,13.0,4.5,0.0 -2019,12,30,8,0,2.0,42.101033409215916,42.0,6.0,1.6 -2019,12,30,8,15,2.0,42.19359320248382,42.0,6.0,1.6 -2019,12,30,8,30,2.0,42.28345409890102,42.0,6.0,1.6 -2019,12,30,8,45,2.0,42.370231300313364,42.0,6.0,1.6 -2019,12,30,9,0,73.0,179.55469228990785,163.0,8.6,0.2 -2019,12,30,9,15,73.0,182.45680099663048,163.0,8.6,0.2 -2019,12,30,9,30,73.0,185.2073413065837,163.0,8.6,0.2 -2019,12,30,9,45,73.0,187.79453498388966,163.0,8.6,0.2 -2019,12,30,10,0,11.0,158.09973062942902,154.0,10.7,1.3 -2019,12,30,10,15,11.0,158.4354583214073,154.0,10.7,1.3 -2019,12,30,10,30,11.0,158.74190824420756,154.0,10.7,1.3 -2019,12,30,10,45,11.0,159.0177681322133,154.0,10.7,1.3 -2019,12,30,11,0,31.0,223.82886891291196,209.0,11.2,0.2 -2019,12,30,11,15,31.0,224.42427194844504,209.0,11.2,0.2 -2019,12,30,11,30,31.0,224.92464241744878,209.0,11.2,0.2 -2019,12,30,11,45,31.0,225.32783765675663,209.0,11.2,0.2 -2019,12,30,12,0,202.0,348.3771124753471,240.0,11.7,2.2 -2019,12,30,12,15,202.0,349.7069805228229,240.0,11.7,2.2 -2019,12,30,12,30,202.0,350.37820643247176,240.0,11.7,2.2 -2019,12,30,12,45,202.0,350.3879159118999,240.0,11.7,2.2 -2019,12,30,13,0,17.0,169.2352135916913,160.0,11.5,2.8 -2019,12,30,13,15,17.0,169.12491429095576,160.0,11.5,2.8 -2019,12,30,13,30,17.0,168.95964654753212,160.0,11.5,2.8 -2019,12,30,13,45,17.0,168.74011806327007,160.0,11.5,2.8 -2019,12,30,14,0,8.0,100.98459712604321,97.0,9.8,4.2 -2019,12,30,14,15,8.0,100.83165525566295,97.0,9.8,4.2 -2019,12,30,14,30,8.0,100.65482604508475,97.0,9.8,4.2 -2019,12,30,14,45,8.0,100.4548667041356,97.0,9.8,4.2 -2019,12,30,15,0,83.0,117.53857245264717,84.0,8.9,1.5 -2019,12,30,15,15,83.0,115.01168464068705,84.0,8.9,1.5 -2019,12,30,15,30,83.0,112.2743991410722,84.0,8.9,1.5 -2019,12,30,15,45,83.0,109.3384374305477,84.0,8.9,1.5 -2019,12,30,16,0,41.0,30.97435230920115,20.0,8.2,1.5 -2019,12,30,16,15,41.0,29.346800259815616,20.0,8.2,1.5 -2019,12,30,16,30,41.0,27.640890805518424,20.0,8.2,1.5 -2019,12,30,16,45,41.0,25.863928912488827,20.0,8.2,1.5 -2019,12,30,17,0,0.0,0.0,0.0,8.2,1.3 -2019,12,30,17,15,0.0,0.0,0.0,8.2,1.3 -2019,12,30,17,30,0.0,0.0,0.0,8.2,1.3 -2019,12,30,17,45,0.0,0.0,0.0,8.2,1.3 -2019,12,30,18,0,0.0,0.0,0.0,7.7,0.0 -2019,12,30,18,15,0.0,0.0,0.0,7.7,0.0 -2019,12,30,18,30,0.0,0.0,0.0,7.7,0.0 -2019,12,30,18,45,0.0,0.0,0.0,7.7,0.0 -2019,12,30,19,0,0.0,0.0,0.0,6.6,0.2 -2019,12,30,19,15,0.0,0.0,0.0,6.6,0.2 -2019,12,30,19,30,0.0,0.0,0.0,6.6,0.2 -2019,12,30,19,45,0.0,0.0,0.0,6.6,0.2 -2019,12,30,20,0,0.0,0.0,0.0,6.0,1.9 -2019,12,30,20,15,0.0,0.0,0.0,6.0,1.9 -2019,12,30,20,30,0.0,0.0,0.0,6.0,1.9 -2019,12,30,20,45,0.0,0.0,0.0,6.0,1.9 -2019,12,30,21,0,0.0,0.0,0.0,5.6,0.0 -2019,12,30,21,15,0.0,0.0,0.0,5.6,0.0 -2019,12,30,21,30,0.0,0.0,0.0,5.6,0.0 -2019,12,30,21,45,0.0,0.0,0.0,5.6,0.0 -2019,12,30,22,0,0.0,0.0,0.0,5.6,0.0 -2019,12,30,22,15,0.0,0.0,0.0,5.6,0.0 -2019,12,30,22,30,0.0,0.0,0.0,5.6,0.0 -2019,12,30,22,45,0.0,0.0,0.0,5.6,0.0 -2019,12,30,23,0,0.0,0.0,0.0,5.3,0.0 -2019,12,30,23,15,0.0,0.0,0.0,5.3,0.0 -2019,12,30,23,30,0.0,0.0,0.0,5.3,0.0 -2019,12,30,23,45,0.0,0.0,0.0,5.3,0.0 -2019,12,31,0,0,0.0,0.0,0.0,2.7,0.2 -2019,12,31,0,15,0.0,0.0,0.0,2.7,0.2 -2019,12,31,0,30,0.0,0.0,0.0,2.7,0.2 -2019,12,31,0,45,0.0,0.0,0.0,2.7,0.2 -2019,12,31,1,0,0.0,0.0,0.0,2.0,2.0 -2019,12,31,1,15,0.0,0.0,0.0,2.0,2.0 -2019,12,31,1,30,0.0,0.0,0.0,2.0,2.0 -2019,12,31,1,45,0.0,0.0,0.0,2.0,2.0 -2019,12,31,2,0,0.0,0.0,0.0,2.0,1.3 -2019,12,31,2,15,0.0,0.0,0.0,2.0,1.3 -2019,12,31,2,30,0.0,0.0,0.0,2.0,1.3 -2019,12,31,2,45,0.0,0.0,0.0,2.0,1.3 -2019,12,31,3,0,0.0,0.0,0.0,2.1,0.2 -2019,12,31,3,15,0.0,0.0,0.0,2.1,0.2 -2019,12,31,3,30,0.0,0.0,0.0,2.1,0.2 -2019,12,31,3,45,0.0,0.0,0.0,2.1,0.2 -2019,12,31,4,0,0.0,0.0,0.0,2.9,1.6 -2019,12,31,4,15,0.0,0.0,0.0,2.9,1.6 -2019,12,31,4,30,0.0,0.0,0.0,2.9,1.6 -2019,12,31,4,45,0.0,0.0,0.0,2.9,1.6 -2019,12,31,5,0,0.0,0.0,0.0,2.0,2.0 -2019,12,31,5,15,0.0,0.0,0.0,2.0,2.0 -2019,12,31,5,30,0.0,0.0,0.0,2.0,2.0 -2019,12,31,5,45,0.0,0.0,0.0,2.0,2.0 -2019,12,31,6,0,0.0,0.0,0.0,2.6,1.6 -2019,12,31,6,15,0.0,0.0,0.0,2.6,1.6 -2019,12,31,6,30,0.0,0.0,0.0,2.6,1.6 -2019,12,31,6,45,0.0,0.0,0.0,2.6,1.6 -2019,12,31,7,0,609.0,-64.39741610718124,23.0,7.4,2.8 -2019,12,31,7,15,609.0,-34.146666342666876,23.0,7.4,2.8 -2019,12,31,7,30,609.0,-4.219227500032957,23.0,7.4,2.8 -2019,12,31,7,45,609.0,25.256746533052016,23.0,7.4,2.8 -2019,12,31,8,0,955.0,81.8555969303292,33.0,10.2,4.2 -2019,12,31,8,15,955.0,126.07234189592981,33.0,10.2,4.2 -2019,12,31,8,30,955.0,168.9997966684282,33.0,10.2,4.2 -2019,12,31,8,45,955.0,210.45413929614557,33.0,10.2,4.2 -2019,12,31,9,0,995.0,276.35766140331407,50.0,12.1,5.0 -2019,12,31,9,15,995.0,315.93120252288276,50.0,12.1,5.0 -2019,12,31,9,30,995.0,353.4379367829816,50.0,12.1,5.0 -2019,12,31,9,45,995.0,388.71725458937055,50.0,12.1,5.0 -2019,12,31,10,0,630.0,380.29587258977347,145.0,13.0,4.7 -2019,12,31,10,15,630.0,399.53237210544023,145.0,13.0,4.7 -2019,12,31,10,30,630.0,417.0913162508766,145.0,13.0,4.7 -2019,12,31,10,45,630.0,432.8975149315536,145.0,13.0,4.7 -2019,12,31,11,0,331.0,384.60851883230816,226.0,13.1,5.1 -2019,12,31,11,15,331.0,390.96868351914804,226.0,13.1,5.1 -2019,12,31,11,30,331.0,396.31369924357375,226.0,13.1,5.1 -2019,12,31,11,45,331.0,400.62067782767156,226.0,13.1,5.1 -2019,12,31,12,0,430.0,435.07131641996307,204.0,13.7,5.0 -2019,12,31,12,15,430.0,437.90346904828516,204.0,13.7,5.0 -2019,12,31,12,30,430.0,439.3329448732122,204.0,13.7,5.0 -2019,12,31,12,45,430.0,439.35362265980484,204.0,13.7,5.0 -2019,12,31,13,0,570.0,461.1401997713621,151.0,14.0,3.7 -2019,12,31,13,15,570.0,457.44030212265284,151.0,14.0,3.7 -2019,12,31,13,30,570.0,451.8965341094105,151.0,14.0,3.7 -2019,12,31,13,45,570.0,444.53263499736255,151.0,14.0,3.7 -2019,12,31,14,0,605.0,408.8420764394475,107.0,13.9,2.7 -2019,12,31,14,15,605.0,397.2707591709349,107.0,13.9,2.7 -2019,12,31,14,30,605.0,383.89216707673773,107.0,13.9,2.7 -2019,12,31,14,45,605.0,368.76358934212226,107.0,13.9,2.7 -2019,12,31,15,0,449.0,255.789196988312,74.0,13.3,3.5 -2019,12,31,15,15,449.0,242.1136336254707,74.0,13.3,3.5 -2019,12,31,15,30,449.0,227.2993941032452,74.0,13.3,3.5 -2019,12,31,15,45,449.0,211.409915269593,74.0,13.3,3.5 -2019,12,31,16,0,414.0,127.11911060419297,16.0,12.3,3.0 -2019,12,31,16,15,414.0,110.67757461462386,16.0,12.3,3.0 -2019,12,31,16,30,414.0,93.4444718709279,16.0,12.3,3.0 -2019,12,31,16,45,414.0,75.49359716472776,16.0,12.3,3.0 -2019,12,31,17,0,0.0,0.0,0.0,11.6,2.5 -2019,12,31,17,15,0.0,0.0,0.0,11.6,2.5 -2019,12,31,17,30,0.0,0.0,0.0,11.6,2.5 -2019,12,31,17,45,0.0,0.0,0.0,11.6,2.5 -2019,12,31,18,0,0.0,0.0,0.0,10.3,2.0 -2019,12,31,18,15,0.0,0.0,0.0,10.3,2.0 -2019,12,31,18,30,0.0,0.0,0.0,10.3,2.0 -2019,12,31,18,45,0.0,0.0,0.0,10.3,2.0 -2019,12,31,19,0,0.0,0.0,0.0,8.4,1.3 -2019,12,31,19,15,0.0,0.0,0.0,8.4,1.3 -2019,12,31,19,30,0.0,0.0,0.0,8.4,1.3 -2019,12,31,19,45,0.0,0.0,0.0,8.4,1.3 -2019,12,31,20,0,0.0,0.0,0.0,8.6,0.0 -2019,12,31,20,15,0.0,0.0,0.0,8.6,0.0 -2019,12,31,20,30,0.0,0.0,0.0,8.6,0.0 -2019,12,31,20,45,0.0,0.0,0.0,8.6,0.0 -2019,12,31,21,0,0.0,0.0,0.0,6.1,0.2 -2019,12,31,21,15,0.0,0.0,0.0,6.1,0.2 -2019,12,31,21,30,0.0,0.0,0.0,6.1,0.2 -2019,12,31,21,45,0.0,0.0,0.0,6.1,0.2 -2019,12,31,22,0,0.0,0.0,0.0,6.0,1.6 -2019,12,31,22,15,0.0,0.0,0.0,6.0,1.6 -2019,12,31,22,30,0.0,0.0,0.0,6.0,1.6 -2019,12,31,22,45,0.0,0.0,0.0,6.0,1.6 -2019,12,31,23,0,0.0,0.0,0.0,5.4,2.1 -2019,12,31,23,15,0.0,0.0,0.0,5.4,2.1 -2019,12,31,23,30,0.0,0.0,0.0,5.4,2.1 -2019,12,31,23,45,0.0,0.0,0.0,5.4,2.1 diff --git a/docs/source/ControllerIntegration.rst b/docs/source/ControllerIntegration.rst index 15612a0..aba8ec5 100644 --- a/docs/source/ControllerIntegration.rst +++ b/docs/source/ControllerIntegration.rst @@ -31,31 +31,51 @@ equipment, by end use. HVAC Heating or HVAC Cooling ---------------------------- -================================ ========== ========================================================================= -**Control Command** **Units** **Description** -================================ ========== ========================================================================= -Load Fraction unitless 1 (no effect) or 0 (force equipment off) -Setpoint C Sets temperature setpoint for one timestep (then reverts to schedule) -Deadband C Sets thermostat deadband (does not revert unless deadband is scheduled) -Duty Cycle unitless Sets the equipment duty cycle for ``ext_time_res`` -Disable Speed X unitless Disables low (X=1) or high (X=2) speed if value is ``True`` [#]_ -================================ ========== ========================================================================= - -.. [#] Only available for 2 speed equipment, either ASHP or AC. Variable speed equipment modulates between all speeds to - perfectly maintain setpoint ( deadband = 0 C) + ++-------------------------------+--------------------------+-----------+---------------------+---------------------------------------------------------------------------+ +| **End Use or Equipment Name** | **Control Command** | **Units** | **Resets?** | **Description** | ++===============================+==========================+===========+=====================+===========================================================================+ +| HVAC Heating or HVAC Cooling | Load Fraction | unitless | TRUE | 1 (no effect) or 0 (forces equipment off) | ++-------------------------------+--------------------------+-----------+---------------------+---------------------------------------------------------------------------+ +| HVAC Heating or HVAC Cooling | Setpoint | C | TRUE | Sets temperature setpoint (then reverts back to schedule) | ++-------------------------------+--------------------------+-----------+---------------------+---------------------------------------------------------------------------+ +| HVAC Heating or HVAC Cooling | Deadband | C | Only if in schedule | Sets temperature deadband | ++-------------------------------+--------------------------+-----------+---------------------+---------------------------------------------------------------------------+ +| HVAC Heating or HVAC Cooling | Capacity | W | TRUE | Sets HVAC capacity directly, ideal capacity mode only | ++-------------------------------+--------------------------+-----------+---------------------+---------------------------------------------------------------------------+ +| HVAC Heating or HVAC Cooling | Max Capacity Fraction | unitless | Only if in schedule | Limits HVAC max capacity, ideal capacity only | ++-------------------------------+--------------------------+-----------+---------------------+---------------------------------------------------------------------------+ +| HVAC Heating or HVAC Cooling | Duty Cycle | unitless | TRUE | Sets the equipment duty cycle for ext_time_res, non-ideal capacity only | ++-------------------------------+--------------------------+-----------+---------------------+---------------------------------------------------------------------------+ +| HVAC Heating or HVAC Cooling | Disable Speed X | N/A | FALSE | Flag to disable low (X=1) or high (X=2) speed, only for 2 speed equipment | ++-------------------------------+--------------------------+-----------+---------------------+---------------------------------------------------------------------------+ +| HVAC Heating (ASHP only) | ER Capacity | W | TRUE | Sets ER element capacity directly, ideal capacity only | ++-------------------------------+--------------------------+-----------+---------------------+---------------------------------------------------------------------------+ +| HVAC Heating (ASHP only) | Max ER Capacity Fraction | unitless | Only if in schedule | Limits ER element max capacity, ideal capacity only | ++-------------------------------+--------------------------+-----------+---------------------+---------------------------------------------------------------------------+ +| HVAC Heating (ASHP only) | ER Duty Cycle | unitless | TRUE | Sets the ER element duty cycle for ext_time_res, non-ideal capacity only | ++-------------------------------+--------------------------+-----------+---------------------+---------------------------------------------------------------------------+ Water Heating ----------------------------- -================================ ========== ========================================================================= -**Control Command** **Units** **Description** -================================ ========== ========================================================================= -Load Fraction unitless 1 (no effect) or 0 (force equipment off) -Setpoint C Sets temperature setpoint for one timestep. [#]_ -Deadband C Sets temperature deadband (does not reset) [#]_ -Duty Cycle unitless Sets the equipment duty cycle for ``ext_time_res`` -HP Duty Cycle unitless Sets the heat pump duty cycle for a heat pump water heater -ER Duty Cycle unitless Sets the electric resistance duty cycle for a heat pump water heater [#]_ -================================ ========== ========================================================================= + ++---------------------+-----------+---------------------+--------------------------------------------------------------------+ +| **Control Command** | **Units** | **Resets?** | **Description** | ++=====================+===========+=====================+====================================================================+ +| Load Fraction | unitless | TRUE | 1 (no effect) or 0 (forces equipment off) | ++---------------------+-----------+---------------------+--------------------------------------------------------------------+ +| Setpoint | C | Only if in schedule | Sets temperature setpoint [#]_ | ++---------------------+-----------+---------------------+--------------------------------------------------------------------+ +| Deadband | C | Only if in schedule | Sets temperature deadband [#]_ | ++---------------------+-----------+---------------------+--------------------------------------------------------------------+ +| Max Power | kW | Only if in schedule | Sets the maximum power. Does not work for HPWH in HP mode | ++---------------------+-----------+---------------------+--------------------------------------------------------------------+ +| Duty Cycle | unitless | TRUE | Sets the equipment duty cycle for ext_time_res | ++---------------------+-----------+---------------------+--------------------------------------------------------------------+ +| HP Duty Cycle | unitless | TRUE | Sets the HPWH heat pump duty cycle for ext_time_res | ++---------------------+-----------+---------------------+--------------------------------------------------------------------+ +| ER Duty Cycle | unitless | TRUE | Sets the HPWH electric resistance duty cycle for ext_time_res [#]_ | ++---------------------+-----------+---------------------+--------------------------------------------------------------------+ .. [#] Sending {'Setpoint': None} will reset the setpoint to the default schedule. Note that a 10 F (5.56 C) decrease in setpoint corresponds to a CTA-2045 'Load Shed' command. A 10 F increase corresponds to an @@ -68,109 +88,131 @@ ER Duty Cycle unitless Sets the electric resistance duty Electric Vehicle (EV) ----------------------------- -================================ ========== ========================================================================================================= -**Control Command** **Units** **Description** -================================ ========== ========================================================================================================= -Delay unitless Delay EV chage for a given time. Value can either be ``datetime.timedelta`` or integer for # of timesteps -P Setpoint kW Set real AC power setpoint -SOC Rate 1/hour Set AC power setpoint based on SOC rate, EV capacity, and efficiency of charging -================================ ========== ========================================================================================================= ++---------------------+-----------+---------------------+---------------------------------------------------------------------------------------------------------------------------------+ +| **Control Command** | **Units** | **Resets?** | **Description** | ++=====================+===========+=====================+=================================================================================================================================+ +| Delay | N/A | TRUE | Delays EV charge for a given time. Value can be a datetime.timedelta or an integer to specify the number of time steps to delay | ++---------------------+-----------+---------------------+---------------------------------------------------------------------------------------------------------------------------------+ +| P Setpoint | kW | TRUE | Sets AC power setpoint | ++---------------------+-----------+---------------------+---------------------------------------------------------------------------------------------------------------------------------+ +| SOC | unitless | TRUE | Sets AC power to achieve desired SOC setpoint | ++---------------------+-----------+---------------------+---------------------------------------------------------------------------------------------------------------------------------+ +| SOC Rate | 1/hour | TRUE | Sets AC power setpoint based on SOC rate, EV capacity, and efficiency of charging | ++---------------------+-----------+---------------------+---------------------------------------------------------------------------------------------------------------------------------+ +| Max Power | kW | Only if in schedule | Maximum power limit | ++---------------------+-----------+---------------------+---------------------------------------------------------------------------------------------------------------------------------+ +| Max SOC | unitless | Only if in schedule | Maximum SOC limit | ++---------------------+-----------+---------------------+---------------------------------------------------------------------------------------------------------------------------------+ Photovoltaics (PV) ----------------------------- -================================ ========== ========================================================================================================= -**Control Command** **Units** **Description** -================================ ========== ========================================================================================================= -P Setpoint kW Sets real AC power setpoint -P Curtailment (kW) kW Set real power setpoint by specifying absolute curtailment -P Curtailment (%) % Set real power setpoint by specifying curtailment relative to maximum power point -Q Setpoint kVar Set reactive power setpoint -Power Factor unitless Set reactive power setpoint based on power factor -Priority N/A Changes internal controller priority setting. Options are ``Watt``, ``Var``, or ``CPF`` [#]_ -================================ ========== ========================================================================================================= ++---------------------+-----------+-------------+----------------------------------------------------------------------------------------+ +| **Control Command** | **Units** | **Resets?** | **Description** | ++=====================+===========+=============+========================================================================================+ +| P Setpoint | kW | TRUE | Sets real AC power setpoint | ++---------------------+-----------+-------------+----------------------------------------------------------------------------------------+ +| P Curtailment (kW) | kW | TRUE | Sets real power setpoint by specifying absolute curtailment | ++---------------------+-----------+-------------+----------------------------------------------------------------------------------------+ +| P Curtailment (%) | % | TRUE | Sets real power setpoint by specifying curtailment relative to maximum power point | ++---------------------+-----------+-------------+----------------------------------------------------------------------------------------+ +| Q Setpoint | kVAR | TRUE | Sets reactive power setpoint | ++---------------------+-----------+-------------+----------------------------------------------------------------------------------------+ +| Power Factor | unitless | TRUE | Sets reactive power setpoint based on power factor | ++---------------------+-----------+-------------+----------------------------------------------------------------------------------------+ +| Priority | N/A | FALSE | Changes internal controller priority setting. Options are 'Watt', 'Var', or 'CPF' [#]_ | ++---------------------+-----------+-------------+----------------------------------------------------------------------------------------+ .. [#] CPF: Constant Power Factor Battery ----------------------------- -================================ ========== ========================================================================================================= -**Control Command** **Units** **Description** -================================ ========== ========================================================================================================= -P Setpoint kW Sets AC power setpoint -SOC Rate 1/hour Set AC power setpoint based on SOC rate, battery capacity, and efficiency -Control Type N/A Change default control type. Supported options are ``Schedule``, ``Self-Consumption`` [#]_, and ``Off`` -Parameters N/A Dictionary of updated control parameters. See battery input arguments for details. -================================ ========== ========================================================================================================= - -.. [#] 'Self-Consumption' mode, sometimes referred to as minimizing grid import, only applies for homes with PV and a battery. - This strategy will charge the battery when PV production is larger than electricty consumption and vice versa. ++-----------------------+-----------+---------------------+--------------------------------------------------------+ +| **Control Command** | **Units** | **Resets?** | **Description** | ++=======================+===========+=====================+========================================================+ +| P Setpoint | kW | TRUE | Sets AC power setpoint | ++-----------------------+-----------+---------------------+--------------------------------------------------------+ +| SOC | unitless | TRUE | Sets AC power to achieve desired SOC setpoint | ++-----------------------+-----------+---------------------+--------------------------------------------------------+ +| Self Consumption Mode | N/A | FALSE | Flag to turn on Self-Consumption Mode [#]_ | ++-----------------------+-----------+---------------------+--------------------------------------------------------+ +| Min SOC | unitless | Only if in schedule | Minimum SOC limit for self-consumption control | ++-----------------------+-----------+---------------------+--------------------------------------------------------+ +| Max SOC | unitless | Only if in schedule | Maximum SOC limit for self-consumption control | ++-----------------------+-----------+---------------------+--------------------------------------------------------+ +| Max Import Limit | kW | Only if in schedule | Max dwelling import power for self-consumption control | ++-----------------------+-----------+---------------------+--------------------------------------------------------+ +| Max Export Limit | kW | Only if in schedule | Max dwelling export power for self-consumption control | ++-----------------------+-----------+---------------------+--------------------------------------------------------+ + +.. [#] Self-Consumption Mode aims to minimize grid imports and exports. This + strategy will charge the battery when net energy consumption is larger + than the Max Import Limit and discharge when net energy generation is + larger than the Max Export Limit. Lighting and Other ----------------------------- -================================ ============ ============================================================================ -**Control Command** **Units** **Description** -================================ ============ ============================================================================ -Load Fraction unitless Adjust the scheduled power consumption. Can apply to both electric and gas -P Setpoint kW Set electric power setpoint -Gas Setpoint therms/hour Set gas power setpoint [#]_ -================================ ============ ============================================================================ -.. [#] Most useful for modeling backup gas generators + ++---------------------+-------------+-------------+----------------------------------------------------------------------------+ +| **Control Command** | **Units** | **Resets?** | **Description** | ++=====================+=============+=============+============================================================================+ +| Load Fraction | unitless | TRUE | Adjusts the scheduled power consumption. Applied to electric and gas power | ++---------------------+-------------+-------------+----------------------------------------------------------------------------+ +| P Setpoint | kW | TRUE | Sets electric power setpoint | ++---------------------+-------------+-------------+----------------------------------------------------------------------------+ +| Gas Setpoint | therms/hour | TRUE | Sets gas power setpoint | ++---------------------+-------------+-------------+----------------------------------------------------------------------------+ External Model Signals ------------------------------ -OCHRE can also integrate with external models that modify default -schedule values and other settings. +OCHRE can also integrate with external models that modify default schedule +values and other settings. -The most common use case is to integrate with a grid simulator that -modifies the dwelling voltage. OCHRE includes a ZIP model for all -equipment that modifies the real and reactive electric power based on -the grid voltage. +The most common use case is to integrate with a grid simulator that modifies +the dwelling voltage. OCHRE includes a ZIP model for all equipment that +modifies the real and reactive electric power based on the grid voltage. The following code sends a voltage of 0.97 p.u. to a Dwelling model: .. code-block:: python - status = dwelling.update(ext_model_args={‘Voltage (-)’: 0.97}) + status = dwelling.update(schedule_inputs={'Voltage (-)': 0.97}) External model signals can also modify any time series schedule values including weather and occupancy variables. The names and units of these variables can be found in the header of the schedule output file. Alternatively, these variables can be reset at the beginning of the -simulation; see notebooks/… for more details. +simulation; see `this example code +`__ for +more details. Status Variables ---------------- The ``update`` function for equipment and dwellings returns a Python -dictionary with status variables that can be sent to the external -controller. These status variables are equivalent to the Time Series -Outputs described in Outputs and Analysis. Note that the ``verbosity`` -applies to the status variables in the same way as the outputs. +dictionary with status variables that can be sent to the external controller. +These status variables are equivalent to the Time Series Outputs described in +Outputs and Analysis. Note that the ``verbosity`` applies to the status +variables in the same way as the outputs. -Example Use Case – Dwelling ---------------------------- - -The following code creates a Dwelling model and runs a simulation that -controls the HVAC heating setpoint. For more details and examples, see -bin/run_external_control.py and notebooks/user_tutorial.ipynb - -Example Use Case – Equipment ----------------------------- +Example Use Cases +----------------- -The following code creates a water heater model and runs a simulation -that controls the water heater setpoint. For more details and examples, -see bin/run_external_control.py and notebooks/user_tutorial.ipynb +See `bin/run_external_control.py +`__ and +`notebooks/user_tutorial.ipynb +`__ for +more details. Co-simulation ------------- -Multiple OCHRE instances have been run in co-simulation using the HELICS -platform. OCHRE models can communicate with other agents via its -external control signals, external model signals, and status variables. +Multiple OCHRE instances have been run in co-simulation using the `HELICS +`__ platform. OCHRE models can communicate with other +agents via its external control signals, external model signals, and status +variables. -See the publications list for examples of co-simulation architectures -that use OCHRE. We do not currently have public code for using OCHRE in -co-simulation. +See the publications list for examples of co-simulation architectures that use +OCHRE. We do not currently have public code for using OCHRE in co-simulation. diff --git a/docs/source/InputsAndArguments.rst b/docs/source/InputsAndArguments.rst index e72eb07..ea7534c 100644 --- a/docs/source/InputsAndArguments.rst +++ b/docs/source/InputsAndArguments.rst @@ -156,8 +156,8 @@ The table below lists the optional arguments for creating a ``Dwelling`` model. ``schedule_input_file`` string None Path to schedule input file ``initialization_time`` ``datetime.timedelta`` None Length of "warm up" simulation for initial conditions [#]_ ``time_zone`` string None [#]_ Use ``DST`` for local U.S. time zone with daylight savings, ``noDST`` for local U.S. time zone without [#]_ -``verbosity`` int 1 Verbosity of the outputs, from 0-9. See `Outputs and Analysis `__ for details. -``metrics_verbosity`` int 1 Verbosity of metrics, from 0-9. See `Dwelling Metrics `__ for details. +``verbosity`` int 1 Verbosity of the outputs, from 0-9. See `Outputs and Analysis `__ for details. +``metrics_verbosity`` int 1 Verbosity of metrics, from 0-9. See `Dwelling Metrics `__ for details. ``output_path`` string [#]_ Path to saved output files ``output_to_parquet`` boolean False Save time series data as parquet (instead of .csv) ``export_res`` ``datetime.timedelta`` None [#]_ Time resolution to save results @@ -475,19 +475,21 @@ OCHRE includes an electric vehicle (EV) model. The equipment name can be “EV” or “Electric Vehicle”. The table below shows the required and optional equipment-specific arguments for EVs. -+-------------------------+---------------+-----------+---------------------------------------------------------------------+-------------------------------------------------------+ -| Argument Name | Argument Type | Required? | Default Value | Description | -+=========================+===============+===========+=====================================================================+=======================================================+ -| ``vehicle_type`` | string | Yes | BEV, if taken from HPXML file | EV vehicle type, options are "PHEV" or "BEV" | -+-------------------------+---------------+-----------+---------------------------------------------------------------------+-------------------------------------------------------+ -| ``charging_level`` | string | Yes | Level 2, if taken from HPXML file | EV charging type, options are "Level 1" or "Level 2" | -+-------------------------+---------------+-----------+---------------------------------------------------------------------+-------------------------------------------------------+ -| ``capacity or mileage`` | number | Yes | 100 miles if HPXML Annual EV Energy < 1500 kWh, otherwise 250 miles | EV battery capacity in kWh or mileage in miles | -+-------------------------+---------------+-----------+---------------------------------------------------------------------+-------------------------------------------------------+ -| ``enable_part_load`` | boolean | No | True if charging_level = Level 2 | Allows EV to charge at partial load | -+-------------------------+---------------+-----------+---------------------------------------------------------------------+-------------------------------------------------------+ -| ``ambient_ev_temp`` | number | No | Taken from schedule, or 20 C | Ambient temperature used to estimate EV usage per day | -+-------------------------+---------------+-----------+---------------------------------------------------------------------+-------------------------------------------------------+ ++--------------------------+---------------+-----------+---------------------------------------------------------------------+-------------------------------------------------------+ +| Argument Name | Argument Type | Required? | Default Value | Description | ++==========================+===============+===========+=====================================================================+=======================================================+ +| ``vehicle_type`` | string | Yes | BEV, if taken from HPXML file | EV vehicle type, options are "PHEV" or "BEV" | ++--------------------------+---------------+-----------+---------------------------------------------------------------------+-------------------------------------------------------+ +| ``charging_level`` | string | Yes | Level 2, if taken from HPXML file | EV charging type, options are "Level 1" or "Level 2" | ++--------------------------+---------------+-----------+---------------------------------------------------------------------+-------------------------------------------------------+ +| ``capacity or mileage`` | number | Yes | 100 miles if HPXML Annual EV Energy < 1500 kWh, otherwise 250 miles | EV battery capacity in kWh or mileage in miles | ++--------------------------+---------------+-----------+---------------------------------------------------------------------+-------------------------------------------------------+ +| ``enable_part_load`` | boolean | No | True if charging_level = Level 2 | Allows EV to charge at partial load | ++--------------------------+---------------+-----------+---------------------------------------------------------------------+-------------------------------------------------------+ +| ``ambient_ev_temp`` | number | No | Taken from schedule, or 20 C | Ambient temperature used to estimate EV usage per day | ++--------------------------+---------------+-----------+---------------------------------------------------------------------+-------------------------------------------------------+ +| ``equipment_event_file`` | string | No | Default file based on ``vehicle_type`` and mileage | File for EV event scenarios | ++--------------------------+---------------+-----------+---------------------------------------------------------------------+-------------------------------------------------------+ Battery ~~~~~~~ @@ -555,29 +557,23 @@ Solar PV OCHRE includes a solar PV model. The table below shows the required and optional equipment-specific arguments for PV. -+-------------------------+---------------+--------------------------------------------------------+-----------------------------------------------+--------------------------------------------------------------------------------------+ -| Argument Name | Argument Type | Required? | Default Value | Description | -+=========================+===============+========================================================+===============================================+======================================================================================+ -| ``capacity`` | number | Only if use_sam is True | | PV panel capacity, in kW | -+-------------------------+---------------+--------------------------------------------------------+-----------------------------------------------+--------------------------------------------------------------------------------------+ -| ``use_sam`` | boolean | No | True if equipment_schedule_file not specified | If True, runs PySAM to generate PV power profile | -+-------------------------+---------------+--------------------------------------------------------+-----------------------------------------------+--------------------------------------------------------------------------------------+ -| ``tilt`` | number | No | Taken from HPXML roof pitch | Tilt angle from horizontal, in degrees. Used for SAM | -+-------------------------+---------------+--------------------------------------------------------+-----------------------------------------------+--------------------------------------------------------------------------------------+ -| ``orientation`` | number | No | Taken from HPXML building orientation | Orientation angle from south, in degrees. Used for SAM | -+-------------------------+---------------+--------------------------------------------------------+-----------------------------------------------+--------------------------------------------------------------------------------------+ -| ``include_inverter`` | boolean | No | TRUE | If True, outputs AC power and incorporates inverter efficiency and power constraints | -+-------------------------+---------------+--------------------------------------------------------+-----------------------------------------------+--------------------------------------------------------------------------------------+ -| ``inverter_efficiency`` | number | No | 1 | Efficiency of the inverter, unitless | -+-------------------------+---------------+--------------------------------------------------------+-----------------------------------------------+--------------------------------------------------------------------------------------+ -| ``inverter_priority`` | string | No | "Var" | PV inverter priority. Options are "Var", "Watt", or "CPF" (constant power factor) | -+-------------------------+---------------+--------------------------------------------------------+-----------------------------------------------+--------------------------------------------------------------------------------------+ -| ``inverter_capacity`` | number | No | PV.capacity | Inverter apparent power capacity, in kVA (i.e., kW) | -+-------------------------+---------------+--------------------------------------------------------+-----------------------------------------------+--------------------------------------------------------------------------------------+ -| ``inverter_min_pf`` | number | No | 0.8 | Inverter minimum power factor, unitless | -+-------------------------+---------------+--------------------------------------------------------+-----------------------------------------------+--------------------------------------------------------------------------------------+ -| ``sam_weather_file`` | string | Only if use_sam is True and running without a Dwelling | | Weather file in SAM format | -+-------------------------+---------------+--------------------------------------------------------+-----------------------------------------------+--------------------------------------------------------------------------------------+ ++-------------------------+---------------+-----------------------+------------------------------------------+------------------------------------------------------------------------------------+ +| Argument Name | Argument Type | Required? | Default Value | Description | ++=========================+===============+=======================+==========================================+====================================================================================+ +| ``capacity`` | number | Only when running SAM | | PV panel capacity, in kW | ++-------------------------+---------------+-----------------------+------------------------------------------+------------------------------------------------------------------------------------+ +| ``tilt`` | number | No | Taken from HPXML roof pitch | Tilt angle from horizontal, in degrees. Used for SAM | ++-------------------------+---------------+-----------------------+------------------------------------------+------------------------------------------------------------------------------------+ +| ``azimuth`` | number | No | Taken from HPXML, south-most facing roof | Azimuth angle from south, in degrees. Used for SAM | ++-------------------------+---------------+-----------------------+------------------------------------------+------------------------------------------------------------------------------------+ +| ``inverter_capacity`` | number | No | PV.capacity | Inverter apparent power capacity, in kVA. Used for SAM | ++-------------------------+---------------+-----------------------+------------------------------------------+------------------------------------------------------------------------------------+ +| ``inverter_efficiency`` | number | No | Use default from SAM | Efficiency of the inverter, unitless. Used for SAM | ++-------------------------+---------------+-----------------------+------------------------------------------+------------------------------------------------------------------------------------+ +| ``inverter_priority`` | string | No | "Var" | PV inverter priority. Options are "Var", "Watt", or "CPF" (constant power factor) | ++-------------------------+---------------+-----------------------+------------------------------------------+------------------------------------------------------------------------------------+ +| ``inverter_min_pf`` | number | No | 0.8 | Inverter minimum power factor, unitless | ++-------------------------+---------------+-----------------------+------------------------------------------+------------------------------------------------------------------------------------+ Gas Generator ~~~~~~~~~~~~~ diff --git a/docs/source/Introduction.rst b/docs/source/Introduction.rst index 306cc68..82c6379 100644 --- a/docs/source/Introduction.rst +++ b/docs/source/Introduction.rst @@ -1,24 +1,25 @@ Getting Started =============== -.. image:: images/OCHRE-Logo-Stacked-2Color.png +.. image:: images/OCHRE-Logo-Horiz-2Color.png :width: 500 :alt: OCHRE logo OCHRE Overview -------------- -OCHRE is a Python-based building energy modeling (BEM) tool designed -specifically for modeling flexible loads in residential buildings. OCHRE -includes detailed models and controls for flexible devices including -HVAC equipment, water heaters, electric vehicles, solar PV, and -batteries. It is designed to run in co-simulation with custom -controllers, aggregators, and grid models. OCHRE is integrated with -`OS-HPXML `__, -and any OS-HPXML integrated workflow can be used to generate OCHRE input -files. - -More information about OCHRE is available on `NREL’s +OCHRE\ |tm| is a Python-based building energy modeling (BEM) tool designed to +model flexible loads in residential buildings. OCHRE includes detailed models +and controls for flexible devices including HVAC equipment, water heaters, +electric vehicles, solar PV, and batteries. It is designed to run in +co-simulation with custom controllers, aggregators, and grid models. OCHRE +integrates with `OS-HPXML +`__, and any +OS-HPXML integrated workflow can be used to generate OCHRE input files. + +.. |tm| unicode:: U+2122 + +More information about OCHRE is available on `NREL's website `__ and on `Github `__. diff --git a/docs/source/ModelingApproach.rst b/docs/source/ModelingApproach.rst index c2fda01..36727af 100644 --- a/docs/source/ModelingApproach.rst +++ b/docs/source/ModelingApproach.rst @@ -90,21 +90,19 @@ currently support modeling a whole multifamily building with multiple units simultaneously or the modeling of central space and water heating systems. -Thermal mass due to furniture and interior partition walls is also -accounted for in the living space. Partition walls and furniture are -modeled explicitly with surface areas and material properties like any -other surface and exchange heat through both convection and radiation. -The heat capacity of the air is also modeled to determine the living -zone temperature. However, a multiplier is generally applied to this -capacitance. -`Numerous studies `__ -have shown that applying a multiplier to the air capacitance provides a -much better match to experimental data when trying to model explicit -cycling of the HVAC equipment conditioning the living space. This -multiplier helps account for the volume of ducts and the time required -for warm and cold air to diffuse through the living space. Values for -this multiplier in the literature range from 3-15 depending on the -study. OCHRE uses a default multiplier of 7. +Thermal mass due to furniture and interior partition walls is also accounted +for in the living space. Partition walls and furniture are modeled explicitly +with surface areas and material properties like any other surface and exchange +heat through both convection and radiation. The heat capacity of the air is +also modeled to determine the living zone temperature. However, a multiplier +is generally applied to this capacitance. `Numerous studies +`__ +have shown that applying a multiplier to the air capacitance provides a much +better match to experimental data when trying to model explicit cycling of the +HVAC equipment conditioning the living space. This multiplier helps account +for the volume of ducts and the time required for warm and cold air to diffuse +through the living space. Values for this multiplier in the literature range +from 3-15 depending on the study. OCHRE uses a default multiplier of 7. The envelope includes a humidity model for the living space zone. The model determines the indoor humidity and wet bulb temperature based on a @@ -135,60 +133,63 @@ HVAC ---- OCHRE models several different types of heating, ventilation, and air -conditioning (HVAC) technologies commonly found in residential buildings -in the United States. This includes furnaces, boilers, electric -resistance baseboards, central air conditioners (ACs), room air -conditioners, air source heat pumps (ASHPs), and minisplit heat pumps -(MSHPs). OCHRE also includes “ideal” heating and cooling equipment -models that perfectly maintain the indoor setpoint temperature with a -constant efficiency. Ideal equipment is useful for debugging and -determining the loads in a building. - -HVAC equipment use three types of algorithms for determining equipment -capacity and efficiency: - -- Static capacity: System capacity and efficiency is set at +conditioning (HVAC) technologies commonly found in residential buildings in +the United States. This includes furnaces, boilers, electric resistance +baseboards, central air conditioners (ACs), room air conditioners, air source +heat pumps (ASHPs), and minisplit heat pumps (MSHPs). OCHRE also includes +“ideal” heating and cooling equipment models that perfectly maintain the +indoor setpoint temperature with a constant efficiency. + +HVAC equipment use one of two algorithms to determine equipment max capacity +and efficiency: + +- Static: System max capacity and efficiency is set at initialization and does not change (e.g., Gas Furnace, Electric - Baseboard) - -- Dynamic capacity: System capacity and efficiency varies based on - indoor and outdoor temperatures and air flow rate (e.g., Air - Conditioner, Air Source Heat Pump) - -- Ideal capacity: System capacity is calculated at each time step to - maintain constant indoor temperature (e.g., Ideal Heater, Ideal - Cooler) - -Air source heat pumps, minisplit heat pumps, and air conditioners -include multi-speed options, including single-speed, two-speed, and -variable speed options. The one- and two-speed options typically use the -dynamic capacity algorithm for high resolution simulations, while the -variable speed option typically uses the ideal capacity algorithm. This -equipment use curves to determine the capacity of efficiency of the unit -as a function of the outdoor air drybulb temperature and indoor air -wetbulb temperature. These curves are based on “\ `Improved Modeling of -Residential Air Conditioners and Heat Pumps for Energy -Calculations `__\ ”. -Minisplit heat pumps are always modeled as multispeed equipment, while -for other equipment multiple options are available, with more speeds -corresponding to higher efficiency equipment. - -The Air Source Heat Pump and Mini Split Heat Pump models include heating -and cooling functionality. The heat pump heating model includes a -reverse cycle defrost algorithm that reduces efficiency and capacity at -low temperatures, as well as an electric resistance element that is -enabled when the outdoor air temperature is below a threshold. - -By default, HVAC equipment are controlled using a thermostat control. -Heating and cooling setpoints are defined in the input files and can -vary over time. - -All HVAC equipment can be externally controlled by updating the -thermostat setpoints and deadband or by direct load control (i.e., -shut-off). Static and dynamic HVAC equipment can also be controlled -using duty cycle control or by disabling specific speeds. The equipment -will follow the duty cycle control exactly while minimizing temperature -deviation from setpoint and minimizing cycling. + Baseboard). + +- Dynamic: System max capacity and efficiency varies based on indoor and + outdoor temperatures and air flow rate using biquadratic formulas. These + curves are based on `this paper + `__. + +In addition, HVAC equipment use one of two modes to determine real-time +capacity and power consumption: + +- Thermostatic mode: A thermostat control with a deadband is used to + turn the equipment on and off. Capacity and power are zero or at their + maximum values. + +- Ideal mode: Capacity is calculated at each time step to perfectly + maintain the indoor setpoint temperature. Power is determined by the + fraction of time that the equipment is on in various modes. + +By default, most HVAC equipment operate in thermostatic mode for simulations +with a time resolution of less than 5 minutes. Otherwise, the ideal mode is +used. The only exceptions are variable speed equipment, which always operate +in ideal capacity mode. + +Air source heat pumps, central air conditioners, and room air conditioners +include single-speed, two-speed, and variable speed options. Minisplit heat +pumps are always modeled as variable speed equipment. + +The Air source heat pump and Minisplit heat pump models include heating and +cooling functionality. The heat pump heating model includes a few unique +features: + +- An electric resistance element with additional controls, including an + offset thermostat deadband. +- A heat pump shut off control when the outdoor air temperature is below a + threshold. +- A reverse cycle defrost algorithm that reduces heat pump efficiency and + capacity at low temperatures. + +All HVAC equipment can be externally controlled by updating the thermostat +setpoints and deadband or by direct load control (i.e., shut-off). Specific +speeds can be disabled in multi-speed equipment. Equipment capacity can also +be set directly or controlled using a maximum capacity fraction in ideal mode. +In thermostatic mode, duty cycle controls can determine the equipment state. +The equipment will follow the duty cycle control exactly while minimizing +cycling and temperature deviation from setpoint. Ducts ~~~~~ @@ -214,47 +215,48 @@ basement. Water Heating ------------- -OCHRE currently supports modeling tank, tankless and heat pump water -heaters. The water tank model is an RC model that tracks temperature -throughout the tank. It is a flexible model that can handle multiple -nodes in the water tank. Currently, a 12-node, 2-node, and 1-node model -are implemented. RC coefficients are derived from the properties file. -The fully mixed tank models the entire tank as a single node with a -uniform temperature. This model is best suited to large timesteps. In -residential waters, stratification occurs as cold water is brought into -the bottom of the tank and buoyancy drives the hottest water to the top -of the tank. The stratified tank model captures this buoyancy and the -effect it has on outlet temperature as well as the “dead volume” below -the lower element in an electric water heater that doesn’t get heated -during normal operation. Note that to model a heat pump water heater a -stratified tank model must be used (2 or 12 nodes, with 12 nodes -generally being more accurate but also more computationally intensive. -In HPWHs, the heat pump performance is a function of the ambient air wet -bulb temperature (calculated using the humidity module in OCHRE) and the -temperature of water adjacent to the condenser (typically the bottom -half of the tank in most products on the market today). - -The tank model accounts for internal and external conduction, heat flows -from water draws, and includes an algorithm to simulate temperature -inversion mixing (ie stratification) if more than 1 node is used. The -model can handle regular and tempered water draws. A separate water draw -file is currently required to set the water draw profile. In standard -usage, this draw profile is part of the schedule file generated as part -of creating inputs (see the section on schedule inputs) - -Mechanically, water heaters with a tank follow a similar structure to -HVAC equipment. For example, the Electric Resistance Water Heater has a -static capacity, while the Heat Pump Water Heater has a dynamic capacity -(and a backup electric resistance element similar to the Air Source Heat -Pump). Tankless water heaters operate similarly to Ideal HVAC equipment, -although an 8% derate is applied to the nominal efficiency of the unit -to account for cycling losses in accordance with ANSI/RESNET 301. - -Similar to HVAC equipment, water heater equipment has a thermostat -control, and can be externally controlled by updating the thermostat -setpoints and deadband, specifying a duty cycle, or direct shut-off. -Tankless equipment can only be controlled through thermostat control and -direct-shut-off. +OCHRE models electric resistance and gas tank water heaters, electric and gas +tankless water heaters, and heat pump water heaters. + +In tank water heaters, stratification occurs as cold water is brought into the +bottom of the tank and buoyancy drives the hottest water to the top of the +tank. OCHRE's stratified water tank model captures this buoyancy using +multi-node RC network that tracks temperatures vertically throughout the tank +and an algorithm to simulate temperature inversion mixing (i.e., +stratification). The tank model also accounts for internal and external +conduction, heat flows from water draws, and the location of upper and lower +heating elements when determining tank temperatures. It is a flexible model +that can handle multiple nodes, although a 12-node, 2-node, and 1-node model +are currently implemented. RC coefficients are derived from the HPXML file. +The 1-node model ignores the effects of stratification and maintains a uniform +temperature in the tank. This model is best suited for large timesteps. + +Similar to HVAC equipment, electric resistance and gas heating elements are +modeled with static capacity and efficiency. The Electric Resistance Water +Heater model includes upper and lower heating elements and two temperature +sensors for the thermostatic control. + +In heat pump water heaters, the heat pump capacity and efficiency are +functions of the ambient air wet bulb temperature (calculated using the +humidity module in OCHRE) and the temperature of water adjacent to the +condenser (typically the bottom half of the tank in most products on the +market today). The model also includes an electric resistance backup element +at the top of the tank. + +Tankless water heaters operate similarly to Ideal HVAC equipment, although an +8% derate is applied to the nominal efficiency of the unit to account for +cycling losses in accordance with ANSI/RESNET 301. + +The model accounts for regular and tempered water draws. Sink, shower, and +bath water draws are modeled as tempered (i.e., the volume of hot water +depends on the outlet temperature), and appliance draws are modeled as regular +(i.e., the volume is fixed). Water draw schedules are required in the +schedule. + +Similar to HVAC equipment, water heater equipment has a thermostat control, +and can be externally controlled by updating the thermostat setpoints and +deadband, specifying a duty cycle, or direct shut-off. Tankless equipment can +only be controlled through thermostat control and direct-shut-off. Electric Vehicles ----------------- @@ -268,11 +270,12 @@ has a prescribed start time, end time, and starting state-of-charge (SOC). When the event starts, the EV will charge using a linear model similar to the battery model described below. -Electric vehicles can be externally controlled through a delay signal or -a direct power signal. A delay signal will delay the start time of the -charging event. The direct power signal will set the charging power -directly at each time step, and it is only suggested for Level 2 -charging. +Electric vehicles can be externally controlled through a delay signal, a +direct power signal, or charging constraints. A delay signal will delay the +start time of the charging event. A direct power signal (in kW, or SOC rate) +will set the charging power directly at each time step, and it is only +suggested for Level 2 charging. Max power and max SOC contraints can also +limit the charging rate and can optionally be set as a schedule. Batteries --------- @@ -289,26 +292,23 @@ thermal model and can use any envelope zone as the ambient temperature. The battery degradation model tracks energy capacity degradation using temperature and SOC data and a rainflow algorithm. -The battery model includes a schedule-based controller and a -self-consumption controller. The schedule-based controller runs a daily -charge and discharge schedule, where the user can define the charging -and discharging start times and power setpoints. The self-consumption -controller sets the battery power setpoint to the opposite of the house -net load (including PV) to achieve zero grid import and export. There is -also an option to only allow battery charging from PV. The battery will -follow these controls until the SOC limits are reached. - -The battery can also be externally controlled through a direct setpoint -for real power. There is currently no reactive power control for the -battery model. +The battery model can be controlled through a direct power signal or using a +self-consumption controller. Direct power signals (or desired SOC setpoints) +can be included in the schedule or sent at each time step. The +self-consumption controller sets the battery power setpoint to the opposite of +the house net load (including PV) to achieve desired grid import and export +limits (defaults are zero, i.e., maximize self-consumption). The battery will +follow these controls while maintaining SOC and power limits. There is also an +option to only allow battery charging from PV. There is currently no reactive +power control for the battery model. Solar PV -------- -Solar photovoltaics (PV) is modeled using PySAM, a python wrapper for -the System Advisory Model (SAM). Standard values are used for the PV -model, although the user can select the PV system capacity, the tilt -angle, and the orientation. +Solar photovoltaics (PV) is modeled using PySAM, a python wrapper for the +System Advisory Model (SAM), using the PVWatts module. SAM default values are +used for the PV model, although the user must select the PV system capacity +and can specify the tilt angle, azimuth, and inverter properties. PV can be externally controlled through a direct setpoint for real and reactive power. The user can define an inverter size and a minimum power @@ -351,14 +351,20 @@ fraction to zero to simulate an outage or a resilience use case. Co-simulation ------------- -OCHRE is designed to be run in co-simulation with controllers, grid -models, aggregators, and other agents. The inputs and outputs of key -functions are designed to connect with these agents for streamlined -integration. These inputs and outputs are defined in [controller -integration] and [outputs and analysis], respectively. - -See [citation and publication] for a list of use cases where OCHRE was -run in co-simulation. And feel free to contact the developers [contact] +OCHRE is designed to be run in co-simulation with controllers, grid models, +aggregators, and other agents. The inputs and outputs of key functions are +designed to connect with these agents for streamlined integration. See +`Controller Integration +`__ +and `Outputs and Analysis +`__ for +details on the inputs and outputs, respectively. + +See `Citation and Publications +`__ +for example use cases where OCHRE was run in co-simulation. And feel free to +`contact us +`__ if you are interested in developing your own use case. Unsupported OS-HPXML Features diff --git a/docs/source/Outputs.rst b/docs/source/Outputs.rst index e557093..9deec76 100644 --- a/docs/source/Outputs.rst +++ b/docs/source/Outputs.rst @@ -1,204 +1,290 @@ Outputs and Analysis ==================== -At the end of any OCHRE simulation, time series outputs are saved. These -time series outputs are used to calculate metrics that describe the -simulation results. The set of time series outputs depends on the -``verbosity``` of the simulation, and the set of metrics depends on the -``metrics_verbosity``. The tables below describe the Dwelling and -Equipment-specific outputs and metrics that are reported. - -Time Series Outputs +OCHRE saves many time series outputs throughout the simulation. These time +series outputs are used to calculate metrics that describe the simulation +results. The set of time series outputs depends on the ``verbosity`` of the +simulation, and the set of metrics depends on the ``metrics_verbosity``. OCHRE +also includes analysis and visualization modules for common methods. + +Dwelling Time Series Outputs ---------------------------- -Time series outputs are sorted by category. - -Dwelling Level Outputs ----------------------- - -+----------------+-----------------------------------------+-----------------+ -| **Category** | **OCHRE Name** | **OCHRE Units** | -+================+=========================================+=================+ -| Dwelling | Total Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Dwelling | Total Gas Power | therms/hour | -+----------------+-----------------------------------------+-----------------+ -| HVAC Heating | HVAC Heating Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| HVAC Heating | HVAC Heating Main Power | kW | -+----------------+-----------------------------------------+-----------------+ -| HVAC Heating | HVAC Heating ER Power | kW | -+----------------+-----------------------------------------+-----------------+ -| HVAC Heating | HVAC Heating Fan Power | kW | -+----------------+-----------------------------------------+-----------------+ -| HVAC Heating | HVAC Heating Gas Power | therms/hour | -+----------------+-----------------------------------------+-----------------+ -| HVAC Heating | HVAC Heating Delivered | kW | -+----------------+-----------------------------------------+-----------------+ -| HVAC Heating | HVAC Heating Duct Losses | W | -+----------------+-----------------------------------------+-----------------+ -| HVAC Heating | HVAC Heating Capacity | kW | -+----------------+-----------------------------------------+-----------------+ -| HVAC Heating | HVAC Heating EIR Ratio | unitless | -+----------------+-----------------------------------------+-----------------+ -| HVAC Heating | HVAC Heating Capacity Ratio | unitless | -+----------------+-----------------------------------------+-----------------+ -| HVAC Heating | HVAC Heating Setpoint | degC | -+----------------+-----------------------------------------+-----------------+ -| HVAC Cooling | HVAC Cooling Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| HVAC Cooling | HVAC Cooling Main Power | kW | -+----------------+-----------------------------------------+-----------------+ -| HVAC Cooling | HVAC Cooling Fan Power | kW | -+----------------+-----------------------------------------+-----------------+ -| HVAC Cooling | HVAC Cooling Delivered | kW | -+----------------+-----------------------------------------+-----------------+ -| HVAC Cooling | HVAC Cooling Latent Gains | kW | -+----------------+-----------------------------------------+-----------------+ -| HVAC Cooling | HVAC Cooling Duct Losses | W | -+----------------+-----------------------------------------+-----------------+ -| HVAC Cooling | HVAC Cooling Capacity | kW | -+----------------+-----------------------------------------+-----------------+ -| HVAC Cooling | HVAC Cooling Sensible Capacity | kW | -+----------------+-----------------------------------------+-----------------+ -| HVAC Cooling | HVAC Cooling Setpoint | degC | -+----------------+-----------------------------------------+-----------------+ -| Water Heating | Water Heating Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Water Heating | Water Heating Gas Power | therms/hour | -+----------------+-----------------------------------------+-----------------+ -| Water Heating | Hot Water Delivered | kW | -+----------------+-----------------------------------------+-----------------+ -| Water Heating | Hot Water Outlet Temperature | degC | -+----------------+-----------------------------------------+-----------------+ -| Water Heating | Hot Water Delivered | L/min | -+----------------+-----------------------------------------+-----------------+ -| EV | EV Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| PV | PV Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Battery | Battery Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Gas Generator | Gas Generator Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Gas Generator | Generator Gas Power | therms/hour | -+----------------+-----------------------------------------+-----------------+ -| Lighting | Lighting Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Lighting | Indoor Lighting Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Lighting | Basement Lighting Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Lighting | Garage Lighting Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Lighting | Exterior Lighting Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Other | Other Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Other | Clothes Washer Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Other | Clothes Dryer Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Other | Dishwasher Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Other | Refrigerator Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Other | Cooking Range Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Other | MELs Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Other | TV Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Other | Well Pump Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Other | Pool Pump Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Other | Pool Heater Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Other | Hot Tub Pump Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Other | Hot Tub Heater Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Other | Ceiling Fan Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Other | Ventilation Fan Electric Power | kW | -+----------------+-----------------------------------------+-----------------+ -| Other | Other Gas Power | therms/hour | -+----------------+-----------------------------------------+-----------------+ -| Other | Clothes Dryer Gas Power | therms/hour | -+----------------+-----------------------------------------+-----------------+ -| Other | Cooking Range Gas Power | therms/hour | -+----------------+-----------------------------------------+-----------------+ -| Other | MGLs Gas Power | therms/hour | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Temperature - Indoor | degC | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Temperature - Garage | degC | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Temperature - Foundation | degC | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Temperature - Attic | degC | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Net Latent Heat Gain - Indoor | W | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Relative Humidity - Indoor | unitless | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Humidity Ratio - Indoor | unitless | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Unmet HVAC Load | degC | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Forced Ventilation Flow Rate - Indoor | m^3/s | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Natural Ventilation Flow Rate - Indoor | m^3/s | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Infiltration Flow Rate - Indoor | m^3/s | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Infiltration Flow Rate - Foundation | m^3/s | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Infiltration Flow Rate - Garage | m^3/s | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Infiltration Flow Rate - Attic | m^3/s | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Forced Ventilation Heat Gain - Indoor | W | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Natural Ventilation Heat Gain - Indoor | W | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Infiltration Heat Gain - Indoor | W | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Infiltration Heat Gain - Foundation | W | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Infiltration Heat Gain - Garage | W | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Infiltration Heat Gain - Attic | W | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Occupancy Heat Gain - Indoor | W | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Internal Heat Gain - Indoor | W | -+----------------+-----------------------------------------+-----------------+ -| Envelope | Window Transmitted Solar Gain | W | -+----------------+-----------------------------------------+-----------------+ -| Schedule | Temperature - Outdoor | degC | -+----------------+-----------------------------------------+-----------------+ -| Schedule | Ambient Humidity Ratio | unitless | -+----------------+-----------------------------------------+-----------------+ -| Schedule | Ambient Relative Humidity | % | -+----------------+-----------------------------------------+-----------------+ -| Schedule | Wind Speed | m/s | -+----------------+-----------------------------------------+-----------------+ -| Schedule | DNI | W/m^2 | -+----------------+-----------------------------------------+-----------------+ -| Schedule | DHI | W/m^2 | -+----------------+-----------------------------------------+-----------------+ -| Schedule | GHI | W/m^2 | -+----------------+-----------------------------------------+-----------------+ - -Dwelling Metrics ----------------- + ++-------------------------------+-----------------+---------------+-------------------------------------------------------+ +| **OCHRE Name** | **OCHRE Units** | **Verbosity** | **Description** | ++===============================+=================+===============+=======================================================+ +| Total Electric Power (kW) | kW | 1 | Total dwelling real electric power | ++-------------------------------+-----------------+---------------+-------------------------------------------------------+ +| Total Electric Energy (kWh) | kWh | 1 | Total dwelling real electric energy for 1 time step | ++-------------------------------+-----------------+---------------+-------------------------------------------------------+ +| Total Gas Power (therms/hour) | therms/hour | 1 | Total dwelling gas power | ++-------------------------------+-----------------+---------------+-------------------------------------------------------+ +| Total Gas Energy (therms) | therms | 1 | Total dwelling gas energy consumption for 1 time step | ++-------------------------------+-----------------+---------------+-------------------------------------------------------+ +| Total Reactive Power (kVAR) | kVAR | 1 | Total dwelling reactive power | ++-------------------------------+-----------------+---------------+-------------------------------------------------------+ +| Total Reactive Energy (kVARh) | kVARh | 1 | Total dwelling reactive energy for 1 time step | ++-------------------------------+-----------------+---------------+-------------------------------------------------------+ +| Grid Voltage (-) | p.u. | 5 | Per-unit grid voltage | ++-------------------------------+-----------------+---------------+-------------------------------------------------------+ + + +Equipment-specific Time Series Outputs +-------------------------------------- + +All Equipment +~~~~~~~~~~~~~ + ++-------------------------------------+-----------------+---------------+--------------------------------------------------------------------------+ +| **OCHRE Name** | **OCHRE Units** | **Verbosity** | **Description** | ++=====================================+=================+===============+==========================================================================+ +| Electric Power (kW) | kW | 2 | Real electric power of all equipment within the end use | ++-------------------------------------+-----------------+---------------+--------------------------------------------------------------------------+ +| Gas Power (therms/hour) | therms/hour | 2 | Gas power of all equipment within the end use | ++-------------------------------------+-----------------+---------------+--------------------------------------------------------------------------+ +| Reactive Power (kVAR) | kVAR | 5 | Reactive electric power of all equipment within the end use | ++-------------------------------------+-----------------+---------------+--------------------------------------------------------------------------+ +| Mode | N/A | 6 | Current mode of equipment operation | ++-------------------------------------+-----------------+---------------+--------------------------------------------------------------------------+ +| Electric Power (kW) | kW | 6 | Real electric power of the equipment (Lighting and Other equipment only) | ++-------------------------------------+-----------------+---------------+--------------------------------------------------------------------------+ +| Gas Power (therms/hour) | therms/hour | 6 | Gas power of the equipment | ++-------------------------------------+-----------------+---------------+--------------------------------------------------------------------------+ +| Reactive Power (kVAR) | kVAR | 6 | Reactive electric power of the equipment | ++-------------------------------------+-----------------+---------------+--------------------------------------------------------------------------+ + +HVAC Heating and Cooling +~~~~~~~~~~~~~~~~~~~~~~~~ + +The following outputs are associated with the HVAC equipment. + ++--------------------------------------------+-----------------+---------------+---------------------------------------------------------------------------+ +| **OCHRE Name** | **OCHRE Units** | **Verbosity** | **Description** | ++============================================+=================+===============+===========================================================================+ +| HVAC Delivered (W) | W | 3 | HVAC sensible heat gain delivered to indoor zone | ++--------------------------------------------+-----------------+---------------+---------------------------------------------------------------------------+ +| HVAC Setpoint (C) | degC | 6 | HVAC temperature setpoint | ++--------------------------------------------+-----------------+---------------+---------------------------------------------------------------------------+ +| HVAC Main Power (kW) | kW | 6 | HVAC electric or gas power excluding fan, peripherals, and backup element | ++--------------------------------------------+-----------------+---------------+---------------------------------------------------------------------------+ +| HVAC ER Power (kW) | kW | 6 | HVAC backup element power (ASHPHeater only) | ++--------------------------------------------+-----------------+---------------+---------------------------------------------------------------------------+ +| HVAC Fan Power (kW) | kW | 6 | HVAC fan and peripherals power | ++--------------------------------------------+-----------------+---------------+---------------------------------------------------------------------------+ +| HVAC Latent Gains (W) | W | 6 | HVAC latent heat gain delivered to indoor zone | ++--------------------------------------------+-----------------+---------------+---------------------------------------------------------------------------+ +| HVAC Capacity (W) | W | 6 | HVAC heat capacity of main unit | ++--------------------------------------------+-----------------+---------------+---------------------------------------------------------------------------+ +| HVAC Max Capacity (W) | W | 6 | HVAC maximum heat capacity of main unit | ++--------------------------------------------+-----------------+---------------+---------------------------------------------------------------------------+ +| HVAC COP (-) | unitless | 6 | HVAC coefficient of performance of main unit | ++--------------------------------------------+-----------------+---------------+---------------------------------------------------------------------------+ +| HVAC SHR (-) | unitless | 6 | HVAC sensible heat ratio | ++--------------------------------------------+-----------------+---------------+---------------------------------------------------------------------------+ +| HVAC Speed (-) | unitless | 6 | HVAC speed index. Fractions indicate the relative time in adjacent speeds | ++--------------------------------------------+-----------------+---------------+---------------------------------------------------------------------------+ +| HVAC Duct Losses (W) | W | 6 | Heat gains to duct zone due to duct losses | ++--------------------------------------------+-----------------+---------------+---------------------------------------------------------------------------+ + +The following outputs are associated with the Envelope model. + ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| **OCHRE Name** | **OCHRE Units** | **Verbosity** | **Description** | ++===================================================+=================+===============+===========================================================================================================================================+ +| Temperature - (C) | degC | 1 | Temperature of envelope zone | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Unmet HVAC Load (C) | degC | 1 | Absolute difference between Indoor temperature and thermal comfort limit (positive if hot, negative if cold) | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Occupancy (Persons) | Persons | 4 | Number of current occupants | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Net Sensible Heat Gain - (W) | W | 4 | Net sensible heat injected into zone. Includes heat gains from infiltration, ventilation, radiation, HVAC, other equipment, and occupants | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Window Transmitted Solar Gain (W) | W | 4 | Heat gains from solar transmitted through windows to Indoor zone | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Infiltration Flow Rate - (m^3/s) | m^3/s | 7 | Infiltration flow rate between zone and outdoors | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Forced Ventilation Flow Rate - Indoor (m^3/s) | m^3/s | 7 | Mecahnical ventilation flow rate | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Natural Ventilation Flow Rate - Indoor (m^3/s) | m^3/s | 7 | Natural ventilation flow rate (open windows) | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Infiltration Heat Gain - (W) | W | 7 | Infiltration heat gain into zone | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Forced Ventilation Heat Gain - Indoor (W) | W | 7 | Heat gain from mechanical ventilation | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Natural Ventilation Heat Gain - Indoor (W) | W | 7 | Heat gain from natural ventilation | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Occupancy Heat Gain - Indoor (W) | W | 7 | Heat gain from occupancy | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Internal Heat Gain - Indoor (W) | W | 7 | Heat gain from non-HVAC equipment | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Radiation Heat Gain - Indoor (W) | W | 7 | Heat gain from radiation. Includes transmitted solar and internal radiation to zone | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Net Latent Heat Gain - Indoor (W) | W | 7 | Net latent heat injected into zone. Includes heat gains from infiltration, ventilation, HVAC, other equipment, and occupants | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Relative Humidity - Indoor (-) | unitless | 7 | Relative humidity of zone | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Humidity Ratio - Indoor (-) | unitless | 7 | Humidity ratio of zone | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Wet Bulb - Indoor (C) | W | 7 | Wet bulb temperature in zone | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Air Density - Indoor (kg/m^3) | unitless | 7 | Air density of zone | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Ext. Solar Gain (W) | W | 8 | Solar heat gain on external boundary surface | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Ext. LWR Gain (W) | W | 8 | Long wave radiation heat gain on external boundary surface | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Ext. Surface Temperature (C) | degC | 8 | External boundary surface temperature | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Ext. Film Coefficient (m^2-K/W) | m^2-K/W | 8 | Film coefficient of external boundary surface | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| LWR Gain (W) | W | 8 | Long wave radiation heat gain on internal boundary surface | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Surface Temperature (C) | C | 8 | Internal boundary surface temperature | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ +| Film Coefficient (m^2-K/W) | m^2-K/W | 8 | Film coefficient of internal boundary surface | ++---------------------------------------------------+-----------------+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+ + +Water Heating +~~~~~~~~~~~~~ + +The following outputs are associated with the Water Heater equipment. + ++--------------------------------------------+-----------------+---------------+-----------------------------------------------------------+ +| **OCHRE Name** | **OCHRE Units** | **Verbosity** | **Description** | ++============================================+=================+===============+===========================================================+ +| Water Heating Delivered (W) | W | 3 | Heat delivered by water heater to tank | ++--------------------------------------------+-----------------+---------------+-----------------------------------------------------------+ +| Water Heating COP (-) | unitless | 6 | Water heater coefficient of performance | ++--------------------------------------------+-----------------+---------------+-----------------------------------------------------------+ +| Water Heating Total Sensible Heat Gain (W) | W | 6 | Sensible heat gain from water tank to envelope zone | ++--------------------------------------------+-----------------+---------------+-----------------------------------------------------------+ +| Water Heating Deadband Upper Limit (C) | C | 6 | Upper temperature limit for water heater deadband control | ++--------------------------------------------+-----------------+---------------+-----------------------------------------------------------+ +| Water Heating Deadband Lower Limit (C) | C | 6 | Lower temperature limit for water heater deadband control | ++--------------------------------------------+-----------------+---------------+-----------------------------------------------------------+ +| Water Heating Heat Pump Max Capacity (W) | W | 6 | Maximum capacity of HPWH heat pump element | ++--------------------------------------------+-----------------+---------------+-----------------------------------------------------------+ +| Water Heating Heat Pump On Fraction (-) | unitless | 6 | Fraction of time HPWH heat pump element is on | ++--------------------------------------------+-----------------+---------------+-----------------------------------------------------------+ +| Water Heating Heat Pump COP (-) | unitless | 6 | HPWH heat pump coefficient of performance | ++--------------------------------------------+-----------------+---------------+-----------------------------------------------------------+ + +The following outputs are associated with the Water Tank model. + ++-----------------------------------+-----------------+---------------+--------------------------------------------------------------------+ +| **OCHRE Name** | **OCHRE Units** | **Verbosity** | **Description** | ++===================================+=================+===============+====================================================================+ +| Hot Water Delivered (L/min) | L/min | 3 | Hot water draw volumetric flow rate | ++-----------------------------------+-----------------+---------------+--------------------------------------------------------------------+ +| Hot Water Delivered (W) | W | 3 | Hot water draw heat flow rate | ++-----------------------------------+-----------------+---------------+--------------------------------------------------------------------+ +| Hot Water Unmet Demand (kW) | kW | 3 | Unmet hot water demand, based on flow rate and desired temperature | ++-----------------------------------+-----------------+---------------+--------------------------------------------------------------------+ +| Hot Water Outlet Temperature (C) | degC | 3 | Hot water outlet temperature | ++-----------------------------------+-----------------+---------------+--------------------------------------------------------------------+ +| Hot Water Heat Injected (W) | W | 6 | Water tank heat gains from water heater | ++-----------------------------------+-----------------+---------------+--------------------------------------------------------------------+ +| Hot Water Heat Loss (W) | W | 6 | Water tank heat losses to envelope zone | ++-----------------------------------+-----------------+---------------+--------------------------------------------------------------------+ +| Hot Water Average Temperature (C) | degC | 6 | Water tank average temperature | ++-----------------------------------+-----------------+---------------+--------------------------------------------------------------------+ +| Hot Water Maximum Temperature (C) | degC | 6 | Water tank maximum temperature | ++-----------------------------------+-----------------+---------------+--------------------------------------------------------------------+ +| Hot Water Minimum Temperature (C) | degC | 6 | Water tank minimum temperature | ++-----------------------------------+-----------------+---------------+--------------------------------------------------------------------+ +| Hot Water Mains Temperature (C) | degC | 6 | Water mains temperature | ++-----------------------------------+-----------------+---------------+--------------------------------------------------------------------+ + +Electric Vehicle +~~~~~~~~~~~~~~~~ + ++--------------------------------+-----------------+---------------+-------------------------------------------------------------------------+ +| **OCHRE Name** | **OCHRE Units** | **Verbosity** | **Description** | ++================================+=================+===============+=========================================================================+ +| EV SOC (-) | unitless | 3 | EV state of charge | ++--------------------------------+-----------------+---------------+-------------------------------------------------------------------------+ +| EV Parked | N/A | 3 | True if EV is parked at home | ++--------------------------------+-----------------+---------------+-------------------------------------------------------------------------+ +| EV Unmet Load (kW) | kW | 3 | Unmet EV demand, determined at parking End Time. Negative value | ++--------------------------------+-----------------+---------------+-------------------------------------------------------------------------+ +| EV Start Time | N/A | 6 | If parked, time that EV arrived. If away, next time that EV will arrive | ++--------------------------------+-----------------+---------------+-------------------------------------------------------------------------+ +| EV End Time | N/A | 6 | Next time that EV will depart | ++--------------------------------+-----------------+---------------+-------------------------------------------------------------------------+ +| EV Remaining Charge Time (min) | minutes | 7 | Estimated time to fully charge, based on SOC and max charge rate | ++--------------------------------+-----------------+---------------+-------------------------------------------------------------------------+ + +Solar PV +~~~~~~~~ + ++--------------------+-----------------+---------------+----------------------------+ +| **OCHRE Name** | **OCHRE Units** | **Verbosity** | **Description** | ++====================+=================+===============+============================+ +| PV P Setpoint (kW) | kW | 6 | PV real power setpoint | ++--------------------+-----------------+---------------+----------------------------+ +| PV Q Setpoint (kW) | kVAR | 6 | PV reactive power setpoint | ++--------------------+-----------------+---------------+----------------------------+ + +Battery +~~~~~~~ + ++-----------------------------------+-----------------+---------------+-------------------------------------------------------------------------------+ +| **OCHRE Name** | **OCHRE Units** | **Verbosity** | **Description** | ++===================================+=================+===============+===============================================================================+ +| Battery SOC (-) | unitless | 3 | Battery state of charge | ++-----------------------------------+-----------------+---------------+-------------------------------------------------------------------------------+ +| Battery Setpoint (kW) | kW | 6 | Battery real power setpoint | ++-----------------------------------+-----------------+---------------+-------------------------------------------------------------------------------+ +| Battery Efficiency (-) | unitless | 6 | Battery efficiency | ++-----------------------------------+-----------------+---------------+-------------------------------------------------------------------------------+ +| Battery Energy to Discharge (kWh) | kWh | 6 | Estimated energy available for discharge, based on SOC and max discharge rate | ++-----------------------------------+-----------------+---------------+-------------------------------------------------------------------------------+ +| Battery Nominal Capacity (kWh) | kWh | 9 | Nominal battery capacity, including degradation model | ++-----------------------------------+-----------------+---------------+-------------------------------------------------------------------------------+ +| Battery Actual Capacity (kWh) | kWh | 9 | Actual battery capacity, including degradation and temperature models | ++-----------------------------------+-----------------+---------------+-------------------------------------------------------------------------------+ + +Equivalent Battery Model +~~~~~~~~~~~~~~~~~~~~~~~~ + +The following outputs are not reported at any verbosity, but they can be +calculated using the ``Equipment.make_equivalent_battery_model`` function. +Currently, this functions works for the following end uses: + +- HVAC Heating +- HVAC Cooling +- Water Heating +- Battery + ++----------------------------------------+-----------------+---------------+---------------------------------------------------+ +| **OCHRE Name** | **OCHRE Units** | **Verbosity** | **Description** | ++========================================+=================+===============+===================================================+ +| EBM Energy (kWh) | kWh | N/A | Energy state of equivalent battery model (EBM) | ++----------------------------------------+-----------------+---------------+---------------------------------------------------+ +| EBM Min Energy (kWh) | kWh | N/A | Minimum energy constraint | ++----------------------------------------+-----------------+---------------+---------------------------------------------------+ +| EBM Max Energy (kWh) | kWh | N/A | Maximum energy constraint | ++----------------------------------------+-----------------+---------------+---------------------------------------------------+ +| EBM Max Power (kW) | kW | N/A | Maximum power constraint | ++----------------------------------------+-----------------+---------------+---------------------------------------------------+ +| EBM Efficiency (-) | unitless | N/A | Input/output power efficiency | ++----------------------------------------+-----------------+---------------+---------------------------------------------------+ +| EBM Baseline Power (kW) | kW | N/A | Power to maintain constant energy state | ++----------------------------------------+-----------------+---------------+---------------------------------------------------+ +| EBM Max Discharge Power (kW) | kW | N/A | Minimum power constraint (negative for discharge) | ++----------------------------------------+-----------------+---------------+---------------------------------------------------+ +| EBM Discharge Efficiency (-) | unitless | N/A | Input/output power efficiency while discharging | ++----------------------------------------+-----------------+---------------+---------------------------------------------------+ + + +All Metrics +----------- Metrics are calculated at the end of a simulation and summarize the results over the simulation period (generally a year in most use cases). +-----------------+--------------------------------+------------------------------------------+ -| Metric | Minimul Metrics Verbosity | Description | +| Metric | Minimum Metrics Verbosity | Description | +=================+================================+==========================================+ | Total Electric | 1 | Total dwelling real electric energy | | Energy (kWh) | | consumption | @@ -382,6 +468,7 @@ The ``Analysis`` module has useful data analysis functions for OCHRE output data: .. code-block:: python + from ochre import Analysis # load existing ochre simulation data @@ -389,8 +476,6 @@ output data: # calculate metrics from a pandas DataFrame metrics = Analysis.calculate_metrics(df) - - Some analysis functions are useful for analyzing or combining results from multiple OCHRE simulations: @@ -400,23 +485,23 @@ from multiple OCHRE simulations: df_metrics = Analysis.combine_metrics_files(path=path) # Combine 1 output column from multiple OCHRE simulations into a single DataFrame - results_files = Analysis.find_files_from_ending(path, ‘ochre.csv’) - df_powers = Analysis.combine_time_series_column(results_files, 'Total Electric Power (kW)') + results_files = Analysis.find_files_from_ending(path, 'ochre.csv') + df_powers = Analysis.combine_time_series_column('Total Electric Power (kW)', results_files) Data Visualization ------------------ -The ``CreateFigures`` module has useful visualization functions for -OCHRE output data: +The ``CreateFigures`` module has useful visualization functions for OCHRE +output data: .. code-block:: python from ochre import Analysis, CreateFigures - df, metrics, df_hourly = Analysis.load_ochre(folder) - # Create standard HVAC output plots - CreateFigures.plot_hvac(df) - # Create stacked plot of power by end use - CreateFigures.plot_power_stack(df) - -Many functions work on any generic pandas DataFrame with a -DateTimeIndex. + + df, metrics, df_hourly = Analysis.load_ochre(folder) + # Create standard HVAC output plots + CreateFigures.plot_hvac(df) + # Create stacked plot of power by end use + CreateFigures.plot_power_stack(df) + +Many functions work on any generic pandas DataFrame with a DateTimeIndex. diff --git a/docs/source/conf.py b/docs/source/conf.py index df8824d..5cef468 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -20,13 +20,13 @@ # -- Project information ----------------------------------------------------- project = u'OCHRE' -copyright = u'2023, NREL' +copyright = u'2024, NREL' author = u'NREL' # The short X.Y version -version = u'' +version = "0.8" # The full version, including alpha/beta/rc tags -release = u'' +release = "0.8.4" # -- General configuration --------------------------------------------------- diff --git a/notebook/user_tutorial.ipynb b/notebook/user_tutorial.ipynb index f1aff09..6b16653 100644 --- a/notebook/user_tutorial.ipynb +++ b/notebook/user_tutorial.ipynb @@ -91,8 +91,6 @@ "import datetime as dt\n", "import pandas as pd\n", "\n", - "import sys\n", - "sys.path.append(r'C:\\Users\\mblonsky\\Github\\OCHRE\\ochre')\n", "from ochre import Dwelling\n", "from ochre.utils import default_input_path # for using sample files\n", "\n", @@ -242,8 +240,9 @@ "metadata": {}, "outputs": [], "source": [ - "CreateFigures.plot_daily_profile(df, 'Water Heating Electric Power (kW)', plot_max=False, plot_min=False)\n", - "CreateFigures.plot_time_series_detailed((df['Hot Water Outlet Temperature (C)'],))\n" + "fig = CreateFigures.plot_daily_profile(df, 'Water Heating Electric Power (kW)', plot_max=False, plot_min=False)\n", + "# fig, _ = CreateFigures.plot_time_series_detailed((df['Hot Water Outlet Temperature (C)'],))\n", + "fig" ] }, { @@ -299,7 +298,8 @@ " ('Temperature - Indoor (C)', 'Indoor Temperature', 'k', False)]\n", "fig, (ax1, ax2) = CreateFigures.multi_comparison_plot(data, plot_info)\n", "ax1.set_ylabel('Power (kW)')\n", - "ax2.set_ylabel('Temperature (C)')\n" + "ax2.set_ylabel('Temperature (C)')\n", + "fig\n" ] }, { @@ -345,7 +345,8 @@ " ('Temperature - Indoor (C)', 'Indoor Temperature', 'k', False)]\n", "fig, (ax1, ax2) = CreateFigures.multi_comparison_plot(data, plot_info)\n", "ax1.set_ylabel('Power (kW)')\n", - "ax2.set_ylabel('Temperature (C)')\n" + "ax2.set_ylabel('Temperature (C)')\n", + "fig\n" ] }, { @@ -407,7 +408,9 @@ " ('Occupancy (Persons)', 'Occupancy', 'b')]\n", "fig, (ax1, ax2) = CreateFigures.multi_comparison_plot(data, plot_info)\n", "ax1.set_ylabel('Power (kW) and Occupancy (Persons)')\n", - "ax2.set_ylabel('Temperature (C)')\n" + "ax2.set_ylabel('Temperature (C)')\n", + "\n", + "fig\n" ] }, { @@ -434,7 +437,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.4" + "version": "3.10.10" }, "orig_nbformat": 4, "vscode": { diff --git a/ochre/Analysis.py b/ochre/Analysis.py index 6e76543..ac5bae6 100644 --- a/ochre/Analysis.py +++ b/ochre/Analysis.py @@ -4,10 +4,11 @@ import pandas as pd import datetime as dt import numpy as np +import numba # required for array-based psychrolib import psychrolib from numpy.polynomial.polynomial import Polynomial -from ochre.utils import convert, load_csv, ZONES +from ochre.utils import OCHREException, convert, load_csv, ZONES from ochre.Equipment import ALL_END_USES psychrolib.SetUnitSystem(psychrolib.SI) @@ -110,10 +111,10 @@ def load_eplus_file(file_name, eplus_format='ResStock', variable_names_file='Var elif eplus_format == 'Eplus Detailed': df = pd.read_csv(file_name) else: - raise Exception(f'Unknown EnergyPlus output file format: {eplus_format}') + raise OCHREException(f'Unknown EnergyPlus output file format: {eplus_format}') if len(df) != 8760: - raise Exception(f'Comparison file should have 8760 rows: {file_name}') + raise OCHREException(f'Comparison file should have 8760 rows: {file_name}') # Load variable names and units file df_names = load_csv(variable_names_file) @@ -153,21 +154,22 @@ def replace_nans(s): else: df['HVAC Heating Main Power (kW)'] = gas_kw + # TODO: no longer used. Need verify if this is needed for OS-HPXML format if eplus_format == 'BEopt': # add HVAC COP and SHR (note, excludes fan power and duct losses) - BEopt only df['HVAC Heating COP (-)'] = replace_nans( - df['HVAC Heating Capacity (kW)'] / ( + df['HVAC Heating Capacity (W)'] / 1000 / ( df['HVAC Heating Main Power (kW)'] + df.get('HVAC Heating ER Power (kW)', missing))) - df['HVAC Cooling COP (-)'] = replace_nans(df['HVAC Cooling Capacity (kW)'] / df['HVAC Cooling Main Power (kW)']) - df['HVAC Cooling SHR (-)'] = replace_nans(df['HVAC Cooling Sensible Capacity (kW)'] / - df['HVAC Cooling Capacity (kW)']) + df['HVAC Cooling COP (-)'] = replace_nans(df['HVAC Cooling Capacity (W)'] / 1000 / df['HVAC Cooling Main Power (kW)']) + df['HVAC Cooling SHR (-)'] = replace_nans(df['HVAC Cooling Sensible Capacity (W)'] / + df['HVAC Cooling Capacity (W)']) # calculate indoor wet bulb - BEopt only - df['Temperature - Indoor Wet Bulb (C)'] = [ - psychrolib.GetTWetBulbFromRelHum(t, rh, p) for (t, rh, p) in zip( - df['Temperature - Indoor (C)'], df['Relative Humidity - Indoor (-)'], - convert(df['Weather|Atmospheric Pressure'].values, 'atm', 'Pa')) - ] + df['Temperature - Indoor Wet Bulb (C)'] = psychrolib.GetTWetBulbFromRelHum( + df['Temperature - Indoor (C)'].values, + df['Relative Humidity - Indoor (-)'], + convert(df['Weather|Atmospheric Pressure'].values, 'atm', 'Pa'), + ) # add unmet HVAC loads - BEopt only df['Unmet HVAC Load (C)'] = df['Temperature - Indoor (C)'] - df['Temperature - Indoor (C)'].clip( @@ -261,7 +263,7 @@ def calculate_metrics(results=None, results_file=None, dwelling=None, metrics_ve 'Peak Electric Power (kW)': p.max(), 'Peak Electric Power - 15 min avg (kW)': p.resample('15min').mean().max(), 'Peak Electric Power - 30 min avg (kW)': p.resample('30min').mean().max(), - 'Peak Electric Power - 1 hour avg (kW)': p.resample('1H').mean().max(), + 'Peak Electric Power - 1 hour avg (kW)': p.resample('1h').mean().max(), }) # End use power metrics @@ -305,15 +307,15 @@ def calculate_metrics(results=None, results_file=None, dwelling=None, metrics_ve for end_use, hvac_mult in [('HVAC Heating', 1), ('HVAC Cooling', -1)]: # Delivered heating/cooling - if end_use + ' Delivered (kW)' in results: - delivered = results[end_use + ' Delivered (kW)'] + if end_use + ' Delivered (W)' in results: + delivered = results[end_use + ' Delivered (W)'] / 1000 # in kW delivered_sum = delivered.sum(skipna=False) metrics['Total {} Delivered (kWh)'.format(end_use)] = delivered_sum * hr_per_step else: delivered_sum = 0 - if end_use + ' Capacity (kW)' in results: - capacity = results[end_use + ' Capacity (kW)'] + if end_use + ' Capacity (W)' in results: + capacity = results[end_use + ' Capacity (W)'] / 1000 # in kW capacity_sum = capacity.sum() # FUTURE: maybe add: fan power ratio = total power / main power; @@ -344,12 +346,12 @@ def calculate_metrics(results=None, results_file=None, dwelling=None, metrics_ve metrics[f'Average {end_use} Duct Efficiency (-)'] = delivered_sum / (sens_capacity_sum + fan_heat) # HVAC capacity - only when device is on - if metrics_verbosity >= 8: + if metrics_verbosity >= 8: metrics['Average {} Capacity (kW)'.format(end_use)] = capacity[capacity > 0].mean() # Water heater and hot water metrics - if metrics_verbosity >= 4 and 'Water Heating Delivered (kW)' in results: - heat = results['Water Heating Delivered (kW)'] + if metrics_verbosity >= 4 and "Water Heating Delivered (W)" in results: + heat = results['Water Heating Delivered (W)'] / 1000 # in kW metrics['Total Water Heating Delivered (kWh)'] = heat.sum(skipna=False) * hr_per_step # COP - weighted average only when device is on @@ -367,27 +369,30 @@ def calculate_metrics(results=None, results_file=None, dwelling=None, metrics_ve # FUTURE: Down with imperial units! metrics['Total Hot Water Delivered (gal/day)'] = convert( results['Hot Water Delivered (L/min)'].mean(skipna=False), 'L/min', 'gallon/day') - if 'Hot Water Delivered (kW)' in results: + if 'Hot Water Delivered (W)' in results: metrics['Total Hot Water Delivered (kWh)'] = \ - results['Hot Water Delivered (kW)'].sum(skipna=False) * hr_per_step + results['Hot Water Delivered (W)'].sum(skipna=False) / 1000 * hr_per_step # Battery metrics if metrics_verbosity >= 4 and 'Battery Electric Power (kW)' in results: - p = results['Battery Electric Power (kW)'] - metrics['Battery Charging Energy (kWh)'] = p.clip(lower=0).sum(skipna=False) * hr_per_step - metrics['Battery Discharging Energy (kWh)'] = -p.clip(upper=0).sum(skipna=False) * hr_per_step + batt_energy = results['Battery Electric Power (kW)'] * hr_per_step + metrics['Battery Charging Energy (kWh)'] = batt_energy.clip(lower=0).sum(skipna=False) + metrics['Battery Discharging Energy (kWh)'] = -batt_energy.clip(upper=0).sum(skipna=False) if metrics['Battery Charging Energy (kWh)'] != 0: metrics['Battery Round-trip Efficiency (-)'] = (metrics['Battery Discharging Energy (kWh)'] / metrics['Battery Charging Energy (kWh)']) if all([r in results for r in ['Battery Energy to Discharge (kWh)', 'Total Electric Energy (kWh)']]): - cumulative_energy = results['Total Electric Energy (kWh)'].cumsum() + cumulative_energy = (results['Total Electric Energy (kWh)'] - batt_energy).cumsum() end_energy = cumulative_energy + results['Battery Energy to Discharge (kWh)'] - end_times = cumulative_energy.searchsorted(end_energy) - last_time = end_energy.index[-1] + time_res - end_energy = pd.concat([end_energy, pd.Series(index=[last_time])]) # add 1 row for last time step - end_times = end_energy.iloc[end_times].index - results['Islanding Time (hours)'] = (end_times - results.index).total_seconds() / 3600 + last_time = results.index[-1] + time_res + islanding_times = [] + for t, energy in end_energy.items(): + future_energies = cumulative_energy[t : t + dt.timedelta(days=7)] + end_time = (future_energies >= energy).idxmax() + islanding_time = (end_time - t).total_seconds() / 3600 if end_time > t else 24 * 7 + islanding_times.append(islanding_time) + results["Islanding Time (hours)"] = islanding_times metrics['Average Islanding Time (hours)'] = results['Islanding Time (hours)'].mean() @@ -398,8 +403,8 @@ def calculate_metrics(results=None, results_file=None, dwelling=None, metrics_ve 'kWh')) # Outage metrics - if metrics_verbosity >= 4 and 'Voltage (-)' in results: - outage = results['Voltage (-)'] == 0 + if metrics_verbosity >= 4 and 'Grid Voltage (-)' in results: + outage = results["Grid Voltage (-)"] == 0 if outage.any(): outage_sum = outage.sum(skipna=False) * hr_per_step outage_diff = np.diff(outage.values, prepend=0, append=0) @@ -425,7 +430,8 @@ def calculate_metrics(results=None, results_file=None, dwelling=None, metrics_ve unique_modes = [mode for mode in modes.unique() if mode != 'Off'] for unique_mode in unique_modes: on = modes == unique_mode - cycles = on.diff().fillna(on).clip(lower=0).sum() + cycle_starts = on & (~on).shift() + cycles = cycle_starts.sum() if cycles <= 1: continue elif len(unique_modes) == 1: @@ -558,12 +564,12 @@ def find_files_from_ending(path, ending, priority_list=None, **kwargs): # select file match in priority list. If not found, throw an error matches = [f for f in priority_list if f in matches] if len(matches) != 1: - raise Exception(f'{len(matches)} files found matching {ending} in {root}: {matches}') + raise OCHREException(f'{len(matches)} files found matching {ending} in {root}: {matches}') file_path = os.path.join(root, matches[0]) run_name = get_parent_folders(file_path, **kwargs) if run_name in all_files: - raise Exception(f'Multiple files found with same run name ({run_name}).' + raise OCHREException(f'Multiple files found with same run name ({run_name}).' 'Try increasing dirs_to_include. Error from:', file_path) all_files[run_name] = file_path diff --git a/ochre/CreateFigures.py b/ochre/CreateFigures.py index 073c1b4..68a466e 100644 --- a/ochre/CreateFigures.py +++ b/ochre/CreateFigures.py @@ -368,15 +368,15 @@ def plot_envelope(dfs_to_plot, **kwargs): # plot HVAC delivered heat and temperatures plot_info = zone_data + [ - ('HVAC Heating Delivered (kW)', 'Heating Delivered', 'r', False), - ('HVAC Cooling Delivered (kW)', 'Cooling Delivered', 'b', False), + ('HVAC Heating Delivered (W)', 'Heating Delivered', 'r', False), + ('HVAC Cooling Delivered (W)', 'Cooling Delivered', 'b', False), ] - fig, (ax1, ax2) = multi_comparison_plot(dfs_to_plot, plot_info, add_diff=['HVAC Heating Delivered (kW)', - 'HVAC Cooling Delivered (kW)'], **kwargs) + fig, (ax1, ax2) = multi_comparison_plot(dfs_to_plot, plot_info, add_diff=['HVAC Heating Delivered (W)', + 'HVAC Cooling Delivered (W)'], **kwargs) if ax1 is not None: ax1.set_ylabel(r'Temperature ($^\circ$C)') if ax2 is not None: - ax2.set_ylabel('Heat Delivered (kW)') + ax2.set_ylabel('Heat Delivered (W)') # plot all component loads plot_info = [ @@ -386,8 +386,8 @@ def plot_envelope(dfs_to_plot, **kwargs): ('Internal Heat Gain - Indoor (W)', 'Internal Gains', 'c'), ('HVAC Heating Duct Losses (W)', 'Ducts (Heating)', 'r'), ('HVAC Cooling Duct Losses (W)', 'Ducts (Cooling)', 'b'), - # ('HVAC Heating Delivered (kW)', 'Heating Delivered', 'r', False), - # ('HVAC Cooling Delivered (kW)', 'Cooling Delivered', 'b', False), + # ('HVAC Heating Delivered (W)', 'Heating Delivered', 'r', False), + # ('HVAC Cooling Delivered (W)', 'Cooling Delivered', 'b', False), # ('Temperature - Indoor (C)', 'Indoor Temp', 'k') # ('Temperature - Outdoor (C)', 'Ambient Temp', 'k', True, 1), # ('Wind Speed (m/s)', 'Wind Speed', 'r', False, 1), @@ -436,10 +436,10 @@ def plot_envelope_detailed(dfs_to_plot, **kwargs): # (series, label, color, axis_left, axis_num, ls, mult) if convection_heat_cols: plot_info.append((df.loc[:, convection_heat_cols].sum(axis=1), f'Net Convection Heat Gain - {zone} (W)')) - if zone == 'Indoor' and ('HVAC Heating Delivered (kW)' in df.columns or - 'HVAC Cooling Delivered (kW)' in df.columns): - df[f'HVAC Heat Gain - {zone} (W)'] = (df.get('HVAC Heating Delivered (kW)', 0) - - df.get('HVAC Cooling Delivered (kW)', 0)) * 1000 + if zone == 'Indoor' and ('HVAC Heating Delivered (W)' in df.columns or + 'HVAC Cooling Delivered (W)' in df.columns): + df[f'HVAC Heat Gain - {zone} (W)'] = (df.get('HVAC Heating Delivered (W)', 0) - + df.get('HVAC Cooling Delivered (W)', 0)) injection_heat_cols = [col for col in [ f'Occupancy Heat Gain - {zone} (W)', f'Infiltration Heat Gain - {zone} (W)', @@ -510,16 +510,16 @@ def plot_hvac(dfs_to_plot, **kwargs): def plot_wh(dfs_to_plot, **kwargs): # plot water heater delivered heat, power, flow rate if they exist - plot_info = [('Hot Water Delivered (kW)', 'Delivered Heat', 'c'), - ('Water Heating Delivered (kW)', 'WH Heat', 'r'), + plot_info = [('Hot Water Delivered (W)', 'Delivered Heat', 'c'), + ('Water Heating Delivered (W)', 'WH Heat', 'r'), ('Hot Water Delivered (L/min)', 'Flow Rate', 'b', False), ('Hot Water Outlet Temperature (C)', 'Outlet Temp', 'g', True, 1), ] fig, (ax1, ax2) = multi_comparison_plot(dfs_to_plot, plot_info, **kwargs) if ax1 is not None: - ax1[0].set_ylabel('Hot Water Delivered (kW)') + ax1[0].set_ylabel('Hot Water Delivered (W)') ax2[0].set_ylabel('Hot Water Delivered (L/min)') - ax1[1].set_ylabel('Temperature ($^\circ$C)') + ax1[1].set_ylabel('Temperature ($^\\circ$C)') # plot water heater power and COP plot_info = [('Water Heating Electric Power (kW)', 'Electric Power', 'm'), diff --git a/ochre/Dwelling.py b/ochre/Dwelling.py index b942ad7..0cada86 100644 --- a/ochre/Dwelling.py +++ b/ochre/Dwelling.py @@ -11,7 +11,7 @@ import numpy as np from ochre import Simulator, Analysis -from ochre.utils import load_hpxml, load_schedule, nested_update, update_equipment_properties, save_json +from ochre.utils import OCHREException, load_hpxml, load_schedule, nested_update, update_equipment_properties, save_json from ochre.Models import Envelope from ochre.Equipment import * @@ -27,6 +27,7 @@ def __init__(self, metrics_verbosity=6, save_schedule_columns=None, save_args_to **house_args): super().__init__(**house_args) house_args.pop('name', None) # remove name from kwargs + house_args['main_sim_name'] = self.name # Time parameters if self.initialization_time is not None: @@ -45,21 +46,23 @@ def __init__(self, metrics_verbosity=6, save_schedule_columns=None, save_args_to self.metrics_verbosity = metrics_verbosity _ = house_args.pop('save_results', None) # remove save_results from args to prevent saving all Equipment files if self.output_path is not None: - # remove existing output files, and save file locations + # remove existing output files + for file_type in ['metrics', 'hourly', 'schedule']: + for extn in ['parquet', 'csv']: + f = os.path.join(self.output_path, f'{self.name}_{file_type}.{extn}') + if os.path.exists(f): + self.print('Removing previous results file:', f) + os.remove(f) + + # save file locations extn = '.parquet' if self.output_to_parquet else '.csv' self.metrics_file = os.path.join(self.output_path, self.name + '_metrics.csv') - if os.path.exists(self.metrics_file): - os.remove(self.metrics_file) if self.verbosity >= 3: self.hourly_output_file = os.path.join(self.output_path, self.name + '_hourly' + extn) - if os.path.exists(self.hourly_output_file): - os.remove(self.hourly_output_file) else: self.hourly_output_file = None if self.verbosity >= 7 or save_schedule_columns: schedule_output_file = os.path.join(self.output_path, self.name + '_schedule' + extn) - if os.path.exists(schedule_output_file): - os.remove(schedule_output_file) else: schedule_output_file = None else: @@ -102,7 +105,6 @@ def __init__(self, metrics_verbosity=6, save_schedule_columns=None, save_args_to 'start_time': self.start_time, # updates time zone if necessary 'schedule': schedule, 'initial_schedule': schedule.loc[self.start_time].to_dict(), - 'main_sim_name': self.name, 'output_path': self.output_path, } @@ -134,7 +136,7 @@ def __init__(self, metrics_verbosity=6, save_schedule_columns=None, save_args_to # check if there is more than 1 equipment per end use. Raise error for HVAC/WH, else print a warning if len(eq) > 1: if end_use in ['HVAC Heating', 'HVAC Cooling', 'Water Heating']: - raise Exception(f'More than 1 equipment defined for {end_use}: {eq}') + raise OCHREException(f'More than 1 equipment defined for {end_use}: {eq}') elif end_use not in ['Lighting', 'Other']: self.warn(f'More than 1 equipment defined for {end_use}: {eq}') @@ -143,7 +145,7 @@ def __init__(self, metrics_verbosity=6, save_schedule_columns=None, save_args_to ideal = eq.use_ideal_capacity if isinstance(eq, (HVAC, WaterHeater)) else True if not ideal: if self.time_res >= dt.timedelta(minutes=15): - raise Exception(f'Cannot use non-ideal equipment {name} with large time step of' + raise OCHREException(f'Cannot use non-ideal equipment {name} with large time step of' f' {self.time_res}') if self.time_res >= dt.timedelta(minutes=5): self.warn(f'Using non-ideal equipment {name} with large time step of {self.time_res}') @@ -188,7 +190,7 @@ def get_equipment_by_end_use(self, end_use): elif end_use in self.equipment: return self.equipment[end_use] else: - raise Exception(f'Unknown end use: {end_use}') + raise OCHREException(f'Unknown end use: {end_use}') def update_inputs(self, schedule_inputs=None): if schedule_inputs is None: @@ -197,7 +199,7 @@ def update_inputs(self, schedule_inputs=None): # check voltage from external model self.voltage = schedule_inputs.get('Voltage (-)', 1) if np.isnan(self.voltage) or self.voltage < 0: - raise Exception(f'Error reading voltage for house {self.name}: {self.voltage}') + raise OCHREException(f'Error reading voltage for house {self.name}: {self.voltage}') if self.voltage == 0: # Enter resilience mode when voltage is 0. Assumes home generator maintains voltage at 1 p.u. schedule_inputs['Voltage (-)'] = 1 @@ -257,16 +259,14 @@ def update_model(self, control_signal=None): def start_sub_update(self, sub, control_signal): sub_control_signal = super().start_sub_update(sub, control_signal) - if isinstance(sub, Generator): - # Add house net_power and pv_power to control signal for equipment that use it (Generator and Battery) - if sub_control_signal is None: - sub_control_signal = {} - - if 'net_power' not in sub_control_signal: - sub_control_signal['net_power'] = self.total_p_kw - if isinstance(sub, Battery) and 'pv_power' not in sub_control_signal: - pv_power = sum([e.electric_kw for e in self.equipment_by_end_use['PV']]) - sub_control_signal['pv_power'] = pv_power + # Add house net_power to schedule for Generator + if isinstance(sub, Generator) and 'net_power' not in sub.current_schedule: + sub.current_schedule["net_power"] = self.total_p_kw + + # Add pv_power to schedule for Battery + if isinstance(sub, Battery) and "pv_power" not in sub.current_schedule: + pv_power = sum([e.electric_kw for e in self.equipment_by_end_use['PV']]) + sub.current_schedule["pv_power"] = pv_power return sub_control_signal diff --git a/ochre/Equipment/Battery.py b/ochre/Equipment/Battery.py index 7f4fe0b..645e3af 100644 --- a/ochre/Equipment/Battery.py +++ b/ochre/Equipment/Battery.py @@ -11,40 +11,55 @@ from scipy.interpolate import interp1d import rainflow +from ochre.utils import OCHREException from ochre.utils.units import convert, degC_to_K from ochre.Models import OneNodeRCModel from ochre.Equipment import Generator -CONTROL_TYPES = ['Schedule', 'Self-Consumption', 'Off'] - class BatteryThermalModel(OneNodeRCModel): - name = 'Battery Temperature' - int_name = 'BATT' - ext_name = 'AMB' + name = "Battery Temperature" + int_name = "BATT" + ext_name = "AMB" def generate_results(self): results = super().generate_results() if self.verbosity >= 6: - results[f'{self.name} (C)'] = self.states[0] + results[f"{self.name} (C)"] = self.states[0] return results class Battery(Generator): - name = 'Battery' - end_use = 'Battery' + name = "Battery" + end_use = "Battery" allow_consumption = True is_gas = False - optional_inputs = ['net_power', 'pv_power'] - - def __init__(self, enable_degradation=True, efficiency_type='advanced', enable_thermal_model=None, **kwargs): + optional_inputs = Generator.optional_inputs + [ + "pv_power", + "Battery Electric Power (kW)", + "Battery SOC (-)", + "Battery Min SOC (-)", + "Battery Max SOC (-)", + "Battery Max Import Limit (kW)", + "Battery Max Export Limit (kW)", + # "Battery Max Discharge Power (kW)", + # "Battery Max Charge Power (kW)", + ] + + def __init__( + self, + enable_degradation=True, + efficiency_type="advanced", + enable_thermal_model=None, + **kwargs, + ): if enable_thermal_model is None: - enable_thermal_model = kwargs.get('zone_name') is not None - + enable_thermal_model = kwargs.get("zone_name") is not None + # add zone temperature to schedule if enable_thermal_model: - optional_inputs = self.optional_inputs + ['Zone Temperature (C)'] + optional_inputs = self.optional_inputs + ["Zone Temperature (C)"] else: optional_inputs = None # use the default @@ -54,29 +69,43 @@ def __init__(self, enable_degradation=True, efficiency_type='advanced', enable_t # Battery electrical parameters # Note: Parameter values taken from SAM Li-NMC defaults, version 2020.2.29 - self.capacity_kwh = self.parameters['capacity_kwh'] # in kWh, instantaneous capacity - self.soc = self.parameters['soc_init'] # Initial State of Charge + self.capacity_rated = self.parameters["capacity_kwh"] # in kWh, does not change + self.capacity_kwh = self.capacity_rated # in kWh, instantaneous capacity + self.soc = self.parameters["soc_init"] # Initial State of Charge self.next_soc = self.soc - self.soc_max = self.parameters['soc_max'] - self.soc_min = self.parameters['soc_min'] - self.discharge_rate = convert(self.parameters['discharge_pct'], 'percent/day', - 'unitless/hour') # Self-discharge rate (1/hour) - self.efficiency_inverter = self.parameters['efficiency_inverter'] # Inverter efficiency, unitless + # TODO: get recommended min/max SOC from SAM + self.soc_max = self.parameters["soc_max"] + self.soc_min = self.parameters["soc_min"] + self.discharge_rate = convert( + self.parameters["discharge_pct"], "percent/day", "unitless/hour" + ) # Self-discharge rate (1/hour) + self.efficiency_inverter = self.parameters[ + "efficiency_inverter" + ] # Inverter efficiency, unitless + self.time_res_hours = self.time_res.total_seconds() / 3600 # Pack efficiency depends on pack internal resistance self.efficiency_internal = 1 # varies with power output, unitless - if self.efficiency_type == 'advanced': + if self.efficiency_type == "advanced": # voltage and resistance depends on # of cells in parallel/series - capacity_cell = self.parameters['ah_cell'] * self.parameters['v_cell'] / 1000 # in kWh per cell + capacity_cell = ( + self.parameters["ah_cell"] * self.parameters["v_cell"] / 1000 + ) # in kWh per cell n_cells_tot = self.capacity_kwh / capacity_cell # not necessarily an integer # usually 14 cells in series to achieve typical 50.6V pack voltage # TODO: update with data from https://github.com/NREL/PyChargeModel/blob/main/ElectricVehicles.py - n_series_by_voltage = self.parameters.get('initial_voltage', 50.4) / self.parameters['v_cell'] - self.n_series = self.parameters.get('n_series', n_series_by_voltage) # Number of cells in series + n_series_by_voltage = ( + self.parameters.get("initial_voltage", 50.4) / self.parameters["v_cell"] + ) + self.n_series = self.parameters.get( + "n_series", n_series_by_voltage + ) # Number of cells in series n_parallel = n_cells_tot / self.n_series - self.r_internal = self.parameters['r_cell'] * self.n_series / n_parallel # internal resistance, in ohms + self.r_internal = ( + self.parameters["r_cell"] * self.n_series / n_parallel + ) # internal resistance, in ohms else: self.n_series = None self.r_internal = None @@ -84,39 +113,60 @@ def __init__(self, enable_degradation=True, efficiency_type='advanced', enable_t # Create thermal model if zone is specified self.t_idx = 0 # index for battery temperature (based on states) if enable_thermal_model: - self.thermal_model = BatteryThermalModel(self.parameters['thermal_r'], self.parameters['thermal_c'], - **kwargs) + self.thermal_model = BatteryThermalModel( + self.parameters["thermal_r"], self.parameters["thermal_c"], **kwargs + ) self.sub_simulators.append(self.thermal_model) assert len(self.thermal_model.states) == 1 - if 'Initial Battery Temperature (C)' in kwargs: - self.thermal_model.states[0] = kwargs['Initial Battery Temperature (C)'] + if "Initial Battery Temperature (C)" in kwargs: + self.thermal_model.states[0] = kwargs["Initial Battery Temperature (C)"] elif self.zone: self.thermal_model.states[0] = self.zone.temperature else: - raise Exception('Must specify "Initial Battery Temperature (C)"') + raise OCHREException('Must specify "Initial Battery Temperature (C)"') else: self.thermal_model = None # Degradation model - self.capacity_kwh_nominal = self.capacity_kwh # starts at rated capacity, reduces from degradation + self.capacity_kwh_nominal = ( + self.capacity_rated + ) # starts at rated capacity, reduces from degradation self.degradation_data = [] if enable_degradation: self.degradation_states = (0, 0, 0) # Curves for degradation and efficiency using internal resistance # TODO: update with data from https://github.com/NREL/PyChargeModel/blob/main/ElectricVehicles.py - df_curves = self.initialize_parameters('degradation_curves.csv', name_col='SOC', value_col=None) - self.voc_curve = interp1d(df_curves.index, df_curves['V_oc'], bounds_error=False, - fill_value=(df_curves['V_oc'].iloc[0], df_curves['V_oc'].iloc[-1])) - self.uneg_curve = interp1d(df_curves.index, df_curves['U_neg'], bounds_error=False, - fill_value=(df_curves['U_neg'].iloc[0], df_curves['U_neg'].iloc[-1])) + df_curves = self.initialize_parameters( + "degradation_curves.csv", name_col="SOC", value_col=None + ) + self.voc_curve = interp1d( + df_curves.index, + df_curves["V_oc"], + bounds_error=False, + fill_value=(df_curves["V_oc"].iloc[0], df_curves["V_oc"].iloc[-1]), + ) + self.uneg_curve = interp1d( + df_curves.index, + df_curves["U_neg"], + bounds_error=False, + fill_value=(df_curves["U_neg"].iloc[0], df_curves["U_neg"].iloc[-1]), + ) + + # Control parameters + self.charge_solar_only = kwargs.get("Charge from Solar Only", False) + # self.soc_setpoint = None # not used + self.soc_min_ctrl = self.soc_min + self.soc_max_ctrl = self.soc_max def update_inputs(self, schedule_inputs=None): # Add zone temperature to schedule inputs for water tank if not self.main_simulator and self.thermal_model: - schedule_inputs['Zone Temperture (C)'] = schedule_inputs[f'{self.zone_name} Temperature (C)'] - + schedule_inputs["Zone Temperture (C)"] = schedule_inputs[ + f"{self.zone_name} Temperature (C)" + ] + super().update_inputs(schedule_inputs) def reset_time(self, start_time=None, **kwargs): @@ -125,41 +175,79 @@ def reset_time(self, start_time=None, **kwargs): # reset degradation states and capacity if self.degradation_states is not None: self.degradation_states = (0, 0, 0) - self.capacity_kwh = self.parameters['capacity_kwh'] - self.capacity_kwh_nominal = self.capacity_kwh + self.capacity_kwh = self.capacity_rated + self.capacity_kwh_nominal = self.capacity_rated def update_external_control(self, control_signal): # Options for external control signals: - # - P Setpoint: Directly sets power setpoint, in kW + # - SOC: Solves for power setpoint to achieve desired SOC, in 1/hour + # - Min SOC: Minimum SOC limit for self-consumption mode + # - Max SOC: Maximum SOC limit for self-consumption mode + # - See additional controls in Generator.update_external_control # - Note: still subject to SOC limits and charge/discharge limits - # - SOC Rate: Solves for power setpoint to achieve desired SOC, same sign as P Setpoint, in 1/hour - # - Control Type: Sets the control type to one of CONTROL_TYPES - # - Parameters: Update control parameters, including: - # - Schedule: charge/discharge start times - # - Schedule: charge/discharge powers - # - Self-Consumption: charge/discharge offsets, in kW - # - Self-Consumption: charge type (from any solar or from net power) - super().update_external_control(control_signal) + min_soc = control_signal.get("Min SOC") + if min_soc is not None: + if f"{self.end_use} Min SOC (-)" in self.current_schedule: + self.current_schedule[f"{self.end_use} Min SOC (-)"] = min_soc + else: + self.soc_min_ctrl = min_soc + + max_soc = control_signal.get("Max SOC") + if max_soc is not None: + if f"{self.end_use} Max SOC (-)" in self.current_schedule: + self.current_schedule[f"{self.end_use} Max SOC (-)"] = max_soc + else: + self.soc_max_ctrl = max_soc + + # Note: P Setpoint overrides SOC control. + soc = control_signal.get("SOC") + if soc is not None and "P Setpoint" not in control_signal: + self.power_setpoint = self.get_setpoint_from_soc(soc) + return "On" if self.power_setpoint != 0 else "Off" - if 'SOC Rate' in control_signal: - power_dc = control_signal['SOC Rate'] * self.capacity_kwh # in kW, DC - efficiency = self.calculate_efficiency(power_dc, is_output_power=False) - self.power_setpoint = power_dc / efficiency if power_dc > 0 else power_dc * efficiency + return super().update_external_control(control_signal) - return 'On' if self.power_setpoint != 0 else 'Off' + def get_setpoint_from_soc(self, soc): + power_dc = (soc - self.soc) * self.capacity_kwh / self.time_res_hours # in kW, DC + efficiency = self.calculate_efficiency(power_dc, is_output_power=False) + power_setpoint = power_dc / efficiency if power_dc > 0 else power_dc * efficiency + return power_setpoint def update_internal_control(self): + # get setpoint from self-consumption or power setpoint super().update_internal_control() - if (self.control_type == 'Self-Consumption' and self.parameters.get('charge_from_solar', False) and - self.power_setpoint > 0): - # Force charge from solar - pv_power = self.current_schedule.get('pv_power') + if f"{self.end_use} Min SOC (-)" in self.current_schedule: + self.soc_min_ctrl = self.current_schedule[f"{self.end_use} Min SOC (-)"] + if f"{self.end_use} Max SOC (-)" in self.current_schedule: + self.soc_max_ctrl = self.current_schedule[f"{self.end_use} Max SOC (-)"] + + if self.self_consumption_mode: + if self.power_setpoint > 0: + # Enforce max SOC controls + max_power = self.get_setpoint_from_soc(self.soc_max_ctrl) + self.power_setpoint = min(self.power_setpoint, max_power) + elif self.power_setpoint < 0: + # Enforce min SOC controls + min_power = self.get_setpoint_from_soc(self.soc_min_ctrl) + self.power_setpoint = max(self.power_setpoint, min_power) + + elif ( + f"{self.end_use} SOC (-)" in self.current_schedule + and f"{self.end_use} Electric Power (kW)" not in self.current_schedule + ): + # set based on SOC schedule if it exists and power schedule does not + soc = self.current_schedule[f"{self.end_use} SOC (-)"] + self.power_setpoint = self.get_setpoint_from_soc(soc) + + # Update setpoint if forced to charge from solar + if self.charge_solar_only and self.power_setpoint > 0: + pv_power = self.current_schedule.get("pv_power") if pv_power is not None: self.power_setpoint = min(self.power_setpoint, -pv_power) else: - self.warn('Cannot run Self-Consumption control without PV power') + self.warn("Cannot charge without PV power defined") self.power_setpoint = 0 # Update setpoint if SOC limits are reached @@ -168,7 +256,7 @@ def update_internal_control(self): if self.power_setpoint < 0 and self.soc <= self.soc_min: self.power_setpoint = 0 - return 'On' if self.power_setpoint != 0 else 'Off' + return "On" if self.power_setpoint != 0 else "Off" def get_kwh_remaining(self, discharge=True, include_efficiency=True, max_power=None): # returns the remaining SOC, in units of kWh. Option for remaining charging/discharging @@ -191,16 +279,21 @@ def get_kwh_remaining(self, discharge=True, include_efficiency=True, max_power=N def get_power_limits(self): # returns min (discharge) and max (charge) output power limits based on capacity and SOC max_discharge, max_charge = super().get_power_limits() - hours = self.time_res.total_seconds() / 3600 # update max charge based on charging efficiency - max_charge_dc = self.get_kwh_remaining(discharge=False, include_efficiency=False) / hours # in kW - efficiency = self.calculate_efficiency(min(max_charge_dc, max_charge), is_output_power=False) + max_charge_kwh = self.get_kwh_remaining(discharge=False, include_efficiency=False) + max_charge_dc = max_charge_kwh / self.time_res_hours # in kW + efficiency = self.calculate_efficiency( + min(max_charge_dc, max_charge), is_output_power=False + ) max_charge = min(max_charge_dc / efficiency, max_charge) # update max discharge based on discharging efficiency - max_discharge_dc = self.get_kwh_remaining(discharge=True, include_efficiency=False) / hours # in kW - efficiency = self.calculate_efficiency(-min(max_discharge_dc, -max_discharge * 1.1), is_output_power=False) + max_discharge_kwh = self.get_kwh_remaining(discharge=True, include_efficiency=False) + max_discharge_dc = max_discharge_kwh / self.time_res_hours # in kW + efficiency = self.calculate_efficiency( + -min(max_discharge_dc, -max_discharge * 1.1), is_output_power=False + ) max_discharge = -min(max_discharge_dc * efficiency, -max_discharge) return max_discharge, max_charge @@ -209,15 +302,19 @@ def calculate_efficiency(self, electric_kw=None, is_output_power=True): if electric_kw is None: electric_kw = self.electric_kw - if self.efficiency_type == 'advanced': + if self.efficiency_type == "advanced": # determine total cell voltage based on V_oc and output power # Note: if power > 0, battery is charging and v > voc; when discharging, v < voc voc = float(self.voc_curve(self.soc)) * self.n_series if is_output_power: electric_kw *= self.efficiency_inverter - v = voc / 2 + np.sqrt((voc / 2) ** 2 + (electric_kw * 1000) * self.r_internal) # V = V_oc + P*R/V + v = voc / 2 + np.sqrt( + (voc / 2) ** 2 + (electric_kw * 1000) * self.r_internal + ) # V = V_oc + P*R/V else: - v = voc + (electric_kw * 1000 / voc) * self.r_internal # V = V_oc + I*R = V_oc + P/V_oc * R + v = ( + voc + (electric_kw * 1000 / voc) * self.r_internal + ) # V = V_oc + I*R = V_oc + P/V_oc * R if electric_kw <= 0: # discharging - efficiency is p_out / p_in = v_out / v_in @@ -225,11 +322,11 @@ def calculate_efficiency(self, electric_kw=None, is_output_power=True): else: # charging - efficiency is p_in / p_out = v_in / v_out self.efficiency_internal = voc / v - elif self.efficiency_type == 'constant': + elif self.efficiency_type == "constant": if electric_kw < 0: self.efficiency_internal = self.efficiency_rated else: - self.efficiency_internal = self.parameters.get('efficiency_charge', self.efficiency_rated) + self.efficiency_internal = self.parameters.get("efficiency_charge", 1) else: self.efficiency_internal = super().calculate_efficiency(electric_kw, is_output_power) @@ -248,8 +345,9 @@ def calculate_power_and_heat(self): e_ad2 = 9.752e6 # J / mol if self.thermal_model is not None: t_batt = self.thermal_model.states[self.t_idx] + degC_to_K - d0 = d0_ref * np.exp(-e_ad1 / R * (1 / t_batt - 1 / t_ref) + - -e_ad2 / R * (1 / t_batt - 1 / t_ref) ** 2) + d0 = d0_ref * np.exp( + -e_ad1 / R * (1 / t_batt - 1 / t_ref) + -e_ad2 / R * (1 / t_batt - 1 / t_ref) ** 2 + ) self.capacity_kwh = self.capacity_kwh_nominal * d0 else: self.capacity_kwh = self.capacity_kwh_nominal @@ -258,12 +356,13 @@ def calculate_power_and_heat(self): # update SOC for next time step # FUTURE: non-zero self-discharge could cause SOC limit issues - hours = self.time_res.total_seconds() / 3600 - self_discharge = self.discharge_rate * hours - self.next_soc = self.soc + self.power_input * hours / self.capacity_kwh - self_discharge + self_discharge = self.discharge_rate * self.time_res_hours + self.next_soc = ( + self.soc + self.power_input * self.time_res_hours / self.capacity_kwh - self_discharge + ) - # check with upper and lower bound of usable SOC - assert self.soc_max + 0.001 >= self.next_soc >= self.soc_min - 0.001 # small computational errors possible + # check with upper and lower bound of usable SOC, small computational errors possible + assert self.soc_max + 0.001 >= self.next_soc >= self.soc_min - 0.001 # append SOC and temperature to degradation data t_batt = self.thermal_model.states[self.t_idx] if self.thermal_model is not None else 25 @@ -277,12 +376,13 @@ def calculate_power_and_heat(self): # self.sensible_gain -= delta_h # calculate inputs to thermal model - p_internal = self.power_input * self.efficiency_internal if self.electric_kw < 0 else \ - self.power_input / self.efficiency_internal + p_internal = ( + self.power_input * self.efficiency_internal + if self.electric_kw < 0 + else self.power_input / self.efficiency_internal + ) h_batt = p_internal - self.power_input - return { - 'T_AMB': self.current_schedule['Zone Temperature (C)'], - 'H_BATT': h_batt} + return {"T_AMB": self.current_schedule["Zone Temperature (C)"], "H_BATT": h_batt} else: return None @@ -314,32 +414,40 @@ def calculate_degradation(self): theta = -0.135 # unitless # TODO: might be positive? using value from Matlab, not paper # run rainflow algorithm - df = pd.DataFrame(self.degradation_data, columns=['soc', 'temp']) - df['soc'] = df['soc'].clip(0, 1) - df['temp'] = df['temp'] + degC_to_K - cycles = rainflow.extract_cycles(df['soc']) - cycles = pd.DataFrame(cycles, columns=['dsoc', 'avg_soc', 'ncycle', 'start', 'end']) - cycles['avg_temp'] = [df['temp'].iloc[start: end].mean() for start, end in zip(cycles['start'], cycles['end'])] - deg_time = len(df) * self.time_res.total_seconds() / 3600 / 24 # days since last degradation update - max_dod = cycles['dsoc'].max() + df = pd.DataFrame(self.degradation_data, columns=["soc", "temp"]) + df["soc"] = df["soc"].clip(0, 1) + df["temp"] = df["temp"] + degC_to_K + cycles = rainflow.extract_cycles(df["soc"]) + cycles = pd.DataFrame(cycles, columns=["dsoc", "avg_soc", "ncycle", "start", "end"]) + cycles["avg_temp"] = [ + df["temp"].iloc[start:end].mean() for start, end in zip(cycles["start"], cycles["end"]) + ] + deg_time = ( + len(df) * self.time_res.total_seconds() / 3600 / 24 + ) # days since last degradation update + max_dod = cycles["dsoc"].max() # interpolate SOC to get v_oc and u_neg - v_oc = self.voc_curve(df['soc']) - u_neg = self.uneg_curve(df['soc']) + v_oc = self.voc_curve(df["soc"]) + u_neg = self.uneg_curve(df["soc"]) # t_batt = convert(self.thermal_model.states[self.t_idx], 'degC', 'K') # in K # time = (self.start_time - self.current_time).total_seconds() / 3600 / 24 # days since start of simulation # Tafel and Arrhenius equations - b1_tfl = np.exp(alpha_b1 * F / R * (u_neg / df['temp'] - u_ref / t_ref)) - b3_tfl = np.exp(alpha_b3 * F / R * (v_oc / df['temp'] - v_ref / t_ref)) - b1_arr = np.exp(-e_ab1 / R * (1 / df['temp'] - 1 / t_ref)) - b2_arr = np.exp(-e_ab2 / R * (1 / cycles['avg_temp'] - 1 / t_ref)) - b3_arr = np.exp(-e_ab3 / R * (1 / df['temp'] - 1 / t_ref)) + b1_tfl = np.exp(alpha_b1 * F / R * (u_neg / df["temp"] - u_ref / t_ref)) + b3_tfl = np.exp(alpha_b3 * F / R * (v_oc / df["temp"] - v_ref / t_ref)) + b1_arr = np.exp(-e_ab1 / R * (1 / df["temp"] - 1 / t_ref)) + b2_arr = np.exp(-e_ab2 / R * (1 / cycles["avg_temp"] - 1 / t_ref)) + b3_arr = np.exp(-e_ab3 / R * (1 / df["temp"] - 1 / t_ref)) # degradation rates - b1 = b1_ref * ((b1_tfl * b1_arr).mean() * np.exp(gamma_b1 * max_dod ** beta_b1)) - b2 = b2_ref * ((b2_arr * cycles['ncycle']) ** 2).sum() ** 0.5 / deg_time if max_dod > 0 else 0 + b1 = b1_ref * ((b1_tfl * b1_arr).mean() * np.exp(gamma_b1 * max_dod**beta_b1)) + b2 = ( + b2_ref * ((b2_arr * cycles["ncycle"]) ** 2).sum() ** 0.5 / deg_time + if max_dod > 0 + else 0 + ) b3 = b3_ref * (b3_tfl * b3_arr).mean() * (1 - theta * max_dod) # update degradation states @@ -353,12 +461,12 @@ def calculate_degradation(self): # raise warning/error if degradation is too high if sum(self.degradation_states) >= 1: - raise Exception('{} degraded beyond useful life.'.format(self.name)) + raise OCHREException("{} degraded beyond useful life.".format(self.name)) elif sum(self.degradation_states) >= 0.7: - self.warn('Degraded beyond useful life.') + self.warn("Degraded beyond useful life.") # update nominal capacity due to degradation - self.capacity_kwh_nominal = self.parameters['capacity_kwh'] * (b0 - sum(self.degradation_states)) + self.capacity_kwh_nominal = self.capacity_rated * (b0 - sum(self.degradation_states)) # reset degradation data self.degradation_data.clear() @@ -366,15 +474,15 @@ def calculate_degradation(self): def generate_results(self): results = super().generate_results() if self.verbosity >= 3: - results[f'{self.end_use} SOC (-)'] = self.soc + results[f"{self.end_use} SOC (-)"] = self.soc if self.verbosity >= 6: - results[f'{self.end_use} Energy to Discharge (kWh)'] = self.get_kwh_remaining() + results[f"{self.end_use} Energy to Discharge (kWh)"] = self.get_kwh_remaining() if self.verbosity >= 9 and self.degradation_states is not None: - results[f'{self.end_use} Nominal Capacity (kWh)'] = self.capacity_kwh_nominal - results[f'{self.end_use} Actual Capacity (kWh)'] = self.capacity_kwh - results[f'{self.end_use} Degradation State Q1'] = self.degradation_states[0] - results[f'{self.end_use} Degradation State Q2'] = self.degradation_states[1] - results[f'{self.end_use} Degradation State Q3'] = self.degradation_states[2] + results[f"{self.end_use} Nominal Capacity (kWh)"] = self.capacity_kwh_nominal + results[f"{self.end_use} Actual Capacity (kWh)"] = self.capacity_kwh + results[f"{self.end_use} Degradation State Q1"] = self.degradation_states[0] + results[f"{self.end_use} Degradation State Q2"] = self.degradation_states[1] + results[f"{self.end_use} Degradation State Q3"] = self.degradation_states[2] if self.save_ebm_results: results.update(self.make_equivalent_battery_model()) @@ -392,12 +500,12 @@ def make_equivalent_battery_model(self): # returns a dictionary of equivalent battery model parameters max_discharge, max_charge = self.get_power_limits() # accounts for SOC and power limits return { - f'{self.end_use} EBM Energy (kWh)': self.soc * self.capacity_kwh, - f'{self.end_use} EBM Min Energy (kWh)': 0, - f'{self.end_use} EBM Max Energy (kWh)': self.capacity_kwh, - f'{self.end_use} EBM Max Power (kW)': max_charge, - f'{self.end_use} EBM Efficiency (-)': self.calculate_efficiency(max_charge), - f'{self.end_use} EBM Baseline Power (kW)': self.discharge_rate * self.capacity_kwh, - f'{self.end_use} EBM Max Discharge Power (kW)': max_discharge, - f'{self.end_use} EBM Discharge Efficiency (-)': self.calculate_efficiency(max_discharge), + f"{self.end_use} EBM Energy (kWh)": self.soc * self.capacity_kwh, + f"{self.end_use} EBM Min Energy (kWh)": 0, + f"{self.end_use} EBM Max Energy (kWh)": self.capacity_kwh, + f"{self.end_use} EBM Max Power (kW)": max_charge, + f"{self.end_use} EBM Efficiency (-)": self.calculate_efficiency(max_charge), + f"{self.end_use} EBM Baseline Power (kW)": self.discharge_rate * self.capacity_kwh, + f"{self.end_use} EBM Max Discharge Power (kW)": max_discharge, + f"{self.end_use} EBM Discharge Efficiency (-)": self.calculate_efficiency(max_discharge), } diff --git a/ochre/Equipment/EV.py b/ochre/Equipment/EV.py index aacacc6..306032f 100644 --- a/ochre/Equipment/EV.py +++ b/ochre/Equipment/EV.py @@ -1,9 +1,8 @@ -import os import numpy as np import datetime as dt import pandas as pd -from ochre.utils import load_csv +from ochre.utils import OCHREException, load_csv from ochre.Equipment import EventBasedLoad, ScheduledLoad # For EVI-Pro assumptions, see Section 1.2 and 1.3: @@ -29,11 +28,16 @@ class ElectricVehicle(EventBasedLoad): zone_name = None delay_event_end = False required_inputs = ['Ambient Dry Bulb (C)'] + optional_inputs = [ + "EV Max Power (kW)", + "EV SOC (-)", + "EV Max SOC (-)", + ] - def __init__(self, vehicle_type, charging_level, capacity=None, mileage=None, enable_part_load=None, **kwargs): + def __init__(self, vehicle_type, charging_level, capacity=None, mileage=None, enable_part_load=None, equipment_event_file=None, **kwargs): # get EV battery capacity and mileage if capacity is None and mileage is None: - raise Exception('Must specify capacity or mileage for {}'.format(self.name)) + raise OCHREException('Must specify capacity or mileage for {}'.format(self.name)) elif capacity is not None: self.capacity = capacity # in kWh mileage = self.capacity * EV_FUEL_ECONOMY # in mi @@ -44,30 +48,33 @@ def __init__(self, vehicle_type, charging_level, capacity=None, mileage=None, en # get charging level and set option for part load setpoints charging_level = charging_level.replace(' ', '') if str(charging_level) not in ['Level0', 'Level1', 'Level2']: - raise Exception('Unknown vehicle type for {}: {}'.format(self.name, charging_level)) + raise OCHREException('Unknown vehicle type for {}: {}'.format(self.name, charging_level)) self.charging_level = str(charging_level) if enable_part_load is None: enable_part_load = self.charging_level == 'Level2' self.enable_part_load = enable_part_load - # get vehicle number (1-4) based on type and mileage + # get vehicle number (1-4) based on type and mileage. Used for choosing event file + self.vehicle_type = vehicle_type if vehicle_type == 'PHEV': vehicle_num = 1 if mileage < 35 else 2 elif vehicle_type == 'BEV': vehicle_num = 3 if mileage < 175 else 4 else: - raise Exception('Unknown vehicle type for {}: {}'.format(self.name, vehicle_type)) - self.vehicle_type = vehicle_type + raise OCHREException('Unknown vehicle type for {}: {}'.format(self.name, vehicle_type)) + if equipment_event_file is None: + equipment_event_file = "pdf_Veh{}_{}.csv".format(vehicle_num, self.charging_level) # charging model self.max_power = EV_MAX_POWER[self.charging_level][vehicle_num - 1] + self.max_power_ctrl = self.max_power self.setpoint_power = None self.soc = 1 # unitless self.next_soc = 1 # unitless + self.soc_max_ctrl = 1 # unitless self.unmet_load = 0 # lost charging from delays, in kW # initialize events - equipment_event_file = 'pdf_Veh{}_{}.csv'.format(vehicle_num, self.charging_level) super().__init__(equipment_event_file=equipment_event_file, **kwargs) def import_probabilities(self, equipment_pdf_file=None, equipment_event_file=None, **kwargs): @@ -99,7 +106,7 @@ def generate_all_events(self, probabilities, event_data, eq_schedule, ambient_ev if eq_schedule is not None: # get average daily ambient temperature for generating events and round to nearest 5 C if 'Ambient Dry Bulb (C)' not in eq_schedule: - raise Exception('EV model requires ambient dry bulb temperature in schedule.') + raise OCHREException('EV model requires ambient dry bulb temperature in schedule.') temps_by_day = eq_schedule['Ambient Dry Bulb (C)'] temps_by_day = temps_by_day.groupby(temps_by_day.index.date).mean() # in C temps_by_day = ((temps_by_day / 5).round() * 5).astype(int).clip(lower=-20, upper=40) @@ -169,16 +176,44 @@ def end_event(self): self.event_schedule.loc[self.event_index, 'end_soc'] = np.clip(end_soc, 0, 1) def update_external_control(self, control_signal): + # Options for external control signals: + # - P Setpoint: Directly sets power setpoint, in kW + # - SOC: Solves for power setpoint to achieve desired SOC, unitless + # - SOC Rate: Solves for power setpoint to achieve desired SOC Rate, in 1/hour + # - Max Power: Updates maximum allowed power (in kW) + # - Note: Max Power will only be reset if it is in the schedule + # - Max SOC: Maximum SOC limit for charging + # - See additional controls in EventBasedLoad.update_external_control + + max_power = control_signal.get("Max Power") + if max_power is not None: + if "EV Max Power (kW)" in self.current_schedule: + self.current_schedule["EV Max Power (kW)"] = max_power + else: + self.max_power_ctrl = max_power + + max_soc = control_signal.get("Max SOC") + if max_soc is not None: + if "EV Max SOC (-)" in self.current_schedule: + self.current_schedule["EV Max SOC (-)"] = max_soc + else: + self.soc_max_ctrl = max_soc + mode = super().update_external_control(control_signal) - # update with power setpoint and/or SOC rate + # update power setpoint directly or through SOC or SOC Rate if 'P Setpoint' in control_signal: setpoint = control_signal['P Setpoint'] + elif 'SOC' in control_signal: + soc = control_signal.get("SOC") + power_dc = (soc - self.soc) * self.capacity / self.time_res.total_seconds() * 3600 + setpoint = power_dc / EV_EFFICIENCY elif 'SOC Rate' in control_signal: power_dc = control_signal['SOC Rate'] * self.capacity # in kW setpoint = power_dc / EV_EFFICIENCY else: setpoint = None + if setpoint is not None: setpoint = max(setpoint, 0) if mode != 'On' and setpoint > 0: @@ -187,13 +222,22 @@ def update_external_control(self, control_signal): self.setpoint_power = setpoint else: # set to max power if setpoint > half of max - self.setpoint_power = self.max_power if setpoint >= self.max_power / 2 else 0 + self.setpoint_power = ( + self.max_power if setpoint >= self.max_power / 2 else 0 + ) return mode def update_internal_control(self): self.setpoint_power = None self.unmet_load = 0 + + # update control parameters from schedule + if "EV Max Power (kW)" in self.current_schedule: + self.max_power_ctrl = self.current_schedule["EV Max Power (kW)"] + if "EV Max SOC (-)" in self.current_schedule: + self.soc_max_ctrl = self.current_schedule["EV Max SOC (-)"] + return super().update_internal_control() def calculate_power_and_heat(self): @@ -203,11 +247,9 @@ def calculate_power_and_heat(self): # force ac power within kw capacity and SOC limits, no discharge allowed hours = self.time_res.total_seconds() / 3600 - ac_power = (1 - self.soc) * self.capacity / hours / EV_EFFICIENCY - if self.setpoint_power is not None: - ac_power = min(max(ac_power, 0), self.setpoint_power) - else: - ac_power = min(max(ac_power, 0), self.max_power) + max_power = self.setpoint_power if self.setpoint_power is not None else self.max_power_ctrl + ac_power = (self.soc_max_ctrl - self.soc) * self.capacity / hours / EV_EFFICIENCY + ac_power = min(max(ac_power, 0), max_power) self.electric_kw = ac_power # update SOC for next time step, check with upper and lower bound of usable SOC @@ -227,7 +269,6 @@ def calculate_power_and_heat(self): def generate_results(self): results = super().generate_results() - # remaining_charge_minutes = (1 - self.soc) * self.capacity / (self.max_power * EV_CHARGER_EFFICIENCY) * 60 if self.verbosity >= 3: results[f'{self.end_use} SOC (-)'] = self.soc results[f'{self.end_use} Parked'] = self.in_event @@ -237,7 +278,9 @@ def generate_results(self): results[f'{self.end_use} Start Time'] = self.event_start results[f'{self.end_use} End Time'] = self.event_end if self.verbosity >= 7: - remaining_charge_minutes = (1 - self.soc) * self.capacity / (self.max_power * EV_EFFICIENCY) * 60 + remaining_charge_minutes = ( + (1 - self.soc) * self.capacity / (self.max_power_ctrl * EV_EFFICIENCY) * 60 + ) results[f'{self.end_use} Remaining Charge Time (min)'] = remaining_charge_minutes return results diff --git a/ochre/Equipment/Equipment.py b/ochre/Equipment/Equipment.py index 7b6a4aa..affff26 100644 --- a/ochre/Equipment/Equipment.py +++ b/ochre/Equipment/Equipment.py @@ -3,7 +3,7 @@ import numpy as np from ochre import Simulator -from ochre.utils import load_csv +from ochre.utils import OCHREException, load_csv class Equipment(Simulator): @@ -100,7 +100,7 @@ def update_duty_cycles(self, *duty_cycles): if len(duty_cycles) == len(self.modes) - 1: duty_cycles.append(1 - sum(duty_cycles)) if len(duty_cycles) != len(self.modes): - raise Exception('Error parsing duty cycles. Expected a list of length equal or 1 less than ' + + raise OCHREException('Error parsing duty cycles. Expected a list of length equal or 1 less than ' + 'the number of modes ({}): {}'.format(len(self.modes), duty_cycles)) self.duty_cycle_by_mode = dict(zip(self.modes, duty_cycles)) @@ -116,7 +116,7 @@ def calculate_mode_priority(self, *duty_cycles): :return: list of mode names in order of priority """ if self.ext_time_res is None: - raise Exception('External control time resolution is not defined for {}.'.format(self.name)) + raise OCHREException('External control time resolution is not defined for {}.'.format(self.name)) if duty_cycles: self.update_duty_cycles(*duty_cycles) @@ -142,7 +142,7 @@ def calculate_mode_priority(self, *duty_cycles): def update_external_control(self, control_signal): # Overwrite if external control might exist - raise Exception('Must define external control algorithm for {}'.format(self.name)) + raise OCHREException('Must define external control algorithm for {}'.format(self.name)) def update_internal_control(self): # Returns the equipment mode; can return None if the mode doesn't change @@ -199,7 +199,7 @@ def update_model(self, control_signal=None): self.time_in_mode += self.time_res else: if mode not in self.modes: - raise Exception( + raise OCHREException( "Can't set {} mode to {}. Valid modes are: {}".format(self.name, mode, self.modes)) self.mode = mode self.time_in_mode = self.time_res @@ -211,12 +211,12 @@ def update_model(self, control_signal=None): # calculate electric and gas power and heat gains heat_data = self.calculate_power_and_heat() - # Run update for subsimulators (e.g., water tank, battery thermal model) - super().update_model(heat_data) - # Add heat gains to zone self.add_gains_to_zone() + # Run update for subsimulators (e.g., water tank, battery thermal model) + super().update_model(heat_data) + # Update electric real/reactive power with ZIP model self.run_zip(voltage) diff --git a/ochre/Equipment/EventBasedLoad.py b/ochre/Equipment/EventBasedLoad.py index cb2fac9..391e4be 100644 --- a/ochre/Equipment/EventBasedLoad.py +++ b/ochre/Equipment/EventBasedLoad.py @@ -3,7 +3,7 @@ import datetime as dt import numpy as np -from ochre.utils import load_csv +from ochre.utils import OCHREException, load_csv from ochre.Equipment import Equipment @@ -53,7 +53,7 @@ def import_probabilities(self, equipment_pdf_file=None, equipment_event_file=Non elif equipment_event_file is not None: raise NotImplementedError else: - raise Exception('Must specify a PDF or Event file for {}.'.format(self.name)) + raise OCHREException('Must specify a PDF or Event file for {}.'.format(self.name)) def initialize_schedule(self, **kwargs): schedule = super().initialize_schedule(**kwargs) @@ -75,13 +75,13 @@ def initialize_schedule(self, **kwargs): negative_times = self.event_schedule['end_time'] - self.event_schedule['start_time'] < dt.timedelta(0) if negative_times.any(): bad_event = self.event_schedule.loc[negative_times.idxmax()] - raise Exception('{} has event with end time before start time. ' + raise OCHREException('{} has event with end time before start time. ' 'Event details: \n{}'.format(self.name, bad_event)) overlap = (self.event_schedule['start_time'] - self.event_schedule['end_time'].shift()) < dt.timedelta(0) if overlap.any(): bad_index = overlap.idxmax() bad_events = self.event_schedule.loc[bad_index - 1: bad_index + 1] - raise Exception('{} event overlap. Event details: \n{}'.format(self.name, bad_events)) + raise OCHREException('{} event overlap. Event details: \n{}'.format(self.name, bad_events)) return schedule @@ -138,7 +138,7 @@ def update_external_control(self, control_signal): if isinstance(delay, (int, bool)): delay = self.time_res * delay if not isinstance(delay, dt.timedelta): - raise Exception(f'Unknown delay for {self.name}: {delay}') + raise OCHREException(f'Unknown delay for {self.name}: {delay}') if delay: if self.delay_event_end: diff --git a/ochre/Equipment/Generator.py b/ochre/Equipment/Generator.py index 42ee659..2eb8ffd 100644 --- a/ochre/Equipment/Generator.py +++ b/ochre/Equipment/Generator.py @@ -5,112 +5,124 @@ @author: mblonsky """ -import datetime as dt from scipy.interpolate import interp1d +from ochre.utils import OCHREException from ochre.utils.units import kwh_to_therms from ochre.Equipment import Equipment -CONTROL_TYPES = ['Schedule', 'Self-Consumption', 'Off'] - class Generator(Equipment): allow_consumption = False is_gas = False zone_name = None - optional_inputs = ['net_power'] + optional_inputs = ["net_power"] """Generic equipment class for load-following equipment, including batteries, gas generators, and gas fuel cells.""" - def __init__(self, control_type='Off', parameter_file='default_parameters.csv', efficiency_type='constant', - efficiency_file='efficiency_curve.csv', **kwargs): + def __init__( + self, + self_consumption_mode=False, + parameter_file="default_parameters.csv", + efficiency_type="constant", + efficiency_file="efficiency_curve.csv", + **kwargs, + ): super().__init__(parameter_file=parameter_file, **kwargs) # power parameters self.power_setpoint = 0 # setpoint from controller, AC side (after losses), in kW self.power_input = 0 # input power including losses, equal to gas consumption, in kW - self.power_chp = 0 # usable output heat for combined heat and power (CHP) uses (not implemented), in kW + # not implemented: + # self.power_chp = 0 # usable output heat for combined heat and power (CHP) uses, in kW # Electrical parameters self.capacity = self.parameters['capacity'] # in kW - self.capacity_min = self.parameters.get('capacity_min') # minimum generating power for self-consumption, in kW - self.ramp_rate = self.parameters.get('ramp_rate') # max output power ramp rate, generation only, in kW/min + # minimum generating power for self-consumption + self.capacity_min = self.parameters.get('capacity_min') # in kW + # max output power ramp rate, generation only + self.ramp_rate = self.parameters.get('ramp_rate') # in kW/min # Efficiency parameters self.efficiency = None # variable efficiency, unitless - self.efficiency_rated = self.parameters['efficiency'] # unitless - self.efficiency_chp = self.parameters.get('efficiency_chp', 0) # CHP efficiency, for generation only + self.efficiency_rated = self.parameters["efficiency"] # unitless + # CHP efficiency, for generation only + self.efficiency_chp = self.parameters.get("efficiency_chp", 0) self.efficiency_type = efficiency_type # formula for calculating efficiency - if self.efficiency_type == 'curve': + if self.efficiency_type == "curve": # Load efficiency curve - df = self.initialize_parameters(efficiency_file, name_col='Capacity Ratio', value_col=None) - self.efficiency_curve = interp1d(df.index, df['Efficiency Ratio']) + df = self.initialize_parameters( + efficiency_file, name_col="Capacity Ratio", value_col=None + ) + self.efficiency_curve = interp1d(df.index, df["Efficiency Ratio"]) else: self.efficiency_curve = None # Control parameters - if control_type not in CONTROL_TYPES: - raise Exception('Unknown {} control type: {}'.format(self.name, control_type)) - self.control_type = control_type + self.self_consumption_mode = self_consumption_mode + self.import_limit = self.parameters.get("import_limit", 0) + self.export_limit = self.parameters.get("export_limit", 0) def update_external_control(self, control_signal): # Options for external control signals: # - P Setpoint: Directly sets power setpoint, in kW # - Note: still subject to SOC limits and charge/discharge limits - # - Control Type: Sets the control type to one of CONTROL_TYPES - # - Parameters: Update control parameters, including: - # - Schedule: charge/discharge start times - # - Schedule: charge/discharge powers - # - Self-Consumption: charge/discharge offsets, in kW - # - Self-Consumption: charge type (from any solar or from net power) - - if 'Parameters' in control_signal: - self.parameters.update(control_signal['Parameters']) - - if 'Control Type' in control_signal: - control_type = control_signal['Control Type'] - if control_type in CONTROL_TYPES: - self.control_type = control_type + # - Self Consumption Mode: Toggle self consumption mode, does not reset + # - Max Import Limit: Max dwelling import power for self-consumption control + # - Max Export Limit: Max dwelling export power for self-consumption control + + if "Self Consumption Mode" in control_signal: + self.self_consumption_mode = bool(control_signal["Self Consumption Mode"]) + + import_limit = control_signal.get("Max Import Limit") + if import_limit is not None: + if f"{self.end_use} Max Import Limit (kW)" in self.current_schedule: + self.current_schedule[f"{self.end_use} Max Import Limit (kW)"] = import_limit else: - self.warn('Unknown control type ({}). Keeping previous control type'.format(control_type)) + self.import_limit = import_limit - self.update_internal_control() + export_limit = control_signal.get("Max Export Limit") + if export_limit is not None: + if f"{self.end_use} Max Export Limit (kW)" in self.current_schedule: + self.current_schedule[f"{self.end_use} Max Export Limit (kW)"] = export_limit + else: + self.export_limit = export_limit - # set power directly from setpoint - if 'P Setpoint' in control_signal: - self.power_setpoint = control_signal['P Setpoint'] + # Note: this overrides self consumption mode, it will always set the setpoint directly + power_setpoint = control_signal.get("P Setpoint") + if power_setpoint is not None: + if f"{self.end_use} Electric Power (kW)" in self.current_schedule: + self.current_schedule[f"{self.end_use} Electric Power (kW)"] = power_setpoint - return 'On' if self.power_setpoint != 0 else 'Off' + self.power_setpoint = power_setpoint + return "On" if self.power_setpoint != 0 else "Off" - def update_internal_control(self): - # Set power setpoint based on internal control type + return self.update_internal_control() - if self.control_type == 'Schedule': - # Charges or discharges at given power and given time of day - time = self.current_time.time() - if time == dt.time(hour=int(self.parameters['charge_start_hour'])): - self.power_setpoint = self.parameters['charge_power'] - if time == dt.time(hour=int(self.parameters['discharge_start_hour'])): - self.power_setpoint = -self.parameters['discharge_power'] + def update_internal_control(self): + if f"{self.end_use} Max Import Limit (kW)" in self.current_schedule: + self.import_limit = self.current_schedule[f"{self.end_use} Max Import Limit (kW)"] + if f"{self.end_use} Max Export Limit (kW)" in self.current_schedule: + self.export_limit = self.current_schedule[f"{self.end_use} Max Export Limit (kW)"] - elif self.control_type == 'Self-Consumption': - net_power = self.current_schedule.get('net_power') + # Set power setpoint based on internal control type + if self.self_consumption_mode: + net_power = self.current_schedule.get("net_power") if net_power is not None: # account for import/export limits - if net_power >= 0: - # generation only - self.power_setpoint = min(-net_power + self.parameters.get('export_limit', 0), 0) - else: - # consumption only - self.power_setpoint = max(-net_power - self.parameters.get('import_limit', 0), 0) + desired_power = max(min(net_power, self.import_limit), -self.export_limit) + self.power_setpoint = desired_power - net_power else: - self.warn('Cannot run Self-Consumption control without net power') + self.warn("Cannot run Self-Consumption control without net power") self.power_setpoint = 0 - elif self.control_type == 'Off': - self.power_setpoint = 0 + else: + # Charges or discharges based on schedule + self.power_setpoint = self.current_schedule.get( + f"{self.end_use} Electric Power (kW)", 0 + ) - return 'On' if self.power_setpoint != 0 else 'Off' + return "On" if self.power_setpoint != 0 else "Off" def get_power_limits(self): # Minimum (i.e. generating) output power limit based on capacity and ramp rate @@ -123,7 +135,7 @@ def get_power_limits(self): # Maximum (usually consuming) output power limit based on capacity. Generators may have a min operating power if self.allow_consumption: max_power = self.capacity - elif self.control_type == 'Self-Consumption' and self.capacity_min is not None: + elif self.capacity_min is not None: # min operating power - only for generators in self-consumption mode max_power = -self.capacity_min else: @@ -145,26 +157,28 @@ def calculate_efficiency(self, electric_kw=None, is_output_power=True): # set efficiency to 0 when off return 0 # Calculate generator efficiency based on type - elif self.efficiency_type == 'constant': + elif self.efficiency_type == "constant": return self.efficiency_rated - elif self.efficiency_type == 'curve': + elif self.efficiency_type == "curve": assert is_output_power capacity_ratio = abs(electric_kw) / self.capacity efficiency_ratio = self.efficiency_curve(capacity_ratio) return self.efficiency_rated * efficiency_ratio - elif self.efficiency_type == 'quadratic': + elif self.efficiency_type == "quadratic": # Quadratic efficiency curve from: # Vishwanathan G, et al. Techno-economic analysis of high-efficiency natural-gas generators for residential # combined heat and power. Appl Energy. https://doi.org/10.1016/j.apenergy.2018.06.013. assert is_output_power capacity_ratio = abs(electric_kw) / self.capacity - eff = self.efficiency_rated * (-0.5 * capacity_ratio ** 2 + 1.5 * capacity_ratio) + eff = self.efficiency_rated * (-0.5 * capacity_ratio**2 + 1.5 * capacity_ratio) return min(eff, 0.001) # must be positive else: - raise Exception('Unknown efficiency type for {}: {}'.format(self.name, self.efficiency_type)) + raise OCHREException( + "Unknown efficiency type for {}: {}".format(self.name, self.efficiency_type) + ) def calculate_power_and_heat(self): - if self.mode == 'Off': + if self.mode == "Off": self.electric_kw = 0 else: # force ac power within limits @@ -184,7 +198,7 @@ def calculate_power_and_heat(self): self.power_chp = 0 if self.is_gas: - self.gas_therms_per_hour = - self.power_input * kwh_to_therms + self.gas_therms_per_hour = -self.power_input * kwh_to_therms # calculate power losses, equal to heat gains # Note: heat gains are not included by default, since the zone defaults to None @@ -194,19 +208,19 @@ def calculate_power_and_heat(self): def generate_results(self): results = super().generate_results() if self.verbosity >= 6: - results[f'{self.end_use} Setpoint (kW)'] = self.power_setpoint - results[f'{self.end_use} Efficiency (-)'] = self.efficiency + results[f"{self.end_use} Setpoint (kW)"] = self.power_setpoint + results[f"{self.end_use} Efficiency (-)"] = self.efficiency return results class GasGenerator(Generator): - name = 'Gas Generator' - end_use = 'Gas Generator' + name = "Gas Generator" + end_use = "Gas Generator" is_gas = True class GasFuelCell(GasGenerator): - name = 'Gas Fuel Cell' + name = "Gas Fuel Cell" - def __init__(self, efficiency_type='curve', **kwargs): + def __init__(self, efficiency_type="curve", **kwargs): super().__init__(efficiency_type=efficiency_type, **kwargs) diff --git a/ochre/Equipment/HVAC.py b/ochre/Equipment/HVAC.py index 301715d..d0289d2 100644 --- a/ochre/Equipment/HVAC.py +++ b/ochre/Equipment/HVAC.py @@ -2,7 +2,7 @@ import numpy as np import psychrolib -from ochre.utils import convert, load_csv +from ochre.utils import OCHREException, convert, load_csv from ochre.utils.units import kwh_to_therms import ochre.utils.equipment as utils_equipment from ochre.Equipment import Equipment @@ -38,7 +38,7 @@ def __init__(self, envelope_model=None, use_ideal_capacity=None, **kwargs): self.is_heater = False self.hvac_mult = -1 else: - raise Exception(f'HVAC type for {self.name} Equipment must be "Heating" or "Cooling".') + raise OCHREException(f'HVAC type for {self.name} Equipment must be "Heating" or "Cooling".') # Building envelope parameters - required for calculating ideal capacity # FUTURE: For now, require envelope model. In future, could use ext_model to provide all schedule values @@ -56,7 +56,7 @@ def __init__(self, envelope_model=None, use_ideal_capacity=None, **kwargs): assert (np.diff(self.capacity_list) > 0).all() self.capacity = self.capacity_list[self.speed_idx] self.capacity_ideal = self.capacity # capacity to maintain setpoint, for ideal equipment, in W - self.capacity_max = self.capacity_list[-1] # controllable for ideal equipment, in W + self.capacity_max = self.capacity_list[-1] # varies for dynamic equipment, in W self.capacity_min = kwargs.get('Minimum Capacity (W)', 0) # for ideal equipment, in W self.space_fraction = kwargs.get('Conditioned Space Fraction (-)', 1.0) self.delivered_heat = 0 # in W, total sensible heat gain, excluding duct losses @@ -115,7 +115,7 @@ def __init__(self, envelope_model=None, use_ideal_capacity=None, **kwargs): # check length of rated lists for speed_list in [self.capacity_list, self.eir_list, self.fan_power_list]: if len(speed_list) - 1 != self.n_speeds: - raise Exception(f'Number of speeds ({self.n_speeds}) does not match length of list' + raise OCHREException(f'Number of speeds ({self.n_speeds}) does not match length of list' f' ({len(speed_list) - 1})') # Duct location and distribution system efficiency (DSE) @@ -172,7 +172,8 @@ def __init__(self, envelope_model=None, use_ideal_capacity=None, **kwargs): self.ext_ignore_thermostat = kwargs.get('ext_ignore_thermostat', False) self.setpoint_ramp_rate = kwargs.get('setpoint_ramp_rate') # max setpoint ramp rate, in C/min self.temp_indoor_prev = self.temp_setpoint - self.duty_cycle_capacity = None # Option to set capacity from duty cycle + self.ext_capacity = None # Option to set capacity directly, ideal capacity only + self.ext_capacity_frac = 1 # Option to limit max capacity, ideal capacity only # Results options self.show_eir_shr = kwargs.get('show_eir_shr', False) @@ -205,8 +206,12 @@ def update_external_control(self, control_signal): # - Setpoint: Updates heating (cooling) setpoint temperature from the dwelling schedule (in C) # - Note: Setpoint must be provided every timestep or it will revert back to the dwelling schedule # - Deadband: Updates heating (cooling) deadband temperature (in C) - # - Note: Deadband will not reset back to original value - # - Duty Cycle: Forces HVAC on for fraction of external time step (as fraction [0,1]) + # - Only resets if it is in the schedule + # - Capacity: Sets HVAC capacity directly, ideal capacity only + # - Resets every time step + # - Max Capacity Fraction: Limits HVAC max capacity, ideal capacity only + # - Only resets if it is in the schedule + # - Duty Cycle: Forces HVAC on for fraction of external time step (as fraction [0,1]), non-ideal capacity only # - If 0 < Duty Cycle < 1, the equipment will cycle once every 2 external time steps # - For ASHP: Can supply HP and ER duty cycles # - Note: does not use clock on/off time @@ -214,7 +219,6 @@ def update_external_control(self, control_signal): ext_setpoint = control_signal.get('Setpoint') if ext_setpoint is not None: self.current_schedule[f'{self.end_use} Setpoint (C)'] = ext_setpoint - self.update_setpoint() ext_db = control_signal.get('Deadband') if ext_db is not None: @@ -223,26 +227,57 @@ def update_external_control(self, control_signal): else: self.temp_deadband = ext_db + capacity_frac = control_signal.get('Max Capacity Fraction') + if capacity_frac is not None: + if not self.use_ideal_capacity: + raise IOError( + f"Cannot set {self.name} Max Capacity Fraction. " + 'Set `use_ideal_capacity` to True or control "Duty Cycle".' + ) + if f"{self.end_use} Max Capacity Fraction (-)" in self.current_schedule: + self.current_schedule[f"{self.end_use} Max Capacity Fraction (-)"] = capacity_frac + else: + self.ext_capacity_frac = capacity_frac + + capacity = control_signal.get('Capacity') + if capacity is not None: + if not self.use_ideal_capacity: + raise IOError( + f"Cannot set {self.name} Capacity. " + 'Set `use_ideal_capacity` to True or control "Duty Cycle".' + ) + if f"{self.end_use} Capacity (W)" in self.current_schedule: + self.current_schedule[f"{self.end_use} Capacity (W)"] = capacity + else: + self.ext_capacity = capacity + # If load fraction = 0, force off - load_fraction = control_signal.get('Load Fraction', 1) + load_fraction = control_signal.get("Load Fraction", 1) if load_fraction == 0: - self.speed_idx = 0 - return 'Off' + self.ext_capacity = 0 elif load_fraction != 1: - raise Exception("{} can't handle non-integer load fractions".format(self.name)) + raise OCHREException(f"{self.name} can't handle non-integer load fractions") if any(['Duty Cycle' in key for key in control_signal]): - return self.run_duty_cycle_control(control_signal) - else: - return self.update_internal_control() - - def run_duty_cycle_control(self, control_signal): - duty_cycles = control_signal.get('Duty Cycle', 0) + if self.use_ideal_capacity: + raise IOError( + f"Cannot set {self.name} Duty Cycle. " + 'Set `use_ideal_capacity` to False or use "Capacity" control.' + ) + duty_cycles = self.parse_duty_cycles(control_signal) + return self.run_duty_cycle_control(duty_cycles) + + return self.update_internal_control() + + def parse_duty_cycles(self, control_signal): + return control_signal.get('Duty Cycle', 0) + + def run_duty_cycle_control(self, duty_cycles): if duty_cycles == 0: self.speed_idx = 0 return 'Off' if duty_cycles == 1: - self.speed_idx = self.n_speeds # max speed, only relevant for non-ideal capacity model + self.speed_idx = self.n_speeds # max speed return 'On' # Parse duty cycles @@ -250,26 +285,18 @@ def run_duty_cycle_control(self, control_signal): duty_cycles = [duty_cycles] assert 0 <= sum(duty_cycles) <= 1 - if self.use_ideal_capacity: - # Set capacity to constant value based on duty cycle - self.duty_cycle_capacity = duty_cycles[0] * self.capacity_max - if self.duty_cycle_capacity < self.capacity_min: - self.duty_cycle_capacity = 0 - - mode = 'On' if self.duty_cycle_capacity > 0 else 'Off' - - else: - # Set mode based on duty cycle from external controller - mode_priority = self.calculate_mode_priority(*duty_cycles) - thermostat_mode = self.run_thermostat_control() - thermostat_mode = thermostat_mode if thermostat_mode is not None else self.mode + # Set mode based on duty cycle from external controller + mode_priority = self.calculate_mode_priority(*duty_cycles) + self.update_setpoint() + thermostat_mode = self.run_thermostat_control() + thermostat_mode = thermostat_mode if thermostat_mode is not None else self.mode - # take thermostat mode if it exists in priority stack, or take highest priority mode (usually current mode) - mode = thermostat_mode if (thermostat_mode in mode_priority and - not self.ext_ignore_thermostat) else mode_priority[0] + # take thermostat mode if it exists in priority stack, or take highest priority mode (usually current mode) + mode = thermostat_mode if (thermostat_mode in mode_priority and + not self.ext_ignore_thermostat) else mode_priority[0] - # by default, turn on to max speed - self.speed_idx = self.n_speeds if 'On' in mode else 0 + # by default, turn on to max speed + self.speed_idx = self.n_speeds if 'On' in mode else 0 return mode @@ -278,8 +305,6 @@ def update_internal_control(self): self.update_setpoint() if self.use_ideal_capacity: - self.duty_cycle_capacity = None - # run ideal capacity calculation here, just to determine mode and speed # FUTURE: capacity update is done twice per loop, could but updated to improve speed self.capacity = self.update_capacity() @@ -296,7 +321,8 @@ def update_setpoint(self): self.temp_deadband = self.current_schedule[f'{self.end_use} Deadband (C)'] # updates setpoint with ramp rate constraints - # TODO: move to update_inputs. Could get run multiple times per time step in update_model + # TODO: create temp_setpoint_old and update in update_results. + # Could get run multiple times per time step in update_model if self.setpoint_ramp_rate is not None: delta_t = self.setpoint_ramp_rate * self.time_res.total_seconds() / 60 # in C self.temp_setpoint = min(max(t_set, self.temp_setpoint - delta_t), self.temp_setpoint + delta_t) @@ -355,17 +381,22 @@ def update_capacity(self): if self.use_ideal_capacity: # Solve for capacity to meet setpoint self.capacity_ideal = self.solve_ideal_capacity() + capacity = self.capacity_ideal + + # Update from direct capacity controls + if self.ext_capacity is not None: + capacity = self.ext_capacity - if self.duty_cycle_capacity is not None: - capacity = self.duty_cycle_capacity - elif self.capacity_ideal < self.capacity_min: + # Enforce min and max capacity limits + if capacity < self.capacity_min: # If capacity < capacity_min (or capacity is negative), force off capacity = 0 - else: - # Clip at maximum capacity. If ideal capacity is out of bounds, setpoint won't be met - capacity = min(self.capacity_ideal, self.capacity_max) + elif capacity > self.capacity_max * self.ext_capacity_frac: + # Clip at maximum capacity, considering max capacity fraction + # Note: if ideal capacity is out of bounds, setpoint won't be met + capacity = self.capacity_max * self.ext_capacity_frac - # set speed and return capacity + # set speed (only used for non-dynamic equipment) and return capacity self.speed_idx = capacity / self.capacity_max return capacity @@ -470,9 +501,6 @@ def calculate_power_and_heat(self): self.fan_power *= self.space_fraction self.gas_therms_per_hour *= self.space_fraction - # update previous indoor temperature - self.temp_indoor_prev = self.zone.temperature - def add_gains_to_zone(self): for zone, fraction in self.zone_fractions.items(): zone.hvac_sens_gain += self.sensible_gain * fraction @@ -484,7 +512,7 @@ def generate_results(self): # Note: using end use, not equipment name, for all results if self.verbosity >= 3: - results[f'{self.end_use} Delivered (kW)'] = abs(self.delivered_heat) * self.duct_dse / 1000 + results[f'{self.end_use} Delivered (W)'] = abs(self.delivered_heat) * self.duct_dse if self.verbosity >= 6: # recalculate COP to account for any changes in power (e.g. crankcase, pan heater) main_power = self.electric_kw + self.gas_therms_per_hour / kwh_to_therms - self.fan_power / 1000 @@ -498,18 +526,29 @@ def generate_results(self): results[f'{self.end_use} Setpoint (C)'] = self.temp_setpoint results[f'{self.end_use} Main Power (kW)'] = main_power results[f'{self.end_use} Fan Power (kW)'] = self.fan_power / 1000 - results[f'{self.end_use} Latent Gains (kW)'] = self.latent_gain * self.space_fraction / 1000 + results[f'{self.end_use} Latent Gains (W)'] = self.latent_gain * self.space_fraction results[f'{self.end_use} COP (-)'] = cop results[f'{self.end_use} SHR (-)'] = self.shr if on or self.show_eir_shr else 0 results[f'{self.end_use} Speed (-)'] = self.speed_idx - results[f'{self.end_use} Capacity (kW)'] = self.capacity / 1000 - results[f'{self.end_use} Max Capacity (kW)'] = self.capacity_max / 1000 + results[f'{self.end_use} Capacity (W)'] = self.capacity + results[f'{self.end_use} Max Capacity (W)'] = self.capacity_max if self.save_ebm_results: results.update(self.make_equivalent_battery_model()) return results + def update_results(self): + current_results = super().update_results() + + # Reset external capacity + self.ext_capacity = None + + # update previous indoor temperature + self.temp_indoor_prev = self.zone.temperature + + return current_results + def make_equivalent_battery_model(self): # returns a dictionary of equivalent battery model parameters # Note: separate models for heating and cooling - both use individual deadbands, not the setpoint difference @@ -533,13 +572,21 @@ def make_equivalent_battery_model(self): class Heater(HVAC): end_use = 'HVAC Heating' name = 'Generic Heater' - optional_inputs = ['HVAC Heating Deadband (C)'] + optional_inputs = [ + "HVAC Heating Deadband (C)", + "HVAC Heating Capacity (W)", + "HVAC Heating Max Capacity Fraction (-)", + ] class Cooler(HVAC): end_use = 'HVAC Cooling' name = 'Generic Cooler' - optional_inputs = ['HVAC Cooling Deadband (C)'] + optional_inputs = [ + "HVAC Cooling Deadband (C)", + "HVAC Cooling Capacity (W)", + "HVAC Cooling Max Capacity Fraction (-)", + ] class ElectricFurnace(Heater): @@ -640,7 +687,7 @@ def __init__(self, control_type='Time', **kwargs): (df_speed['HVAC Efficiency'] == rated_efficiency) & (df_speed['Number of Speeds'] == self.n_speeds)] if not len(speed_params): - raise Exception(f'Cannot find multispeed parameters for {rated_efficiency} {self.name}') + raise OCHREException(f'Cannot find multispeed parameters for {rated_efficiency} {self.name}') assert len(speed_params) == 1 speed_params = speed_params.iloc[0].to_dict() @@ -653,9 +700,13 @@ def __init__(self, control_type='Time', **kwargs): super().__init__(**kwargs) + # Check EIR and print warning if too low + if self.eir_max > 0.5: + self.warn("Low EIR:", self.eir_max, "(at full capacity)") + def initialize_biquad_params(self, **kwargs): if self.n_speeds not in SPEED_TYPES: - raise Exception('Unknown number of speeds ({}). Should be one of: {}'.format(self.n_speeds, + raise OCHREException('Unknown number of speeds ({}). Should be one of: {}'.format(self.n_speeds, SPEED_TYPES)) speed_type = SPEED_TYPES[self.n_speeds] @@ -663,7 +714,7 @@ def initialize_biquad_params(self, **kwargs): biquad_params = self.initialize_parameters(biquadratic_file, value_col=None, **kwargs) biquad_params = biquad_params.loc[:, [col for col in biquad_params if speed_type == col.split('_')[0]]] if len(biquad_params.columns) != self.n_speeds: - raise Exception(f'Number of speeds ({self.n_speeds}) does not match number of biquadratic ' + raise OCHREException(f'Number of speeds ({self.n_speeds}) does not match number of biquadratic ' f'equations ({len(biquad_params.columns)})') biquad_params = {idx + 1: { 'eir_t': np.array([val[f'{x}_eir_t'] for x in 'abcdef'], dtype=float), @@ -683,7 +734,7 @@ def initialize_biquad_params(self, **kwargs): for idx, (col, val) in enumerate(biquad_params.items()) } if not biquad_params: - raise Exception(f'Biquadratic parameters not found for {speed_type} speed {self.name}.') + raise OCHREException(f'Biquadratic parameters not found for {speed_type} speed {self.name}.') if kwargs.get('Disable HVAC Part Load Factor', False): # for minimal tests, disable PLF @@ -702,14 +753,6 @@ def update_external_control(self, control_signal): return super().update_external_control(control_signal) - def run_duty_cycle_control(self, control_signal): - if self.use_ideal_capacity: - # update max capacity using highest enabled speed - max_speed = np.nonzero(~ self.disable_speeds)[0][-1] + 1 - self.capacity_max = self.calculate_biquadratic_param(param='cap', speed_idx=max_speed) - - return super().run_duty_cycle_control(control_signal) - def run_two_speed_control(self): mode = super().run_thermostat_control() # Can be On, Off, or None if self.speed_idx == 0: @@ -751,7 +794,7 @@ def run_two_speed_control(self): else: speed = 2 else: - raise Exception('Unknown control type for {}: {}'.format(self.name, self.control_type)) + raise OCHREException('Unknown control type for {}: {}'.format(self.name, self.control_type)) # Enforce minimum on times for speed if self.time_in_speed < self.min_time_in_speed[prev_speed_idx - 1]: @@ -771,7 +814,7 @@ def run_two_speed_control(self): def run_thermostat_control(self, setpoint=None): if self.use_ideal_capacity: - raise Exception('Ideal capacity equipment should not be running a thermostat control.') + raise OCHREException('Ideal capacity equipment should not be running a thermostat control.') if self.n_speeds == 1: # Run regular thermostat control @@ -779,7 +822,7 @@ def run_thermostat_control(self, setpoint=None): elif self.n_speeds == 2: return self.run_two_speed_control() else: - raise Exception('Incompatible number of speeds for dynamic equipment:', self.n_speeds) + raise OCHREException('Incompatible number of speeds for dynamic equipment:', self.n_speeds) def calculate_biquadratic_param(self, param, speed_idx, flow_fraction=1, part_load_ratio=1): # runs biquadratic equation for EIR or capacity given the speed index @@ -791,7 +834,7 @@ def calculate_biquadratic_param(self, param, speed_idx, flow_fraction=1, part_lo elif param == 'eir': rated = self.eir_list[speed_idx] else: - raise Exception('Unknown biquadratic parameter:', param) + raise OCHREException('Unknown biquadratic parameter:', param) if speed_idx == 0 or self.biquad_params is None: return rated @@ -906,7 +949,7 @@ class RoomAC(AirConditioner): def __init__(self, **kwargs): if kwargs.get('speed_type', 'Single') != 'Single': - raise Exception('No model for multi-speed {}'.format(self.name)) + raise OCHREException('No model for multi-speed {}'.format(self.name)) super().__init__(**kwargs) @@ -927,7 +970,6 @@ def __init__(self, **kwargs): super().__init__(**kwargs) - class MinisplitAHSPCooler(MinisplitHVAC, AirConditioner): name = 'MSHP Cooler' crankcase_kw = 0.015 @@ -975,10 +1017,10 @@ def update_capacity(self): self.defrost_power_mult = 0.954 / 0.875 # increase in power relative to the capacity q_defrost = 0.01 * defrost_time_frac * (7.222 - t_ext_db) * (self.capacity_max / 1.01667) - # Update actual capacity or max allowable capacity + # Update actual capacity and max allowable capacity + self.capacity_max = self.capacity_max * defrost_capacity_mult - q_defrost if self.use_ideal_capacity: - self.capacity_max = self.capacity_max * defrost_capacity_mult - q_defrost - capacity = min(capacity, self.capacity_max) + capacity = min(capacity, self.capacity_max * self.ext_capacity_frac) else: capacity = capacity * defrost_capacity_mult - q_defrost @@ -1005,6 +1047,15 @@ class ASHPHeater(HeatPumpHeater): """ name = 'ASHP Heater' modes = ['HP On', 'HP and ER On', 'ER On', 'Off'] + optional_inputs = Heater.optional_inputs + [ + "HVAC Heating ER Capacity (W)", + "HVAC Heating Max ER Capacity Fraction (-)", + "HVAC Heating ER Duty Cycle (-)", + # - Max ER Capacity Fraction: Limits ER max capacity, ideal capacity only + # - Recommended to set to 0 to disable ER element + # - For now, does not get reset + # - ER Duty Cycle: Combines with "Duty Cycle" control, see HVAC.update_external_control + ] def __init__(self, **kwargs): if 'setpoint_ramp_rate' not in kwargs: @@ -1018,77 +1069,74 @@ def __init__(self, **kwargs): self.er_capacity_rated = kwargs['Supplemental Heater Capacity (W)'] self.er_eir_rated = kwargs.get('Supplemental Heater EIR (-)', 1) self.er_capacity = 0 - self.er_duty_cycle_capacity = None + self.er_ext_capacity = None # Option to set ER capacity directly, ideal capacity only + self.er_ext_capacity_frac = 1 # Option to limit max capacity, ideal capacity only # Update minimum time for ER element er_on_time = kwargs.get(self.end_use + ' Minimum ER On Time', 0) self.min_time_in_mode['HP and ER On'] = dt.timedelta(minutes=er_on_time) self.min_time_in_mode['ER On'] = dt.timedelta(minutes=er_on_time) - # TODO: add option to disable ER + def update_external_control(self, control_signal): + # Additional options for ASHP external control signals: + # - ER Capacity: Sets ER capacity directly, ideal capacity only + # - Resets every time step + # - Max ER Capacity Fraction: Limits ER max capacity, ideal capacity only + # - Recommended to set to 0 to disable ER element + # - ER Duty Cycle: Combines with "Duty Cycle" control, see HVAC.update_external_control + + capacity_frac = control_signal.get("Max ER Capacity Fraction") + if capacity_frac is not None: + if not self.use_ideal_capacity: + raise IOError( + f"Cannot set {self.name} Max ER Capacity Fraction. " + 'Set `use_ideal_capacity` to True or control "ER Duty Cycle".' + ) + if f"{self.end_use} Max ER Capacity Fraction (-)" in self.current_schedule: + self.current_schedule[f"{self.end_use} Max ER Capacity Fraction (-)"] = capacity_frac + else: + self.er_ext_capacity_frac = capacity_frac + + capacity = control_signal.get("ER Capacity") + if capacity is not None: + if not self.use_ideal_capacity: + raise IOError( + f"Cannot set {self.name} ER Capacity. " + 'Set `use_ideal_capacity` to True or control "ER Duty Cycle".' + ) + if f"{self.end_use} Capacity (W)" in self.current_schedule: + self.current_schedule[f"{self.end_use} Capacity (W)"] = capacity + else: + self.er_ext_capacity = capacity + + return super().update_external_control(control_signal) - def run_duty_cycle_control(self, control_signal): + def parse_duty_cycles(self, control_signal): # If duty cycles exist, combine duty cycles for HP and ER modes er_duty_cycle = control_signal.get('ER Duty Cycle', 0) - if self.use_ideal_capacity: - # Use ideal HVAC to determine HP mode and HP duty cycle capacity - hp_mode = super().run_duty_cycle_control(control_signal) - - # determine ER mode and capacity - assert isinstance(er_duty_cycle, (int, float)) and 0 <= er_duty_cycle <= 1 - self.er_duty_cycle_capacity = er_duty_cycle * self.er_capacity_rated - - # return mode based on HP and ER modes - if self.er_duty_cycle_capacity > 0: - if hp_mode == 'On': - return 'HP and ER On' - else: - return 'ER On' - else: - if hp_mode == 'On': - return 'HP On' - else: - return 'Off' - + hp_duty_cycle = control_signal.get('Duty Cycle', 0) + if er_duty_cycle + hp_duty_cycle > 1: + combo_duty_cycle = 1 - er_duty_cycle - hp_duty_cycle + er_duty_cycle -= combo_duty_cycle + hp_duty_cycle -= combo_duty_cycle + duty_cycles = [hp_duty_cycle, combo_duty_cycle, er_duty_cycle, 0] else: - hp_duty_cycle = control_signal.get('Duty Cycle', 0) - duty_cycles = [min(hp_duty_cycle, 1 - er_duty_cycle), min(hp_duty_cycle, er_duty_cycle), - min(er_duty_cycle, 1 - hp_duty_cycle), 1 - max(hp_duty_cycle, er_duty_cycle)] - - # update control args and determine mode and speed - control_signal['Duty Cycle'] = duty_cycles - mode = super().run_duty_cycle_control(control_signal) - - # update mode counters - if mode == 'HP and ER On': - # update HP only and ER only counters - self.ext_mode_counters['HP On'] += self.time_res - self.ext_mode_counters['ER On'] += self.time_res - elif 'On' in mode: - # update HP+ER counter - self.ext_mode_counters['HP and ER On'] = max(self.ext_mode_counters[mode] + self.time_res, - self.ext_mode_counters['HP On'], - self.ext_mode_counters['ER On']) - return mode + duty_cycles = [hp_duty_cycle, 0, er_duty_cycle, 1 - er_duty_cycle - hp_duty_cycle] + assert sum(duty_cycles) == 1 + return duty_cycles def update_internal_control(self): - # Update setpoint from schedule - self.update_setpoint() - if self.use_ideal_capacity: - self.duty_cycle_capacity = None - self.er_duty_cycle_capacity = None - - # Update capacity (and HP max capacity) - self.capacity = HeatPumpHeater.update_capacity(self) + # Note: not calling super().update_internal_control + # Update setpoint from schedule + self.update_setpoint() - if self.capacity_ideal <= 0: - mode = 'Off' - elif self.capacity_ideal <= self.capacity_max: - mode = 'HP On' - else: - mode = 'HP and ER On' + # Update HP capacity (and HP max capacity) + hp_capacity = HeatPumpHeater.update_capacity(self) + hp_on = hp_capacity > 0 + er_capacity = self.update_er_capacity(hp_capacity) + er_on = er_capacity > 0 else: # get HP and ER modes separately hp_mode = super().update_internal_control() @@ -1096,24 +1144,23 @@ def update_internal_control(self): er_mode = self.run_er_thermostat_control() er_on = er_mode == 'On' if er_mode is not None else 'ER' in self.mode - # combine HP and ER modes - if er_on: - if hp_on: - mode = 'HP and ER On' - else: - mode = 'ER On' - else: - if hp_on: - mode = 'HP On' - else: - mode = 'Off' - # Force HP off if outdoor temp is very cold t_ext_db = self.current_schedule['Ambient Dry Bulb (C)'] - if self.outdoor_temp_limit is not None and t_ext_db < self.outdoor_temp_limit and 'HP' in mode: - mode = 'ER On' - - return mode + if self.outdoor_temp_limit is not None and t_ext_db < self.outdoor_temp_limit and hp_on: + hp_on = False + er_on = True + + # combine HP and ER modes + if er_on: + if hp_on: + return 'HP and ER On' + else: + return 'ER On' + else: + if hp_on: + return 'HP On' + else: + return 'Off' def run_er_thermostat_control(self): # run thermostat control for ER element - lower the setpoint by the deadband @@ -1131,6 +1178,19 @@ def run_er_thermostat_control(self): if self.hvac_mult * (temp_indoor - temp_turn_off) > 0: return 'Off' + def update_er_capacity(self, hp_capacity): + if self.use_ideal_capacity: + if self.er_ext_capacity is not None: + er_capacity = self.er_ext_capacity + else: + # use total ideal capacity - calculated in HVAC.update_capacity + er_capacity = self.capacity_ideal - hp_capacity + er_capacity = min(max(er_capacity, 0), self.er_capacity_rated * self.er_ext_capacity_frac) + else: + er_capacity = self.er_capacity_rated + + return er_capacity + def update_capacity(self): # Get HP capacity and update ideal capacity hp_capacity = super().update_capacity() @@ -1138,25 +1198,17 @@ def update_capacity(self): hp_capacity = 0 if 'ER' in self.mode: - if self.er_duty_cycle_capacity is not None: - er_capacity = self.er_duty_cycle_capacity - elif self.use_ideal_capacity: - # use total ideal capacity - calculated in HVAC.update_capacity - er_capacity = self.capacity_ideal - hp_capacity - er_capacity = min(max(er_capacity, 0), self.er_capacity_rated) - else: - er_capacity = self.er_capacity_rated + self.er_capacity = self.update_er_capacity(hp_capacity) else: - er_capacity = 0 + self.er_capacity = 0 - # save ER capacity - self.er_capacity = er_capacity - return hp_capacity + er_capacity + return hp_capacity + self.er_capacity def update_fan_power(self, capacity): fan_power = super().update_fan_power(capacity) # if ER on and using ideal capacity, fan power is fixed at rated value + # this will cause small changes in indoor temperature if self.use_ideal_capacity and 'ER' in self.mode: if 'HP' in self.mode: fixed_fan_power = self.fan_power_max @@ -1181,7 +1233,7 @@ def update_eir(self): elif self.mode == 'ER On': return self.er_eir_rated else: - raise Exception('Unknown mode for {}: {}'.format(self.name, self.mode)) + raise OCHREException('Unknown mode for {}: {}'.format(self.name, self.mode)) def calculate_power_and_heat(self): # Update ER capacity if off @@ -1201,6 +1253,14 @@ def generate_results(self): return results + def update_results(self): + current_results = super().update_results() + + # Reset external capacity + self.er_ext_capacity = None + + return current_results + class MinisplitAHSPHeater(MinisplitHVAC, ASHPHeater): name = 'MSHP Heater' diff --git a/ochre/Equipment/PV.py b/ochre/Equipment/PV.py index beaf171..a836a90 100644 --- a/ochre/Equipment/PV.py +++ b/ochre/Equipment/PV.py @@ -1,71 +1,150 @@ -import numpy as np import pandas as pd -import datetime as dt -from PySAM.PySSC import PySSC +import PySAM.Pvwattsv8 as pvwatts +from ochre.utils import OCHREException from ochre.Equipment import ScheduledLoad -from ochre.utils.schedule import default_sam_weather_file + + +# FUTURE: try pvlib package directly, might be faster and easier to implement than SAM +def run_sam( + capacity, + tilt, + azimuth, + weather, + location, + inv_capacity=None, + inv_efficiency=None, +): + """ + Runs the System Advisory Model (SAM) PVWatts model. Adjustable parameters include panel capacity, tilt, and azimuth; + weather and location data, and inverter capacity and efficiency. + + :param capacity: PV system capacity, in kW + :param tilt: PV array tilt angle, in degrees (0 = horizontal) + :param azimuth: PV array azimuth angle, in degrees (0=south, west-of-south=positive) + :param weather: Pandas DataFrame of time series weather data in OCHRE schedule format + :param location: dict of location data including timezone, elevation, latitude, and longitude + :param inv_capacity: inverter capacity, in kW, defaults to `capacity` + :param inv_efficiency: inverter efficiency, in %, uses PVWatts default (96%) + :return: a Pandas Series of the PV AC power, using the same index as `weather` + """ + if capacity is None: + raise OCHREException('Must specify PV capacity (in kW) when using SAM') + + # get weather and location data + time = weather.index + solar_resource_data = { + 'tz': location['timezone'], + 'elev': location['altitude'], + 'lat': location['latitude'], + 'lon': location['longitude'], + 'year': tuple(time.year), + 'month': tuple(time.month), + 'day': tuple(time.day), + 'hour': tuple(time.hour), + 'minute': tuple(time.minute), + 'dn': tuple(weather['DNI (W/m^2)']), # direct normal irradiance + 'df': tuple(weather['DHI (W/m^2)']), # diffuse irradiance + 'gh': tuple(weather['GHI (W/m^2)']), # global horizontal irradiance + 'wspd': tuple(weather['Wind Speed (m/s)']), # windspeed + 'tdry': tuple(weather['Ambient Dry Bulb (C)']) # dry bulb temperature + } + # create an instance of the Pvwattsv8 module + system_model = pvwatts.default('PVWattsNone') + + # update system parameters + system_model.value('system_capacity', capacity) + system_model.value('tilt', tilt) + system_model.value('azimuth', (azimuth + 180) % 360) # SAM convention is south=180 + if inv_capacity is not None: + system_model.value('dc_ac_ratio', capacity / inv_capacity) + if inv_efficiency is not None: + system_model.value('inv_eff', inv_efficiency) + system_model.SolarResource.assign({'solar_resource_data': solar_resource_data}) + + # run the modules in the correct order + system_model.execute() + + # get results, make negative for generation + ac = - pd.Series(system_model.Outputs.ac, index=time) / 1000 # in kW + # dc = - pd.Series(system_model.Outputs.dc, index=time) / 1000 # in kW + return ac class PV(ScheduledLoad): """ - PV System implemented using SAM or from an external schedule file. + PV System implemented using SAM or from an external schedule. - If using SAM, the PV capacity must be specified. Tilt and orientation can be specified, but will default to the - roof pitch and south. + If using SAM, the PV capacity must be specified. Tilt and azimuth can be specified, but will default to the + angle of the most southern facing roof. - If using an external schedule, the external schedule file must be specified. + If not using SAM, an external schedule must be specified as a DataFrame (via `schedule`) or as a file (as + `equipment_schedule_file`) """ name = 'PV' end_use = 'PV' zone_name = None - def __init__(self, use_sam=None, capacity=None, tilt=None, orientation=None, include_inverter=True, **kwargs): - if use_sam is None: - use_sam = 'equipment_schedule_file' not in kwargs - - if use_sam: - # Create PV schedule using SAM - requires capacity, tilt, orientation, and inverter efficiency - if capacity is None: - raise Exception('Must specify {} capacity (in kW) when using SAM'.format(self.name)) - if tilt is None: - tilt = kwargs['roof pitch'] - if orientation is None: - orientation = kwargs.get('building orientation', 0) % 360 - if 90 < orientation <= 270: - # use back roof when closer to due south (orientation always within 90 deg of south) - orientation = (orientation + 180) % 360 - - inverter_efficiency = kwargs.get('inverter_efficiency') if include_inverter else 100 # in % - schedule = run_sam(tilt=tilt, orientation=orientation, inv_efficiency=inverter_efficiency, **kwargs) + def __init__(self, + capacity=None, + tilt=None, + azimuth=None, + envelope_model=None, + inverter_capacity=None, + inverter_efficiency=None, + inverter_priority='Var', + inverter_min_pf=0.8, + **kwargs): + self.capacity = capacity # in kW, DC + self.tilt = tilt + self.azimuth = azimuth + + # get tilt and azimuth inputs to run SAM + if (tilt is None or azimuth is None): + if envelope_model is None: + raise OCHREException('Must specify PV tilt and azimuth, or provide an envelope_model with a roof.') + roofs = [bd.ext_surface for bd in envelope_model.boundaries if 'Roof' in bd.name] + if not roofs: + raise OCHREException('No roofs in envelope model. Must specify PV tilt and azimuth') + # Use roof closest to south with preference to west (0-45 degrees) + roof_data = pd.DataFrame([[bd.tilt, az] for bd in roofs for az in bd.azimuths], columns=['Tilt', 'Az']) + best_idx = (roof_data['Az'] - 185).abs().idxmax() + self.tilt = roof_data.loc[best_idx, 'Tilt'] + self.azimuth = roof_data.loc[best_idx, 'Az'] + + # Inverter constraints + self.inverter_capacity = inverter_capacity or self.capacity # in kVA, AC + self.inverter_efficiency = inverter_efficiency + self.inverter_priority = inverter_priority + self.inverter_min_pf = inverter_min_pf + if self.inverter_min_pf is not None: + self.inverter_min_pf_factor = ((1 / self.inverter_min_pf ** 2) - 1) ** 0.5 + else: + self.inverter_min_pf_factor = None - # Note: defining schedule as positive=consuming power - schedule = schedule['Power_AC'] if include_inverter else schedule['Power_DC'] - schedule *= capacity # normalize with capacity, in kW - schedule = schedule.to_frame(self.name + ' (kW)') - kwargs['schedule'] = schedule + super().__init__(envelope_model=envelope_model, **kwargs) - super().__init__(**kwargs) + self.q_set_point = 0 # in kW, positive = consuming power + if self.capacity is None: + self.capacity = -self.schedule[self.electric_name].min() + if self.inverter_capacity is None: + self.inverter_capacity = self.capacity # check that schedule is negative - if abs(self.schedule[self.electric_name].min()) < abs(self.schedule[self.electric_name].max()): + if self.schedule[self.electric_name].mean() > 0: self.warn('Schedule should be negative (i.e. generating power).', 'Reversing schedule so that PV power is negative/generating') - self.schedule = -self.schedule + self.schedule = self.schedule * -1 self.reset_time() - self.capacity = capacity if capacity is not None else -self.schedule[self.electric_name].min() # in kW, DC - self.q_set_point = 0 # in kW, positive = consuming power + def initialize_schedule(self, schedule=None, equipment_schedule_file=None, location=None, **kwargs): + if (schedule is None or self.name + ' (kW)' not in schedule) and equipment_schedule_file is None: + self.print('Running SAM') + schedule = run_sam(self.capacity, self.tilt, self.azimuth, schedule, location, + self.inverter_capacity, self.inverter_efficiency) + schedule = schedule.to_frame(self.name + ' (kW)') - # Inverter constraints, if included; if not, assume no limits and 100% efficiency - self.include_inverter = include_inverter - self.inverter_priority = kwargs.get('inverter_priority', 'Var') - self.inverter_capacity = kwargs.get('inverter_capacity', self.capacity) # in kVA, AC - self.inverter_min_pf = kwargs.get('inverter_min_pf', 0.8) - if self.inverter_min_pf is not None: - self.inverter_min_pf_factor = ((1 / self.inverter_min_pf ** 2) - 1) ** 0.5 - else: - self.inverter_min_pf_factor = None + return super().initialize_schedule(schedule, equipment_schedule_file, **kwargs) def update_external_control(self, control_signal): # External PV control options: @@ -121,10 +200,10 @@ def calculate_power_and_heat(self): super().calculate_power_and_heat() # determine power from set point - p = self.electric_kw + p = self.electric_kw # updated from super().calculate_power_and_heat q = self.q_set_point s = (p ** 2 + q ** 2) ** 0.5 - if self.include_inverter and s > self.inverter_capacity: + if s > self.inverter_capacity: if self.inverter_priority == 'Watt': p = -min(-p, self.inverter_capacity) # Note: P <= 0 max_q_capacity = (self.inverter_capacity ** 2 - p ** 2) ** 0.5 @@ -151,7 +230,7 @@ def calculate_power_and_heat(self): p /= kva_ratio q /= kva_ratio else: - raise Exception('Unknown {} inverter priority mode: {}'.format(self.name, self.inverter_priority)) + raise OCHREException('Unknown {} inverter priority mode: {}'.format(self.name, self.inverter_priority)) # Set powers. Negative = generating power self.electric_kw = p @@ -163,182 +242,3 @@ def generate_results(self): results[f'{self.end_use} P Setpoint (kW)'] = self.p_set_point results[f'{self.end_use} Q Setpoint (kW)'] = self.q_set_point return results - - -# FUTURE: try pvlib package directly, might be faster and easier to implement than SAM -def run_sam(tilt=0, orientation=0, capacity=5, strings=2, modules=20, inv_efficiency=None, - per_kw=True, sam_weather_file=None, start_time=None, duration=None, **kwargs): - """ - Runs the System Advisory Model (SAM) PV model with standard parameters. Adjustable parameters include weather data; - panel capacity, tilt, and orientation; number of panels and strings; and inverter efficiency. This code was - generated using the following parameters from SAM: - - Photovoltaic (detailed), no financial model - - PV Module: SunPower SPR-X20-250-BLK, default parameters - - PV Inverter: SolarEdge SE5000 (277V), default parameters - - Default parameters for PV Albedo and Radiation, System Design, Shading, Layout, and Losses - - It has been verified that the default capacity and number of modules and strings gives reasonable outputs. However, - adjusting these parameters may lead to unexpected results, as the PV module and inverter models are fixed. If the - actual system set up is unknown, we recommend leaving these parameters as is, setting per_kw=True, and multiplying - the resulting PV schedule by the expected capacity. - - :param tilt: PV array tilt angle, in degrees (0 = horizontal) - :param orientation: PV array orientation angle, in degrees (0=south, west-of-south=positive) - :param capacity: PV system capacity, in kW - :param strings: Number of strings - :param modules: number of modules - :param inv_efficiency: inverter efficiency, in %, defaults to the efficiency of the SolarEdge SE5000 (98.1%) - :param per_kw: boolean, if True (default), return the PV schedule as a fraction of the PV capacity. - :param sam_weather_file: file name of the weather file, must be in a SAM readable format. - :param start_time: starting time of the simulation - :param duration: duration of the simulation - :param kwargs: not used - :return: a pandas DataFrame of the PV schedule with 3 columns: - - Irradiance: solar irradiance on the PV array, in W/m^2 - - Power_AC: AC electrical power, in kW (negative for generating) - - Power_DC: DC electrical power, in kW (negative for generating) - """ - if sam_weather_file is None: - sam_weather_file = default_sam_weather_file.format(kwargs['main_sim_name']) - - # Initialize SAM - ssc = PySSC() - # print('Running PySAM (SSC Version = {})'.format(ssc.version())) - # print('SSC Build Information = ', ssc.build_info().decode("utf - 8")) - ssc.module_exec_set_print(0) - - data = ssc.data_create() - - # Enter necessary data - ssc.data_set_string(data, b'solar_resource_file', sam_weather_file.encode()) - ssc.data_set_number(data, b'system_capacity', capacity) - albedo = [0.2] * 12 - - ssc.data_set_array(data, b'albedo', albedo) - ssc.data_set_number(data, b'inverter_count', 1) - ssc.data_set_number(data, b'subarray1_nstrings', strings) - ssc.data_set_number(data, b'subarray1_modules_per_string', modules // strings) - ssc.data_set_number(data, b'subarray1_tilt', tilt) - ssc.data_set_number(data, b'subarray1_azimuth', (orientation + 180) % 360) - ssc.data_set_number(data, b'subarray1_track_mode', 0) - ssc.data_set_number(data, b'subarray1_shade_mode', 0) - subarray1_soiling = [5] * 12 - ssc.data_set_array(data, b'subarray1_soiling', subarray1_soiling) - ssc.data_set_number(data, b'subarray1_rear_irradiance_loss', 0) - ssc.data_set_number(data, b'subarray1_mismatch_loss', 2) - ssc.data_set_number(data, b'subarray1_diodeconn_loss', 0.5) - ssc.data_set_number(data, b'subarray1_dcwiring_loss', 2) - ssc.data_set_number(data, b'subarray1_tracking_loss', 0) - ssc.data_set_number(data, b'subarray1_nameplate_loss', 0) - ssc.data_set_number(data, b'dcoptimizer_loss', 0) - ssc.data_set_number(data, b'acwiring_loss', 1) - ssc.data_set_number(data, b'transmission_loss', 0) - ssc.data_set_number(data, b'subarray1_mod_orient', 0) - ssc.data_set_number(data, b'subarray1_nmodx', 7) - ssc.data_set_number(data, b'subarray1_nmody', 2) - ssc.data_set_number(data, b'subarray2_enable', 0) - ssc.data_set_number(data, b'subarray3_enable', 0) - ssc.data_set_number(data, b'subarray4_enable', 0) - # * key module variables - ssc.data_set_number(data, b'module_model', 1) - ssc.data_set_number(data, b'cec_area', 1.2439999580383301) - ssc.data_set_number(data, b'cec_a_ref', 1.9386559724807739) - ssc.data_set_number(data, b'cec_adjust', 4.3963689804077148) - ssc.data_set_number(data, b'cec_alpha_sc', 0.00082499999552965164) - ssc.data_set_number(data, b'cec_beta_oc', -0.14820599555969238) - ssc.data_set_number(data, b'cec_gamma_r', -0.38999998569488525) - ssc.data_set_number(data, b'cec_i_l_ref', 6.2045078277587891) - ssc.data_set_number(data, b'cec_i_mp_ref', 5.8400001525878906) - ssc.data_set_number(data, b'cec_i_o_ref', 2.3781549646217925e-11) - ssc.data_set_number(data, b'cec_i_sc_ref', 6.1999998092651367) - ssc.data_set_number(data, b'cec_n_s', 72) - ssc.data_set_number(data, b'cec_r_s', 0.36243200302124023) - ssc.data_set_number(data, b'cec_r_sh_ref', 498.47784423828125) - ssc.data_set_number(data, b'cec_t_noct', 44.5) - ssc.data_set_number(data, b'cec_v_mp_ref', 42.799999237060547) - ssc.data_set_number(data, b'cec_v_oc_ref', 50.930000305175781) - # * end module variables - - ssc.data_set_number(data, b'cec_temp_corr_mode', 0) - ssc.data_set_number(data, b'cec_is_bifacial', 0) - ssc.data_set_number(data, b'cec_bifacial_transmission_factor', 0.013000000268220901) - ssc.data_set_number(data, b'cec_bifaciality', 0.64999997615814209) - ssc.data_set_number(data, b'cec_bifacial_ground_clearance_height', 1) - ssc.data_set_number(data, b'cec_standoff', 6) - ssc.data_set_number(data, b'cec_height', 0) - ssc.data_set_number(data, b'cec_transient_thermal_model_unit_mass', 11.091900000000001) - ssc.data_set_number(data, b'inverter_model', 0) - - # * key inverter variables - ssc.data_set_number(data, b'mppt_low_inverter', 405) - ssc.data_set_number(data, b'mppt_hi_inverter', 480) - ssc.data_set_number(data, b'inv_num_mppt', 1) - ssc.data_set_number(data, b'inv_snl_c0', -1.9196679659216898e-06) - ssc.data_set_number(data, b'inv_snl_c1', 2.4000000848900527e-05) - ssc.data_set_number(data, b'inv_snl_c2', 0.0054540000855922699) - ssc.data_set_number(data, b'inv_snl_c3', 0.0030330000445246696) - ssc.data_set_number(data, b'inv_snl_paco', 5010) - ssc.data_set_number(data, b'inv_snl_pdco', 5116.28173828125) - ssc.data_set_number(data, b'inv_snl_pnt', 1.503000020980835) - ssc.data_set_number(data, b'inv_snl_pso', 10.168439865112305) - ssc.data_set_number(data, b'inv_snl_vdco', 425) - ssc.data_set_number(data, b'inv_snl_vdcmax', 480) - # * end inverter variable - - inv_tdc_cec_db = [[1, 52.799999237060547, -0.020999999716877937]] - ssc.data_set_matrix(data, b'inv_tdc_cec_db', inv_tdc_cec_db) - ssc.data_set_number(data, b'adjust:constant', 0) - ssc.data_set_number(data, b'dc_adjust:constant', 0) - inv_efficiency = inv_efficiency if inv_efficiency is not None else 98.071479797363281 - ssc.data_set_number(data, b'inv_snl_eff_cec', inv_efficiency) # key variable - module = ssc.module_create(b'pvsamv1') - - # run model - print('Running annual PV model using SAM...') - ssc.module_exec_set_print(0) - if ssc.module_exec(module, data) == 0: - print('pvsamv1 simulation error') - idx = 1 - msg = ssc.module_log(module, 0) - while msg is not None: - print(' : ' + msg.decode("utf - 8")) - msg = ssc.module_log(module, idx) - idx = idx + 1 - SystemExit("Simulation Error") - ssc.module_free(module) - - # Collect timeseries data - # For details, see https://pysam-docs.readthedocs.io/en/latest/modules/Pvsamv1.html#outputs-group - irr = ssc.data_get_array(data, b'subarray1_poa_nom') # Nominal Front Total Irradiance W/m^2 - # irr = ssc.data_get_array(data, b'subarray1_poa_eff') # Includes reflection - # irr = ssc.data_get_array(data, b'poa_nom') # Nominal Front Total Irradiance kW - # irr = ssc.data_get_array(data, b'poa_eff') - # irr = ssc.data_get_array(data, b'inv_total_loss') # Inverter total power losses, kW - power_dc = ssc.data_get_array(data, b'dc_net') # DC system power, kW - power_ac = ssc.data_get_array(data, b'gen') # AC system power, kW - if per_kw: - power_dc = np.array(power_dc) / capacity - power_ac = np.array(power_ac) / capacity - ssc.data_free(data) - - # return dataframe of results - df_input = pd.read_csv(sam_weather_file, skiprows=2) - df_input = df_input.astype(int) - time_vals = df_input.iloc[:, :5].values - times = [dt.datetime(*data) for data in time_vals] - - # Note: Irradiance is positive, power is negative (for generation) - df = pd.DataFrame({'Irradiance': irr, - 'Power_AC': -power_ac, # in kW or per unit - 'Power_DC': -power_dc, # in kW or per unit - }, index=times) - - # resample to times in range - if start_time is not None: - df = df.loc[df.index >= start_time] - if duration is not None: - if kwargs.get('initialization_time') is not None: - # update duration to include duration of initialization - duration = max(duration, kwargs['initialization_time']) - df = df.loc[df.index < start_time + duration] - return df diff --git a/ochre/Equipment/ScheduledLoad.py b/ochre/Equipment/ScheduledLoad.py index 54fc526..ef6e22c 100644 --- a/ochre/Equipment/ScheduledLoad.py +++ b/ochre/Equipment/ScheduledLoad.py @@ -2,7 +2,7 @@ import pandas as pd from ochre.utils.units import kwh_to_therms -from ochre.utils import load_csv +from ochre.utils import OCHREException, load_csv import ochre.utils.schedule as utils_schedule from ochre.Equipment import Equipment @@ -50,8 +50,10 @@ def initialize_schedule(self, schedule=None, equipment_schedule_file=None, schedule_rename_columns=None, schedule_scale_factor=1, **kwargs): self.electric_name = f'{self.name} (kW)' self.gas_name = f'{self.name} (therms/hour)' - - if equipment_schedule_file is not None: + input_cols = [self.electric_name, self.gas_name] + has_cols = schedule is not None and any([col in schedule.columns for col in input_cols]) + + if not has_cols and equipment_schedule_file is not None: # load schedule from separate schedule file - used for scheduled PV and EV schedule = load_csv(equipment_schedule_file, sub_folder=self.end_use) schedule = schedule.loc[:, schedule_rename_columns] @@ -62,11 +64,11 @@ def initialize_schedule(self, schedule=None, equipment_schedule_file=None, schedule *= schedule_scale_factor if schedule is None: - raise Exception(f'Schedule required for {self.name}') + raise OCHREException(f'Schedule required for {self.name}') - required_inputs = [name for name in [self.electric_name, self.gas_name] if name in schedule] + required_inputs = [name for name in input_cols if name in schedule] if not required_inputs: - raise Exception(f'Cannot find any schedule columns for {self.name}') + raise OCHREException(f'Cannot find any schedule columns for {self.name}') # set schedule columns to zero if month multiplier exists and is zero (for ceiling fans) multipliers = kwargs.get('month_multipliers', []) @@ -104,14 +106,14 @@ def update_internal_control(self): if abs(self.p_set_point) > 20: self.warn(f'High electric power warning: {self.p_set_point} kW.') if abs(self.p_set_point) > 40: - raise Exception(f'{self.name} electric power is too large: {self.p_set_point} kW.') + raise OCHREException(f'{self.name} electric power is too large: {self.p_set_point} kW.') if self.is_gas: self.gas_set_point = self.current_schedule[self.gas_name] if abs(self.gas_set_point) > 0.5: self.warn(f'High gas power warning: {self.gas_set_point} therms/hour.') if abs(self.gas_set_point) > 1: - raise Exception(f'{self.name} gas power is too large: {self.gas_set_point} therms/hour.') + raise OCHREException(f'{self.name} gas power is too large: {self.gas_set_point} therms/hour.') return 'On' if self.p_set_point + self.gas_set_point != 0 else 'Off' diff --git a/ochre/Equipment/WaterHeater.py b/ochre/Equipment/WaterHeater.py index ddfd48c..1474aca 100644 --- a/ochre/Equipment/WaterHeater.py +++ b/ochre/Equipment/WaterHeater.py @@ -6,18 +6,23 @@ """ import numpy as np import datetime as dt -import pandas as pd +from ochre.utils import OCHREException +from ochre.utils.units import convert, kwh_to_therms from ochre.Equipment import Equipment from ochre.Models import OneNodeWaterModel, TwoNodeWaterModel, StratifiedWaterModel, IdealWaterModel -from ochre.utils.units import convert, kwh_to_therms class WaterHeater(Equipment): name = 'Water Heater' end_use = 'Water Heating' default_capacity = 4500 # in W - optional_inputs = ['Zone Temperature (C)'] # Needed for Water tank model + optional_inputs = [ + "Water Heating Setpoint (C)", + "Water Heating Deadband (C)", + "Water Heating Max Power (kW)", + "Zone Temperature (C)", # Needed for Water tank model + ] def __init__(self, use_ideal_capacity=None, model_class=None, **kwargs): # Create water tank model @@ -62,13 +67,13 @@ def __init__(self, use_ideal_capacity=None, model_class=None, **kwargs): self.delivered_heat = 0 # heat delivered to the tank, in W # Control parameters + # note: bottom of deadband is (setpoint_temp - deadband_temp) self.setpoint_temp = kwargs['Setpoint Temperature (C)'] - self.setpoint_temp_default = self.setpoint_temp self.setpoint_temp_ext = None self.max_temp = kwargs.get('Max Tank Temperature (C)', convert(140, 'degF', 'degC')) self.setpoint_ramp_rate = kwargs.get('Max Setpoint Ramp Rate (C/min)') # max setpoint ramp rate, in C/min self.deadband_temp = kwargs.get('Deadband Temperature (C)', 5.56) # deadband range, in delta degC, i.e. Kelvin - # note: bottom of deadband is (setpoint_temp - deadband_temp) + self.max_power = kwargs.get('Max Power (kW)') def update_inputs(self, schedule_inputs=None): # Add zone temperature to schedule inputs for water tank @@ -83,34 +88,48 @@ def update_external_control(self, control_signal): # - Setpoint: Updates setpoint temperature from the default (in C) # - Note: Setpoint will only reset back to default value when {'Setpoint': None} is passed. # - Deadband: Updates deadband temperature (in C) - # - Note: Deadband will not reset back to original value + # - Note: Deadband will only be reset if it is in the schedule + # - Max Power: Updates maximum allowed power (in kW) + # - Note: Max Power will only be reset if it is in the schedule + # - Note: Will not work for HPWH in HP mode # - Duty Cycle: Forces WH on for fraction of external time step (as fraction [0,1]) # - If 0 < Duty Cycle < 1, the equipment will cycle once every 2 external time steps # - For HPWH: Can supply HP and ER duty cycles # - Note: does not use clock on/off time - # If load fraction = 0, force off - load_fraction = control_signal.get('Load Fraction', 1) - if load_fraction == 0: - return 'Off' - elif load_fraction != 1: - raise Exception("{} can't handle non-integer load fractions".format(self.name)) - - if 'Setpoint' in control_signal: - self.setpoint_temp_ext = control_signal.get('Setpoint') - if self.setpoint_temp_ext is not None and self.setpoint_temp_ext > self.max_temp: - self.warn('Setpoint cannot exceed {}C. Setting setpoint to maximum value.'.format(self.max_temp)) - self.setpoint_temp_ext = self.max_temp + ext_setpoint = control_signal.get("Setpoint") + if ext_setpoint is not None: + if ext_setpoint > self.max_temp: + self.warn( + f"Setpoint cannot exceed {self.max_temp}C. Setting setpoint to maximum value." + ) + ext_setpoint = self.max_temp + if "Water Heating Setpoint (C)" in self.current_schedule: + self.current_schedule["Water Heating Setpoint (C)"] = ext_setpoint + else: + # Note that this overrides the ramp rate + self.setpoint_temp = ext_setpoint - ext_db = control_signal.get('Deadband') + ext_db = control_signal.get("Deadband") if ext_db is not None: - self.deadband_temp = ext_db + if "Water Heating Deadband (C)" in self.current_schedule: + self.current_schedule["Water Heating Deadband (C)"] = ext_db + else: + self.deadband_temp = ext_db - # Force off if temperature exceeds maximum, and print warning (possible with Duty Cycle control) - t_tank = self.model.states[self.t_upper_idx] - if t_tank > self.max_temp: - self.warn('Temperature over maximum temperature ({}C), forcing off'.format(self.max_temp)) - return 'Off' + max_power = control_signal.get("Max Power") + if max_power is not None: + if "Water Heating Max Power (kW)" in self.current_schedule: + self.current_schedule["Water Heating Max Power (kW)"] = max_power + else: + self.max_power = max_power + + # If load fraction = 0, force off + load_fraction = control_signal.get("Load Fraction", 1) + if load_fraction == 0: + return "Off" + elif load_fraction != 1: + raise OCHREException(f"{self.name} can't handle non-integer load fractions") if 'Duty Cycle' in control_signal: # Parse duty cycles into list for each mode @@ -118,13 +137,21 @@ def update_external_control(self, control_signal): if isinstance(duty_cycles, (int, float)): duty_cycles = [duty_cycles] if not isinstance(duty_cycles, list) or not (0 <= sum(duty_cycles) <= 1): - raise Exception('Error parsing {} duty cycle control: {}'.format(self.name, duty_cycles)) + raise OCHREException('Error parsing {} duty cycle control: {}'.format(self.name, duty_cycles)) return self.run_duty_cycle_control(duty_cycles) else: return self.update_internal_control() def run_duty_cycle_control(self, duty_cycles): + # Force off if temperature exceeds maximum, and print warning + t_tank = self.model.states[self.t_upper_idx] + if t_tank > self.max_temp: + self.warn( + f"Temperature over maximum temperature ({self.max_temp}C), forcing off" + ) + return "Off" + if self.use_ideal_capacity: # Set capacity directly from duty cycle self.update_duty_cycles(*duty_cycles) @@ -142,17 +169,26 @@ def run_duty_cycle_control(self, duty_cycles): return mode_priority[0] # take highest priority mode (usually current mode) def update_setpoint(self): - # update setpoint temperature - if self.setpoint_temp_ext is not None: - t_set = self.setpoint_temp_ext + # get setpoint from schedule + if "Water Heating Setpoint (C)" in self.current_schedule: + t_set_new = self.current_schedule["Water Heating Setpoint (C)"] else: - t_set = self.setpoint_temp_default - - if self.setpoint_ramp_rate and self.setpoint_temp != t_set: - self.setpoint_temp = min(max(t_set, self.setpoint_temp - self.setpoint_ramp_rate), - self.setpoint_temp + self.setpoint_ramp_rate) + t_set_new = self.setpoint_temp + + # update setpoint with ramp rate + if self.setpoint_ramp_rate and self.setpoint_temp != t_set_new: + delta_t = self.setpoint_ramp_rate * self.time_res.total_seconds() / 60 # in C + self.setpoint_temp = min(max(t_set_new, self.setpoint_temp - delta_t), + self.setpoint_temp + delta_t, + ) else: - self.setpoint_temp = t_set + self.setpoint_temp = t_set_new + + # get other controls from schedule - deadband and max power + if "Water Heating Deadband (C)" in self.current_schedule: + self.temp_deadband = self.current_schedule["Water Heating Deadband (C)"] + if "Water Heating Max Power (kW)" in self.current_schedule: + self.max_power = self.current_schedule["Water Heating Max Power (kW)"] def solve_ideal_capacity(self): # calculate ideal capacity based on achieving lower node setpoint temperature @@ -229,15 +265,21 @@ def calculate_power_and_heat(self): heats_to_tank = self.add_heat_from_mode(self.mode) self.delivered_heat = heats_to_tank.sum() - power = self.delivered_heat / self.efficiency # in W + power = self.delivered_heat / self.efficiency / 1000 # in kW + + # clip power and heat by max power + if self.max_power and power > self.max_power and 'Heat Pump' not in self.mode: + heats_to_tank *= self.max_power / power + self.delivered_heat *= self.max_power / power + power = self.max_power if self.is_gas: # note: no sensible gains from heater (all is vented) - self.gas_therms_per_hour = power / 1000 * kwh_to_therms # W to therms/hour + self.gas_therms_per_hour = power * kwh_to_therms # in therms/hour self.sensible_gain = 0 else: - self.electric_kw = power / 1000 - self.sensible_gain = power - self.delivered_heat # in W + self.electric_kw = power + self.sensible_gain = power * 1000 - self.delivered_heat # in W self.latent_gain = 0 @@ -254,11 +296,11 @@ def generate_results(self): # Note: using end use, not equipment name, for all results if self.verbosity >= 3: - results[f'{self.end_use} Delivered (kW)'] = self.delivered_heat / 1000 + results[f'{self.end_use} Delivered (W)'] = self.delivered_heat if self.verbosity >= 6: cop = self.delivered_heat / (self.electric_kw * 1000) if self.electric_kw > 0 else 0 results[f'{self.end_use} COP (-)'] = cop - results[f'{self.end_use} Total Sensible Heat Gain (kW)'] = self.sensible_gain / 1000 + results[f'{self.end_use} Total Sensible Heat Gain (W)'] = self.sensible_gain results[f'{self.end_use} Deadband Upper Limit (C)'] = self.setpoint_temp results[f'{self.end_use} Deadband Lower Limit (C)'] = self.setpoint_temp - self.deadband_temp @@ -366,8 +408,8 @@ def run_thermostat_control(self): class HeatPumpWaterHeater(ElectricResistanceWaterHeater): name = 'Heat Pump Water Heater' modes = ['Heat Pump On', 'Lower On', 'Upper On', 'Off'] - optional_inputs = ['Zone Wet Bulb Temperature (C)', 'Zone Temperature (C)'] - + optional_inputs = WaterHeater.optional_inputs + ['Zone Wet Bulb Temperature (C)'] + def __init__(self, hp_only_mode=False, water_nodes=12, **kwargs): super().__init__(water_nodes=water_nodes, **kwargs) @@ -384,6 +426,8 @@ def __init__(self, hp_only_mode=False, water_nodes=12, **kwargs): # Nominal COP based on simulation of the UEF test procedure at varying COPs self.cop_nominal = kwargs['HPWH COP (-)'] self.hp_cop = self.cop_nominal + if self.cop_nominal < 2: + self.warn("Low Nominal COP:", self.cop_nominal) # Heat pump capacity and power parameters - hardcoded for now if 'HPWH Capacity (W)' in kwargs: @@ -408,7 +452,7 @@ def __init__(self, hp_only_mode=False, water_nodes=12, **kwargs): if self.wall_heat_fraction and self.zone: walls = [s for s in self.zone.surfaces if s.boundary_name == 'Interior Wall'] if not walls: - raise Exception(f'Interior wall surface not found, required for {self.name} model.') + raise OCHREException(f'Interior wall surface not found, required for {self.name} model.') self.wall_surface = walls[0] else: self.wall_surface = None @@ -425,7 +469,7 @@ def __init__(self, hp_only_mode=False, water_nodes=12, **kwargs): elif self.model.n_nodes == 12: self.hp_nodes = np.array([0, 0, 0, 0, 0, 5, 10, 15, 20, 25, 30, 5]) / 110 else: - raise Exception('{} model not defined for tank with {} nodes'.format(self.name, self.model.n_nodes)) + raise OCHREException('{} model not defined for tank with {} nodes'.format(self.name, self.model.n_nodes)) def update_inputs(self, schedule_inputs=None): # Add wet and dry bulb temperatures to schedule @@ -440,6 +484,7 @@ def update_external_control(self, control_signal): # Add HP duty cycle to ERWH control duty_cycles = [control_signal.get('HP Duty Cycle', 0), control_signal.get('ER Duty Cycle', 0) if not self.hp_only_mode else 0] + # TODO: update schedule, not control signal control_signal['Duty Cycle'] = duty_cycles return super().update_external_control(control_signal) @@ -595,7 +640,7 @@ def generate_results(self): hp_on_frac = self.duty_cycle_by_mode['Heat Pump On'] else: hp_on_frac = 1 if 'Heat Pump' in self.mode else 0 - results[f'{self.end_use} Heat Pump Max Capacity (kW)'] = self.hp_capacity / 1000 + results[f'{self.end_use} Heat Pump Max Capacity (W)'] = self.hp_capacity results[f'{self.end_use} Heat Pump On Fraction (-)'] = hp_on_frac results[f'{self.end_use} Heat Pump COP (-)'] = self.hp_cop return results @@ -646,6 +691,11 @@ def update_internal_control(self): return 'On' if self.heat_from_draw > 0 else 'Off' def calculate_power_and_heat(self): + # clip heat by max power + power = self.heat_from_draw / self.efficiency / 1000 # in kW + if self.max_power and power > self.max_power: + self.heat_from_draw *= self.max_power / power + if self.mode == 'Off': # do not update heat, force water heater off self.delivered_heat = 0 diff --git a/ochre/Models/Envelope.py b/ochre/Models/Envelope.py index 27ee084..fb0eada 100644 --- a/ochre/Models/Envelope.py +++ b/ochre/Models/Envelope.py @@ -1,6 +1,7 @@ import numpy as np import datetime as dt +from ochre.utils import OCHREException from ochre.utils.units import convert, degC_to_K, cfm_to_m3s import ochre.utils.envelope as utils from ochre.Models import RCModel, HumidityModel, ModelException @@ -97,10 +98,13 @@ def __init__(self, boundary, is_ext_surface, zone_label='', node_name='', res_ma # calculate fraction to sky, air, and ground. Note ground + air are combined since both use ambient temp # https://bigladdersoftware.com/epx/docs/8-0/engineering-reference/page-020.html#external-longwave-radiation if self.is_exterior: - tilt = kwargs.get('Tilt (deg)', utils.get_boundary_tilt(self.boundary_name)) - tilt = np.cos(convert(tilt, 'deg', 'rad')) - self.sky_view_factor = ((1 + tilt) / 2) ** 1.5 # incorporates F and Beta from reference + self.tilt = kwargs.get('Tilt (deg)', utils.get_boundary_tilt(self.boundary_name)) + self.azimuths = kwargs.get('Azimuth (deg)') + # sky view factor incorporates F and Beta from reference + self.sky_view_factor = ((1 + np.cos(convert(self.tilt, 'deg', 'rad'))) / 2) ** 1.5 else: + self.tilt = None + self.azimuths = None self.sky_view_factor = 0 def calculate_exterior_radiation(self, t_ext, t_sky): @@ -466,7 +470,7 @@ def __init__(self, name, location, **kwargs): cap_values = [kwargs['C_' + self.label + str(i)] for i in range(10) if 'C_' + self.label + str(i) in kwargs] res_values = [kwargs['R_' + self.label + str(i)] for i in range(10) if 'R_' + self.label + str(i) in kwargs] if not len(cap_values) and self.name != 'Window': - raise Exception(f'Missing RC coefficients for {self.name} with properties: {kwargs}') + raise OCHREException(f'Missing RC coefficients for {self.name} with properties: {kwargs}') if len(res_values) != len(cap_values): raise ModelException(f'Cannot parse RC data for {self.name}. Number of resistors ({len(res_values)}) is not' f' compatible with the number of capacitors ({len(cap_values)})') @@ -1002,7 +1006,7 @@ def get_zone_temperature(self, zone_name): elif zone_name in self.ext_zones: return self.ext_zones[zone_name].temperature else: - raise Exception(f'Unknown zone name {zone_name}.') + raise OCHREException(f'Unknown zone name {zone_name}.') def add_component_loads(self): # TODO diff --git a/ochre/Models/StateSpaceModel.py b/ochre/Models/StateSpaceModel.py index 534ff69..937d47a 100644 --- a/ochre/Models/StateSpaceModel.py +++ b/ochre/Models/StateSpaceModel.py @@ -165,7 +165,6 @@ def reduce_model(self, reduced_states=None, reduced_min_accuracy=None, input_wei # SVD of U*L z, s, yh = linalg.svd(u.T.dot(l)) - s = np.diag(s) y = yh.T # Solve for state transformation matrix @@ -181,7 +180,7 @@ def reduce_model(self, reduced_states=None, reduced_min_accuracy=None, input_wei # Transform SS matrices and states t_inv = linalg.inv(t) a_t = t.dot(a).dot(t_inv) - a_t = t.dot(b) + b_t = t.dot(b) c_t = c.dot(t_inv) x_t = t.dot(x) @@ -190,7 +189,7 @@ def reduce_model(self, reduced_states=None, reduced_min_accuracy=None, input_wei # Qt = linalg.solve_continuous_lyapunov(At.T, -Ct.T.dot(Ct)) # update B and C with input/output weights, back to original model - a_t /= input_weights + b_t /= input_weights c_t = (c_t.T / output_weights).T # Determine number of reduced states @@ -217,7 +216,7 @@ def reduce_model(self, reduced_states=None, reduced_min_accuracy=None, input_wei # update matrices self.A_c = a_t[:reduced_states, :reduced_states] - self.B_c = a_t[:reduced_states, :] + self.B_c = b_t[:reduced_states, :] self.C = c_t[:, :reduced_states] if update_discrete: self.A, self.B = self.to_discrete() diff --git a/ochre/Models/Water.py b/ochre/Models/Water.py index 92cecd1..5469e77 100644 --- a/ochre/Models/Water.py +++ b/ochre/Models/Water.py @@ -319,11 +319,11 @@ def generate_results(self): if self.verbosity >= 3: results['Hot Water Delivered (L/min)'] = self.draw_total results['Hot Water Outlet Temperature (C)'] = self.outlet_temp - results['Hot Water Delivered (kW)'] = self.h_delivered / 1000 + results['Hot Water Delivered (W)'] = self.h_delivered results['Hot Water Unmet Demand (kW)'] = self.h_unmet_load / 1000 if self.verbosity >= 6: - results['Hot Water Heat Injected (kW)'] = self.h_injections / 1000 - results['Hot Water Heat Loss (kW)'] = self.h_loss / 1000 + results['Hot Water Heat Injected (W)'] = self.h_injections + results['Hot Water Heat Loss (W)'] = self.h_loss results['Hot Water Average Temperature (C)'] = self.states.dot(self.vol_fractions) results['Hot Water Maximum Temperature (C)'] = self.states.max() results['Hot Water Minimum Temperature (C)'] = self.states.min() diff --git a/ochre/Simulator.py b/ochre/Simulator.py index 3069b59..3df3908 100644 --- a/ochre/Simulator.py +++ b/ochre/Simulator.py @@ -6,7 +6,7 @@ import hashlib from ochre import __version__ - +from ochre.utils import OCHREException class Simulator: name = 'OCHRE' @@ -27,6 +27,8 @@ def __init__(self, start_time, time_res, duration, name=None, main_sim_name=None self.current_time = start_time self.time_res = time_res self.duration = duration + if self.duration < self.time_res: + raise OCHREException(f'Duration ({duration}) must be longer than time resolution ({time_res}).') self.initialization_time = initialization_time self.sim_times = pd.date_range(self.start_time, self.start_time + self.duration, freq=self.time_res, inclusive='left') @@ -51,13 +53,6 @@ def __init__(self, start_time, time_res, duration, name=None, main_sim_name=None if self.save_results: self.set_up_results_files(**kwargs) - # Define model schedule and time resolution - self.all_schedule_inputs = None - self.schedule = self.initialize_schedule(**kwargs) - self.current_schedule = self.schedule.iloc[0].to_dict() if self.schedule is not None else {} - self.schedule_iterable = None - self.reset_time() - # Set random seed based on output path. Only sets seed if seed or output_path is specified if self.main_simulator: if seed is None: @@ -67,6 +62,13 @@ def __init__(self, start_time, time_res, duration, name=None, main_sim_name=None seed = int(hashlib.md5(seed.encode()).hexdigest(), 16) % 2 ** 32 np.random.seed(seed) + # Define model schedule and time resolution + self.all_schedule_inputs = None + self.schedule = self.initialize_schedule(**kwargs) + self.current_schedule = self.schedule.iloc[0].to_dict() if self.schedule is not None else {} + self.schedule_iterable = None + self.reset_time() + def set_up_results_files(self, hpxml_file=None, equipment_schedule_file=None, **kwargs): if self.output_path is None: if hpxml_file is not None: @@ -74,21 +76,22 @@ def set_up_results_files(self, hpxml_file=None, equipment_schedule_file=None, ** elif equipment_schedule_file is not None: self.output_path = os.path.dirname(equipment_schedule_file) else: - raise IOError('Must specify output_path, or set save_results=False.') + raise OCHREException('Must specify output_path, or set save_results=False.') if not os.path.isabs(self.output_path): self.output_path = os.path.abspath(self.output_path) os.makedirs(self.output_path, exist_ok=True) - # save result file path and remove existing results files - extn = '.parquet' if self.output_to_parquet else '.csv' + # save result file path file_name = self.name if not self.main_sim_name else f'{self.name}_{self.main_sim_name}' + extn = '.parquet' if self.output_to_parquet else '.csv' self.results_file = os.path.join(self.output_path, file_name + extn) - if os.path.exists(self.results_file): - self.print('Removing previous results') - os.remove(self.results_file) - for f in os.listdir(self.output_path): - if self.name in f and '.parquet' in f: - os.remove(os.path.join(self.output_path, f)) + + # Remove existing results files + for f in os.listdir(self.output_path): + if f == f'{file_name}.csv' or (self.name in f and '.parquet' in f): + self.print('Removing previous results file:', os.path.join(self.output_path, f)) + os.remove(os.path.join(self.output_path, f)) + # remove existing status files statuses = ['failed', 'complete'] @@ -140,7 +143,7 @@ def initialize_schedule(self, schedule=None, required_inputs=None, optional_inpu return None if not isinstance(schedule.index, pd.DatetimeIndex): - raise Exception(f'{self.name} schedule index must be a DateTime index, not {type(schedule.index)}.' + raise OCHREException(f'{self.name} schedule index must be a DateTime index, not {type(schedule.index)}.' f' If loading schedule from a file, try setting index column to "Time".') # Check that all required inputs are in schedule, print warning if not @@ -157,7 +160,7 @@ def initialize_schedule(self, schedule=None, required_inputs=None, optional_inpu # Check that start time matches schedule if self.start_time < schedule.index[0]: - raise Exception(f'{self.name} start time ({self.start_time}) is before the schedule start time ' + raise OCHREException(f'{self.name} start time ({self.start_time}) is before the schedule start time ' f'({schedule.index[0]}).') elif self.start_time > schedule.index[0]: self.warn(f'Updating {self.name} schedule start time from {schedule.index[0]} to {self.start_time}.') @@ -184,7 +187,7 @@ def initialize_schedule(self, schedule=None, required_inputs=None, optional_inpu elif end_time + self.time_res < schedule.index[-1]: schedule = schedule.loc[:end_time + self.time_res] elif end_time > schedule.index[-1]: - raise Exception(f'{self.name} end time ({end_time}) is after the schedule end time ' + raise OCHREException(f'{self.name} end time ({end_time}) is after the schedule end time ' f'({schedule.index[-1]}).') return schedule @@ -324,7 +327,7 @@ def finalize(self, failed=False): elif self.output_to_parquet: output_files = [os.path.join(self.output_path, f) for f in os.listdir(self.output_path) - if re.match(f'{self.name}.*\.parquet', f) and '_schedule.parquet' not in f] + if re.match(f'{self.name}.*\\.parquet', f) and '_schedule.parquet' not in f] dfs = [pd.read_parquet(f) for f in sorted(output_files)] if self.results: # add recent results that haven't been saved to a parquet file diff --git a/ochre/__init__.py b/ochre/__init__.py index 1e513c7..81d59e4 100644 --- a/ochre/__init__.py +++ b/ochre/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.8.4" +__version__ = "0.8.5" from .Simulator import Simulator from .Equipment import * diff --git a/defaults/ASHRAE152_climate_data.csv b/ochre/defaults/ASHRAE152_climate_data.csv similarity index 100% rename from defaults/ASHRAE152_climate_data.csv rename to ochre/defaults/ASHRAE152_climate_data.csv diff --git a/defaults/ASHRAE152_zone_temperatures.csv b/ochre/defaults/ASHRAE152_zone_temperatures.csv similarity index 100% rename from defaults/ASHRAE152_zone_temperatures.csv rename to ochre/defaults/ASHRAE152_zone_temperatures.csv diff --git a/defaults/Battery/default_parameters.csv b/ochre/defaults/Battery/default_parameters.csv similarity index 100% rename from defaults/Battery/default_parameters.csv rename to ochre/defaults/Battery/default_parameters.csv diff --git a/defaults/Battery/degradation_curves.csv b/ochre/defaults/Battery/degradation_curves.csv similarity index 100% rename from defaults/Battery/degradation_curves.csv rename to ochre/defaults/Battery/degradation_curves.csv diff --git a/defaults/EV/EV Profiles.csv b/ochre/defaults/EV/EV Profiles.csv similarity index 100% rename from defaults/EV/EV Profiles.csv rename to ochre/defaults/EV/EV Profiles.csv diff --git a/defaults/EV/pdf_Veh1_Level0.csv b/ochre/defaults/EV/pdf_Veh1_Level0.csv similarity index 100% rename from defaults/EV/pdf_Veh1_Level0.csv rename to ochre/defaults/EV/pdf_Veh1_Level0.csv diff --git a/defaults/EV/pdf_Veh1_Level1.csv b/ochre/defaults/EV/pdf_Veh1_Level1.csv similarity index 100% rename from defaults/EV/pdf_Veh1_Level1.csv rename to ochre/defaults/EV/pdf_Veh1_Level1.csv diff --git a/defaults/EV/pdf_Veh1_Level2.csv b/ochre/defaults/EV/pdf_Veh1_Level2.csv similarity index 100% rename from defaults/EV/pdf_Veh1_Level2.csv rename to ochre/defaults/EV/pdf_Veh1_Level2.csv diff --git a/defaults/EV/pdf_Veh2_Level1.csv b/ochre/defaults/EV/pdf_Veh2_Level1.csv similarity index 100% rename from defaults/EV/pdf_Veh2_Level1.csv rename to ochre/defaults/EV/pdf_Veh2_Level1.csv diff --git a/defaults/EV/pdf_Veh2_Level2.csv b/ochre/defaults/EV/pdf_Veh2_Level2.csv similarity index 100% rename from defaults/EV/pdf_Veh2_Level2.csv rename to ochre/defaults/EV/pdf_Veh2_Level2.csv diff --git a/defaults/EV/pdf_Veh3_Level1.csv b/ochre/defaults/EV/pdf_Veh3_Level1.csv similarity index 100% rename from defaults/EV/pdf_Veh3_Level1.csv rename to ochre/defaults/EV/pdf_Veh3_Level1.csv diff --git a/defaults/EV/pdf_Veh3_Level2.csv b/ochre/defaults/EV/pdf_Veh3_Level2.csv similarity index 100% rename from defaults/EV/pdf_Veh3_Level2.csv rename to ochre/defaults/EV/pdf_Veh3_Level2.csv diff --git a/defaults/EV/pdf_Veh4_Level1.csv b/ochre/defaults/EV/pdf_Veh4_Level1.csv similarity index 100% rename from defaults/EV/pdf_Veh4_Level1.csv rename to ochre/defaults/EV/pdf_Veh4_Level1.csv diff --git a/defaults/EV/pdf_Veh4_Level2.csv b/ochre/defaults/EV/pdf_Veh4_Level2.csv similarity index 100% rename from defaults/EV/pdf_Veh4_Level2.csv rename to ochre/defaults/EV/pdf_Veh4_Level2.csv diff --git a/defaults/Envelope/Envelope Boundaries.csv b/ochre/defaults/Envelope/Envelope Boundaries.csv similarity index 100% rename from defaults/Envelope/Envelope Boundaries.csv rename to ochre/defaults/Envelope/Envelope Boundaries.csv diff --git a/defaults/Envelope/Envelope Boundary Types.csv b/ochre/defaults/Envelope/Envelope Boundary Types.csv similarity index 100% rename from defaults/Envelope/Envelope Boundary Types.csv rename to ochre/defaults/Envelope/Envelope Boundary Types.csv diff --git a/defaults/Envelope/Envelope Materials.csv b/ochre/defaults/Envelope/Envelope Materials.csv similarity index 100% rename from defaults/Envelope/Envelope Materials.csv rename to ochre/defaults/Envelope/Envelope Materials.csv diff --git a/defaults/Gas Generator/default_parameters.csv b/ochre/defaults/Gas Generator/default_parameters.csv similarity index 100% rename from defaults/Gas Generator/default_parameters.csv rename to ochre/defaults/Gas Generator/default_parameters.csv diff --git a/defaults/Gas Generator/efficiency_curve.csv b/ochre/defaults/Gas Generator/efficiency_curve.csv similarity index 100% rename from defaults/Gas Generator/efficiency_curve.csv rename to ochre/defaults/Gas Generator/efficiency_curve.csv diff --git a/defaults/Gas Generator/efficiency_curve2.csv b/ochre/defaults/Gas Generator/efficiency_curve2.csv similarity index 100% rename from defaults/Gas Generator/efficiency_curve2.csv rename to ochre/defaults/Gas Generator/efficiency_curve2.csv diff --git a/defaults/HVAC Cooling/Biquadratic ASHP Cooler.csv b/ochre/defaults/HVAC Cooling/Biquadratic ASHP Cooler.csv similarity index 100% rename from defaults/HVAC Cooling/Biquadratic ASHP Cooler.csv rename to ochre/defaults/HVAC Cooling/Biquadratic ASHP Cooler.csv diff --git a/defaults/HVAC Cooling/Biquadratic Air Conditioner.csv b/ochre/defaults/HVAC Cooling/Biquadratic Air Conditioner.csv similarity index 100% rename from defaults/HVAC Cooling/Biquadratic Air Conditioner.csv rename to ochre/defaults/HVAC Cooling/Biquadratic Air Conditioner.csv diff --git a/defaults/HVAC Cooling/Biquadratic MSHP Cooler.csv b/ochre/defaults/HVAC Cooling/Biquadratic MSHP Cooler.csv similarity index 100% rename from defaults/HVAC Cooling/Biquadratic MSHP Cooler.csv rename to ochre/defaults/HVAC Cooling/Biquadratic MSHP Cooler.csv diff --git a/defaults/HVAC Cooling/Biquadratic Room AC.csv b/ochre/defaults/HVAC Cooling/Biquadratic Room AC.csv similarity index 100% rename from defaults/HVAC Cooling/Biquadratic Room AC.csv rename to ochre/defaults/HVAC Cooling/Biquadratic Room AC.csv diff --git a/defaults/HVAC Heating/Biquadratic ASHP Heater.csv b/ochre/defaults/HVAC Heating/Biquadratic ASHP Heater.csv similarity index 100% rename from defaults/HVAC Heating/Biquadratic ASHP Heater.csv rename to ochre/defaults/HVAC Heating/Biquadratic ASHP Heater.csv diff --git a/defaults/HVAC Heating/Biquadratic Heat Pump Heater.csv b/ochre/defaults/HVAC Heating/Biquadratic Heat Pump Heater.csv similarity index 100% rename from defaults/HVAC Heating/Biquadratic Heat Pump Heater.csv rename to ochre/defaults/HVAC Heating/Biquadratic Heat Pump Heater.csv diff --git a/defaults/HVAC Heating/Biquadratic MSHP Heater.csv b/ochre/defaults/HVAC Heating/Biquadratic MSHP Heater.csv similarity index 100% rename from defaults/HVAC Heating/Biquadratic MSHP Heater.csv rename to ochre/defaults/HVAC Heating/Biquadratic MSHP Heater.csv diff --git a/defaults/HVAC Multispeed Parameters.csv b/ochre/defaults/HVAC Multispeed Parameters.csv similarity index 100% rename from defaults/HVAC Multispeed Parameters.csv rename to ochre/defaults/HVAC Multispeed Parameters.csv diff --git a/ochre/defaults/Input Files/OCHRE with Controller.csv b/ochre/defaults/Input Files/OCHRE with Controller.csv new file mode 100644 index 0000000..aed87ad --- /dev/null +++ b/ochre/defaults/Input Files/OCHRE with Controller.csv @@ -0,0 +1,433 @@ +Time,Total Electric Power (kW),Total Reactive Power (kVAR),Total Gas Power (therms/hour),Total Electric Energy (kWh),Total Reactive Energy (kVARh),Total Gas Energy (therms),Lighting Electric Power (kW),Other Electric Power (kW),HVAC Cooling Electric Power (kW),HVAC Heating Electric Power (kW),EV Electric Power (kW),Other Gas Power (therms/hour),HVAC Heating Gas Power (therms/hour),Water Heating Gas Power (therms/hour),Grid Voltage (-),Lighting Reactive Power (kVAR),Other Reactive Power (kVAR),HVAC Cooling Reactive Power (kVAR),HVAC Heating Reactive Power (kVAR),EV Reactive Power (kVAR),Clothes Washer Mode,Clothes Washer Electric Power (kW),Clothes Washer Reactive Power (kVAR),Clothes Dryer Mode,Clothes Dryer Electric Power (kW),Clothes Dryer Reactive Power (kVAR),Clothes Dryer Gas Power (therms/hour),Dishwasher Mode,Dishwasher Electric Power (kW),Dishwasher Reactive Power (kVAR),Refrigerator Mode,Refrigerator Electric Power (kW),Refrigerator Reactive Power (kVAR),Cooking Range Mode,Cooking Range Electric Power (kW),Cooking Range Reactive Power (kVAR),Cooking Range Gas Power (therms/hour),Exterior Lighting Mode,Exterior Lighting Electric Power (kW),Exterior Lighting Reactive Power (kVAR),Indoor Lighting Mode,Indoor Lighting Electric Power (kW),Indoor Lighting Reactive Power (kVAR),Basement Lighting Mode,Basement Lighting Electric Power (kW),Basement Lighting Reactive Power (kVAR),MELs Mode,MELs Electric Power (kW),MELs Reactive Power (kVAR),EV Mode,EV SOC (-),EV Parked,EV Unmet Load (kW),EV Start Time,EV End Time,Water Heating Mode,Water Heating Delivered (W),Water Heating COP (-),Water Heating Total Sensible Heat Gain (W),Water Heating Deadband Upper Limit (C),Water Heating Deadband Lower Limit (C),Hot Water Delivered (L/min),Hot Water Outlet Temperature (C),Hot Water Delivered (W),Hot Water Unmet Demand (kW),Hot Water Heat Injected (W),Hot Water Heat Loss (W),Hot Water Average Temperature (C),Hot Water Maximum Temperature (C),Hot Water Minimum Temperature (C),Hot Water Mains Temperature (C),HVAC Heating Mode,HVAC Heating Delivered (W),HVAC Heating Duct Losses (W),HVAC Heating Setpoint (C),HVAC Heating Main Power (kW),HVAC Heating Fan Power (kW),HVAC Heating Latent Gains (W),HVAC Heating COP (-),HVAC Heating SHR (-),HVAC Heating Speed (-),HVAC Heating Capacity (W),HVAC Heating Max Capacity (W),HVAC Cooling Mode,HVAC Cooling Delivered (W),HVAC Cooling Duct Losses (W),HVAC Cooling Setpoint (C),HVAC Cooling Main Power (kW),HVAC Cooling Fan Power (kW),HVAC Cooling Latent Gains (W),HVAC Cooling COP (-),HVAC Cooling SHR (-),HVAC Cooling Speed (-),HVAC Cooling Capacity (W),HVAC Cooling Max Capacity (W),Temperature - Indoor (C),Temperature - Foundation (C),Temperature - Attic (C),Temperature - Outdoor (C),Temperature - Ground (C),Unmet HVAC Load (C),Occupancy (Persons),Net Sensible Heat Gain - Indoor (W),Net Sensible Heat Gain - Foundation (W),Net Sensible Heat Gain - Attic (W),Window Transmitted Solar Gain (W) +2018-01-01 00:00:00,0.3791770942655053,0.2555803101502493,0.6903779785551797,0.0631961823775842,0.04259671835837488,0.11506299642586328,0.03229223628739501,0.33688485797811024,0.010000000000000002,0.0,0.0,0.0,0.6903779785551797,0.0,1,0.0,0.2526636434835826,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,Off,0.0,0,84.26874153270106,50,44.44,0.0,51.666402596652915,0.0,0.0,0.0,131.6699086448454,51.666402596652915,51.666402596652915,51.666402596652915,10.042356980382465,On,12139.790475708562,0.0,19,20.232984126180938,0.0,0.0,0.6,1,0.4962642263991516,12139.790475708562,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1255.9762009160147,20.057854558926863,-3.6808784943264885,-5.223962750251966,-18.0,6.529479366362011,0,4.0,-1326.8927267076633,-32790.6139965955,-1194.084794909213,0.0 +2018-01-01 00:10:00,0.3791770942655053,0.2555803101502493,1.0790394135679169,0.0631961823775842,0.04259671835837488,0.17983990226131946,0.03229223628739501,0.33688485797811024,0.010000000000000002,0.0,0.0,0.0,1.0790394135679169,0.0,1,0.0,0.2526636434835826,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,Off,0.0,0,86.60665511015132,50,44.44,0.0,51.53510608319423,0.0,0.0,0.0,135.32289860961143,51.53510608319423,51.535106083194236,51.53510608319423,10.042356980382465,On,18974.116792021872,0.0,19,31.62352798670312,0.0,0.0,0.6,1,0.7756456266886512,18974.116792021872,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1255.5485630596413,19.049624887611547,-16.98632244331546,-6.780836875511597,-18.0,6.529479366362011,0,4.0,4710.419091047073,-4953.876775152629,-1003.9562418777911,0.0 +2018-01-01 00:20:00,0.3791770942655053,0.2555803101502493,1.0903896775800057,0.0631961823775842,0.04259671835837488,0.18173161293000095,0.03229223628739501,0.33688485797811024,0.010000000000000002,0.0,0.0,0.0,1.0903896775800057,0.0,1,0.0,0.2526636434835826,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,Off,0.0,0,86.24690584724243,50,44.44,0.0,51.400166939076726,0.0,0.0,0.0,134.7607903863163,51.40016693907673,51.40016693907674,51.400166939076726,10.042356980382465,On,19173.70286114751,0.0,19,31.956171435245853,0.0,0.0,0.6,1,0.7838045340761283,19173.70286114751,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1244.019808474104,19.049624887611547,-16.459532721449897,-8.02687482928771,-18.0,6.529479366362011,0,4.0,4879.939472580107,-5648.829402678846,-878.736115080289,0.0 +2018-01-01 00:30:00,0.3791770942655053,0.2555803101502493,1.1009857332235624,0.0631961823775842,0.04259671835837488,0.18349762220392707,0.03229223628739501,0.33688485797811024,0.010000000000000002,0.0,0.0,0.0,1.1009857332235624,0.0,1,0.0,0.2526636434835826,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,Off,0.0,0,85.8886509213643,50,44.44,0.0,51.26578830913187,0.0,0.0,0.0,134.2010170646317,51.26578830913187,51.26578830913188,51.26578830913187,10.042356980382465,On,19360.026729198653,0.0,19,32.266711215331085,0.0,0.0,0.6,1,0.7914212940542449,19360.026729198653,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1242.8096430203655,19.049624887611547,-16.428974577481203,-9.155686574218798,-18.0,6.529479366362011,0,4.0,5034.906776017153,-5541.212266108847,-769.114201564998,0.0 +2018-01-01 00:40:00,0.3791770942655053,0.2555803101502493,1.1126256614008894,0.0631961823775842,0.04259671835837488,0.18543761023348154,0.03229223628739501,0.33688485797811024,0.010000000000000002,0.0,0.0,0.0,1.1126256614008894,0.0,1,0.0,0.2526636434835826,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,Off,0.0,0,85.53188412529951,50,44.44,0.0,51.13196786507945,0.0,0.0,0.0,133.6435689457805,51.13196786507945,51.13196786507945,51.13196786507945,10.042356980382465,On,19564.706330249614,0.0,19,32.60784388374936,0.0,0.0,0.5999999999999999,1,0.7997884206598063,19564.706330249614,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1241.6508601861856,19.049624887611547,-16.40818941899876,-10.158519607676435,-18.0,6.529479366362011,0,4.0,5188.82753465803,-5470.383728492657,-672.8615733045474,0.0 +2018-01-01 00:50:00,0.3791770942655053,0.2555803101502493,1.1244412485074662,0.0631961823775842,0.04259671835837488,0.18740687475124435,0.03229223628739501,0.33688485797811024,0.010000000000000002,0.0,0.0,0.0,1.1244412485074662,0.0,1,0.0,0.2526636434835826,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,Off,0.0,0,85.17659927761218,50,44.44,0.0,50.998703288310544,0.0,0.0,0.0,133.08843637126904,50.998703288310544,50.99870328831055,50.998703288310544,10.042356980382465,On,19772.47476475489,0.0,19,32.95412460792482,0.0,0.0,0.6,1,0.8082818161287182,19772.47476475489,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1240.5428360586347,19.049624887611547,-16.388699509140054,-11.024935130129757,-18.0,6.529479366362011,0,4.0,5344.443025753562,-5422.555294697298,-591.5717390657999,0.0 +2018-01-01 01:00:00,0.37756750319962185,0.2543731168508367,1.1363448628868689,0.06292791719993697,0.04239551947513945,0.1893908104811448,0.03229223628739501,0.3352752669122268,0.010000000000000002,0.0,0.0,0.0,1.1363448628868689,0.0,1,0.0,0.25145645018417,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,Off,0.0,0,84.82279022254001,50,44.44,0.0,50.86599226984734,0.0,0.0,0.0,132.53560972271876,50.86599226984734,50.86599226984734,50.86599226984734,10.042356980382465,On,19981.791094299475,0.0,19,33.30298515716579,0.0,0.0,0.6,1,0.8168384882197239,19981.791094299475,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1239.419472283281,19.049624887611543,-16.37006067723124,-11.761525210763416,-18.0,6.529479366362011,0,4.0,5499.603425579717,-5384.736602646599,-524.5339473239782,0.0 +2018-01-01 01:10:00,0.37756750319962185,0.2543731168508367,1.1482923851718307,0.06292791719993697,0.04239551947513945,0.19138206419530512,0.03229223628739501,0.3352752669122268,0.010000000000000002,0.0,0.0,0.0,1.1482923851718307,0.0,1,0.0,0.25145645018417,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,Off,0.0,0,84.47105908035745,50,44.44,0.0,50.73383251030311,0.0,0.0,0.0,131.9860298130585,50.73383251030311,50.73383251030311,50.73383251030311,10.042356980382465,On,20191.879512164185,0.0,19,33.653132520273644,0.0,0.0,0.6,1,0.825426722619294,20191.879512164185,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1238.3451466592323,19.049396737604837,-16.351740551546317,-12.383036218315015,-18.0,6.529479366362011,0,4.0,5657.118265637859,-5352.177040318458,-469.83516647237104,0.0 +2018-01-01 01:20:00,0.37756750319962185,0.2543731168508367,1.1599710176316682,0.06292791719993697,0.04239551947513945,0.19332850293861137,0.03229223628739501,0.3352752669122268,0.010000000000000002,0.0,0.0,0.0,1.1599710176316682,0.0,1,0.0,0.25145645018417,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,Off,0.0,0,84.1201807188391,50,44.44,0.0,50.60222077214621,0.0,0.0,0.0,131.43778237318608,50.60222077214621,50.60222077214621,50.60222077214621,10.042356980382465,On,20397.23969963996,0.0,19,33.99539949939993,0.0,0.0,0.6,1,0.8338216710143898,20397.23969963996,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1237.3144660717803,19.04939673760484,-16.333561577880765,-12.906237174790949,-18.0,6.529479366362011,0,4.0,5810.8457843280485,-5323.566262649574,-425.3276217706221,0.0 +2018-01-01 01:30:00,0.37756750319962185,0.2543731168508367,1.1172440254346172,0.06292791719993697,0.04239551947513945,0.18620733757243618,0.03229223628739501,0.3352752669122268,0.010000000000000002,0.0,0.0,0.0,1.1172440254346172,0.0,1,0.0,0.25145645018417,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,Off,0.0,0,83.77075984614702,50,44.44,0.0,50.471155726685524,0.0,0.0,0.0,130.8918122596047,50.47115572668553,50.47115572668554,50.471155726685524,10.042356980382465,On,19645.916874982428,0.0,19,32.74319479163738,0.0,0.0,0.6,1,0.8031082381012956,19645.916874982428,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1258.1422638824201,19.04939673760484,-16.315859193336355,-13.347088336440688,-16.6,6.529479366362011,0,4.0,5945.898923828103,-2223.6765899578445,-287.5969073011662,0.0 +2018-01-01 01:40:00,0.37756750319962185,0.2543731168508367,1.1281398592146248,0.06292791719993697,0.04239551947513945,0.18802330986910412,0.03229223628739501,0.3352752669122268,0.010000000000000002,0.0,0.0,0.0,1.1281398592146248,0.0,1,0.0,0.25145645018417,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,Off,0.0,0,83.42279040811715,50,44.44,0.0,50.34063510305292,0.0,0.0,0.0,130.34811001268304,50.34063510305292,50.34063510305292,50.34063510305292,10.042356980382465,On,19837.51212172575,0.0,19,33.06252020287626,0.0,0.0,0.5999999999999999,1,0.8109404875208458,19837.51212172575,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1257.1403104607496,19.04939673760484,-14.980250965996778,-13.572257672784222,-16.6,6.529479366362011,0,4.0,6089.081398095603,-4822.652423676916,-270.9774472404602,0.0 +2018-01-01 01:50:00,0.37756750319962185,0.2543731168508367,1.1384770804226974,0.06292791719993697,0.04239551947513945,0.18974618007044955,0.03229223628739501,0.3352752669122268,0.010000000000000002,0.0,0.0,0.0,1.1384770804226974,0.0,1,0.0,0.25145645018417,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,Off,0.0,0,83.07626637574364,50,44.44,0.0,50.210656639813024,0.0,0.0,0.0,129.80666621209943,50.210656639813024,50.210656639813024,50.210656639813024,10.042356980382465,On,20019.284576040824,0.0,19,33.36547429340138,0.0,0.0,0.5999999999999999,1,0.8183711896076609,20019.284576040824,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1255.5819014528147,19.049396737604837,-14.958005075002161,-13.756412608796763,-16.6,6.529479366362011,0,4.0,6225.003485815372,-4842.31808569641,-255.74478637342014,0.0 +2018-01-01 02:00:00,0.3759579121337384,0.25316592355142414,1.1502822093328775,0.06265965202228974,0.04219432059190402,0.19171370155547957,0.03229223628739501,0.33366567584634343,0.010000000000000002,0.0,0.0,0.0,1.1481743106775228,0.0021078986553546854,1,0.0,0.25024925688475746,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,47.818409802712395,0,82.79261003161038,50,44.44,0.0,50.08121808492411,0.0,0.0,47.818409802712395,129.36345317439122,50.08121808492411,50.08121808492412,50.08121808492411,10.042356980382465,On,20189.803258769745,0.0,19,33.649672097949576,0.0,0.0,0.6,1,0.8253418471606391,20189.803258769745,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1254.7772106811321,19.04939673760484,-14.943459928992779,-13.897686615542078,-16.6,6.529479366362011,0,4.0,6350.8656128769035,-4832.968934833763,-244.14381489298938,0.0 +2018-01-01 02:10:00,0.3759579121337384,0.25316592355142414,1.1629840642658233,0.06265965202228974,0.04219432059190402,0.1938306773776372,0.03229223628739501,0.33366567584634343,0.010000000000000002,0.0,0.0,0.0,1.157296441921607,0.005687622344216292,1,0.0,0.25024925688475746,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.02567937405647,0,82.68075494401401,50,44.44,0.0,49.999904290491266,0.0,0.0,129.02567937405647,129.18867960002189,49.999904290491266,49.99990429049127,49.999904290491266,10.042356980382465,On,20350.20924713405,0.0,19,33.917015411890084,0.0,0.0,0.6,1,0.8318991064382756,20350.20924713405,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1253.9772837712555,19.049168587598132,-14.929318273711631,-14.008957192690435,-16.6,6.529479366362011,0,4.0,6470.977426825602,-4818.756219626353,-235.37060495357395,0.0 +2018-01-01 02:20:00,0.3759579121337384,0.25316592355142414,1.1713981979324921,0.06265965202228974,0.04219432059190402,0.19523303298874867,0.03229223628739501,0.33366567584634343,0.010000000000000002,0.0,0.0,0.0,1.1657034201694152,0.005694777763076997,1,0.0,0.25024925688475746,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.18800252489777,0,82.68053013882394,50,44.44,0.0,49.99974175250835,0.0,0.0,129.18800252489777,129.1883283419124,49.99974175250835,49.999741752508356,49.99974175250835,10.042356980382465,On,20498.03979450438,0.0,19,34.1633996575073,0.0,0.0,0.6,1,0.8379422924698382,20498.03979450438,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1253.210226416623,19.049168587598135,-14.915704572271913,-14.100788821703915,-16.6,6.529479366362011,0,4.0,6581.294912731622,-4803.765278337437,-228.45821586398273,0.0 +2018-01-01 02:30:00,0.3759579121337384,0.25316592355142414,1.1313709601299227,0.06265965202228974,0.04219432059190402,0.18856182668832044,0.03229223628739501,0.33366567584634343,0.010000000000000002,0.0,0.0,0.0,1.1256761680640603,0.005694792065862356,1,0.0,0.25024925688475746,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.1883269885288,0,82.6805296894689,50,44.44,0.0,49.999741427615305,0.0,0.0,129.1883269885288,129.18832763979515,49.999741427615305,49.999741427615305,49.999741427615305,10.042356980382465,On,19794.18991954992,0.0,19,32.99031653258321,0.0,0.0,0.5999999999999999,1,0.8091695130388962,19794.18991954992,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1271.5428180056763,19.049168587598132,-14.903112023090731,-14.179900773579698,-15.3,6.529479366362011,0,4.0,6670.083565880492,-1925.4477380231638,-161.00152576379668,0.0 +2018-01-01 02:40:00,0.3759579121337384,0.25316592355142414,1.138524620233988,0.06265965202228974,0.04219432059190402,0.18975410337233134,0.03229223628739501,0.33366567584634343,0.010000000000000002,0.0,0.0,0.0,1.1328298281395364,0.005694792094451781,1,0.0,0.25024925688475746,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.1883276370898,0,82.6805296885705,50,44.44,0.0,49.99974142696588,0.0,0.0,129.1883276370898,129.1883276383914,49.99974142696588,49.99974142696588,49.99974142696588,10.042356980382465,On,19919.981785959782,0.0,19,33.1999696432663,0.0,0.0,0.6000000000000001,1,0.8143117766880182,19919.981785959782,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1270.7833334377742,19.049168587598132,-13.663472730334048,-14.157923128487143,-15.3,6.529479366362011,0,4.0,6763.859118916589,-4353.027389930525,-159.2613255761126,0.0 +2018-01-01 02:50:00,0.3759579121337384,0.25316592355142414,1.1450449879087692,0.06265965202228974,0.04219432059190402,0.19084083131812818,0.03229223628739501,0.33366567584634343,0.010000000000000002,0.0,0.0,0.0,1.1393501958142604,0.005694792094508635,1,0.0,0.25024925688475746,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.18832763837955,0,82.68052968856747,50,44.44,0.0,49.99974142696458,0.0,0.0,129.18832763837955,129.18832763838668,49.99974142696458,49.99974142696459,49.99974142696458,10.042356980382465,On,20034.63766991684,0.0,19,33.391062783194734,0.0,0.0,0.6,1,0.8189988109220864,20034.63766991684,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1269.9062550404235,19.049168587598132,-13.647270345578425,-14.123434745566396,-15.3,6.529479366362011,0,4.0,6849.621555471267,-4377.352979017705,-157.46124295719943,0.0 +2018-01-01 03:00:00,0.374348321067855,0.2519587302520116,1.1509488283043563,0.062391386844642495,0.0419931217086686,0.19182480471739272,0.03229223628739501,0.33205608478046,0.010000000000000002,0.0,0.0,0.0,1.1452540362098471,0.005694792094509159,1,0.0,0.24904206358534492,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.18832763839143,0,82.68052968856901,50,44.44,0.0,49.999741426964576,0.0,0.0,129.18832763839143,129.18832763838907,49.999741426964576,49.99974142696458,49.999741426964576,10.042356980382465,On,20138.45237379027,0.0,19,33.56408728965046,0.0,0.0,0.5999999999999999,1,0.8232426670091988,20138.45237379027,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1269.379216352198,19.049168587598132,-13.63842135263012,-14.076125633309784,-15.3,6.529479366362011,0,4.0,6925.6688473029935,-4373.748907131396,-156.82673310704456,0.0 +2018-01-01 03:10:00,0.374348321067855,0.2519587302520116,1.1563778063068184,0.062391386844642495,0.0419931217086686,0.19272963438446972,0.03229223628739501,0.33205608478046,0.010000000000000002,0.0,0.0,0.0,1.1506829723178038,0.005694833989014553,1,0.0,0.24904206358534492,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.18927802973133,0,82.68113915991717,50,44.44,0.0,49.99974142696458,0.0,0.0,129.18927802973133,129.18927993737057,49.99974142696458,49.99974142696458,49.99974142696458,10.042356980382465,On,20233.916234028882,0.0,19,33.72319372338147,0.0,0.0,0.6,1,0.8271451477682521,20233.916234028882,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1268.8445328406365,19.048940437591426,-13.630003185682412,-14.025141049709726,-15.3,6.529479366362011,0,4.0,6997.001614520383,-4364.696847955638,-157.2473222154654,0.0 +2018-01-01 03:20:00,0.374348321067855,0.2519587302520116,1.1611661077273627,0.062391386844642495,0.0419931217086686,0.1935276846212271,0.03229223628739501,0.33205608478046,0.010000000000000002,0.0,0.0,0.0,1.1554712736546062,0.005694834072756419,1,0.0,0.24904206358534492,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.1892799294445,0,82.68113915728733,50,44.44,0.0,49.99974142506235,0.0,0.0,129.1892799294445,129.18927993326145,49.99974142506235,49.99974142506235,49.99974142506235,10.042356980382465,On,20318.11500161557,0.0,19,33.86352500269262,0.0,0.0,0.6,1,0.830587121198006,20318.11500161557,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1268.331051395108,19.048940437591426,-13.621956839421381,-13.977423903810777,-15.3,6.529479366362011,0,4.0,7060.114191478893,-4354.623352337456,-158.07498946034053,0.0 +2018-01-01 03:30:00,0.374348321067855,0.2519587302520116,1.1315233541687781,0.062391386844642495,0.0419931217086686,0.18858722569479636,0.03229223628739501,0.33205608478046,0.010000000000000002,0.0,0.0,0.0,1.125828520095854,0.005694834072924152,1,0.0,0.24904206358534492,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.1892799332496,0,82.6811391572843,50,44.44,0.0,49.999741425058545,0.0,0.0,129.1892799332496,129.18927993325673,49.999741425058545,49.999741425058545,49.999741425058545,10.042356980382465,On,19796.86891830419,0.0,19,32.994781530506984,0.0,0.0,0.6,1,0.8092790282110872,19796.86891830419,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1280.35552498666,19.048940437591426,-13.614777009028426,-13.936297128499106,-14.4,6.529479366362011,0,4.0,7107.708386258071,-2364.7211798377693,-128.82223598435522,0.0 +2018-01-01 03:40:00,0.374348321067855,0.2519587302520116,1.1353567800000228,0.062391386844642495,0.0419931217086686,0.1892261300000038,0.03229223628739501,0.33205608478046,0.010000000000000002,0.0,0.0,0.0,1.1296619459270982,0.00569483407292457,1,0.0,0.24904206358534492,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.1892799332591,0,82.68113915728429,50,44.44,0.0,49.99974142505853,0.0,0.0,129.1892799332591,129.1892799332567,49.99974142505854,49.999741425058545,49.99974142505853,10.042356980382465,On,19864.276900367677,0.0,19,33.10712816727946,0.0,0.0,0.6,1,0.8120346087245073,19864.276900367677,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1279.8963992356803,19.048940437591426,-12.759495140956965,-13.85560542643453,-14.4,6.529479366362011,0,4.0,7158.546431639445,-4042.1563236589536,-129.22254243647703,0.0 +2018-01-01 03:50:00,0.374348321067855,0.2519587302520116,1.138795097679463,0.062391386844642495,0.0419931217086686,0.18979918294657716,0.03229223628739501,0.33205608478046,0.010000000000000002,0.0,0.0,0.0,1.1331002636065388,0.005694834072924152,1,0.0,0.24904206358534492,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.1892799332496,0,82.6811391572843,50,44.44,0.0,49.999741425058545,0.0,0.0,129.1892799332496,129.18927993325673,49.999741425058545,49.999741425058545,49.999741425058545,10.042356980382465,On,19924.737195327678,0.0,19,33.207895325546126,0.0,0.0,0.6000000000000001,1,0.8145061737458499,19924.737195327678,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1278.5064441646762,19.048940437591426,-12.749958256490126,-13.769656902078745,-14.4,6.529479366362011,0,4.0,7203.898456998129,-4057.9947341028574,-129.20975710595056,0.0 +2018-01-01 04:00:00,0.39335374774580234,0.26569515198752536,1.1465101465873395,0.06555895795763372,0.04428252533125422,0.19108502443122324,0.03298243398465735,0.350371313761145,0.010000000000000002,0.0,0.0,0.0,1.140815312514415,0.00569483407292457,1,0.0,0.2627784853208587,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016949946941462603,0,On,0.00814366933757535,0.0,On,0.2924260353893423,0.21931952654200668,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.1892799332591,0,82.68113915728429,50,44.44,0.0,49.99974142505853,0.0,0.0,129.1892799332591,129.1892799332567,49.99974142505854,49.999741425058545,49.99974142505853,10.042356980382465,On,20060.40067267014,0.0,19,33.43400112111691,0.0,0.0,0.5999999999999999,1,0.8200519803863098,20060.40067267014,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1278.238457157887,19.048940437591426,-12.745472942395743,-13.678993649387694,-14.4,6.529479366362011,0,3.0,7261.4446508655565,-4037.792858129226,-130.20188975557886,0.0 +2018-01-01 04:10:00,0.39335374774580234,0.26569515198752536,1.14819220623482,0.06555895795763372,0.04428252533125422,0.1913653677058033,0.03298243398465735,0.350371313761145,0.010000000000000002,0.0,0.0,0.0,1.1424978305336757,0.005694375701144207,1,0.0,0.2627784853208587,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016949946941462603,0,On,0.00814366933757535,0.0,On,0.2924260353893423,0.21931952654200668,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.17888161093947,0,82.67447087315071,50,44.44,0.0,49.999741425058545,0.0,0.0,129.17888161093947,129.178860739298,49.999741425058545,49.999741425058545,49.999741425058545,10.042356980382465,On,20089.986518192298,0.0,19,33.483310863653834,0.0,0.0,0.5999999999999999,1,0.8212614243853472,20089.986518192298,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1277.9509765885311,19.051436648561584,-12.73414433546218,-13.591063277323018,-14.4,6.529479366362011,0,3.0,7281.566949935572,-4048.0540998625447,-131.94700428149014,0.0 +2018-01-01 04:20:00,0.39335374774580234,0.26569515198752536,1.1504848823781244,0.06555895795763372,0.04428252533125422,0.19174748039635406,0.03298243398465735,0.350371313761145,0.010000000000000002,0.0,0.0,0.0,1.144790507593208,0.005694374784916326,1,0.0,0.2627784853208587,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016949946941462603,0,On,0.00814366933757535,0.0,On,0.2924260353893423,0.21931952654200668,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.1788608259932,0,82.67447090193751,50,44.44,0.0,49.999741445870995,0.0,0.0,129.1788608259932,129.17886078427736,49.999741445870995,49.999741445870995,49.999741445870995,10.042356980382465,On,20130.301562987665,0.0,19,33.55050260497944,0.0,0.0,0.6,1,0.8229094688518191,20130.301562987665,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1277.6460912915645,19.051436648561584,-12.731668328916985,-13.510910420795062,-14.4,6.529479366362011,0,3.0,7311.920947216959,-4036.9083417313004,-134.01560132011474,0.0 +2018-01-01 04:30:00,0.39335374774580234,0.26569515198752536,1.1071405079213765,0.06555895795763372,0.04428252533125422,0.1845234179868961,0.03298243398465735,0.350371313761145,0.010000000000000002,0.0,0.0,0.0,1.1014461331382914,0.005694374783085184,1,0.0,0.2627784853208587,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016949946941462603,0,On,0.00814366933757535,0.0,On,0.2924260353893423,0.21931952654200668,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.17886078445312,0,82.67447090199376,50,44.44,0.0,49.99974144591259,0.0,0.0,129.17886078445312,129.17886078436524,49.99974144591258,49.99974144591259,49.99974144591259,10.042356980382465,On,19368.122524072554,0.0,19,32.280204206787595,0.0,0.0,0.5999999999999999,1,0.7917522432076278,19368.122524072554,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1295.6498492995045,19.051436648561584,-12.72825435167203,-13.440751756657104,-13.0,6.529479366362011,0,3.0,7323.950951846149,-923.4819155409841,-107.11537437125892,0.0 +2018-01-01 04:40:00,0.39335374774580234,0.26569515198752536,1.1087868587703018,0.06555895795763372,0.04428252533125422,0.18479780979505028,0.03298243398465735,0.350371313761145,0.010000000000000002,0.0,0.0,0.0,1.1030924839872205,0.005694374783081413,1,0.0,0.2627784853208587,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016949946941462603,0,On,0.00814366933757535,0.0,On,0.2924260353893423,0.21931952654200668,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.1788607843676,0,82.67447090199374,50,44.44,0.0,49.999741445912676,0.0,0.0,129.1788607843676,129.1788607843652,49.99974144591267,49.999741445912676,49.999741445912676,10.042356980382465,On,19397.072396427015,0.0,19,32.32845399404503,0.0,0.0,0.6,1,0.7929356891688318,19397.072396427015,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1295.326477874919,19.051436648561587,-11.393634846341891,-13.33203342896532,-13.0,6.529479366362011,0,3.0,7346.208150345285,-3563.7270589367,-107.23745028357503,0.0 +2018-01-01 04:50:00,0.39335374774580234,0.26569515198752536,1.1101665632640099,0.06555895795763372,0.04428252533125422,0.18502776054400163,0.03298243398465735,0.350371313761145,0.010000000000000002,0.0,0.0,0.0,1.1044721884809285,0.005694374783081413,1,0.0,0.2627784853208587,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016949946941462603,0,On,0.00814366933757535,0.0,On,0.2924260353893423,0.21931952654200668,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.1788607843676,0,82.67447090199374,50,44.44,0.0,49.999741445912676,0.0,0.0,129.1788607843676,129.1788607843652,49.99974144591267,49.999741445912676,49.999741445912676,10.042356980382465,On,19421.333488165576,0.0,19,32.36888914694263,0.0,0.0,0.6,1,0.7939274617984606,19421.333488165576,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1296.195703510492,19.051436648561584,-11.385245576323369,-13.207015493335145,-13.0,6.529479366362011,0,3.0,7364.5306629354345,-3597.305398316816,-106.24039244705217,0.0 +2018-01-01 05:00:00,0.4412155397695138,0.2845944298258145,1.1112155190215913,0.07353592329491895,0.04743240497096908,0.18520258650359855,0.05564518889064987,0.37557035087886387,0.010000000000000002,0.0,0.0,0.0,1.10552114423851,0.005694374783081413,1,0.0,0.28167776315914783,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.1788607843676,0,82.67447090199374,50,44.44,0.0,49.999741445912676,0.0,0.0,129.1788607843676,129.1788607843652,49.99974144591267,49.999741445912676,49.999741445912676,10.042356980382465,On,19439.778605928423,0.0,19,32.39963100988071,0.0,0.0,0.6,1,0.7946814823983825,19439.778605928423,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1295.967099798968,19.051436648561584,-11.384243020787036,-13.067732338844392,-13.0,6.529479366362011,0,3.0,7424.642242906146,-3600.4292304131905,-105.83561881521099,0.0 +2018-01-01 05:10:00,0.4412155397695138,0.2845944298258145,1.1094081322530172,0.07353592329491895,0.04743240497096908,0.18490135537550284,0.05564518889064987,0.37557035087886387,0.010000000000000002,0.0,0.0,0.0,1.1037149573070095,0.005693174946007599,1,0.0,0.28167776315914783,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.15164206550443,0,82.65701595632396,50,44.44,0.0,49.999741445912676,0.0,0.0,129.15164206550443,129.15158743175618,49.99974144591267,49.999741445912676,49.999741445912676,10.042356980382465,On,19408.018133275073,0.0,19,32.34669688879179,0.0,0.0,0.6,1,0.7933831415066741,19408.018133275073,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1295.784569087749,19.05797074729014,-11.383201468169403,-12.925780341768787,-13.0,6.529479366362011,0,3.0,7395.765028201115,-3606.7154885829486,-105.56627891871395,0.0 +2018-01-01 05:20:00,0.4412155397695138,0.2845944298258145,1.1098481973505596,0.07353592329491895,0.04743240497096908,0.1849746995584266,0.05564518889064987,0.37557035087886387,0.010000000000000002,0.0,0.0,0.0,1.1041550248028758,0.005693172547683934,1,0.0,0.28167776315914783,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.15158765870285,0,82.65701603167705,50,44.44,0.0,49.99974150039149,0.0,0.0,129.15158765870285,129.1515875494954,49.99974150039149,49.999741500391494,49.99974150039149,10.042356980382465,On,19415.756397473717,0.0,19,32.35959399578953,0.0,0.0,0.5999999999999999,1,0.7936994751125873,19415.756397473717,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1295.6854248283366,19.057970747290135,-11.386088892847695,-12.78891896556338,-13.0,6.529479366362011,0,3.0,7401.597543967526,-3594.401193540431,-106.90727109981913,0.0 +2018-01-01 05:30:00,0.4412155397695138,0.2845944298258145,1.0454348892410574,0.07353592329491895,0.04743240497096908,0.1742391482068429,0.05564518889064987,0.37557035087886387,0.010000000000000002,0.0,0.0,0.0,1.0397417166981675,0.005693172542889922,1,0.0,0.28167776315914783,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.15158754994906,0,82.65701603182755,50,44.44,0.0,49.999741500500384,0.0,0.0,129.15158754994906,129.15158754973055,49.999741500500384,49.99974150050039,49.999741500500384,10.042356980382465,On,18283.095610878365,0.0,19,30.47182601813061,0.0,0.0,0.6,1,0.7473972732618104,18283.095610878365,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1318.2463196410074,19.05797074729014,-11.385497406162749,-12.663465797390275,-11.1,6.529479366362011,0,3.0,7384.938735099111,732.5000890395822,-59.19801551061284,0.0 +2018-01-01 05:40:00,0.4412155397695138,0.2845944298258145,1.0453409469368462,0.07353592329491895,0.04743240497096908,0.17422349115614102,0.05564518889064987,0.37557035087886387,0.010000000000000002,0.0,0.0,0.0,1.0396477743939658,0.005693172542880291,1,0.0,0.28167776315914783,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.15158754973055,0,82.65701603182451,50,44.44,0.0,49.999741500500605,0.0,0.0,129.15158754973055,129.1515875497258,49.9997415005006,49.999741500500605,49.999741500500605,10.042356980382465,On,18281.443704350004,0.0,19,30.469072840583337,0.0,0.0,0.6,1,0.7473297447392201,18281.443704350004,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1318.0612645211509,19.05797074729014,-9.531686471714217,-12.471019892983831,-11.1,6.529479366362011,0,3.0,7384.3306598148765,-3067.9302265539336,-64.69399936513793,0.0 +2018-01-01 05:50:00,0.4412155397695138,0.2845944298258145,1.0450233908788633,0.07353592329491895,0.04743240497096908,0.17417056514647722,0.05564518889064987,0.37557035087886387,0.010000000000000002,0.0,0.0,0.0,1.0393302183359832,0.00569317254288008,1,0.0,0.28167776315914783,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.15158754972578,0,82.65701603182754,50,44.44,0.0,49.999741500500605,0.0,0.0,129.15158754972578,129.15158754973052,49.999741500500605,49.99974150050061,49.999741500500605,10.042356980382465,On,18275.859713944817,0.0,19,30.459766189908034,0.0,0.0,0.5999999999999999,1,0.7471014759989816,18275.859713944817,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1316.6910804368677,19.057970747290135,-9.574556980842111,-12.26741993651725,-11.1,6.529479366362011,0,3.0,7380.387332598651,-3019.9922726323357,-68.53690424853278,0.0 +2018-01-01 06:00:00,0.5601321866583067,0.30955086744745547,1.0668266447505772,0.0933553644430511,0.051591811241242576,0.17780444079176286,0.10558802904560591,0.4445441576127007,0.010000000000000002,0.0,0.0,0.019978093963262607,1.0387111164722513,0.008137434315063204,1,0.0,0.3066342007807888,0.0029166666666666685,0,0,Off,0.0,0.0,On,0.04407173219845146,0.0062798817201019696,0.019978093963262607,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.06726698000344689,0,On,0.03231868774440513,0.0,On,0.3393079649106797,0.2544809736830097,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,184.60051095524392,0,82.65649251990952,50,44.44,0.019945121787507042,49.999741500500605,55.56103915098721,-0.0,184.60051095524392,129.15076956235862,49.9997415005006,49.999741500500605,49.999741500500605,10.042356980382465,On,18264.973261679126,0.0,19,30.441622102798547,0.0,0.0,0.5999999999999999,1,0.7466564471640379,18264.973261679126,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1316.7932809118063,19.05797074729014,-9.576771693117951,-12.052909194558087,-11.1,6.529479366362011,0,3.0,7529.843364161533,-3029.1262392407857,-73.4724512245802,0.0 +2018-01-01 06:10:00,0.9567777764443698,0.3660698029283732,1.267664050451203,0.1594629627407283,0.06101163382139553,0.21127734174186713,0.10558802904560591,0.8411897473987638,0.010000000000000002,0.0,0.0,0.19978093963262605,1.0291125595773174,0.0387705512412595,1,0.0,0.36315313626170653,0.0029166666666666685,0,0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.06726698000344689,0,On,0.03231868774440513,0.0,On,0.3393079649106797,0.2544809736830097,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,879.5233598266385,0,82.59018311000888,50,44.44,0.26990498502340426,49.999630518365464,751.8710563696862,0.0,879.5233598266385,129.04716110938887,49.999630518365464,49.99963051836547,49.999630518365464,10.042356980382465,On,18096.18967762344,0.0,19,30.160316129372397,0.0,0.0,0.6,1,0.7397567189572063,18096.18967762344,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1316.8900058436816,19.08027961865265,-9.578396714776554,-11.84218145322202,-11.1,6.529479366362011,0,3.0,8141.918518286746,-3062.062349106605,-78.83424554118378,0.0 +2018-01-01 06:20:00,1.0918962092945503,0.5240407555603226,1.2562880692488276,0.1819827015490917,0.08734012592672043,0.2093813448748046,0.10558802904560591,0.9763081802489444,0.010000000000000002,0.0,0.0,0.19978093963262605,0.9859624914628977,0.0705446381533039,1,0.0,0.5211240888936559,0.0029166666666666685,0,0,On,0.13511843285018058,0.15797095263194932,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.06726698000344689,0,On,0.03231868774440513,0.0,On,0.3393079649106797,0.2544809736830097,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1600.3295073173872,0,82.29499483865409,50,44.44,0.5288609902419028,49.99823961631031,1473.1903888083891,0.0,1600.3295073173872,128.58592943539702,49.998239616310315,49.99823961631032,49.99823961631031,10.042356980382465,On,17337.42737321465,0.0,19,28.895712288691087,0.0,0.0,0.5999999999999999,1,0.7087391664902403,17337.42737321465,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1317.3988422211285,19.18751630358882,-9.593122906874749,-11.644985675332594,-11.1,6.529479366362011,0,3.0,7522.5313844958555,-3183.0298421097395,-83.8427355553853,0.0 +2018-01-01 06:30:00,1.294573858569821,0.7609971845082465,1.158866434200866,0.21576230976163682,0.12683286408470773,0.19314440570014435,0.10558802904560591,1.178985829524215,0.010000000000000002,0.0,0.0,0.19978093963262605,0.93731757802794,0.021767916540300105,1,0.0,0.7580805178415798,0.0029166666666666685,0,0,On,0.3377960821254514,0.3949273815798733,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.06726698000344689,0,On,0.03231868774440513,0.0,On,0.3393079649106797,0.2544809736830097,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,493.81271297417464,0,82.28964594199967,50,44.44,0.13032323895246078,49.996796908312525,363.0141271295397,-0.0,493.81271297417464,128.57757178437447,49.996796908312525,49.99679690831253,49.996796908312525,10.042356980382465,On,16482.04224339744,0.0,19,27.4700704056624,0.0,0.0,0.6,1,0.6737717557617369,16482.04224339744,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1334.6895204332552,19.192687407879763,-9.658350622220244,-11.465530279933809,-9.7,6.529479366362011,0,3.0,7500.049356471318,42.87140360144167,-39.142905712015725,0.0 +2018-01-01 06:40:00,1.294573858569821,0.7609971845082465,1.1671975853037064,0.21576230976163682,0.12683286408470773,0.19453293088395107,0.10558802904560591,1.178985829524215,0.010000000000000002,0.0,0.0,0.19978093963262605,0.9318591694909222,0.035557476180158164,1,0.0,0.7580805178415798,0.0029166666666666685,0,0,On,0.3377960821254514,0.3949273815798733,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.06726698000344689,0,On,0.03231868774440513,0.0,On,0.3393079649106797,0.2544809736830097,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,806.6336411448048,0,82.26901362501557,50,44.44,0.24364779456329622,49.999011623925654,678.7162053536202,-0.0,806.6336411448048,128.54533378908684,49.999011623925654,49.99901162392566,49.999011623925654,10.042356980382465,On,16386.060132106908,0.0,19,27.31010022017818,0.0,0.0,0.6,1,0.669848089344012,16386.060132106908,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1335.0388762538319,19.200444064316176,-8.33203129808171,-11.229064695437586,-9.7,6.529479366362011,0,3.0,7422.734667028858,-2609.2493049594405,-48.25586063752791,0.0 +2018-01-01 06:50:00,1.1256758175070953,0.5635334937183099,1.1723482736283122,0.18761263625118255,0.09392224895305164,0.19539137893805203,0.10558802904560591,1.0100877884614894,0.010000000000000002,0.0,0.0,0.19978093963262605,0.9294141401664909,0.04315319382919514,1,0.0,0.5606168270516432,0.0029166666666666685,0,0,On,0.1688980410627257,0.19746369078993664,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.06726698000344689,0,On,0.03231868774440513,0.0,On,0.3393079649106797,0.2544809736830097,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,978.9451222326984,0,82.26652669928495,50,44.44,0.30540967737120156,49.99838550654788,850.7495399800731,-0.0,978.9451222326984,128.54144796763273,49.99838550654788,49.99838550654789,49.99838550654788,10.042356980382465,On,16343.06608445829,0.0,19,27.23844347409715,0.0,0.0,0.6,1,0.668090529537786,16343.06608445829,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1335.1778987970085,19.20044406431618,-8.334244117308247,-11.001978647542323,-9.7,6.529479366362011,0,3.0,7345.341260753691,-2639.2700640006724,-55.13679234053211,0.0 +2018-01-01 07:00:00,1.0105395188266508,0.3891415397225377,1.224154078735881,0.16842325313777512,0.06485692328708961,0.20402567978931346,0.12858745570233435,0.8719520631243164,0.010000000000000002,0.0,0.0,0.19978093963262605,0.9294547258867316,0.09491841321652336,1,0.0,0.386224873055871,0.0029166666666666685,0,0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.3668510985044655,0.2751383238783491,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,2153.25702185961,0,82.27223349112771,50,44.44,0.7276997525463523,49.998040621653736,2027.0637502555453,0.0,2153.25702185961,128.55036482988703,49.998040621653736,49.99804062165374,49.998040621653736,10.042356980382465,On,16343.779754585861,0.0,19,27.239632924309767,0.0,0.0,0.6,1,0.6681197037607244,16343.779754585861,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1335.5638308556327,19.193980183952494,-8.339008989900789,-10.780654086944791,-9.7,6.529479366362011,0,3.0,7357.692454318333,-2638.5655325213565,-61.962690530145295,0.0 +2018-01-01 07:10:00,1.0105395188266508,0.3891415397225377,1.1657223944165405,0.16842325313777512,0.06485692328708961,0.19428706573609006,0.12858745570233435,0.8719520631243164,0.010000000000000002,0.0,0.0,0.19978093963262605,0.9266276716755509,0.03931378310836335,1,0.0,0.386224873055871,0.0029166666666666685,0,0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.3668510985044655,0.2751383238783491,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,891.8467625543155,0,82.27855471921518,50,44.44,0.27312091381567044,49.99569021277419,760.7546026855472,0.0,891.8467625543155,128.5602417487737,49.99569021277419,49.9956902127742,49.99569021277419,10.042356980382465,On,16294.068079455337,0.0,19,27.15678013242556,0.0,0.0,0.6,1,0.6660875331025059,16294.068079455337,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1335.804278974581,19.19486342703386,-8.339480357940381,-10.572536892989358,-9.7,6.529479366362011,0,3.0,7320.0594868807675,-2649.5453492840134,-68.46115235069445,0.0 +2018-01-01 07:20:00,1.0105395188266508,0.3891415397225377,1.1295955758002516,0.16842325313777512,0.06485692328708961,0.18826592930004193,0.12858745570233435,0.8719520631243164,0.010000000000000002,0.0,0.0,0.19978093963262605,0.9240793974340231,0.005735238733602415,1,0.0,0.386224873055871,0.0029166666666666685,0,0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.3668510985044655,0.2751383238783491,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,130.105873630648,0,82.28921471356597,50,44.44,0.0,49.99821495077196,0.0,0.0,130.105873630648,128.57689798994681,49.99821495077196,49.99821495077197,49.99821495077196,10.042356980382465,On,16249.258545652514,0.0,19,27.082097576087524,0.0,0.0,0.6,1,0.6642557577788328,16249.258545652514,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1336.16662522848,19.19486342703386,-8.343884952300165,-10.382345169535103,-9.7,6.529479366362011,0,3.0,7286.88128200682,-2648.886408912862,-74.23679684434035,0.0 +2018-01-01 07:30:00,1.0105395188266508,0.3891415397225377,1.0673169158833653,0.16842325313777512,0.06485692328708961,0.17788615264722754,0.12858745570233435,0.8719520631243164,0.010000000000000002,0.0,0.0,0.19978093963262605,0.8618678568175717,0.005668119433167561,1,0.0,0.386224873055871,0.0029166666666666685,0,0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.3668510985044655,0.2751383238783491,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,128.58324909378422,0,82.29132343242755,50,44.44,0.0,49.99973959047782,0.0,0.0,128.58324909378422,128.58019286316804,49.99973959047782,49.99973959047783,49.99973959047782,10.042356980382465,On,15155.314225708667,0.0,19,25.25885704284778,0.0,0.0,0.6,1,0.6195362518905738,15155.314225708667,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1355.9276258958737,19.19486342703386,-8.34779109672723,-10.211454969910578,-7.7,6.529479366362011,0,3.0,7228.205544916493,1901.7799582412267,26.612160015754696,70.78716972415684 +2018-01-01 07:40:00,1.0105395188266508,0.3891415397225377,1.1426702529732056,0.16842325313777512,0.06485692328708961,0.19044504216220093,0.12858745570233435,0.8719520631243164,0.010000000000000002,0.0,0.0,0.19978093963262605,0.8587043971832955,0.08418491615728402,1,0.0,0.386224873055871,0.0029166666666666685,0,0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.3668510985044655,0.2751383238783491,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1909.7639299639982,0,82.2745108934131,50,44.44,0.6406963943736892,49.999742638041454,1784.7852143684281,0.0,1909.7639299639982,128.55392327095797,49.999742638041454,49.999742638041454,49.999742638041454,10.042356980382465,On,15099.687107910318,0.0,19,25.16614517985053,0.0,0.0,0.6,1,0.6172622630077961,15099.687107910318,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1356.2344345998492,19.19486342703386,-6.399985777492797,-9.898683468599783,-7.7,6.529479366362011,0,3.0,7186.918145830993,-2079.155605165351,10.852493622439397,68.1455171707131 +2018-01-01 07:50:00,1.0105395188266508,0.3891415397225377,1.0611813365881002,0.16842325313777512,0.06485692328708961,0.17686355609801668,0.12858745570233435,0.8719520631243164,0.010000000000000002,0.0,0.0,0.19978093963262605,0.8555754664524389,0.0058249305030352765,1,0.0,0.386224873055871,0.0029166666666666685,0,0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.3668510985044655,0.2751383238783491,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,132.1405624311631,0,82.28639682475061,50,44.44,0.0,49.99617756909365,0.0,0.0,132.1405624311631,128.57249503867283,49.99617756909365,49.99617756909366,49.99617756909365,10.042356980382465,On,15044.667155557407,0.0,19,25.074445259262347,0.0,0.0,0.5999999999999999,1,0.6150130945278647,15044.667155557407,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1356.4322030391334,19.19486342703386,-6.437630797349665,-9.59322856490627,-7.7,6.529479366362011,0,3.0,7145.786515949109,-2058.4032306279887,-1.233068042270915,67.09844844358628 +2018-01-01 08:00:00,0.921590933777758,0.3569453582379973,1.0671303457377923,0.15359848896295966,0.05949089303966621,0.17785505762296538,0.08256711263282876,0.8290238211449292,0.010000000000000002,0.0,0.0,0.19978093963262605,0.8616811073893962,0.0056682987157699646,1,0.0,0.3540286915713306,0.0029166666666666685,0,0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,128.5873161816067,0,82.29131779982285,50,44.44,0.0,49.99973551800728,0.0,0.0,128.5873161816067,128.5801840622232,49.99973551800728,49.999735518007284,49.99973551800728,10.042356980382465,On,15152.03037396378,0.0,19,25.253383956606303,0.0,0.0,0.5999999999999999,1,0.6194020108467069,15152.03037396378,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1357.0038057731576,19.194863427033862,-6.444124452284913,-9.28773448243967,-7.7,6.529479366362011,0,1.0,7016.907108155955,-2041.0279464485739,-13.936738668134119,66.15376229796048 +2018-01-01 08:10:00,0.921590933777758,0.3569453582379973,1.0681806050605727,0.15359848896295966,0.05949089303966621,0.17803010084342877,0.08256711263282876,0.8290238211449292,0.010000000000000002,0.0,0.0,0.19978093963262605,0.862729445788158,0.005670219639788597,1,0.0,0.3540286915713306,0.0029166666666666685,0,0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,128.6308930071289,0,82.32382750404147,50,44.44,0.0,49.99974262990109,0.0,0.0,128.6308930071289,128.6309804750648,49.999742629901085,49.99974262990109,49.99974262990109,10.042356980382465,On,15170.464635924516,0.0,19,25.28410772654086,0.0,0.0,0.6,1,0.6201555876707459,15170.464635924516,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1357.579383146736,19.182697399769577,-6.43565698438252,-8.996857678504073,-7.7,6.529479366362011,0,1.0,7043.269053035448,-2061.420852727161,-26.536078196730294,80.26510074074172 +2018-01-01 08:20:00,0.921590933777758,0.3569453582379973,1.0646829390139065,0.15359848896295966,0.05949089303966621,0.17744715650231774,0.08256711263282876,0.8290238211449292,0.010000000000000002,0.0,0.0,0.19978093963262605,0.8592317759018059,0.005670223479474599,1,0.0,0.3540286915713306,0.0029166666666666685,0,0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,128.63098011173344,0,82.32382738340505,50,44.44,0.0,49.999742542681204,0.0,0.0,128.63098011173344,128.63098028657038,49.999742542681204,49.999742542681204,49.999742542681204,10.042356980382465,On,15108.96067593093,0.0,19,25.181601126551552,0.0,0.0,0.6,1,0.6176413585176336,15108.96067593093,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1357.7198581854652,19.182697399769577,-6.434273646076423,-8.730049786711888,-7.7,6.529479366362011,0,1.0,6996.836444119948,-2079.7833393101373,-38.064860384673196,77.07061169178169 +2018-01-01 08:30:00,0.7453040049839521,0.33182583135758936,0.9563674261989282,0.12421733416399201,0.055304305226264894,0.15939457103315469,0.08256711263282876,0.6527368923511234,0.010000000000000002,0.0,0.0,0.11986856377957562,0.7972546571727511,0.0392442052466015,1,0.0,0.3289091646909227,0.0029166666666666685,0,0,Off,0.0,0.0,On,0.2644303931907087,0.03767929032061181,0.11986856377957562,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,890.2683647037013,0,82.31663650868461,50,44.44,0.2739629385206938,49.99974254250686,763.1773880444183,0.0,890.2683647037013,128.6197445448197,49.99974254250686,49.999742542506866,49.99974254250686,10.042356980382465,On,14019.13849296757,0.0,19,23.365230821612617,0.0,0.0,0.6,1,0.5730903620549553,14019.13849296757,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1373.2457957911283,19.182697399769577,-6.439617697257718,-8.490139050368912,-5.9,6.529479366362011,0,1.0,6568.004531096567,1989.7882591427158,40.01765887345957,507.90002491197663 +2018-01-01 08:40:00,0.48087361179324345,0.29414654103697757,0.8154512057374365,0.08014560196554057,0.04902442350616293,0.13590853428957272,0.08256711263282876,0.38830649916041465,0.010000000000000002,0.0,0.0,0.0,0.8097051202686788,0.005746085468757707,1,0.0,0.2912298743703109,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,130.35193556790463,0,82.44903808334817,50,44.44,0.0,49.998218109967,0.0,0.0,130.35193556790463,128.8266220052315,49.998218109967,49.998218109967006,49.998218109967,10.042356980382465,On,14238.070756169855,0.0,19,23.73011792694976,0.0,0.0,0.6,1,0.58204012526951,14238.070756169855,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1373.6134141265452,19.135036650909058,-4.6974462847335765,-8.121541214405827,-5.9,6.529479366362011,0,1.0,6260.582169647467,-1519.8331679046323,26.690681341268572,481.8806401273903 +2018-01-01 08:50:00,0.48087361179324345,0.29414654103697757,0.8382672892595769,0.08014560196554057,0.04902442350616293,0.13971121487659616,0.08256711263282876,0.38830649916041465,0.010000000000000002,0.0,0.0,0.0,0.8325750346306872,0.00569225462888981,1,0.0,0.2912298743703109,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.13076435348773,0,82.64212045035467,50,44.44,0.0,49.99973909797991,0.0,0.0,129.13076435348773,129.12831320367917,49.99973909797991,49.99973909797992,49.99973909797991,10.042356980382465,On,14640.221428955238,0.0,19,24.40036904825873,0.0,0.0,0.5999999999999999,1,0.5984796999825232,14640.221428955238,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1373.664891191257,19.063545527618277,-4.706434881389102,-7.692316712111181,-5.9,6.529479366362011,0,1.0,6613.140674099542,-1465.9301175318833,15.061375575883375,462.993666731704 +2018-01-01 09:00:00,0.48198812502859956,0.29414654103697757,0.8334706011372857,0.08033135417143325,0.04902442350616293,0.13891176685621426,0.0836816258681849,0.38830649916041465,0.010000000000000002,0.0,0.0,0.0,0.8277784541094955,0.005692147027790166,1,0.0,0.2912298743703109,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.05328077624035396,0,On,0.02559896058962782,0.0,On,0.3223132654591949,0.2417349490943961,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.1283233853392,0,82.64212383090769,50,44.44,0.0,49.99974154217864,0.0,0.0,129.1283233853392,129.12831848579327,49.99974154217865,49.999741542178654,49.99974154217864,10.042356980382465,On,14555.877077982466,0.0,19,24.259795129970776,0.0,0.0,0.6,1,0.5950317752287644,14555.877077982466,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1372.8103829436222,19.063545527618277,-4.673388839301509,-7.220432751400843,-5.9,6.529479366362011,0,1.0,6547.902740003067,-1569.010481490287,-0.9132789421821457,448.20440533335153 +2018-01-01 09:10:00,0.48198812502859956,0.29414654103697757,0.8281234860437554,0.08033135417143325,0.04902442350616293,0.13802058100729256,0.0836816258681849,0.38830649916041465,0.010000000000000002,0.0,0.0,0.0,0.8224313682396452,0.005692117804110152,1,0.0,0.2912298743703109,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.05328077624035396,0,On,0.02559896058962782,0.0,On,0.3223132654591949,0.2417349490943961,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.12766043605401,0,82.64170182744154,50,44.44,0.0,49.999741547064296,0.0,0.0,129.12766043605401,129.1276591053774,49.999741547064296,49.9997415470643,49.999741547064296,10.042356980382465,On,14461.852494157454,0.0,19,24.103087490262425,0.0,0.0,0.6,1,0.5911881308555119,14461.852494157454,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1373.2133488041839,19.063703503272784,-4.681109935097834,-6.752263317286241,-5.9,6.529479366362011,0,1.0,6475.201079172462,-1583.934995481719,-17.71011192191271,435.8487944900778 +2018-01-01 09:20:00,0.48198812502859956,0.29414654103697757,0.8225756677251215,0.08033135417143325,0.04902442350616293,0.13709594462085356,0.0836816258681849,0.38830649916041465,0.010000000000000002,0.0,0.0,0.0,0.8168835499794255,0.005692117745696022,1,0.0,0.2912298743703109,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.05328077624035396,0,On,0.02559896058962782,0.0,On,0.3223132654591949,0.2417349490943961,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.12765911090926,0,82.64170182927786,50,44.44,0.0,49.9997415483912,0.0,0.0,129.12765911090926,129.12765910824666,49.9997415483912,49.999741548391206,49.9997415483912,10.042356980382465,On,14364.298178451547,0.0,19,23.940496964085913,0.0,0.0,0.6,1,0.5872001940692416,14364.298178451547,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1373.600151497832,19.063703503272784,-4.689463905530173,-6.313839185884441,-5.9,6.529479366362011,0,1.0,6399.95554403066,-1593.0432191167815,-32.71588398634371,424.9718776335461 +2018-01-01 09:30:00,0.48198812502859956,0.29414654103697757,0.7359094919592966,0.08033135417143325,0.04902442350616293,0.12265158199321609,0.0836816258681849,0.38830649916041465,0.010000000000000002,0.0,0.0,0.0,0.6966433924542657,0.03926609950503096,1,0.0,0.2912298743703109,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.05328077624035396,0,On,0.02559896058962782,0.0,On,0.3223132654591949,0.2417349490943961,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,890.7650435261138,0,82.63451095480065,50,44.44,0.27396294533670845,49.99974154839386,763.1773880444182,0.0,890.7650435261138,129.116423366876,49.99974154839385,49.99974154839386,49.99974154839386,10.042356980382465,On,12249.963184487131,0.0,19,20.41660530747855,0.0,0.0,0.6,1,0.5007679922756466,12249.963184487131,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1398.1895645982163,19.063703503272784,-4.69792330604189,-5.915062577719976,-2.2,6.529479366362011,0,1.0,6221.1780863818985,2520.1939955712337,155.4714525003338,1455.3568359092296 +2018-01-01 09:40:00,0.48198812502859956,0.29414654103697757,0.6906745831591422,0.08033135417143325,0.04902442350616293,0.1151124305265237,0.0836816258681849,0.38830649916041465,0.010000000000000002,0.0,0.0,0.0,0.684915355233225,0.005759227925917217,1,0.0,0.2912298743703109,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.05328077624035396,0,On,0.02559896058962782,0.0,On,0.3223132654591949,0.2417349490943961,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,130.6500767525729,0,82.63959339694811,50,44.44,0.0,49.998217115854345,0.0,0.0,130.6500767525729,129.12436468273143,49.99821711585435,49.99821711585436,49.998217115854345,10.042356980382465,On,12043.734250515758,0.0,19,20.072890417526263,0.0,0.0,0.6,1,0.49233753026864463,12043.734250515758,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1398.5392293364532,19.063703503272787,-2.937436064695849,-5.214422556015818,-2.2,6.529479366362011,0,1.0,6047.976868029729,2460.058493031345,122.90794432209451,1412.9904241309735 +2018-01-01 09:50:00,0.48198812502859956,0.29414654103697757,0.6793238663982463,0.08033135417143325,0.04902442350616293,0.1132206443997077,0.0836816258681849,0.38830649916041465,0.010000000000000002,0.0,0.0,0.0,0.6736316145078306,0.005692251890415702,1,0.0,0.2912298743703109,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.05328077624035396,0,On,0.02559896058962782,0.0,On,0.3223132654591949,0.2417349490943961,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.13070223025576,0,82.64169761478769,50,44.44,0.0,49.99973850124432,0.0,0.0,129.13070223025576,129.12765252310575,49.99973850124433,49.99973850124434,49.99973850124432,10.042356980382465,On,11845.317944602897,0.0,19,19.742196574338163,0.0,0.0,0.6,1,0.4842264417983903,11845.317944602897,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1398.3459139389306,19.063703503272787,-1.445935719476983,-4.402829999790973,-2.2,6.529479366362011,0,1.0,5891.454202555287,-2.4731984585396276,97.06776546813414,1369.0411545055674 +2018-01-01 10:00:00,0.4773775643194945,0.292939347737565,0.6680085424203698,0.07956292738658241,0.0488232246229275,0.11133475707006163,0.08068065622496325,0.3866969080945313,0.010000000000000002,0.0,0.0,0.0,0.6623164244066522,0.0056921180137175665,1,0.0,0.29002268107089835,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.1276651910707,0,82.64170182085631,50,44.44,0.0,49.999741542302985,0.0,0.0,129.1276651910707,129.12765909508798,49.99974154230299,49.999741542303,49.999741542302985,10.042356980382465,On,11646.348624479748,0.0,19,19.41058104079958,0.0,0.0,0.6,1,0.47609274658135514,11646.348624479748,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1398.9191118999058,19.063703503272784,-1.2004716421670212,-3.488436480192906,-2.2,6.529479366362011,0,1.0,5729.399232631638,-593.4479132263518,64.54137939817603,1324.2699424915259 +2018-01-01 10:10:00,0.4773775643194945,0.292939347737565,0.6565826161754066,0.07956292738658241,0.0488232246229275,0.10943043602923443,0.08068065622496325,0.3866969080945313,0.010000000000000002,0.0,0.0,0.0,0.6508903784254187,0.005692237749987844,1,0.0,0.29002268107089835,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.13038144976073,0,82.643447617196,50,44.44,0.0,49.99974154838169,0.0,0.0,129.13038144976073,129.13038690186875,49.99974154838169,49.99974154838169,49.99974154838169,10.042356980382465,On,11445.429985000144,0.0,19,19.075716641666908,0.0,0.0,0.6,1,0.46787936486030895,11445.429985000144,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1399.467005486534,19.063049983581354,-1.2182782388994156,-2.5632913556306267,-2.2,6.529479366362011,0,1.0,5570.9402447052125,-635.5128185491562,-343.7779259772399,1279.4999106024652 +2018-01-01 10:20:00,0.4773775643194945,0.292939347737565,0.6446584010946455,0.07956292738658241,0.0488232246229275,0.10744306684910757,0.08068065622496325,0.3866969080945313,0.010000000000000002,0.0,0.0,0.0,0.63896616310532,0.005692237989325524,1,0.0,0.29002268107089835,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.13038687921875,0,82.64344760967438,50,44.44,0.0,49.999741542945046,0.0,0.0,129.13038687921875,129.13038689011623,49.999741542945046,49.999741542945046,49.999741542945046,10.042356980382465,On,11235.751403020775,0.0,19,18.72625233836796,0.0,0.0,0.5999999999999999,1,0.45930788420035223,11235.751403020775,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1399.9759093026028,19.063049983581354,-1.2366047493552992,-2.199998597351614,-2.2,6.529479366362011,0,1.0,5405.72751102158,-661.3755934179144,27.18334138976969,1235.6061442324426 +2018-01-01 10:30:00,0.4773775643194945,0.292939347737565,0.5479172402042497,0.07956292738658241,0.0488232246229275,0.09131954003404161,0.08068065622496325,0.3866969080945313,0.010000000000000002,0.0,0.0,0.0,0.5422250022144458,0.005692237989803908,1,0.0,0.29002268107089835,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.13038689007107,0,82.6434476096622,50,44.44,0.0,49.999741542934174,0.0,0.0,129.13038689007107,129.13038689009718,49.999741542934174,49.99974154293418,49.999741542934174,10.042356980382465,On,9534.62903227274,0.0,19,15.891048387121234,0.0,0.0,0.6,1,0.3897674601692455,9534.62903227274,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1415.1082251644118,19.063049983581354,-1.2550648958227075,-1.2574858518118919,1.4,6.529479366362011,0,1.0,5192.025454174342,1951.3281397317999,153.007220878901,1379.0288549837703 +2018-01-01 10:40:00,0.4773775643194945,0.292939347737565,0.5349715922551362,0.07956292738658241,0.0488232246229275,0.0891619320425227,0.08068065622496325,0.3866969080945313,0.010000000000000002,0.0,0.0,0.0,0.5292793542653312,0.005692237989805059,1,0.0,0.29002268107089835,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.13038689009718,0,82.64344760966067,50,44.44,0.0,49.999741542934146,0.0,0.0,129.13038689009718,129.1303868900948,49.99974154293415,49.99974154293416,49.999741542934146,10.042356980382465,On,9306.989306562724,0.0,19,15.511648844271205,0.0,0.0,0.6,1,0.3804617433528601,9306.989306562724,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1415.624712259699,19.063049983581358,-0.1443328791886278,-0.19153912043939397,1.4,6.529479366362011,0,1.0,5010.527884673098,1893.7977669844092,97.7356775374853,1335.6990761673949 +2018-01-01 10:50:00,0.37506118937561683,0.2555803101502493,0.5268364923208643,0.06251019822926947,0.04259671835837488,0.08780608205347737,0.02817633139750663,0.33688485797811024,0.010000000000000002,0.0,0.0,0.0,0.5211442543310594,0.005692237989804851,1,0.0,0.2526636434835826,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.13038689009247,0,82.64344760966071,50,44.44,0.0,49.99974154293415,0.0,0.0,129.13038689009247,129.13038689009485,49.99974154293415,49.99974154293416,49.99974154293415,10.042356980382465,On,9163.939539958505,0.0,19,15.273232566597507,0.0,0.0,0.6,1,0.37461399154013547,9163.939539958505,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1414.9534761522843,19.063049983581354,0.7893923612869777,0.8019436453906711,1.4,6.529479366362011,0,0.0,4735.7259489848,1857.1845285461086,-202.35461822665565,1296.0839537246197 +2018-01-01 11:00:00,0.37386071711606605,0.2555803101502493,0.5533125618627627,0.06231011951934434,0.04259671835837488,0.09221876031046045,0.026975859137955853,0.33688485797811024,0.010000000000000002,0.0,0.0,0.0,0.5140437697741986,0.03926879208856409,1,0.0,0.2526636434835826,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,890.8261257145235,0,82.6736785183852,50,44.44,0.2739629453741423,49.99974154293415,763.1773880444183,0.0,890.8261257145235,129.17762268497688,49.99974154293415,49.99974154293416,49.99974154293415,10.042356980382465,On,9039.082726048116,0.0,19,15.06513787674686,0.0,0.0,0.6,1,0.36950995203550924,9039.082726048116,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1415.4192189260607,19.04904148245471,1.58925706955369,1.4000011215650277,1.4,6.529479366362011,0,0.0,4644.359054655165,1567.6937784540196,49.981914189544774,1260.970974746742 +2018-01-01 11:10:00,0.37386071711606605,0.2555803101502493,0.5745496644672535,0.06231011951934434,0.04259671835837488,0.09575827741120892,0.026975859137955853,0.33688485797811024,0.010000000000000002,0.0,0.0,0.0,0.5016397440511712,0.07290992041608232,1,0.0,0.2526636434835826,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1653.986753244893,0,82.66483360862446,50,44.44,0.5479467973200166,49.99821699359712,1526.3547760888366,0.0,1653.986753244893,129.16380251347573,49.99821699359712,49.998216993597126,49.99821699359712,10.042356980382465,On,8820.96702999421,0.0,19,14.701611716657014,0.0,0.0,0.6000000000000001,1,0.3605935693858831,8820.96702999421,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1415.542091087715,19.048871322617302,2.1674367387346343,2.405633215314326,1.4,6.529479366362011,0,0.0,4475.8130678937205,334.570708328504,12.023505677500182,1230.9328155363712 +2018-01-01 11:20:00,0.37386071711606605,0.2555803101502493,0.4951507631844994,0.06231011951934434,0.04259671835837488,0.08252512719741656,0.026975859137955853,0.33688485797811024,0.010000000000000002,0.0,0.0,0.0,0.48932156188941034,0.0058292012950890565,1,0.0,0.2526636434835826,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,132.2374468255295,0,82.67710270847729,50,44.44,0.0,49.99668951225589,0.0,0.0,132.2374468255295,129.18297298199576,49.99668951225589,49.99668951225589,49.99668951225589,10.042356980382465,On,8604.36083001323,0.0,19,14.340601383355382,0.0,0.0,0.6,1,0.35173889364152705,8604.36083001323,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1415.9212006173134,19.048871322617302,2.1502406002746848,3.299845586766711,1.4,6.529479366362011,0,0.0,4309.399549220365,290.9138801771305,-33.155634782990035,1206.2524892322347 +2018-01-01 11:30:00,0.37386071711606605,0.2555803101502493,0.5210968147097436,0.06231011951934434,0.04259671835837488,0.08684946911829058,0.026975859137955853,0.33688485797811024,0.010000000000000002,0.0,0.0,0.0,0.4688599891983149,0.05223682551142862,1,0.0,0.2526636434835826,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1185.0104476099539,0,82.67134704803131,50,44.44,0.37977938020834334,49.99973532409121,1057.9496067070775,0.0,1185.0104476099539,129.17397976254892,49.99973532409121,49.99973532409122,49.99973532409121,10.042356980382465,On,8244.559079393623,0.0,19,13.740931798989372,0.0,0.0,0.6,1,0.3370305065581101,8244.559079393623,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1419.5844095791906,19.048871322617302,2.130609042982818,4.077420684868678,2.8,6.529479366362011,0,0.0,4123.43452137008,1667.5061186791909,-65.34325631336351,1346.5559913699665 +2018-01-01 11:40:00,0.37386071711606605,0.2555803101502493,0.461857343375999,0.06231011951934434,0.04259671835837488,0.07697622389599983,0.026975859137955853,0.33688485797811024,0.010000000000000002,0.0,0.0,0.0,0.4560694650058212,0.005787878370177811,1,0.0,0.2526636434835826,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,131.300021986516,0,82.67840097038392,50,44.44,0.0,49.99762817776154,0.0,0.0,131.300021986516,129.18500151622487,49.99762817776154,49.99762817776155,49.99762817776154,10.042356980382465,On,8019.647091186363,0.0,19,13.366078485310604,0.0,0.0,0.6,1,0.32783629731216707,8019.647091186363,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1419.941099897974,19.048871322617302,2.71228363626779,4.785543275814618,2.8,6.529479366362011,0,0.0,3952.564097947012,1616.333921534839,-128.27652918762305,1330.1873217215552 +2018-01-01 11:50:00,0.37386071711606605,0.2555803101502493,0.48317469643187877,0.06231011951934434,0.04259671835837488,0.0805291160719798,0.026975859137955853,0.33688485797811024,0.010000000000000002,0.0,0.0,0.0,0.44390568192424085,0.03926901450763792,1,0.0,0.2526636434835826,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,890.8311713681147,0,82.67412707080278,50,44.44,0.2739629751484364,49.999737200365885,763.1773880444183,0.0,890.8311713681147,129.17832354812936,49.999737200365885,49.999737200365885,49.999737200365885,10.042356980382465,On,7805.755885804366,0.0,19,13.009593143007276,0.0,0.0,0.6,1,0.3190926082192725,7805.755885804366,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1419.8005372629073,19.048871322617302,3.1953455435894886,5.436526652526721,2.8,6.529479366362011,0,0.0,3790.866079161784,1257.7918133728908,-185.57722749137585,1317.4086944123587 +2018-01-01 12:00:00,0.37656541113659686,0.2579946967490744,0.4845446821732026,0.06276090185609948,0.04299911612484573,0.0807574470288671,0.026461371026719804,0.34010404010987705,0.010000000000000002,0.0,0.0,0.0,0.43224101466753984,0.05230366750566277,1,0.0,0.2550780300824077,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1186.526781359776,0,82.66924704142876,50,44.44,0.3797938119950534,49.99821698349814,1057.9496067070775,0.0,1186.526781359776,129.17069850223243,49.998216983498146,49.99821698349815,49.99821698349814,10.042356980382465,On,7600.6412661846,0.0,19,12.667735443641,0.0,0.0,0.6,1,0.3107076984275886,7600.6412661846,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1420.038450087214,19.048871322617302,3.4660192851029556,6.036473456551897,2.8,6.529479366362011,0,0.0,3638.6270045222445,652.2769754774598,-242.28260887664007,1306.6738131783195 +2018-01-01 12:10:00,0.37656541113659686,0.2579946967490744,0.47293457640444825,0.06276090185609948,0.04299911612484573,0.07882242940074137,0.026461371026719804,0.34010404010987705,0.010000000000000002,0.0,0.0,0.0,0.42060492465950056,0.052329651744947685,1,0.0,0.2550780300824077,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1187.1162428120053,0,82.66740433867308,50,44.44,0.37979943772225616,49.997625142789055,1057.949606707077,0.0,1187.1162428120053,129.16781927917668,49.997625142789055,49.99762514278906,49.997625142789055,10.042356980382465,On,7396.029156525901,0.0,19,12.326715260876503,0.0,0.0,0.6,1,0.30234333081227804,7396.029156525901,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1420.302042504888,19.04925469698611,3.4490888386718783,6.568945164379445,2.8,6.529479366362011,0,0.0,3486.9402095617384,622.8333730074992,-295.86884752365563,1312.3109985112292 +2018-01-01 12:20:00,0.48079804042914265,0.29974891522901553,0.4440995965446172,0.08013300673819043,0.04995815253816925,0.07401659942410287,0.07502170901267732,0.3957763314164653,0.010000000000000002,0.0,0.0,0.0,0.4047376212648771,0.03936197527974009,1,0.0,0.29683224856234885,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.04928471802232741,0,On,0.02367903854540573,0.0,On,0.3281735066493621,0.24613012998702152,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,892.940018624441,0,82.67018013458328,50,44.44,0.2739774650729912,49.9976239629701,763.1773880444182,0.0,892.940018624441,129.17215646028637,49.9976239629701,49.99762396297011,49.9976239629701,10.042356980382465,On,7117.014262353938,0.0,19,11.861690437256563,0.0,0.0,0.6,1,0.29093744115650877,7117.014262353938,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1420.5298290364005,19.04925469698611,3.4309804933982306,7.027722803556285,2.8,6.529479366362011,0,1.0,3443.0277303785724,588.6772955952615,-344.2992313785348,1323.898369682277 +2018-01-01 12:30:00,0.5846911447802653,0.34106361561969417,0.47299823805182917,0.0974485241300442,0.05684393593661569,0.07883303967530486,0.12382854617622857,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.4000908133106384,0.07290742474119075,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1653.930137997098,0,82.62581158087866,50,44.44,0.5479468553431124,49.99821276259795,1526.3547760888366,0.0,1653.930137997098,129.1028305951229,49.99821276259795,49.99821276259796,49.99821276259795,10.042356980382465,On,7035.303552137815,0.0,19,11.725505920229693,0.0,0.0,0.5999999999999999,1,0.2875971773788868,7035.303552137815,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1422.9085850666133,19.0634766700095,3.4068149134684673,7.41546970931774,4.4,6.529479366362011,0,2.0,3316.447350905875,1415.8764250951367,-354.2898415590655,1114.3309568083514 +2018-01-01 12:40:00,0.5846911447802653,0.34106361561969417,0.5279336123072662,0.0974485241300442,0.05684393593661569,0.08798893538454436,0.12382854617622857,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.3853268130565689,0.1426067992506973,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,3235.084547305025,0,82.5709115182329,50,44.44,1.1162305899252145,49.996689625572444,3109.2412105513345,0.0,3235.084547305025,129.0170492472389,49.996689625572444,49.99668962557245,49.996689625572444,10.042356980382465,On,6775.689434603523,0.0,19,11.292815724339206,0.0,0.0,0.6,1,0.2769843748384926,6775.689434603523,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1423.4764556109874,19.077656331963556,3.745707063680796,7.776460096426017,4.4,6.529479366362011,0,2.0,3115.385246571646,1360.1030803102144,-410.1650015543828,1129.4496165539329 +2018-01-01 12:50:00,0.5846911447802653,0.34106361561969417,0.45162309452278326,0.0974485241300442,0.05684393593661569,0.0752705157537972,0.12382854617622857,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.3760249384796139,0.07559815604316938,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1714.970307902871,0,82.58091617495971,50,44.44,0.568307860445144,49.993524913229194,1582.8864344624972,0.0,1714.970307902871,129.03268152337455,49.99352491322919,49.993524913229194,49.993524913229194,10.042356980382465,On,6612.122791542459,0.0,19,11.020204652570765,0.0,0.0,0.6,1,0.2702979107066915,6612.122791542459,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1423.9998946654257,19.077656331963553,4.0164725183470615,8.023077161283904,4.4,6.529479366362011,0,2.0,2996.9749728094343,1324.950104067329,-450.2310459543685,1148.3323614079222 +2018-01-01 13:00:00,0.5835336520328118,0.34106361561969417,0.4062438701316813,0.0972556086721353,0.05684393593661569,0.06770731168861355,0.1226710534287751,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.36684059933661667,0.03940327079506459,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,893.8768216675021,0,82.59284782221323,50,44.44,0.27398470986827234,49.99656745244501,763.1773880444184,0.0,893.8768216675021,129.05132472220816,49.996567452445014,49.99656745244502,49.99656745244501,10.042356980382465,On,6450.622922894891,0.0,19,10.75103820482482,0.0,0.0,0.6,1,0.2636959345409314,6450.622922894891,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.267008190816,19.077656331963556,4.240551529517312,8.191296006584556,4.4,6.529479366362011,0,2.0,2879.7291844057354,1290.8958444509663,-478.0338713951057,1171.2235471162746 +2018-01-01 13:10:00,0.5835336520328118,0.34106361561969417,0.3635988355388759,0.0972556086721353,0.05684393593661569,0.06059980592314598,0.1226710534287751,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.35784186541381996,0.005756970125055934,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,130.59885775939998,0,82.60275000509998,50,44.44,0.0,49.998210887567836,0.0,0.0,130.59885775939998,129.0667968829687,49.998210887567836,49.998210887567836,49.998210887567836,10.042356980382465,On,6292.386785934054,0.0,19,10.48731130989009,0.0,0.0,0.6,1,0.2572273769283111,6292.386785934054,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.4881144640206,19.077492264217597,4.4257005410805,8.31036533140681,4.4,6.529479366362011,0,2.0,2767.186317471371,1257.8878979974315,-497.95576185214657,1198.0978446090642 +2018-01-01 13:20:00,0.5835336520328118,0.34106361561969417,0.3881997440802313,0.0972556086721353,0.05684393593661569,0.06469995734670521,0.1226710534287751,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.3489360469324982,0.03926369714773307,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,890.710545220196,0,82.59767210454993,50,44.44,0.2739629655262325,49.99973860376018,763.1773880444184,0.0,890.710545220196,129.05886266335926,49.999738603760186,49.99973860376019,49.99973860376018,10.042356980382465,On,6135.784498873564,0.0,19,10.226307498122607,0.0,0.0,0.6,1,0.25082560969880907,6135.784498873564,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.7300734317375,19.077492264217597,4.577867481240088,8.39769774108169,4.4,6.529479366362011,0,2.0,2656.0546424506,1225.4702326231416,-512.8374559846321,1228.7168136450605 +2018-01-01 13:30:00,0.5835336520328118,0.34106361561969417,0.5094476912647078,0.0972556086721353,0.05684393593661569,0.08490794854411796,0.1226710534287751,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.38076404046034745,0.1286836508043603,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,2919.2331108710882,0,82.57643027746352,50,44.44,1.0031195279102583,49.998217224933796,2794.279113898082,0.0,2919.2331108710882,129.02567230853674,49.9982172249338,49.99821722493381,49.998217224933796,10.042356980382465,On,6695.456424532206,0.0,19,11.15909404088701,0.0,0.0,0.6,1,0.2737045181758599,6695.456424532206,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1423.6792137679308,19.077492264217597,4.701711976669427,8.462935401675828,3.3,6.529479366362011,0,3.0,2556.4254324725152,-967.0997937475001,-782.5566037784876,1298.9978916497867 +2018-01-01 13:40:00,0.5835336520328118,0.34106361561969417,0.37769086673469604,0.0972556086721353,0.05684393593661569,0.062948477789116,0.1226710534287751,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.3717554363231575,0.0059354304115385535,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,134.6472910609049,0,82.59714323373008,50,44.44,0.0,49.9941570962302,0.0,0.0,134.6472910609049,129.05803630270324,49.9941570962302,49.9941570962302,49.9941570962302,10.042356980382465,On,6537.046727089421,0.0,19,10.89507787848237,0.0,0.0,0.6,1,0.2672288655595425,6537.046727089421,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1423.9034815418938,19.077492264217597,3.874332438670508,8.152586838471468,3.3,6.529479366362011,0,3.0,2446.8593010091586,633.5315687578891,-730.4118693283524,1342.3770756617143 +2018-01-01 13:50:00,0.5835336520328118,0.34106361561969417,0.36862256593757925,0.0972556086721353,0.05684393593661569,0.061437094322929875,0.1226710534287751,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.3629324938295586,0.005690072108020616,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.08125311296342,0,82.60485177179574,50,44.44,0.0,49.999730500739524,0.0,0.0,129.08125311296342,129.07008089343083,49.999730500739524,49.99973050073953,49.999730500739524,10.042356980382465,On,6381.9017534973145,0.0,19,10.636502922495524,0.0,0.0,0.6,1,0.2608866720551764,6381.9017534973145,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1423.8546339418313,19.077492264217597,3.8578351651916525,7.960479684105354,3.3,6.529479366362011,0,3.0,2339.9432399874145,642.0514130973654,-701.27375269409,1387.9796890429438 +2018-01-01 14:00:00,0.580231428382411,0.3371079528163313,0.3599773988038685,0.09670523806373517,0.05618465880272189,0.059996233133978075,0.12464304684952465,0.4455883815328863,0.010000000000000002,0.0,0.0,0.0,0.35428781713633584,0.005689581667532637,1,0.0,0.33419128614966465,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.07012730092382,0,82.60486718019642,50,44.44,0.0,49.9997416412764,0.0,0.0,129.07012730092382,129.0701049690569,49.999741641276394,49.9997416412764,49.9997416412764,10.042356980382465,On,6229.891453276566,0.0,19,10.38315242212761,0.0,0.0,0.6,1,0.25467262131066803,6229.891453276566,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.180799041225,19.077492264217597,3.845178824784538,7.818309056406596,3.3,6.529479366362011,0,3.0,2232.6637116988904,634.4704048940982,-680.7889315540583,1434.8273430593317 +2018-01-01 14:10:00,0.580231428382411,0.3371079528163313,0.38827643430560216,0.09670523806373517,0.05618465880272189,0.06471273905093369,0.12464304684952465,0.4455883815328863,0.010000000000000002,0.0,0.0,0.0,0.3459929135607562,0.042283520744845995,1,0.0,0.33419128614966465,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,959.2162876247561,0,82.59814012895062,50,44.44,0.2986051141625448,49.99974166354493,831.8229732124348,0.0,959.2162876247561,129.05959395148534,49.99974166354493,49.99974166354494,49.99974166354493,10.042356980382465,On,6084.031656829287,0.0,19,10.140052761382146,0.0,0.0,0.6,1,0.24870999788718415,6084.031656829287,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.4910238164914,19.077076524794112,3.832419591785677,7.703304088309838,3.3,6.529479366362011,0,3.0,2133.2441813683863,624.9620640480465,-664.7098193271693,1481.9420866756038 +2018-01-01 14:20:00,0.580231428382411,0.3371079528163313,0.4166736032958983,0.09670523806373517,0.05618465880272189,0.06944560054931638,0.12464304684952465,0.4455883815328863,0.010000000000000002,0.0,0.0,0.0,0.3377230721379986,0.0789505311578997,1,0.0,0.33419128614966465,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1791.0200964642736,0,82.58800437181897,50,44.44,0.5972350632449603,49.9980801093129,1663.6459464248696,0.0,1791.0200964642736,129.04375683096714,49.9980801093129,49.99808010931291,49.9980801093129,10.042356980382465,On,5938.612559960472,0.0,19,9.89768759993412,0.0,0.0,0.6,1,0.24276538988462687,5938.612559960472,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.8109093870678,19.077076524794112,3.820021394993078,7.604793748304268,3.3,6.529479366362011,0,3.0,2033.6958567553638,613.6110665046285,-651.3012493248151,1528.3777414410597 +2018-01-01 14:30:00,0.6817804362574668,0.37666458084995974,0.31742766788378485,0.11363007270957778,0.06277743014165996,0.05290461131396414,0.17344988401307587,0.4983305522443909,0.010000000000000002,0.0,0.0,0.0,0.3115915714023458,0.00583609648143906,1,0.0,0.37374791418329306,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.11588568832276985,0,On,0.055677739282440505,0.0,On,0.4307277274772877,0.3230457956079657,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,132.3938665118901,0,82.60137704397849,50,44.44,0.0,49.996415237264046,0.0,0.0,132.3938665118901,129.06465163121638,49.99641523726404,49.996415237264046,49.996415237264046,10.042356980382465,On,5479.109282624556,0.0,19,9.131848804374261,0.0,0.0,0.5999999999999999,1,0.22398128986978097,5479.109282624556,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.8964668439003,19.077076524794116,3.8076661170565735,7.516167647413475,3.9,6.529479366362011,0,3.0,2049.9123119276005,1099.8022549474922,-506.63344796469505,1209.7039919085726 +2018-01-01 14:40:00,0.6817804362574668,0.37666458084995974,0.3064432705662594,0.11363007270957778,0.06277743014165996,0.0510738784277099,0.17344988401307587,0.4983305522443909,0.010000000000000002,0.0,0.0,0.0,0.30075586770099333,0.005687402865266074,1,0.0,0.37374791418329306,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.11588568832276985,0,On,0.055677739282440505,0.0,On,0.4307277274772877,0.3230457956079657,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.02070041818595,0,82.56891504505082,50,44.44,0.0,49.99973501101407,0.0,0.0,129.02070041818595,129.0139297578919,49.99973501101406,49.99973501101407,49.99973501101407,10.042356980382465,On,5288.571379218988,0.0,19,8.814285632031647,0.0,0.0,0.6,1,0.21619226373934758,5288.571379218988,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.1961368091563,19.09094718327306,4.008605845957217,7.606634279048244,3.9,6.529479366362011,0,3.0,1904.314696942004,1059.319824192512,-527.787736184463,1246.1390836847615 +2018-01-01 14:50:00,0.6817804362574668,0.37666458084995974,0.30062599793984407,0.11363007270957778,0.06277743014165996,0.05010433298997401,0.17344988401307587,0.4983305522443909,0.010000000000000002,0.0,0.0,0.0,0.294938892294475,0.005687105645369079,1,0.0,0.37374791418329306,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.11588568832276985,0,On,0.055677739282440505,0.0,On,0.4307277274772877,0.3230457956079657,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.01395788205883,0,82.56892438295203,50,44.44,0.0,49.99974176247383,0.0,0.0,129.01395788205883,129.01394434836254,49.999741762473825,49.99974176247383,49.99974176247383,10.042356980382465,On,5186.284132477328,0.0,19,8.643806887462214,0.0,0.0,0.6,1,0.2120108487901916,5186.284132477328,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.7340194110652,19.090947183273055,4.165680271460786,7.594784516592503,3.9,6.529479366362011,0,3.0,1835.1398818187827,1037.3958992279415,-532.5059959848254,1283.792014823774 +2018-01-01 15:00:00,0.7120339655719392,0.3877638940498983,0.29485519966406587,0.1186723275953232,0.06462731567498305,0.04914253327734431,0.18890432906096352,0.5131296365109757,0.010000000000000002,0.0,0.0,0.0,0.2891680946128016,0.005687105051264286,1,0.0,0.3848472273832316,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.12620883871933844,0,On,0.060637537896680895,0.0,On,0.44713640280975586,0.3353523021073168,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.01394440458617,0,82.56892440161776,50,44.44,0.0,49.99974177596915,0.0,0.0,129.01394440458617,129.01394437752776,49.99974177596914,49.99974177596915,49.99974177596915,10.042356980382465,On,5084.8088871634,0.0,19,8.474681478605667,0.0,0.0,0.5999999999999999,1,0.20786262776321862,5084.8088871634,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.9872999336353,19.09094718327306,4.294880956468682,7.531308931021737,3.9,6.529479366362011,0,3.0,1796.0494895655283,864.8136736304917,-527.1318169873877,1323.4988677283297 +2018-01-01 15:10:00,0.7120339655719392,0.3877638940498983,0.28755191213037024,0.1186723275953232,0.06462731567498305,0.04792531868839504,0.18890432906096352,0.5131296365109757,0.010000000000000002,0.0,0.0,0.0,0.2818655646244601,0.00568634750591011,1,0.0,0.3848472273832316,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.12620883871933844,0,On,0.060637537896680895,0.0,On,0.44713640280975586,0.3353523021073168,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,128.9967592263054,0,82.55790382848107,50,44.44,0.0,49.99974177599613,0.0,0.0,128.9967592263054,128.99672473200167,49.99974177599613,49.99974177599613,49.99974177599613,10.042356980382465,On,4956.399252507074,0.0,19,8.260665420845124,0.0,0.0,0.6,1,0.20261335199256744,4956.399252507074,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1427.263452859588,19.095072633705552,4.3361720102662105,7.453667261627872,3.9,6.529479366362011,0,3.0,1705.4588575451876,745.502713226103,-517.7402144906977,1366.7618518692907 +2018-01-01 15:20:00,0.7120339655719392,0.3877638940498983,0.28190276062283914,0.1186723275953232,0.06462731567498305,0.046983793437139855,0.18890432906096352,0.5131296365109757,0.010000000000000002,0.0,0.0,0.0,0.2762164146311673,0.005686345991671823,1,0.0,0.3848472273832316,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.12620883871933844,0,On,0.060637537896680895,0.0,On,0.44713640280975586,0.3353523021073168,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,128.9967248752863,0,82.5579038760522,50,44.44,0.0,49.99974181039261,0.0,0.0,128.9967248752863,128.99672480633154,49.99974181039261,49.999741810392614,49.99974181039261,10.042356980382465,On,4857.063092585015,0.0,19,8.095105154308358,0.0,0.0,0.6,1,0.1985525749424342,4857.063092585015,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1427.5858314626107,19.095072633705552,4.325157104941647,7.381668424977279,3.9,6.529479366362011,0,3.0,1640.742675283111,737.7964453111273,-508.0244843548799,1416.1866330859445 +2018-01-01 15:30:00,0.7120339655719392,0.3877638940498983,0.28756892991302074,0.1186723275953232,0.06462731567498305,0.04792815498550346,0.18890432906096352,0.5131296365109757,0.010000000000000002,0.0,0.0,0.0,0.2818825839243762,0.005686345988644562,1,0.0,0.3848472273832316,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.12620883871933844,0,On,0.060637537896680895,0.0,On,0.44713640280975586,0.3353523021073168,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,128.9967248066118,0,82.55790387614796,50,44.44,0.0,49.99974181046137,0.0,0.0,128.9967248066118,128.99672480648118,49.99974181046137,49.99974181046137,49.99974181046137,10.042356980382465,On,4956.698524415278,0.0,19,8.261164207358798,0.0,0.0,0.6,1,0.20262558597158914,4956.698524415278,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.872916790646,19.095072633705552,4.316636105720868,7.3231915070558085,2.2,6.529479366362011,0,3.0,1615.409997811381,-3195.999737207929,-636.3648659674107,1135.5678202713084 +2018-01-01 15:40:00,0.7120339655719392,0.3877638940498983,0.28504915311809853,0.1186723275953232,0.06462731567498305,0.04750819218634975,0.18890432906096352,0.5131296365109757,0.010000000000000002,0.0,0.0,0.0,0.2793628071294596,0.005686345988638908,1,0.0,0.3848472273832316,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.12620883871933844,0,On,0.060637537896680895,0.0,On,0.44713640280975586,0.3353523021073168,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,128.99672480648357,0,82.55790387614492,50,44.44,0.0,49.9997418104615,0.0,0.0,128.99672480648357,128.99672480647644,49.9997418104615,49.9997418104615,49.9997418104615,10.042356980382465,On,4912.390097312986,0.0,19,8.187316828854977,0.0,0.0,0.6,1,0.2008142954602017,4912.390097312986,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.114945091754,19.095072633705552,2.6251827763154827,7.060775817999097,2.2,6.529479366362011,0,3.0,1585.8439772712445,155.27257242124915,-608.6018644645285,1159.9579805726314 +2018-01-01 15:50:00,0.7320849105185292,0.3877638940498983,0.30239516362922897,0.12201415175308819,0.06462731567498305,0.05039919393820483,0.18890432906096352,0.5331805814575656,0.010000000000000002,0.0,0.0,0.020050944946589978,0.2766578726940004,0.005686345988638594,1,0.0,0.3848472273832316,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,On,0.020050944946589978,0,0.020050944946589978,On,0.00205795244494419,0.0,On,0.12620883871933844,0,On,0.060637537896680895,0.0,On,0.44713640280975586,0.3353523021073168,Off,1.0,False,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,128.99672480647644,0,82.55790387614948,50,44.44,0.0,49.9997418104615,0.0,0.0,128.99672480647644,128.99672480648357,49.99974181046151,49.999741810461515,49.9997418104615,10.042356980382465,On,4864.825808884022,0.0,19,8.108043014806704,0.0,0.0,0.6,1,0.1988699081292459,4864.825808884022,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.8080561015324,19.095072633705552,2.6138339120185536,6.7705751029562755,2.2,6.529479366362011,0,3.0,1942.520724710147,203.40881830603269,-581.2249911538162,1182.438465164828 +2018-01-01 16:00:00,1.9255605663307944,0.403691980447487,0.358501902441697,0.3209267610551324,0.06728199674124782,0.059750317073616166,0.23102366480106737,0.6012035681963939,0.010000000000000002,0.0,1.0833333333333333,0.06683648315529993,0.25241518512562827,0.039250234160768775,1,0.0,0.4007753137808203,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.06683648315529993,0,0.06683648315529993,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,0.496,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,890.4051327060829,0,82.40387388312593,50,44.44,0.27396294353987355,49.9997418104615,763.1773880444181,0.0,890.4051327060829,128.75605294238426,49.9997418104615,49.9997418104615,49.9997418104615,10.042356980382465,On,4438.535925965081,0.0,19,7.39755987660847,0.0,0.0,0.6,1,0.1814435432021193,4438.535925965081,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.889695167396,19.150040510201364,2.611166925614022,6.460070074362784,2.2,6.529479366362011,0,3.0,2555.156979105699,136.888070728578,-547.5739838224523,1200.685346432665 +2018-01-01 16:10:00,1.9255605663307944,0.403691980447487,0.26827846716282844,0.3209267610551324,0.06728199674124782,0.044713077860471406,0.23102366480106737,0.6012035681963939,0.010000000000000002,0.0,1.0833333333333333,0.06683648315529993,0.19572381246255305,0.005718171544975432,1,0.0,0.4007753137808203,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.06683648315529993,0,0.06683648315529993,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,0.49933333333333335,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.7186985556642,0,82.04277723487795,50,44.44,0.0,49.99821783622309,0.0,0.0,129.7186985556642,128.19183942949678,49.99821783622309,49.99821783622309,49.99821783622309,10.042356980382465,On,3441.65971135819,0.0,19,5.736099518930317,0.0,0.0,0.6,1,0.1406920982371082,3441.65971135819,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.1412240560685,19.2871165295818,2.5753848319191333,6.167122608886261,2.2,6.529479366362011,0,3.0,1711.8981632085975,12.826318840117096,-513.4162684156802,1196.051418479992 +2018-01-01 16:20:00,1.9255605663307944,0.403691980447487,0.2674346045293751,0.3209267610551324,0.06728199674124782,0.04457243408822918,0.23102366480106737,0.6012035681963939,0.010000000000000002,0.0,1.0833333333333333,0.06683648315529993,0.19494697621832593,0.005651145155749245,1,0.0,0.4007753137808203,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.06683648315529993,0,0.06683648315529993,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,0.5026666666666667,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,128.19818174169305,0,82.04488303470565,50,44.44,0.0,49.99974036541652,0.0,0.0,128.19818174169305,128.19512974172758,49.99974036541652,49.99974036541653,49.99974036541652,10.042356980382465,On,3427.999615683368,0.0,19,5.713332692805614,0.0,0.0,0.6,1,0.14013368523762781,3427.999615683368,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1429.195998636405,19.2871165295818,2.489982407649344,5.909459648189823,2.2,6.529479366362011,0,3.0,1682.9350908208821,181.2754176583672,-482.40071255582615,1091.8493723363301 +2018-01-01 16:30:00,1.9255605663307944,0.403691980447487,0.33620944969547717,0.3209267610551324,0.06728199674124782,0.056034908282579524,0.23102366480106737,0.6012035681963939,0.010000000000000002,0.0,1.0833333333333333,0.06683648315529993,0.23014797360232495,0.03922499293785232,1,0.0,0.4007753137808203,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.06683648315529993,0,0.06683648315529993,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,0.506,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,889.8325268370701,0,82.03769636945442,50,44.44,0.27396293258132476,49.99974340876149,763.1773880444182,0.0,889.8325268370701,128.18390057727254,49.999743408761496,49.9997434087615,49.99974340876149,10.042356980382465,On,4046.9833406162425,0.0,19,6.744972234360405,0.0,0.0,0.6,1,0.16543720921706856,4046.9833406162425,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1420.6566083253463,19.2871165295818,2.4885833117194682,5.686979118091951,-0.6,6.529479366362011,0,3.0,1742.2234815982092,-6215.347144510907,-577.2308734152081,340.13573429046966 +2018-01-01 16:40:00,1.9255605663307944,0.403691980447487,0.40792396973447553,0.3209267610551324,0.06728199674124782,0.06798732828907925,0.23102366480106737,0.6012035681963939,0.010000000000000002,0.0,1.0833333333333333,0.06683648315529993,0.23482506032501466,0.10626242625416096,1,0.0,0.4007753137808203,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.06683648315529993,0,0.06683648315529993,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,0.5093333333333333,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,2410.599879811095,0,82.02124424353126,50,44.44,0.8204705604411446,49.99821898230525,2285.494188535136,0.0,2410.599879811095,128.1581941305176,49.998218982305254,49.99821898230526,49.99821898230525,10.042356980382465,On,4129.226480771144,0.0,19,6.882044134618575,0.0,0.0,0.6,1,0.16879923827410032,4129.226480771144,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1421.2214348115983,19.2871165295818,-0.2581108128406937,5.276289778458991,-0.6,6.529479366362011,0,3.0,1802.9759262485422,-727.6017378472775,-548.943082994807,324.98886733558896 +2018-01-01 16:50:00,1.9255605663307944,0.403691980447487,0.3133442258722873,0.3209267610551324,0.06728199674124782,0.05222403764538121,0.23102366480106737,0.6012035681963939,0.010000000000000002,0.0,1.0833333333333333,0.06683648315529993,0.24065562220139197,0.005852120515595378,1,0.0,0.4007753137808203,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.06683648315529993,0,0.06683648315529993,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,0.5126666666666666,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,132.75737726703622,0,82.03856889660454,50,44.44,0.0,49.99517513586949,0.0,0.0,132.75737726703622,128.1852639009446,49.99517513586949,49.99517513586949,49.99517513586949,10.042356980382465,On,4231.752635621864,0.0,19,7.0529210593697735,0.0,0.0,0.6,1,0.17299041958192288,4231.752635621864,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1421.74178122713,19.287116529581798,-0.26373404540743606,4.768494056516692,-0.6,6.529479366362011,0,3.0,1864.3254249873376,-624.581819085233,-516.5665707176629,245.5518457720278 +2018-01-01 17:00:00,2.2069897236743907,0.4889525639801818,0.31388738467133737,0.36783162061239844,0.08149209399669696,0.05231456411188956,0.3987720441010707,0.714884346239987,0.010000000000000002,0.0,1.0833333333333333,0.06683648315529993,0.24139948861308935,0.00565141290294807,1,0.0,0.4860358973135151,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,On,0.06683648315529993,0,0.06683648315529993,On,0.006345353371911252,0.0,On,0.265071861795761,0,On,0.12735482893339842,0.0,On,0.5707874919222834,0.4280906189417124,On,0.5159999999999999,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,128.20425567947203,0,82.0448746227645,50,44.44,0.0,49.99973428343998,0.0,0.0,128.20425567947203,128.19511659806952,49.999734283439984,49.99973428343999,49.99973428343998,10.042356980382465,On,4244.832980969527,0.0,19,7.074721634949212,0.0,0.0,0.6,1,0.17352513288508742,4244.832980969527,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1422.6508875200805,19.2871165295818,-0.25262812557958003,4.194935178102733,-0.6,6.529479366362011,0,4.0,2209.3731078176124,-609.8769501521051,-472.95833509507486,244.81948673765785 +2018-01-01 17:10:00,2.2069897236743907,0.4889525639801818,0.3045377038079813,0.36783162061239844,0.08149209399669696,0.050756283967996876,0.3987720441010707,0.714884346239987,0.010000000000000002,0.0,1.0833333333333333,0.06683648315529993,0.2320573385976234,0.005643882055057955,1,0.0,0.4860358973135151,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,On,0.06683648315529993,0,0.06683648315529993,On,0.006345353371911252,0.0,On,0.265071861795761,0,On,0.12735482893339842,0.0,On,0.5707874919222834,0.4280906189417124,On,0.5193333333333332,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,128.03341579129398,0,81.94116664279922,50,44.44,0.0,49.99974339660439,0.0,0.0,128.03341579129398,128.03307287937378,49.99974339660439,49.99974339660439,49.99974339660439,10.042356980382465,On,4080.558123857569,0.0,19,6.800930206429283,0.0,0.0,0.5999999999999999,1,0.16680971757008475,4080.558123857569,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1423.5545022962463,19.325943378487946,-0.25033387178282307,3.625225174158865,-0.6,6.529479366362011,0,4.0,2058.051934523996,-629.0656623131919,-425.8652118827522,243.6947411756475 +2018-01-01 17:20:00,2.2069897236743907,0.4889525639801818,0.3444578545802366,0.36783162061239844,0.08149209399669696,0.05740964243003943,0.3987720441010707,0.714884346239987,0.010000000000000002,0.0,1.0833333333333333,0.06683648315529993,0.2384035226636481,0.039217848761288567,1,0.0,0.4860358973135151,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,On,0.06683648315529993,0,0.06683648315529993,On,0.006345353371911252,0.0,On,0.265071861795761,0,On,0.12735482893339842,0.0,On,0.5707874919222834,0.4280906189417124,On,0.5226666666666665,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,889.6704587216221,0,81.93397624124839,50,44.44,0.2739629303202123,49.999743738543856,763.1773880444182,0.0,889.6704587216221,128.0218378769506,49.99974373854386,49.99974373854387,49.999743738543856,10.042356980382465,On,4192.151116790298,0.0,19,6.986918527983831,0.0,0.0,0.5999999999999999,1,0.171371543445098,4192.151116790298,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.2067343480894,19.325943378487946,-0.2639381044038553,3.101529877991859,-0.6,6.529479366362011,0,4.0,2141.8121597362147,-568.9552545784641,-381.09959868368225,242.20461326768793 +2018-01-01 17:30:00,2.1401532405190906,0.4889525639801818,0.370652876299273,0.35669220675318175,0.08149209399669696,0.061775479383212165,0.3987720441010707,0.648047863084687,0.010000000000000002,0.0,1.0833333333333333,0.0,0.3313679173877353,0.039284958911537736,1,0.0,0.4860358973135151,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.265071861795761,0,On,0.12735482893339842,0.0,On,0.5707874919222834,0.4280906189417124,On,0.5259999999999998,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,891.1928756833601,0,81.93186780986413,50,44.44,0.2739733827993738,49.99821930668785,763.1773880444182,0.0,891.1928756833601,128.0185434529127,49.99821930668785,49.99821930668785,49.99821930668785,10.042356980382465,On,5826.861824123908,0.0,19,9.711436373539847,0.0,0.0,0.6,1,0.2381971156149483,5826.861824123908,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1418.4737793526017,19.325943378487946,-0.25423770743281515,2.6391729262343633,-2.2,6.529479366362011,0,4.0,971.9011733158895,-3983.307032386838,-704.8520061471696,0.0 +2018-01-01 17:40:00,2.1401532405190906,0.4889525639801818,0.41867473777945585,0.35669220675318175,0.08149209399669696,0.06977912296324264,0.3987720441010707,0.648047863084687,0.010000000000000002,0.0,1.0833333333333333,0.0,0.41292998119152097,0.005744756587934894,1,0.0,0.4860358973135151,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.265071861795761,0,On,0.12735482893339842,0.0,On,0.5707874919222834,0.4280906189417124,On,0.5293333333333331,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,130.32178944697856,0,82.42851819832664,50,44.44,0.0,49.99821625953969,0.0,0.0,130.32178944697856,128.79455968488537,49.99821625953969,49.99821625953969,49.99821625953969,10.042356980382465,On,7261.070903933357,0.0,19,12.101784839888929,0.0,0.0,0.6,1,0.29682635315495887,7261.070903933357,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1419.3980874361548,19.142717123501914,-1.7138489156604155,1.7307240610213852,-2.2,6.529479366362011,0,4.0,2181.6515612259745,-785.977785157545,-580.8745376407218,0.0 +2018-01-01 17:50:00,2.4045836337097994,0.5266318543007936,0.5998327892841733,0.4007639389516332,0.08777197571679893,0.0999721315473622,0.3987720441010707,0.9124782562753957,0.010000000000000002,0.0,1.0833333333333333,0.11986856377957562,0.4236304741146674,0.05633375138993026,1,0.0,0.5237151876341269,0.0029166666666666685,0,0,Off,0.0,0.0,On,0.2644303931907087,0.03767929032061181,0.11986856377957562,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.265071861795761,0,On,0.12735482893339842,0.0,On,0.5707874919222834,0.4280906189417124,On,0.5326666666666664,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1277.9506276759469,0,82.41977500062625,50,44.44,0.4133521651253015,49.99973915831798,1151.4732638956846,0.0,1277.9506276759469,128.78089843847852,49.99973915831798,49.99973915831798,49.99973915831798,10.042356980382465,On,7449.231224958742,0.0,19,12.415385374931239,0.0,0.0,0.5999999999999999,1,0.30451818575614953,7449.231224958742,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1416.9363205835277,19.14271712350191,-1.597510354947754,1.0600319289943771,-2.2,6.529479366362011,0,4.0,2826.103336065851,-939.4295724717424,-494.8198397710827,0.0 +2018-01-01 18:00:00,2.687007855985738,0.5625166114760148,0.6432607882143851,0.4478346426642897,0.0937527685793358,0.10721013136906418,0.49055569719011904,1.103118825462286,0.010000000000000002,0.0,1.0833333333333333,0.19978093963262605,0.4057044868908638,0.03777536169089529,1,0.0,0.5595999448093482,0.0029166666666666685,0,0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.3256787447691636,0,On,0.15647364660410004,0.0,On,0.581921950183601,0.4364414626377007,On,0.5359999999999997,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,856.9471407898246,0,82.22961301545962,50,44.44,0.2612131006829757,49.99744215612235,727.61832709859,-0.0,856.9471407898246,128.48377033665565,49.997442156122354,49.99744215612236,49.99744215612235,10.042356980382465,On,7134.015885352122,0.0,19,11.890026475586868,0.0,0.0,0.6,1,0.2916324529280551,7134.015885352122,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1417.3172587123977,19.21420824679269,-1.5795804981899602,0.5271180242017977,-2.2,6.529479366362011,0,4.0,2977.894624290202,-1020.4992931423424,-427.6146918618737,0.0 +2018-01-01 18:10:00,2.9910243298986448,0.9179512548979009,0.6122739141546212,0.49850405498310746,0.1529918758163168,0.10204565235910353,0.49055569719011904,1.4071352993751924,0.010000000000000002,0.0,1.0833333333333333,0.19978093963262605,0.3905276639178486,0.021965310604146568,1,0.0,0.9150345882312342,0.0029166666666666685,0,0,On,0.3040164739129063,0.355434643421886,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.3256787447691636,0,On,0.15647364660410004,0.0,On,0.581921950183601,0.4364414626377007,On,0.539333333333333,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,498.2906655615321,0,82.06694138986583,50,44.44,0.13258973006467747,49.99828480306667,369.3411699706007,-0.0,498.2906655615321,128.22959592166535,49.99828480306667,49.998284803066674,49.99828480306667,10.042356980382465,On,6867.142583041828,0.0,19,11.445237638403048,0.0,0.0,0.6,1,0.2807229011377987,6867.142583041828,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1419.0621280558432,19.276802851747696,-1.606013221247351,0.09554389103965699,-2.2,6.529479366362011,0,4.0,2812.8107475182496,-1011.1719870168934,-373.3822562094516,0.0 +2018-01-01 18:20:00,2.6567862072037034,0.8743080783928252,0.564990573101668,0.44279770120061723,0.14571801306547086,0.09416509551694466,0.3761800787866455,1.1872727950837247,0.010000000000000002,0.0,1.0833333333333333,0.11986856377957562,0.39962911925253036,0.04549289006956199,1,0.0,0.8713914117261585,0.0029166666666666685,0,0,On,0.3377960821254514,0.3949273815798733,On,0.2644303931907087,0.03767929032061181,0.11986856377957562,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.24842161922065034,0,On,0.11935515374913971,0.0,On,0.5045667664733943,0.37842507485504556,On,0.5426666666666663,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1032.0219403954302,0,82.03180663157094,50,44.44,0.3248507369897023,49.99900266121351,904.9185544846405,0.0,1032.0219403954302,128.1746978618296,49.99900266121351,49.99900266121352,49.99900266121351,10.042356980382465,On,7027.185000701629,0.0,19,11.711975001169382,0.0,0.0,0.6,1,0.2872652979567483,7027.185000701629,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1420.6969277681571,19.28843783640232,-1.6288463355915215,-0.2556517224904741,-2.2,6.529479366362011,0,3.0,2348.757567282267,-926.2608734467422,-329.28460387599927,0.0 +2018-01-01 18:30:00,2.584086616126675,0.8946451758548685,0.5026527637551541,0.43068110268777915,0.14910752930914473,0.08377546062585901,0.49055569719011904,1.0001975856032228,0.010000000000000002,0.0,1.0833333333333333,0.0,0.49528418762167153,0.007368576133482558,1,0.0,0.8917285091882018,0.0029166666666666685,0,0,On,0.3377960821254514,0.3949273815798733,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.3256787447691636,0,On,0.15647364660410004,0.0,On,0.581921950183601,0.4364414626377007,On,0.5459999999999996,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,167.15869727335928,0,82.23292166251187,50,44.44,0.013258973006467748,49.99793438733495,36.93379308277906,-0.0,167.15869727335928,128.4889400976748,49.99793438733495,49.99793438733495,49.99793438733495,10.042356980382465,On,8709.20923092284,0.0,19,14.515348718204732,0.0,0.0,0.6,1,0.35602500637722145,8709.20923092284,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1403.7888454857978,19.2156606819961,-1.615107459170535,-0.5422522342111511,-5.0,6.529479366362011,0,4.0,2611.440895221719,-7138.69227155759,-625.0512596682931,0.0 +2018-01-01 18:40:00,2.246290534001224,0.4997177942749952,0.5408457975293367,0.3743817556668706,0.08328629904583253,0.09014096625488945,0.49055569719011904,0.6624015034777715,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5227756158146808,0.018070181714655954,1,0.0,0.4968011276083285,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.3256787447691636,0,On,0.15647364660410004,0.0,On,0.581921950183601,0.4364414626377007,On,0.5493333333333329,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,409.92831996256615,0,82.35343943951237,50,44.44,0.10113771639980634,49.99966542850627,281.7383609980029,-0.0,409.92831996256615,128.67724912423807,49.99966542850626,49.99966542850627,49.99966542850627,10.042356980382465,On,9192.625835316232,0.0,19,15.321043058860386,0.0,0.0,0.6,1,0.37578666269969513,9192.625835316232,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1402.8856519788676,19.17057874032376,-4.27066503107906,-1.2459643117194783,-5.0,6.529479366362011,0,4.0,2917.208382568645,-1755.3637338235098,-535.0347074861556,0.0 +2018-01-01 18:50:00,3.1699846354524492,0.6313370752360776,0.5909636699517586,0.5283307725754082,0.1052228458726796,0.09849394499195976,0.49055569719011904,1.586095604928997,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5379007569730575,0.05306291297870114,1,0.0,0.628420408569411,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.9236941014512254,0.1316192809610824,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.3256787447691636,0,On,0.15647364660410004,0.0,On,0.581921950183601,0.4364414626377007,On,0.5526666666666662,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1203.7505274247849,0,82.37981246478259,50,44.44,0.38648894742789,49.99917952022497,1076.6254401047074,-0.0,1203.7505274247849,128.7184569762228,49.99917952022497,49.99917952022497,49.99917952022497,10.042356980382465,On,9458.590350816105,0.0,19,15.764317251360174,0.0,0.0,0.6,1,0.3866590640643048,9458.590350816105,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1402.152314313509,19.157650979596397,-4.241318903472525,-1.789845080423812,-5.0,6.529479366362011,0,4.0,3402.8438207305626,-1694.6946510541716,-470.8658799920663,0.0 +2018-01-01 19:00:00,3.1435940162216287,0.6043096756385503,0.6087942578692789,0.5239323360369381,0.10071827927309171,0.1014657096448798,0.5002016107560014,1.550059072132294,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5323838403723296,0.07641041749694931,1,0.0,0.6013930089718836,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.9236941014512254,0.1316192809610824,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,On,0.5559999999999995,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1733.3967398212785,0,82.26770082541479,50,44.44,0.5765177590333826,49.99759066911497,1605.9165696452553,0.0,1733.3967398212785,128.54328253971062,49.99759066911498,49.997590669114985,49.99759066911497,10.042356980382465,On,9361.579418131143,0.0,19,15.602632363551905,0.0,0.0,0.6,1,0.38269334031005253,9361.579418131143,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1401.9734773827233,19.19692943110642,-4.2161061068354115,-2.2452058972247038,-5.0,6.529479366362011,0,4.0,3275.531479046649,-1733.5100637280898,-417.7127338471926,0.0 +2018-01-01 19:10:00,3.1435940162216287,0.6043096756385503,0.5860131732021496,0.5239323360369381,0.10071827927309171,0.09766886220035827,0.5002016107560014,1.550059072132294,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5431454378135744,0.0428677353885753,1,0.0,0.6013930089718836,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.9236941014512254,0.1316192809610824,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,On,0.5593333333333328,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,972.4693988099774,0,82.28255187529997,50,44.44,0.3024175538816908,49.99653057157103,842.3755688274553,-0.0,972.4693988099774,128.56648730515622,49.99653057157103,49.99653057157103,49.99653057157103,10.042356980382465,On,9550.81421729731,0.0,19,15.918023695495517,0.0,0.0,0.6,1,0.39042909665641695,9550.81421729731,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1403.1119447477868,19.193514333596983,-4.2232271620071975,-2.6286564328060606,-5.0,6.529479366362011,0,4.0,3419.459513218915,-1664.8977561494382,-372.7157435110515,0.0 +2018-01-01 19:20:00,2.404638735060648,0.4990142508696844,0.6319324436924547,0.400773122510108,0.08316904181161405,0.10532207394874245,0.5002016107560014,0.8111037909713136,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5524962919704143,0.07943615172204047,1,0.0,0.4960975842030177,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.1847388202902451,0.026323856192216482,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,On,0.5626666666666661,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1802.0365668651243,0,82.27681175937629,50,44.44,0.6013632276712344,49.99805358294438,1675.1441658698934,0.0,1802.0365668651243,128.55751837402545,49.99805358294438,49.99805358294439,49.99805358294438,10.042356980382465,On,9715.242130352291,0.0,19,16.192070217253818,0.0,0.0,0.6,1,0.39715076876714545,9715.242130352291,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1403.5430269931483,19.193514333596983,-4.206642615948572,-2.9492863218302485,-5.0,6.529479366362011,0,4.0,3320.4850824556506,-1653.7991710099877,-334.88575865134567,0.0 +2018-01-01 19:30:00,2.2198999147704033,0.4726903946774679,0.607921799809891,0.36998331912840055,0.07878173244624465,0.10132029996831517,0.5002016107560014,0.6263649706810684,0.010000000000000002,0.0,1.0833333333333333,0.0,0.580159377891258,0.02776242191863294,1,0.0,0.4697737280108012,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,On,0.5659999999999994,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,629.8001400819784,0,82.36954123008393,50,44.44,0.17905279786512002,49.99639318757702,498.7448045986522,-0.0,629.8001400819784,128.70240817200613,49.99639318757701,49.99639318757702,49.99639318757702,10.042356980382465,On,10201.67721000732,0.0,19,17.0027953500122,0.0,0.0,0.6,1,0.4170358177703756,10201.67721000732,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1399.5148858705577,19.16209157238897,-4.192267489748699,-3.216012253366781,-5.6,6.529479366362011,0,4.0,3578.448653533179,-2975.9028891625276,-353.60112628667747,0.0 +2018-01-01 19:40:00,2.2198999147704033,0.4726903946774679,0.6220272181053743,0.36998331912840055,0.07878173244624465,0.10367120301756239,0.5002016107560014,0.6263649706810684,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5924593184199007,0.02956789968547362,1,0.0,0.4697737280108012,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,On,0.5693333333333327,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,670.758027466724,0,82.3933632041829,50,44.44,0.19460640016952552,49.998739442355934,542.1006086333284,-0.0,670.758027466724,128.73963000653578,49.998739442355934,49.99873944235594,49.998739442355934,10.042356980382465,On,10417.962644247116,0.0,19,17.363271073745192,0.0,0.0,0.6,1,0.4258773808862458,10417.962644247116,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1399.0559887047261,19.154235882086965,-4.750413281579319,-3.5100102001405773,-5.6,6.529479366362011,0,4.0,3746.0051891084486,-1815.9565245799959,-320.94597757770214,0.0 +2018-01-01 19:50:00,2.2198999147704033,0.4726903946774679,0.7453145717652394,0.36998331912840055,0.07878173244624465,0.12421909529420656,0.5002016107560014,0.6263649706810684,0.010000000000000002,0.0,1.0833333333333333,0.0,0.601380770089532,0.14393380167570746,1,0.0,0.4697737280108012,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,On,0.572666666666666,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,3265.188056127489,0,82.36875570816338,50,44.44,1.1278258895672,49.99865746432077,3141.694447058996,0.0,3265.188056127489,128.70118079400527,49.99865746432077,49.99865746432078,49.99865746432077,10.042356980382465,On,10574.839829459688,0.0,19,17.62473304909948,0.0,0.0,0.6,1,0.43229038571651657,10574.839829459688,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1398.7392989243,19.154235882086965,-4.7343824978378,-3.757138174406764,-5.6,6.529479366362011,0,4.0,3862.978473157036,-1797.5060083129265,-294.4000698615616,0.0 +2018-01-01 20:00:00,2.1070151205683185,0.44643067029009065,0.8304965780282121,0.3511691867613864,0.0744051117150151,0.13841609633803534,0.42232978240375363,0.5913520048312322,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6099586900575144,0.22053788797069776,1,0.0,0.44351400362342397,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.2747290024893251,0,On,0.13199464054026844,0.0,On,0.5157012247347119,0.3867759185510338,On,0.5759999999999993,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,5002.978239593316,0,82.34521547739568,50,44.44,1.751292646554354,49.99346466045098,4877.801954147517,0.0,5002.978239593316,128.66439918343076,49.99346466045098,49.99346466045099,49.99346466045098,10.042356980382465,On,10725.676261622017,0.0,19,17.87612710270336,0.0,0.0,0.6,1,0.4384564497412317,10725.676261622017,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1398.564569393059,19.154235882086965,-4.720342650819514,-3.9702120887367256,-5.6,6.529479366362011,0,4.0,3864.6862995778256,-1784.3329165336418,-271.45825438632914,0.0 +2018-01-01 20:10:00,2.1070151205683185,0.44643067029009065,0.6514701191865931,0.3511691867613864,0.0744051117150151,0.10857835319776551,0.42232978240375363,0.5913520048312322,0.010000000000000002,0.0,1.0833333333333333,0.0,0.624321422975493,0.02714869621110018,1,0.0,0.44351400362342397,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.2747290024893251,0,On,0.13199464054026844,0.0,On,0.5157012247347119,0.3867759185510338,On,0.5793333333333326,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,615.8775602109253,0,82.42371670879052,50,44.44,0.1717350043937488,49.989986438456214,478.2846606443412,-0.0,615.8775602109253,128.7870573574852,49.989986438456214,49.989986438456214,49.989986438456214,10.042356980382465,On,10978.234387313862,0.0,19,18.29705731218977,0.0,0.0,0.5999999999999999,1,0.4487808093846767,10978.234387313862,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1398.3966954554407,19.138566561800474,-4.7071119215513795,-4.153185176546565,-5.6,6.529479366362011,0,4.0,4065.6363989154606,-1752.5170765055177,-251.59800459592097,0.0 +2018-01-01 20:20:00,2.1070151205683185,0.44643067029009065,0.6662448122007265,0.3511691867613864,0.0744051117150151,0.11104080203345441,0.42232978240375363,0.5913520048312322,0.010000000000000002,0.0,1.0833333333333333,0.0,0.632331902190058,0.03391291001066859,1,0.0,0.44351400362342397,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.2747290024893251,0,On,0.13199464054026844,0.0,On,0.5157012247347119,0.3867759185510338,On,0.5826666666666659,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,769.3260889811562,0,82.43432991829351,50,44.44,0.230048847889996,49.99876730867949,640.8304522499374,-0.0,769.3260889811562,128.80364049733362,49.9987673086795,49.998767308679504,49.99876730867949,10.042356980382465,On,11119.092789950564,0.0,19,18.531821316584274,0.0,0.0,0.6,1,0.45453898011721094,11119.092789950564,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1397.9646161863816,19.138566561800474,-4.68530928686634,-4.309435984954278,-5.6,6.529479366362011,0,4.0,4170.457226713242,-1761.6177972803735,-234.52194590573697,0.0 +2018-01-01 20:30:00,2.1070151205683185,0.44643067029009065,0.6826250326733388,0.3511691867613864,0.0744051117150151,0.1137708387788898,0.42232978240375363,0.5913520048312322,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6156728064425028,0.06695222623083606,1,0.0,0.44351400362342397,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.2747290024893251,0,On,0.13199464054026844,0.0,On,0.5157012247347119,0.3867759185510338,On,0.5859999999999992,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1518.8344007797286,0,82.42683166448872,50,44.44,0.4995490154521713,49.9984601783637,1391.5468985660555,0.0,1518.8344007797286,128.7919244757636,49.99846017836369,49.9984601783637,49.9984601783637,10.042356980382465,On,10826.154807900022,0.0,19,18.043591346500037,0.0,0.0,0.6,1,0.4425639265661524,10826.154807900022,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1393.8915560611856,19.138566561800474,-4.67309624660679,-4.442596988199437,-6.1,6.529479366362011,0,4.0,4275.138938660072,-3005.0294386884557,-182.91764198140785,0.0 +2018-01-01 20:40:00,2.1070151205683185,0.44643067029009065,0.6441445735162449,0.3511691867613864,0.0744051117150151,0.10735742891937414,0.42232978240375363,0.5913520048312322,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6228976892158297,0.02124688430041521,1,0.0,0.44351400362342397,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.2747290024893251,0,On,0.13199464054026844,0.0,On,0.5157012247347119,0.3867759185510338,On,0.5893333333333325,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,481.99291646548113,0,82.43456012255639,50,44.44,0.12604829860458666,49.996960022406924,351.1077553492716,-0.0,481.99291646548113,128.80400019149437,49.996960022406924,49.996960022406924,49.996960022406924,10.042356980382465,On,10953.199073221607,0.0,19,18.25533178870268,0.0,0.0,0.6,1,0.4477573872090211,10953.199073221607,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1393.7418830780903,19.138566561800474,-5.1981609003541225,-4.509251769823614,-6.1,6.529479366362011,0,4.0,4369.888421543341,-1930.4730842351391,-180.00988982101984,0.0 +2018-01-01 20:50:00,2.1070151205683185,0.44643067029009065,0.6916176495975735,0.3511691867613864,0.0744051117150151,0.11526960826626226,0.42232978240375363,0.5913520048312322,0.010000000000000002,0.0,1.0833333333333333,0.0,0.629769179481915,0.061848470115658534,1,0.0,0.44351400362342397,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.2747290024893251,0,On,0.13199464054026844,0.0,On,0.5157012247347119,0.3867759185510338,On,0.5926666666666658,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1403.0539286831738,0,82.42871478551082,50,44.44,0.4581011490161305,49.99903528148604,1276.1078267740697,-0.0,1403.0539286831738,128.79486685236066,49.99903528148604,49.999035281486044,49.99903528148604,10.042356980382465,On,11074.029190457857,0.0,19,18.45671531742976,0.0,0.0,0.6,1,0.45269681880596274,11074.029190457857,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1393.1417858630366,19.138566561800474,-5.18965310250593,-4.594460398049162,-6.1,6.529479366362011,0,4.0,4460.019294950091,-1906.2193624155757,-176.1266680477444,0.0 +2018-01-01 21:00:00,1.9865379138700665,0.42896130768796414,0.6897753732389066,0.33108965231167775,0.07149355128132735,0.11496256220648443,0.32514505917500325,0.5680595213617301,0.010000000000000002,0.0,1.0833333333333333,0.0,0.636315501861019,0.053459871377887554,1,0.0,0.42604464102129747,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,On,0.5959999999999991,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1212.7556659587012,0,82.42797907466317,50,44.44,0.3890048527156975,49.99719175934987,1083.5799796511565,0.0,1212.7556659587012,128.7937173041612,49.99719175934987,49.997191759349874,49.99719175934987,10.042356980382465,On,11189.141468857988,0.0,19,18.648569114763315,0.0,0.0,0.5999999999999999,1,0.45740251005356647,11189.141468857988,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1392.938260317839,19.138566561800474,-5.178779688313551,-4.688963546465455,-6.1,6.529479366362011,0,4.0,4426.942490212942,-1894.8663122102607,-171.2335782928529,0.0 +2018-01-01 21:10:00,1.9865379138700665,0.42896130768796414,0.6680223006126533,0.33108965231167775,0.07149355128132735,0.11133705010210888,0.32514505917500325,0.5680595213617301,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6491921412998292,0.018830159312824172,1,0.0,0.42604464102129747,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,On,0.5993333333333324,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,427.1686745392782,0,82.48096389354298,50,44.44,0.10651968896162253,49.997572645149134,296.7153286259664,-0.0,427.1686745392782,128.8765060836609,49.997572645149134,49.99757264514914,49.997572645149134,10.042356980382465,On,11415.567730520545,0.0,19,19.02594621753424,0.0,0.0,0.6,1,0.4666586215000749,11415.567730520545,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1392.7421426674855,19.12170477035037,-5.16863825149721,-4.784192493598764,-6.1,6.529479366362011,0,4.0,4609.126610339497,-1862.7261799948988,-165.93705078082436,0.0 +2018-01-01 21:20:00,1.9865379138700665,0.42896130768796414,0.696121288018116,0.33108965231167775,0.07149355128132735,0.116020214669686,0.32514505917500325,0.5680595213617301,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6552755648165296,0.04084572320158637,1,0.0,0.42604464102129747,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,On,0.6026666666666657,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,926.5993532373897,0,82.47840850681153,50,44.44,0.28672953732644285,49.99914501330862,798.7293033199259,-0.0,926.5993532373897,128.87251329189303,49.99914501330863,49.999145013308635,49.99914501330862,10.042356980382465,On,11522.540271884474,0.0,19,19.204233786474127,0.0,0.0,0.5999999999999999,1,0.47103156727637535,11522.540271884474,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1392.2583878985727,19.12170477035037,-5.1490958550700325,-4.875227789859831,-6.1,6.529479366362011,0,4.0,4688.907002189952,-1874.5271344175785,-160.683197203199,0.0 +2018-01-01 21:30:00,1.9865379138700665,0.42896130768796414,0.7821581053625564,0.33108965231167775,0.07149355128132735,0.1303596842270927,0.32514505917500325,0.5680595213617301,0.010000000000000002,0.0,1.0833333333333333,0.0,0.664557563720924,0.11760054164163236,1,0.0,0.42604464102129747,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,On,0.605999999999999,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,2667.8089475294473,0,82.46059601879416,50,44.44,0.9127202391581608,49.99814539276292,2542.459243470995,0.0,2667.8089475294473,128.8446812793659,49.99814539276292,49.99814539276292,49.99814539276292,10.042356980382465,On,11685.757415819055,0.0,19,19.476262359698424,0.0,0.0,0.6,1,0.47770374418353456,11685.757415819055,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1392.0430961658797,19.121704770350366,-5.139828605817071,-4.959831240409698,-6.1,6.529479366362011,0,4.0,4764.065313545099,-1855.3237891493623,-165.52798289915683,0.0 +2018-01-01 21:40:00,1.9865379138700665,0.42896130768796414,0.7026358734311573,0.33108965231167775,0.07149355128132735,0.11710597890519288,0.32514505917500325,0.5680595213617301,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6699339840135725,0.03270188941758484,1,0.0,0.42604464102129747,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,On,0.6093333333333323,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,741.8536681166634,0,82.47399229872863,50,44.44,0.2186885424008984,49.99466032674862,609.1222541273683,-0.0,741.8536681166634,128.86561296676348,49.99466032674862,49.99466032674863,49.99466032674862,10.042356980382465,On,11780.297823957064,0.0,19,19.633829706595108,0.0,0.0,0.6,1,0.481568475012452,11780.297823957064,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1391.8674686177703,19.12170477035037,-5.125733041322352,-5.050640122647083,-6.1,6.529479366362011,0,4.0,4834.984494875847,-1859.9015467012491,-159.37680729076015,0.0 +2018-01-01 21:50:00,1.9865379138700665,0.42896130768796414,0.7370632187753047,0.33108965231167775,0.07149355128132735,0.1228438697958841,0.32514505917500325,0.5680595213617301,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6750512541504389,0.06201196462486579,1,0.0,0.42604464102129747,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,On,0.6126666666666656,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1406.7628581527695,0,82.4730099215814,50,44.44,0.4592291526392414,49.99851516496646,1279.2333940191693,0.0,1406.7628581527695,128.86407800247093,49.99851516496646,49.99851516496646,49.99851516496646,10.042356980382465,On,11870.28126664909,0.0,19,19.78380211108182,0.0,0.0,0.5999999999999999,1,0.4852469210009264,11870.28126664909,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1392.0738591124207,19.12170477035037,-5.117581072906757,-5.129417054935029,-6.1,6.529479366362011,0,4.0,4901.818003602329,-1853.7862224566552,-154.06011308842028,0.0 +2018-01-01 22:00:00,1.883926659840699,0.38523222069846036,0.7314137505689047,0.31398777664011646,0.06420537011641006,0.12190229176148411,0.2808392544649739,0.5097540720423918,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6798389125077546,0.05157483806115007,1,0.0,0.3823155540317937,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.1791566101081902,0,On,0.08607650498262355,0.0,On,0.4389320651435218,0.32919904885764123,On,0.6159999999999989,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1169.993033418214,0,82.47341723251112,50,44.44,0.3735941764350947,49.997184335852964,1040.6530717006701,0.0,1169.993033418214,128.86471442579864,49.997184335852964,49.997184335852964,49.997184335852964,10.042356980382465,On,11954.468727913028,0.0,19,19.924114546521714,0.0,0.0,0.6,1,0.48868843223790015,11954.468727913028,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1391.8992312001037,19.12170477035037,-5.109818366598916,-5.198549703321559,-6.1,6.529479366362011,0,4.0,4865.956742944478,-1848.1453277391552,-149.39246051195744,0.0 +2018-01-01 22:10:00,1.883926659840699,0.38523222069846036,0.7997061686322168,0.31398777664011646,0.06420537011641006,0.1332843614387028,0.2808392544649739,0.5097540720423918,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6898547458707601,0.10985142276145667,1,0.0,0.3823155540317937,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.1791566101081902,0,On,0.08607650498262355,0.0,On,0.4389320651435218,0.32919904885764123,On,0.6193333333333322,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,2492.017506474694,0,82.49898072812503,50,44.44,0.8492994477944246,49.997658235418015,2365.7664327991406,0.0,2492.017506474694,128.90465738769535,49.997658235418015,49.997658235418015,49.997658235418015,10.042356980382465,On,12130.589812657012,0.0,19,20.21764968776169,0.0,0.0,0.5999999999999999,1,0.4958881111819431,12130.589812657012,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1391.731570678117,19.10770680309238,-5.102556171234163,-5.259719441218082,-6.1,6.529479366362011,0,4.0,5008.468620529116,-1823.2254635783738,-145.26763091832032,0.0 +2018-01-01 22:20:00,1.883926659840699,0.38523222069846036,0.7695157443169794,0.31398777664011646,0.06420537011641006,0.1282526240528299,0.2808392544649739,0.5097540720423918,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6942237698465884,0.07529197447039103,1,0.0,0.3823155540317937,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.1791566101081902,0,On,0.08607650498262355,0.0,On,0.4389320651435218,0.32919904885764123,On,0.6226666666666655,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1708.0244730621107,0,82.50274787340997,50,44.44,0.566367335699062,49.99501217685261,1577.540289092276,0.0,1708.0244730621107,128.91054355220308,49.99501217685261,49.99501217685262,49.99501217685261,10.042356980382465,On,12207.415895321037,0.0,19,20.345693158868396,0.0,0.0,0.6,1,0.4990286955731506,12207.415895321037,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1391.3015551104638,19.10770680309238,-5.087410279695181,-5.314205945937612,-6.1,6.529479366362011,0,4.0,5065.74301015054,-1833.9574358608006,-141.59475609552226,0.0 +2018-01-01 22:30:00,1.6804196362746027,0.3228206520231799,0.7610382989179609,0.2800699393791004,0.05380344200386331,0.1268397164863268,0.16054765579925162,0.4265386471420178,0.010000000000000002,0.0,1.0833333333333333,0.0,0.720016408163697,0.04102189075426388,1,0.0,0.3199039853565132,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.0979034263416504,0,On,0.04703809008344111,0.0,On,0.3557166402431478,0.26678748018236076,On,0.6259999999999988,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,930.5957750798129,0,82.51224336266074,50,44.44,0.2872435875406923,49.99658135467311,800.1099304224994,0.0,930.5957750798129,128.9253802541574,49.99658135467311,49.99658135467312,49.99658135467311,10.042356980382465,On,12660.960525525961,0.0,19,21.101600875876603,0.0,0.0,0.6,1,0.517569211202025,12660.960525525961,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1391.1114302987528,19.10770680309238,-5.080756706243928,-5.363008801443631,-6.1,6.529479366362011,0,3.0,4921.469981051644,-1752.649138615896,-158.95815065293144,0.0 +2018-01-01 22:40:00,1.6804196362746027,0.3228206520231799,0.8235089370021109,0.2800699393791004,0.05380344200386331,0.13725148950035182,0.16054765579925162,0.4265386471420178,0.010000000000000002,0.0,1.0833333333333333,0.0,0.7348390928118627,0.08866984419024823,1,0.0,0.3199039853565132,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.0979034263416504,0,On,0.04703809008344111,0.0,On,0.3557166402431478,0.26678748018236076,On,0.6293333333333321,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,2011.5060730557252,0,82.57902893318736,50,44.44,0.6765712595558281,49.998137393844246,1884.6459567347874,0.0,2011.5060730557252,129.02973270810526,49.99813739384424,49.998137393844246,49.998137393844246,10.042356980382465,On,12921.606565095211,0.0,19,21.536010941825353,0.0,0.0,0.6,1,0.5282241978304731,12921.606565095211,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1390.9606669954326,19.079686557599626,-5.041805749685264,-5.435497876857787,-6.1,6.529479366362011,0,3.0,5138.258771330031,-1774.2319051426293,-152.24314160907593,0.0 +2018-01-01 22:50:00,1.6804196362746027,0.3228206520231799,0.7445259522301467,0.2800699393791004,0.05380344200386331,0.12408765870502445,0.16054765579925162,0.4265386471420178,0.010000000000000002,0.0,1.0833333333333333,0.0,0.7386709073330189,0.005855044897127811,1,0.0,0.3199039853565132,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.0979034263416504,0,On,0.04703809008344111,0.0,On,0.3557166402431478,0.26678748018236076,On,0.6326666666666654,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,132.82371787320443,0,82.5937943315897,50,44.44,0.0,49.99597393014848,0.0,0.0,132.82371787320443,129.05280364310892,49.99597393014847,49.99597393014848,49.99597393014848,10.042356980382465,On,12988.986213452426,0.0,19,21.648310355754045,0.0,0.0,0.6,1,0.5309786200862732,12988.986213452426,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1390.7441851342987,19.07968655759963,-5.019311654565097,-5.494305797806711,-6.1,6.529479366362011,0,3.0,5188.397654319008,-1802.2922626672762,-146.9155847679658,0.0 +2018-01-01 23:00:00,1.5776213201329599,0.30293690282222835,0.7478784012280157,0.26293688668882664,0.05048948380370472,0.12464640020466929,0.08426100525887753,0.400026981540749,0.010000000000000002,0.0,1.0833333333333333,0.0,0.7421888927321136,0.005689508495902054,1,0.0,0.30002023615556167,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.04961772287382962,0,On,0.023839032049090905,0.0,On,0.33403374783952927,0.25052531087964686,On,0.6359999999999987,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.06846737718496,0,82.59899506713519,50,44.44,0.0,49.99973415065792,0.0,0.0,129.06846737718496,129.06092979239872,49.99973415065792,49.99973415065793,49.99973415065792,10.042356980382465,On,13050.84740683955,0.0,19,21.751412344732582,0.0,0.0,0.6,1,0.5335074526342334,13050.84740683955,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1390.2747115642012,19.079686557599626,-5.013414402536545,-5.544074075937375,-6.1,6.529479366362011,0,3.0,5133.357889710262,-1798.5003206069882,-142.40741877479377,0.0 +2018-01-01 23:10:00,1.5776213201329599,0.30293690282222835,0.7567973271648504,0.26293688668882664,0.05048948380370472,0.1261328878608084,0.08426100525887753,0.400026981540749,0.010000000000000002,0.0,1.0833333333333333,0.0,0.7511055134218819,0.005691813742968435,1,0.0,0.30002023615556167,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.04961772287382962,0,On,0.023839032049090905,0.0,On,0.33403374783952927,0.25052531087964686,On,0.639333333333332,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.12076270392498,0,82.63735530991664,50,44.44,0.0,49.9997416668673,0.0,0.0,129.12076270392498,129.12086767174475,49.9997416668673,49.99974166686731,49.9997416668673,10.042356980382465,On,13207.639642813952,0.0,19,22.012732738023253,0.0,0.0,0.6,1,0.5399169848124803,13207.639642813952,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1389.790651093195,19.065330644247723,-5.008070196744897,-5.586950385570857,-6.1,6.529479366362011,0,3.0,5261.817805188267,-1774.4346323252544,-138.46686875315402,0.0 +2018-01-01 23:20:00,1.6327444920811984,0.32579184346388035,0.7552928458027476,0.27212408201353305,0.05429864057731339,0.12588214096712458,0.10891092301824684,0.4305002357296183,0.010000000000000002,0.0,1.0833333333333333,0.0,0.7496010274518792,0.005691818350868427,1,0.0,0.32287517679721367,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.06626796544894024,0,On,0.031838707233349604,0.0,On,0.3645070020283986,0.27338025152129886,On,0.6426666666666653,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.12086723572952,0,82.63735516514805,50,44.44,0.0,49.99974156219715,0.0,0.0,129.12086723572952,129.12086744554384,49.99974156219715,49.99974156219716,49.99974156219715,10.042356980382465,On,13181.184360321166,0.0,19,21.968640600535277,0.0,0.0,0.6,1,0.5388355155460441,13181.184360321166,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1389.0821323493665,19.065330644247723,-4.9946108586345765,-5.624224979706785,-6.1,6.529479366362011,0,4.0,5356.607930100573,-1803.0812188274222,-135.0473308652054,0.0 +2018-01-01 23:30:00,1.522744647362315,0.2800819621805764,0.8422948854722893,0.2537907745603858,0.046680327030096065,0.1403824809120482,0.05985758667710192,0.3695537273518797,0.010000000000000002,0.0,1.0833333333333333,0.0,0.8366044463393656,0.005690439132923715,1,0.0,0.2771652955139097,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.03313398272447012,0,On,0.015919353616674802,0.0,On,0.30356049365065996,0.2276703702379949,On,0.6459999999999986,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.0895791997891,0,82.61729049475927,50,44.44,0.0,49.99974156198793,0.0,0.0,129.0895791997891,129.08951639806136,49.99974156198793,49.99974156198794,49.99974156198793,10.042356980382465,On,14711.075678950428,0.0,19,24.518459464917385,0.0,0.0,0.5999999999999999,1,0.6013761609742772,14711.075678950428,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1396.9731004195237,19.072841669368074,-4.996836858477152,-5.656923591448437,-5.0,6.529479366362011,0,4.0,5233.235145339776,1075.0201335292747,15.813003939732639,0.0 +2018-01-01 23:40:00,1.522744647362315,0.2800819621805764,0.8507157553618812,0.2537907745603858,0.046680327030096065,0.14178595922698017,0.05985758667710192,0.3695537273518797,0.010000000000000002,0.0,1.0833333333333333,0.0,0.8450225669474221,0.005693188414459044,1,0.0,0.2771652955139097,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.03313398272447012,0,On,0.015919353616674802,0.0,On,0.30356049365065996,0.2276703702379949,On,0.6493333333333319,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.1519476019822,0,82.65732658470851,50,44.44,0.0,49.99974162461156,0.0,0.0,129.1519476019822,129.15207278860706,49.999741624611566,49.99974162461157,49.99974162461156,10.042356980382465,On,14859.102156554658,0.0,19,24.765170260924428,0.0,0.0,0.6,1,0.6074273564658176,14859.102156554658,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1396.7388693196692,19.057854558926806,-3.7655888196779648,-5.477823949268428,-5.0,6.529479366362011,0,4.0,5356.366902984361,-1340.9812568958241,-14.830063453715312,0.0 +2018-01-01 23:50:00,1.522744647362315,0.2800819621805764,0.853193136631215,0.2537907745603858,0.046680327030096065,0.1421988561052025,0.05985758667710192,0.3695537273518797,0.010000000000000002,0.0,1.0833333333333333,0.0,0.8474999427212866,0.005693193909928392,1,0.0,0.2771652955139097,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.03313398272447012,0,On,0.015919353616674802,0.0,On,0.30356049365065996,0.2276703702379949,On,0.6526666666666652,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.1520722686044,0,82.65732641205308,50,44.44,0.0,49.99974149977995,0.0,0.0,129.1520722686044,129.15207251883294,49.99974149977995,49.99974149977996,49.99974149977995,10.042356980382465,On,14902.66499279583,0.0,19,24.83777498799305,0.0,0.0,0.6,1,0.6092081678620469,14902.66499279583,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1394.341524086278,19.05785455892681,-3.7472822231514673,-5.360269765727691,-5.0,6.529479366362011,0,4.0,5388.815062419593,-1393.8351220269478,-33.05408125997,0.0 +2018-01-02 00:00:00,1.4998093547181264,0.27667717843485107,0.8553384857768838,0.2499682257863544,0.046112863072475176,0.1425564142961473,0.04146200569388039,0.3650140156909127,0.010000000000000002,0.0,1.0833333333333333,0.0,0.8496452918559709,0.005693193920912832,1,0.0,0.2737605117681844,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.022677630387300654,0,On,0.010895557600960339,0.0,On,0.3006303730555763,0.22547277979168218,On,0.6559999999999985,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.15207251779023,0,82.65732641170955,50,44.44,0.0,49.99974149953044,0.0,0.0,129.15207251779023,129.15207251829617,49.99974149953043,49.99974149953044,49.99974149953044,10.042356980382465,On,14940.389384073223,0.0,19,24.90064897345537,0.0,0.0,0.6,1,0.6107503086338433,14940.389384073223,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1393.8328604327514,19.05785455892681,-3.744481767743352,-5.269352354516396,-5.0,6.529479366362011,0,4.0,5394.253532206117,-1401.8207331217336,-46.97816974028647,0.0 +2018-01-02 00:10:00,1.5532785412423662,0.27667717843485107,0.9119147231997833,0.25887975687372766,0.046112863072475176,0.15198578719996386,0.04146200569388039,0.4184832022151526,0.010000000000000002,0.0,1.0833333333333333,0.053469186524239945,0.8527517511323931,0.005693785543150211,1,0.0,0.2737605117681844,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,On,0.053469186524239945,0,0.053469186524239945,On,0.007888817705619396,0.0,On,0.022677630387300654,0,On,0.010895557600960339,0.0,On,0.3006303730555763,0.22547277979168218,On,0.6593333333333318,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.16549367279856,0,82.66593319161679,50,44.44,0.0,49.99974149952993,0.0,0.0,129.16549367279856,129.16552061190123,49.99974149952993,49.99974149952993,49.99974149952993,10.042356980382465,On,14995.01419237897,0.0,19,24.99169032063162,0.0,0.0,0.6,1,0.6129833239639099,14995.01419237897,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1393.317232613356,19.054632689852003,-3.741751519270211,-5.197401317829027,-5.0,6.529479366362011,0,4.0,6471.778941147462,-1399.8392573492429,-58.14539355455099,0.0 +2018-01-02 00:20:00,1.5666458378734263,0.27667717843485107,0.8694726973616613,0.26110763964557104,0.046112863072475176,0.14491211622694355,0.04146200569388039,0.4318504988462126,0.010000000000000002,0.0,1.0833333333333333,0.06683648315529993,0.7969693437134905,0.0056668704928709715,1,0.0,0.2737605117681844,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,On,0.06683648315529993,0,0.06683648315529993,On,0.007888817705619396,0.0,On,0.022677630387300654,0,On,0.010895557600960339,0.0,On,0.3006303730555763,0.22547277979168218,On,0.6626666666666651,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,128.55491645133495,0,82.2743621716858,50,44.44,0.0,49.999741472667225,0.0,0.0,128.55491645133495,128.55369089325904,49.999741472667225,49.999741472667225,49.999741472667225,10.042356980382465,On,14014.121465016342,0.0,19,23.35686910836057,0.0,0.0,0.6,1,0.5728852702537401,14014.121465016342,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1392.7580235512935,19.201213693840835,-3.7372096506785155,-5.141177126958227,-5.0,6.529479366362011,0,4.0,5878.64563935376,-1605.9334520766297,-66.9930632417112,0.0 +2018-01-02 00:30:00,1.5666458378734263,0.27667717843485107,0.8550925899526339,0.26110763964557104,0.046112863072475176,0.1425154316587723,0.04146200569388039,0.4318504988462126,0.010000000000000002,0.0,1.0833333333333333,0.06683648315529993,0.7825960191624888,0.005660087634845183,1,0.0,0.2737605117681844,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,On,0.06683648315529993,0,0.06683648315529993,On,0.007888817705619396,0.0,On,0.022677630387300654,0,On,0.010895557600960339,0.0,On,0.3006303730555763,0.22547277979168218,On,0.6659999999999984,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,128.4010449718467,0,82.17647111624437,50,44.44,0.0,49.99974269474981,0.0,0.0,128.4010449718467,128.40073611913184,49.99974269474981,49.99974269474981,49.99974269474981,9.980991816508038,On,13761.37709322498,0.0,19,22.935628488708304,0.0,0.0,0.6,1,0.562553297029428,13761.37709322498,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1395.2459454180555,19.237858944838038,-3.8213852496036234,-5.097928367517498,-5.0,6.529479366362011,0,4.0,5660.88591510303,-1488.962992465099,-73.80026093448083,0.0 +2018-01-02 00:40:00,1.5666458378734263,0.27667717843485107,0.8549820640891901,0.26110763964557104,0.046112863072475176,0.14249701068153167,0.04146200569388039,0.4318504988462126,0.010000000000000002,0.0,1.0833333333333333,0.06683648315529993,0.7824855068571279,0.005660074076762253,1,0.0,0.2737605117681844,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,On,0.06683648315529993,0,0.06683648315529993,On,0.007888817705619396,0.0,On,0.022677630387300654,0,On,0.010895557600960339,0.0,On,0.3006303730555763,0.22547277979168218,On,0.6693333333333317,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,128.40073740204772,0,82.17647154220607,50,44.44,0.0,49.99974300272667,0.0,0.0,128.40073740204772,128.400736784697,49.99974300272667,49.999743002726674,49.99974300272667,9.980991816508038,On,13759.433815377568,0.0,19,22.932389692295946,0.0,0.0,0.6,1,0.5624738574971269,13759.433815377568,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1395.8982139098339,19.237858944838038,-3.8434981829424895,-5.064979490211858,-5.0,6.529479366362011,0,4.0,5659.3186686103245,-1442.53621802613,-79.05964429786721,0.0 +2018-01-02 00:50:00,1.5532785412423662,0.27667717843485107,0.8416110220067349,0.25887975687372766,0.046112863072475176,0.14026850366778915,0.04146200569388039,0.4184832022151526,0.010000000000000002,0.0,1.0833333333333333,0.053469186524239945,0.7824817614328331,0.0056600740496618,1,0.0,0.2737605117681844,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,On,0.053469186524239945,0,0.053469186524239945,On,0.007888817705619396,0.0,On,0.022677630387300654,0,On,0.010895557600960339,0.0,On,0.3006303730555763,0.22547277979168218,On,0.672666666666665,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,128.40073678726458,0,82.17647154305735,50,44.44,0.0,49.99974300334227,0.0,0.0,128.40073678726458,128.4007367860271,49.99974300334227,49.999743003342275,49.99974300334227,9.980991816508038,On,13759.367954837988,0.0,19,22.93227992472998,0.0,0.0,0.6,1,0.5624711651747354,13759.367954837988,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1395.8843825950921,19.23785894483804,-3.843659002871571,-5.04017471587916,-5.0,6.529479366362011,0,4.0,5401.046818603878,-1439.7409127441088,-82.98109495648006,0.0 +2018-01-02 01:00:00,1.4868123669767688,0.27151432233207573,0.8698717754171718,0.2478020611627948,0.045252387055345955,0.14497862923619528,0.035348826089556806,0.3581302075538788,0.010000000000000002,0.0,1.0833333333333333,0.0,0.7969219673664865,0.07294980805068531,1,0.0,0.26859765566540905,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.018548370228673224,0,On,0.008911638155264185,0.0,On,0.2953561559844259,0.22151711698831936,On,0.6759999999999983,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1654.8916180270119,0,82.25995361662223,50,44.44,0.5481859208283972,49.999743003343504,1529.4244316916227,0.0,1654.8916180270119,128.53117752597223,49.999743003343504,49.99974300334351,49.999743003343504,9.980991816508038,On,14013.288386696931,0.0,19,23.355480644494886,0.0,0.0,0.6,1,0.572851214726296,14013.288386696931,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1395.8390550163515,19.201213693840835,-3.8436120396541886,-5.021547085432372,-5.0,6.529479366362011,0,4.0,4573.430044364639,-1386.980189191996,-85.94876101946912,0.0 +2018-01-02 01:10:00,1.4868123669767688,0.27151432233207573,0.8942718819615636,0.2478020611627948,0.045252387055345955,0.14904531366026058,0.035348826089556806,0.3581302075538788,0.010000000000000002,0.0,1.0833333333333333,0.0,0.8554426182538909,0.03882926370767274,1,0.0,0.26859765566540905,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.018548370228673224,0,On,0.008911638155264185,0.0,On,0.2953561559844259,0.22151711698831936,On,0.6793333333333316,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,880.8552724270593,0,82.65942292340827,50,44.44,0.2688926712061751,49.99668770115083,750.1462688773196,0.0,880.8552724270593,129.15534831782543,49.99668770115083,49.99668770115083,49.99668770115083,9.980991816508038,On,15042.331117407954,0.0,19,25.07055186234659,0.0,0.0,0.6,1,0.6149175992911555,15042.331117407954,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1395.057438511854,19.052842775000208,-3.821775227306361,-5.007679472486589,-5.0,6.529479366362011,0,4.0,5462.539048719444,-1222.7722442469662,-88.13952978720828,0.0 +2018-01-02 01:20:00,1.4868123669767688,0.27151432233207573,0.9181371824564261,0.2478020611627948,0.045252387055345955,0.15302286374273766,0.035348826089556806,0.3581302075538788,0.010000000000000002,0.0,1.0833333333333333,0.0,0.8571976494394892,0.06093953301693691,1,0.0,0.26859765566540905,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.018548370228673224,0,On,0.008911638155264185,0.0,On,0.2953561559844259,0.22151711698831936,On,0.6826666666666649,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1382.4343763336585,0,82.65681549512854,50,44.44,0.4495873837992482,49.99823695046046,1254.2898778423362,0.0,1382.4343763336585,129.15127421113834,49.99823695046046,49.998236950460466,49.99823695046046,9.980991816508038,On,15073.192053783829,0.0,19,25.121986756306384,0.0,0.0,0.5999999999999999,1,0.616179167911073,15073.192053783829,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1391.9094423830354,19.052842775000208,-3.7333967014991076,-4.997403897201433,-5.0,6.529479366362011,0,4.0,5485.07338216882,-1390.790804140634,-89.7656182758992,0.0 +2018-01-02 01:30:00,1.4868123669767688,0.27151432233207573,0.8300646482371945,0.2478020611627948,0.045252387055345955,0.1383441080395324,0.035348826089556806,0.3581302075538788,0.010000000000000002,0.0,1.0833333333333333,0.0,0.8242601035117425,0.005804544725452033,1,0.0,0.26859765566540905,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.018548370228673224,0,On,0.008911638155264185,0.0,On,0.2953561559844259,0.22151711698831936,On,0.6859999999999982,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,131.67810401830428,0,82.66724525533715,50,44.44,0.0,49.9972330297985,0.0,0.0,131.67810401830428,129.1675707114643,49.9972330297985,49.99723302979851,49.9972330297985,9.980991816508038,On,14494.009462844751,0.0,19,24.156682438074586,0.0,0.0,0.6,1,0.5925026801651458,14494.009462844751,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1386.8847627486446,19.052842775000208,-3.7302693508653535,-4.989871756858719,-5.6,6.529479366362011,0,4.0,5508.332789712331,-2911.988067924425,-174.74273908113963,0.0 +2018-01-02 01:40:00,1.4868123669767688,0.27151432233207573,0.8310436475937634,0.2478020611627948,0.045252387055345955,0.13850727459896056,0.035348826089556806,0.3581302075538788,0.010000000000000002,0.0,1.0833333333333333,0.0,0.8253493107975861,0.005694336796177272,1,0.0,0.26859765566540905,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.018548370228673224,0,On,0.008911638155264185,0.0,On,0.2953561559844259,0.22151711698831936,On,0.6893333333333315,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.17799903831317,0,82.67070771006635,50,44.44,0.0,49.999736443627086,0.0,0.0,129.17799903831317,129.17298079697866,49.999736443627086,49.99973644362709,49.999736443627086,9.980991816508038,On,14513.162374214302,0.0,19,24.188603957023837,0.0,0.0,0.6,1,0.5932856347608714,14513.162374214302,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1386.3756148369287,19.052842775000208,-4.380010043006902,-5.102338384123453,-5.6,6.529479366362011,0,4.0,5522.821564380044,-1614.990689704673,-158.6254729425309,0.0 +2018-01-02 01:50:00,1.4868123669767688,0.27151432233207573,0.8897107165248829,0.2478020611627948,0.045252387055345955,0.1482851194208138,0.035348826089556806,0.3581302075538788,0.010000000000000002,0.0,1.0833333333333333,0.0,0.8263454529266563,0.06336526359822654,1,0.0,0.26859765566540905,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.018548370228673224,0,On,0.008911638155264185,0.0,On,0.2953561559844259,0.22151711698831936,On,0.6926666666666648,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1437.4629132665982,0,82.65836262639787,50,44.44,0.4698736646904101,49.999741447637476,1310.9352271642479,0.0,1437.4629132665982,129.15369160374667,49.999741447637476,49.99974144763748,49.999741447637476,9.980991816508038,On,14530.678803049772,0.0,19,24.217798005082955,0.0,0.0,0.6,1,0.5940016913536688,14530.678803049772,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1386.1868210152754,19.052842775000208,-4.381372277418184,-5.182442489911976,-5.6,6.529479366362011,0,4.0,5535.837566120289,-1592.2282653393268,-148.10378791649904,0.0 +2018-01-02 02:00:00,1.4792160655136402,0.2681095385863505,0.9487924369532315,0.24653601091894,0.04468492309772508,0.15813207282553857,0.03229223628739501,0.35359049589291186,0.010000000000000002,0.0,1.0833333333333333,0.0,0.8272847545735497,0.12150768237968178,1,0.0,0.2651928719196838,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2924260353893423,0.21931952654200668,On,0.6959999999999981,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,2756.4437860660664,0,82.64231266414194,50,44.44,0.9427094686858218,49.99712288907534,2629.9626470887692,0.0,2756.4437860660664,129.12861353772178,49.99712288907535,49.99712288907536,49.99712288907534,9.980991816508038,On,14547.195733689185,0.0,19,24.245326222815308,0.0,0.0,0.6,1,0.5946768893171475,14547.195733689185,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1385.641292903755,19.052842775000208,-4.379305893258487,-5.247419458231065,-5.6,6.529479366362011,0,4.0,5540.857590213878,-1584.5845680209577,-139.57446590645637,0.0 +2018-01-02 02:10:00,0.6125493988475992,0.2681095385863505,0.8461059865065157,0.10209156647459985,0.04468492309772508,0.1410176644177526,0.03229223628739501,0.35359049589291186,0.010000000000000002,0.0,0.21666666666729228,0.0,0.828610352373385,0.0174956341331307,1,0.0,0.2651928719196838,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2924260353893423,0.21931952654200668,On,0.6993333333333314,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,396.894509425831,0,82.66376224851,50,44.44,0.09427716657491725,49.99448292233707,262.99626470887694,0.0,396.894509425831,129.16212851329686,49.99448292233707,49.99448292233708,49.99448292233707,9.980991816508038,On,14570.505398894236,0.0,19,24.284175664823728,0.0,0.0,0.6,1,0.5956297684458075,14570.505398894236,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1385.0870988134939,19.051795117136567,-4.377605938337006,-5.300952748542297,-5.6,6.529479366362011,0,4.0,5559.270182955026,-1578.1159814773255,-132.40941723952236,0.0 +2018-01-02 02:20:00,0.39588273218030684,0.2681095385863505,0.8352367765617266,0.06598045536338447,0.04468492309772508,0.13920612942695443,0.03229223628739501,0.35359049589291186,0.010000000000000002,0.0,0.0,0.0,0.8295188783652543,0.0057178981964723374,1,0.0,0.2651928719196838,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2924260353893423,0.21931952654200668,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.7124975503612,0,82.67277218825957,50,44.44,0.0,49.99920560765884,0.0,0.0,129.7124975503612,129.17620654415558,49.99920560765884,49.999205607658844,49.99920560765884,9.980991816508038,On,14586.481162208864,0.0,19,24.310801937014773,0.0,0.0,0.6,1,0.5962828439530277,14586.481162208864,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1384.5345731042487,19.051795117136567,-4.375494523805193,-5.34466672041434,-5.6,6.529479366362011,0,4.0,5571.41605318492,-1575.3217682451277,-126.4523445824302,0.0 +2018-01-02 02:30:00,0.39588273218030684,0.2681095385863505,0.8186353531514041,0.06598045536338447,0.04468492309772508,0.13643922552523402,0.03229223628739501,0.35359049589291186,0.010000000000000002,0.0,0.0,0.0,0.8129409971724842,0.005694355978919822,1,0.0,0.2651928719196838,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2924260353893423,0.21931952654200668,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.17843420546035,0,82.67351182526045,50,44.44,0.0,49.99974037782796,0.0,0.0,129.17843420546035,129.17736222696945,49.999740377827955,49.99974037782796,49.99974037782796,9.980991816508038,On,14294.971278546876,0.0,19,23.824952130911463,0.0,0.0,0.6,1,0.5843661698396897,14294.971278546876,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1388.4775423617054,19.05179511713657,-4.374072982893897,-5.380043903420601,-5.0,6.529479366362011,0,4.0,5577.005661708269,-234.4539749279561,-37.8776764310394,0.0 +2018-01-02 02:40:00,0.39588273218030684,0.2681095385863505,0.8194477956520684,0.06598045536338447,0.04468492309772508,0.13657463260867805,0.03229223628739501,0.35359049589291186,0.010000000000000002,0.0,0.0,0.0,0.8137534867310905,0.005694308920977837,1,0.0,0.2651928719196838,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2924260353893423,0.21931952654200668,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.17736667977613,0,82.67351330370157,50,44.44,0.0,49.99974144676649,0.0,0.0,129.17736667977613,129.1773645370337,49.99974144676649,49.99974144676649,49.99974144676649,9.980991816508038,On,14309.258311609292,0.0,19,23.848763852682154,0.0,0.0,0.6,1,0.5849502115020598,14309.258311609292,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1387.960335740052,19.051795117136567,-3.7990173228667588,-5.29127326939481,-5.0,6.529479366362011,0,4.0,5587.98653042762,-1372.6792601674024,-50.53260776246257,0.0 +2018-01-02 02:50:00,0.39588273218030684,0.2681095385863505,0.8201953757071777,0.06598045536338447,0.04468492309772508,0.1366992292845296,0.03229223628739501,0.35359049589291186,0.010000000000000002,0.0,0.0,0.0,0.8145010668802626,0.005694308826915135,1,0.0,0.2651928719196838,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2924260353893423,0.21931952654200668,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.17736454593123,0,82.67351330665518,50,44.44,0.0,49.99974144890316,0.0,0.0,129.17736454593123,129.17736454164873,49.99974144890315,49.99974144890316,49.99974144890316,9.980991816508038,On,14322.403960307041,0.0,19,23.8706732671784,0.0,0.0,0.6,1,0.585487594350187,14322.403960307041,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1387.0336849229982,19.051795117136567,-3.7951571465231746,-5.232095565339358,-5.0,6.529479366362011,0,4.0,5598.056562172841,-1388.5732205295108,-58.095976055259015,0.0 +2018-01-02 03:00:00,0.3913430205193398,0.26470475484062517,0.8208527576119982,0.0652238367532233,0.04411745914010419,0.13680879293533302,0.03229223628739501,0.3490507842319448,0.010000000000000002,0.0,0.0,0.0,0.8151584487852708,0.005694308826727403,1,0.0,0.2617880881739585,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2894959147942587,0.21712193609569394,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.17736454167246,0,82.67351330666277,50,44.44,0.0,49.99974144890743,0.0,0.0,129.17736454167246,129.17736454166058,49.99974144890743,49.99974144890743,49.99974144890743,9.980991816508038,On,14333.963539026545,0.0,19,23.88993923171091,0.0,0.0,0.6,1,0.5859601400174466,14333.963539026545,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1386.4790796090756,19.051795117136567,-3.794513204437925,-5.185805111635035,-5.0,6.529479366362011,0,4.0,5602.491327802688,-1391.0316550103016,-63.90704525642961,0.0 +2018-01-02 03:10:00,0.3913430205193398,0.26470475484062517,0.8558981397950809,0.0652238367532233,0.04411745914010419,0.14264968996584682,0.03229223628739501,0.3490507842319448,0.010000000000000002,0.0,0.0,0.0,0.815957024625932,0.03994111516914887,1,0.0,0.2617880881739585,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2894959147942587,0.21712193609569394,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,906.0780072533042,0,82.66781964747643,50,44.44,0.2790237440850803,49.999741448907436,778.4689435382757,0.0,906.0780072533042,129.16846819918192,49.999741448907436,49.99974144890744,49.999741448907436,9.980991816508038,On,14348.00590956229,0.0,19,23.913343182603818,0.0,0.0,0.5999999999999999,1,0.5865341800854919,14348.00590956229,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1385.9152659649233,19.051180712785975,-3.7936944631370797,-5.148526266449368,-5.0,6.529479366362011,0,4.0,5613.555800226327,-1390.6023512571055,-68.62521307024961,0.0 +2018-01-02 03:20:00,0.3913430205193398,0.26470475484062517,0.8564329763219886,0.0652238367532233,0.04411745914010419,0.14273882938699808,0.03229223628739501,0.3490507842319448,0.010000000000000002,0.0,0.0,0.0,0.8164234060805122,0.040009570241476326,1,0.0,0.2617880881739585,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2894959147942587,0.21712193609569394,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,907.6309342373951,0,82.66566896203564,50,44.44,0.27903458634864664,49.99818646664954,778.4689435382755,0.0,907.6309342373951,129.16510775318068,49.99818646664954,49.99818646664955,49.99818646664954,9.980991816508038,On,14356.206885428015,0.0,19,23.92701147571336,0.0,0.0,0.6,1,0.586869428947642,14356.206885428015,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1385.3962552051419,19.05118071278597,-3.7925602862389063,-5.118678609383177,-5.0,6.529479366362011,0,4.0,5619.800620732886,-1390.7337718190215,-72.5177335834834,0.0 +2018-01-02 03:30:00,0.3913430205193398,0.26470475484062517,0.8568968939906726,0.0652238367532233,0.04411745914010419,0.1428161489984454,0.03229223628739501,0.3490507842319448,0.010000000000000002,0.0,0.0,0.0,0.8511338804372712,0.005763013553401356,1,0.0,0.2617880881739585,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2894959147942587,0.21712193609569394,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,130.73595502093133,0,82.67299961895291,50,44.44,0.0,49.99818335843496,0.0,0.0,130.73595502093133,129.17656190461392,49.99818335843496,49.998183358434964,49.99818335843496,9.980991816508038,On,14966.56512264376,0.0,19,24.94427520440627,0.0,0.0,0.5999999999999999,1,0.6118203503844094,14966.56512264376,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1371.6561154277083,19.051180712785975,-3.7918631050386686,-5.095140839592123,-6.7,6.529479366362011,0,4.0,5642.842834279331,-5232.152926204042,-302.1852351835514,0.0 +2018-01-02 03:40:00,0.3913430205193398,0.26470475484062517,0.857313446156033,0.0652238367532233,0.04411745914010419,0.14288557435933882,0.03229223628739501,0.3490507842319448,0.010000000000000002,0.0,0.0,0.0,0.8516188871759314,0.005694558980101626,1,0.0,0.2617880881739585,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2894959147942587,0.21712193609569394,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.18303935745723,0,82.67515028871664,50,44.44,0.0,49.99973832935725,0.0,0.0,129.18303935745723,129.17992232611974,49.99973832935725,49.99973832935726,49.99973832935725,9.980991816508038,On,14975.093610471493,0.0,19,24.958489350785822,0.0,0.0,0.6,1,0.6121689876547687,14975.093610471493,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1371.1663401601952,19.051180712785975,-5.4395018483905035,-5.395224087307059,-6.7,6.529479366362011,0,4.0,5648.873818788718,-1951.5410710120614,-260.94827865940044,0.0 +2018-01-02 03:50:00,0.3913430205193398,0.26470475484062517,1.0400906800508416,0.0652238367532233,0.04411745914010419,0.17334844667514027,0.03229223628739501,0.3490507842319448,0.010000000000000002,0.0,0.0,0.0,0.8521269535073678,0.18796372654347393,1,0.0,0.2617880881739585,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2894959147942587,0.21712193609569394,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,4264.022125099947,0,82.63611615308561,50,44.44,1.4850328171736817,49.999741437549176,4143.202693259846,0.0,4264.022125099947,129.11893148919626,49.999741437549176,49.99974143754918,49.999741437549176,9.980991816508038,On,14984.027584327827,0.0,19,24.973379307213044,0.0,0.0,0.6,1,0.6125342008463271,14984.027584327827,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1370.6885135143007,19.051180712785975,-5.446241440724357,-5.609465808884093,-6.7,6.529479366362011,0,4.0,5655.8097503228655,-1896.2715317195152,-234.21609817927106,0.0 +2018-01-02 04:00:00,0.39335374774580234,0.26569515198752536,0.9610074431224163,0.06555895795763372,0.04428252533125422,0.16016790718706936,0.03298243398465735,0.350371313761145,0.010000000000000002,0.0,0.0,0.0,0.8527781987723926,0.10822924435002365,1,0.0,0.2627784853208587,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016949946941462603,0,On,0.00814366933757535,0.0,On,0.2924260353893423,0.21931952654200668,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,2455.2178283431263,0,82.64182528591832,50,44.44,0.8326026889676025,49.991465473977904,2322.45932219839,0.0,2455.2178283431263,129.12785200924736,49.991465473977904,49.99146547397791,49.991465473977904,9.980991816508038,On,14995.479254733427,0.0,19,24.99246542455571,0.0,0.0,0.6,1,0.6130023353142312,14995.479254733427,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1370.198835418653,19.051180712785975,-5.444102319232811,-5.783220158993987,-6.7,6.529479366362011,0,4.0,5666.5366933931355,-1878.9593427498703,-212.68611676019893,0.0 +2018-01-02 04:10:00,0.39335374774580234,0.26569515198752536,0.859405907528385,0.06555895795763372,0.04428252533125422,0.14323431792139749,0.03298243398465735,0.350371313761145,0.010000000000000002,0.0,0.0,0.0,0.8535065783959223,0.005899329132462714,1,0.0,0.2627784853208587,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016949946941462603,0,On,0.00814366933757535,0.0,On,0.2924260353893423,0.21931952654200668,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,133.82832106305173,0,82.66803175409525,50,44.44,0.0,49.99508583214835,0.0,0.0,133.82832106305173,129.16879961577382,49.99508583214835,49.995085832148355,49.99508583214835,9.980991816508038,On,15008.287276268138,0.0,19,25.013812127113564,0.0,0.0,0.6,1,0.6135259162534036,15008.287276268138,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1369.7649822774272,19.051436648561587,-5.44241855185376,-5.926414557764939,-6.7,6.529479366362011,0,4.0,5676.049122225679,-1868.8804113662427,-194.64309619648748,0.0 +2018-01-02 04:20:00,0.39335374774580234,0.26569515198752536,0.8601455184701132,0.06555895795763372,0.04428252533125422,0.14335758641168553,0.03298243398465735,0.350371313761145,0.010000000000000002,0.0,0.0,0.0,0.8544507340089827,0.005694784461130431,1,0.0,0.2627784853208587,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016949946941462603,0,On,0.00814366933757535,0.0,On,0.2924260353893423,0.21931952654200668,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.18815447255574,0,82.6744580309468,50,44.44,0.0,49.99973213992444,0.0,0.0,129.18815447255574,129.17884067335436,49.99973213992444,49.99973213992445,49.99973213992444,9.980991816508038,On,15024.889560343021,0.0,19,25.041482600571705,0.0,0.0,0.5999999999999999,1,0.6142046033921451,15024.889560343021,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1369.3241473192738,19.051436648561587,-5.441035787234788,-6.043369997313603,-6.7,6.529479366362011,0,4.0,5688.876316957761,-1861.0892017106653,-179.6626731901731,0.0 +2018-01-02 04:30:00,0.3727387300019716,0.25075153695259905,0.7768636561126846,0.06212312166699527,0.041791922825433175,0.12947727601878076,0.03229223628739501,0.3304464937145766,0.010000000000000002,0.0,0.0,0.0,0.7711692805107084,0.0056943756019762135,1,0.0,0.24783487028593237,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.17887936127926,0,82.67447087626394,50,44.44,0.0,49.999741427311164,0.0,0.0,129.17887936127926,129.1788607441624,49.99974142731117,49.99974142731118,49.999741427311164,9.980991816508038,On,13560.446273641768,0.0,19,22.600743789402948,0.0,0.0,0.6,1,0.5543394173961891,13560.446273641768,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1377.6368654909063,19.051436648561584,-5.439495303909506,-6.138005018380688,-5.6,6.529479366362011,0,3.0,5672.2573489226215,412.89622504345243,-55.137857383904496,0.0 +2018-01-02 04:40:00,0.3727387300019716,0.25075153695259905,0.8473016559266116,0.06212312166699527,0.041791922825433175,0.14121694265443524,0.03229223628739501,0.3304464937145766,0.010000000000000002,0.0,0.0,0.0,0.7732557917273016,0.07404586419930997,1,0.0,0.24783487028593237,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1679.756030719992,0,82.66710924446656,50,44.44,0.5568873063242644,49.99974144587549,1553.7010099724423,0.0,1679.756030719992,129.167358194479,49.99974144587549,49.9997414458755,49.99974144587549,9.980991816508038,On,13597.136043277333,0.0,19,22.661893405462223,0.0,0.0,0.6,1,0.5558392637223173,13597.136043277333,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1377.2306787845232,19.048712287584717,-4.465056164266305,-6.054820318561422,-5.6,6.529479366362011,0,3.0,5702.385426932582,-1513.5647908255069,-61.11532737516679,0.0 +2018-01-02 04:50:00,0.3727387300019716,0.25075153695259905,0.9620222252195519,0.06212312166699527,0.041791922825433175,0.16033703753659198,0.03229223628739501,0.3304464937145766,0.010000000000000002,0.0,0.0,0.0,0.774277414451791,0.18774481076776098,1,0.0,0.24783487028593237,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,4259.055945037766,0,82.63849402426916,50,44.44,1.4822473125461555,49.99663793452886,4135.110500499572,0.0,4259.055945037766,129.12264691292057,49.99663793452887,49.99663793452888,49.99663793452886,9.980991816508038,On,13615.10052969748,0.0,19,22.69183421616247,0.0,0.0,0.5999999999999999,1,0.5565736365250268,13615.10052969748,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1378.687737093145,19.04871228758472,-4.457455167107677,-5.988281302855598,-5.6,6.529479366362011,0,3.0,5716.053700213221,-1543.785440695316,-64.41693193500929,0.0 +2018-01-02 05:00:00,0.40657236453167506,0.26789274243383804,0.7765608501875948,0.06776206075527917,0.04464879040563967,0.12942680836459913,0.04327093017544647,0.35330143435622857,0.010000000000000002,0.0,0.0,0.0,0.7705020791405102,0.006058771047084625,1,0.0,0.26497607576717136,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.024942063377515696,0,On,0.011983513426019521,0.0,On,0.2953561559844259,0.22151711698831936,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,137.44531602329414,0,82.67031596450401,50,44.44,0.0,49.99147541388716,0.0,0.0,137.44531602329414,129.1723686945375,49.99147541388715,49.99147541388716,49.99147541388716,9.980991816508038,On,13548.714026827836,0.0,19,22.58119004471306,0.0,0.0,0.6,1,0.5538598132052692,13548.714026827836,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1378.3052455794534,19.04871228758472,-4.4567016313325585,-5.9251203502064,-5.6,6.529479366362011,0,4.0,5760.336047279544,-1565.149996037795,-67.76854518027136,0.0 +2018-01-02 05:10:00,0.40657236453167506,0.26789274243383804,0.7751674489800876,0.06776206075527917,0.04464879040563967,0.1291945748300146,0.04327093017544647,0.35330143435622857,0.010000000000000002,0.0,0.0,0.0,0.7694726845307156,0.0056947644493720185,1,0.0,0.26497607576717136,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.024942063377515696,0,On,0.011983513426019521,0.0,On,0.2953561559844259,0.22151711698831936,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.1877004988971,0,82.66952045560869,50,44.44,0.0,49.9997249004363,0.0,0.0,129.1877004988971,129.17112571188858,49.9997249004363,49.999724900436306,49.9997249004363,9.980991816508038,On,13530.612877503978,0.0,19,22.551021462506633,0.0,0.0,0.5999999999999999,1,0.5531198537402261,13530.612877503978,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1377.9042287766545,19.05328123634474,-4.462763606868283,-5.866696969261191,-5.6,6.529479366362011,0,4.0,5743.337240510381,-1558.464358594238,-71.23296959229612,0.0 +2018-01-02 05:20:00,0.40657236453167506,0.26789274243383804,0.8170648151730536,0.06776206075527917,0.04464879040563967,0.13617746919550894,0.04327093017544647,0.35330143435622857,0.010000000000000002,0.0,0.0,0.0,0.7700753890501335,0.04698942612292013,1,0.0,0.26497607576717136,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.024942063377515696,0,On,0.011983513426019521,0.0,On,0.2953561559844259,0.22151711698831936,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,1065.9713781932223,0,82.66069866974605,50,44.44,0.33645274771934774,49.999741428219814,938.6943601916837,0.0,1065.9713781932223,129.1573416714782,49.999741428219814,49.99974142821982,49.999741428219814,9.980991816508038,On,13541.21099449463,0.0,19,22.568684990824384,0.0,0.0,0.6,1,0.5535530956763351,13541.21099449463,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1377.6659363756353,19.053281236344745,-4.4644633907521145,-5.815021607174447,-5.6,6.529479366362011,0,4.0,5751.249590921762,-1552.5574440121036,-74.53848983754605,0.0 +2018-01-02 05:30:00,0.4412155397695138,0.2845944298258145,0.8028688480211822,0.07353592329491895,0.04743240497096908,0.13381147467019702,0.05564518889064987,0.37557035087886387,0.010000000000000002,0.0,0.0,0.0,0.7764089742117589,0.026459873809423315,1,0.0,0.28167776315914783,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,600.2513858685301,0,82.66252007984458,50,44.44,0.16852431517165042,49.99786643685256,470.1563993718692,0.0,600.2513858685301,129.16018762475716,49.99786643685256,49.99786643685256,49.99786643685256,9.980991816508038,On,13652.582444932694,0.0,19,22.754304074887823,0.0,0.0,0.6,1,0.5581058650841095,13652.582444932694,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1373.4907715454985,19.05328123634474,-4.463592654454479,-5.770819652654081,-6.1,6.529479366362011,0,4.0,5796.12433640061,-2696.4284962131587,-109.71256119571555,0.0 +2018-01-02 05:40:00,0.4412155397695138,0.2845944298258145,0.7807301902985299,0.07353592329491895,0.04743240497096908,0.1301216983830883,0.05564518889064987,0.37557035087886387,0.010000000000000002,0.0,0.0,0.0,0.7749955077233568,0.0057346825751730555,1,0.0,0.28167776315914783,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,130.09325698438622,0,82.65571189147383,50,44.44,0.0,49.99879858478164,0.0,0.0,130.09325698438622,129.14954983042784,49.998798584781646,49.99879858478165,49.99879858478164,9.980991816508038,On,13627.727673276233,0.0,19,22.71287945546039,0.0,0.0,0.6,1,0.5570898233284383,13627.727673276233,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1373.2129169085347,19.05797074729014,-4.954047172392957,-5.779617507226106,-6.1,6.529479366362011,0,4.0,5774.082274873598,-1724.2149412908434,-109.16012900023017,0.0 +2018-01-02 05:50:00,0.4412155397695138,0.2845944298258145,0.8146945129564912,0.07353592329491895,0.04743240497096908,0.13578241882608186,0.05564518889064987,0.37557035087886387,0.010000000000000002,0.0,0.0,0.0,0.7753597549688287,0.039334757987662484,1,0.0,0.28167776315914783,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,892.3225849432812,0,82.64980808895059,50,44.44,0.2740929836163472,49.9997396157303,764.7122158458114,0.0,892.3225849432812,129.1403251389853,49.9997396157303,49.9997396157303,49.9997396157303,9.980991816508038,On,13634.13269397321,0.0,19,22.72355448995535,0.0,0.0,0.6,1,0.5573516550830815,13634.13269397321,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1371.0988416368984,19.05797074729014,-4.958393916702349,-5.78798865883357,-6.1,6.529479366362011,0,4.0,5778.844259342512,-1700.995918596318,-109.03437961285238,0.0 +2018-01-02 06:00:00,0.6582959523714311,0.35337604790328286,0.7814727327180413,0.10971599206190519,0.05889600798388048,0.13024545545300686,0.18101677738927596,0.4672791749821551,0.010000000000000002,0.0,0.0,0.0,0.7757123148635308,0.005760417854510556,1,0.0,0.3504593812366162,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.11821672228328535,0,On,0.056797693808236724,0.0,On,0.40611471447858555,0.30458603585893906,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,130.67707069413063,0,82.65490335401053,50,44.44,0.0,49.998213998403884,0.0,0.0,130.67707069413063,129.14828649064145,49.998213998403884,49.998213998403884,49.998213998403884,9.980991816508038,On,13640.332201177624,0.0,19,22.733887001962707,0.0,0.0,0.6,1,0.557605085622349,13640.332201177624,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1370.8367278221667,19.05797074729014,-4.95740084561766,-5.798614151911158,-6.1,6.529479366362011,0,4.0,5994.511551362626,-1694.6586212922275,-108.78782677174354,0.0 +2018-01-02 06:10:00,0.711765138895671,0.35337604790328286,0.8234287112012824,0.11862752314927849,0.05889600798388048,0.13723811853354706,0.18101677738927596,0.520748361506395,0.010000000000000002,0.0,0.0,0.053469186524239945,0.7642717066727033,0.005687818004339108,1,0.0,0.3504593812366162,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,On,0.053469186524239945,0,0.053469186524239945,On,0.006002361297753889,0.0,On,0.11821672228328535,0,On,0.056797693808236724,0.0,On,0.40611471447858555,0.30458603585893906,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,129.03011799159205,0,82.57715981309153,50,44.44,0.0,49.99973844721542,0.0,0.0,129.03011799159205,129.02681220795552,49.99973844721542,49.99973844721542,49.99973844721542,9.980991816508038,On,13439.157495921261,0.0,19,22.398595826535438,0.0,0.0,0.5999999999999999,1,0.549381236151891,13439.157495921261,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1370.5857806066206,19.087862609106562,-4.956679948070707,-5.810483498975702,-6.1,6.529479366362011,0,4.0,6855.626654732467,-1731.6848318390303,-108.12272167699243,0.0 +2018-01-02 06:20:00,0.725132435526731,0.35337604790328286,0.7791934817520572,0.12085540592112183,0.05889600798388048,0.1298655802920095,0.18101677738927596,0.534115658137455,0.010000000000000002,0.0,0.0,0.06683648315529993,0.7066962419432746,0.005660756653482547,1,0.0,0.3504593812366162,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,On,0.06683648315529993,0,0.06683648315529993,On,0.006002361297753889,0.0,On,0.11821672228328535,0,On,0.056797693808236724,0.0,On,0.40611471447858555,0.30458603585893906,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,128.4162218909485,0,82.18559338955431,50,44.44,0.0,49.99974174362437,0.0,0.0,128.4162218909485,128.4149896711786,49.99974174362437,49.99974174362438,49.99974174362437,9.980991816508038,On,12426.735170661726,0.0,19,20.711225284436214,0.0,0.0,0.5999999999999999,1,0.5079942795121121,12426.735170661726,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1370.8593975207066,19.234443613095387,-4.973860616884289,-5.822105824839272,-6.1,6.529479366362011,0,4.0,6242.798476357384,-1896.2844319044862,-107.48159788317433,0.0 +2018-01-02 06:30:00,0.725132435526731,0.35337604790328286,0.7184258495945024,0.12085540592112183,0.05889600798388048,0.11973764159908373,0.18101677738927596,0.534115658137455,0.010000000000000002,0.0,0.0,0.06683648315529993,0.6459353929361822,0.005653973503020275,1,0.0,0.3504593812366162,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,On,0.06683648315529993,0,0.06683648315529993,On,0.006002361297753889,0.0,On,0.11821672228328535,0,On,0.056797693808236724,0.0,On,0.40611471447858555,0.30458603585893906,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,128.26234377743748,0,82.08770234330211,50,44.44,0.0,49.99974297234976,0.0,0.0,128.26234377743748,128.26203491140956,49.99974297234976,49.999742972349765,49.99974297234976,9.980991816508038,On,11358.300198827947,0.0,19,18.93050033137991,0.0,0.0,0.6,1,0.464317573903736,11358.300198827947,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1386.093828174752,19.271088864092594,-5.060709628291199,-5.832996477364801,-4.4,6.529479366362011,0,4.0,5991.512753846277,2092.342131958539,3.088343711993261,0.0 +2018-01-02 06:40:00,0.6783468973180211,0.35337604790328286,0.6703587742263728,0.11305781621967018,0.05889600798388048,0.11172646237106212,0.18101677738927596,0.4873301199287451,0.010000000000000002,0.0,0.0,0.020050944946589978,0.6446538693354297,0.005653959944353105,1,0.0,0.3504593812366162,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,On,0.020050944946589978,0,0.020050944946589978,On,0.006002361297753889,0.0,On,0.11821672228328535,0,On,0.056797693808236724,0.0,On,0.40611471447858555,0.30458603585893906,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,128.26203619438482,0,82.08770276927902,50,44.44,0.0,49.99974328033989,0.0,0.0,128.26203619438482,128.26203557699847,49.99974328033989,49.9997432803399,49.99974328033989,9.980991816508038,On,11335.765546092685,0.0,19,18.892942576821145,0.0,0.0,0.5999999999999999,1,0.4633963766203714,11335.765546092685,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1386.984609452372,19.271088864092594,-3.4256914781130345,-5.682846127013176,-4.4,6.529479366362011,0,4.0,5070.812773802696,-1222.6301130399534,-6.18223816943113,0.0 +2018-01-02 06:50:00,0.6582959523714311,0.35337604790328286,0.7335999187701228,0.10971599206190519,0.05889600798388048,0.12226665312835379,0.18101677738927596,0.4672791749821551,0.010000000000000002,0.0,0.0,0.0,0.6942809046776893,0.03931901409243341,1,0.0,0.3504593812366162,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.11821672228328535,0,On,0.056797693808236724,0.0,On,0.40611471447858555,0.30458603585893906,On,0.7,True,0.0,2018-01-01 16:00:00,2018-01-02 07:00:00,On,891.9654292365575,0,82.42312204399875,50,44.44,0.27409295851280246,49.99974328095553,764.7122158458114,0.0,891.9654292365575,128.78612819374803,49.99974328095553,49.999743280955535,49.99974328095553,9.980991816508038,On,12208.420569427071,0.0,19,20.347367615711786,0.0,0.0,0.6,1,0.4990697657892315,12208.420569427071,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1387.2249097510694,19.14283048560237,-3.447103574000268,-5.541435919804985,-4.4,6.529479366362011,0,4.0,5433.492521744798,-1040.1850971351946,-12.96640652473232,0.0 +2018-01-02 07:00:00,0.6660039618822122,0.36150416966252097,0.7266735581561233,0.11100066031370204,0.06025069494375349,0.12111225969268721,0.17788729122107294,0.4781166706611393,0.010000000000000002,0.0,0.0,0.0,0.7209186607251742,0.005754897430949094,1,0.0,0.3585875029958543,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.11621869317427207,0,On,0.05583773278612568,0.0,On,0.4137330280258029,0.3102997710193521,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,130.55183797695233,0,82.5750523469644,50,44.44,0.0,49.99821471325821,0.0,0.0,130.55183797695233,129.02351929213188,49.998214713258214,49.99821471325822,49.99821471325821,9.980991816508038,On,12676.825975167658,0.0,19,21.128043291946096,0.0,0.0,0.6,1,0.518217777180875,12676.825975167658,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1384.875029815677,19.087862609106562,-3.373664253028158,-5.399861416893707,-4.4,6.529479366362011,0,3.0,5770.249770652205,-1106.2987653649498,-20.504209582942003,0.0 +2018-01-02 07:10:00,0.6660039618822122,0.36150416966252097,0.7265009819568077,0.11100066031370204,0.06025069494375349,0.12108349699280127,0.17788729122107294,0.4781166706611393,0.010000000000000002,0.0,0.0,0.0,0.7208133617312217,0.005687620225585985,1,0.0,0.3585875029958543,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.11621869317427207,0,On,0.05583773278612568,0.0,On,0.4137330280258029,0.3102997710193521,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.02563131219543,0,82.57444345055117,50,44.44,0.0,49.99973869787122,0.0,0.0,129.02563131219543,129.0225678914862,49.999738697871216,49.99973869787122,49.99973869787122,9.980991816508038,On,12674.974369578265,0.0,19,21.124957282630444,0.0,0.0,0.6,1,0.518142085131885,12674.974369578265,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1383.626578601256,19.088879584272608,-3.3337472294924253,-5.265873038847587,-4.4,6.529479366362011,0,3.0,5767.990896287815,-1193.7378423903583,-28.350298077497534,0.0 +2018-01-02 07:20:00,0.6660039618822122,0.36150416966252097,0.7600620335112598,0.11100066031370204,0.06025069494375349,0.12667700558520995,0.17788729122107294,0.4781166706611393,0.010000000000000002,0.0,0.0,0.0,0.720733045292941,0.039328988218318754,1,0.0,0.3585875029958543,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.11621869317427207,0,On,0.05583773278612568,0.0,On,0.4137330280258029,0.3102997710193521,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,892.191695730821,0,82.56724233946669,50,44.44,0.2740929689806517,49.99974175260455,764.7122158458114,0.0,892.191695730821,129.0113161554167,49.99974175260455,49.99974175260455,49.99974175260455,9.980991816508038,On,12673.56206390982,0.0,19,21.1226034398497,0.0,0.0,0.6,1,0.5180843512870222,12673.56206390982,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1383.2798107541341,19.08887958427261,-3.3340091255356317,-5.145066030290179,-4.4,6.529479366362011,0,3.0,5766.564326051035,-1197.8266134961018,-35.82844057505234,0.0 +2018-01-02 07:30:00,0.6660039618822122,0.36150416966252097,0.673205749159714,0.11100066031370204,0.06025069494375349,0.11220095819328565,0.17788729122107294,0.4781166706611393,0.010000000000000002,0.0,0.0,0.0,0.6674510185358562,0.005754730623857803,1,0.0,0.3585875029958543,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.11621869317427207,0,On,0.05583773278612568,0.0,On,0.4137330280258029,0.3102997710193521,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,130.5480539004128,0,82.5723350113702,50,44.44,0.0,49.998214260381275,0.0,0.0,130.5480539004128,129.01927345526593,49.99821426038127,49.998214260381275,49.998214260381275,9.980991816508038,On,11736.636696872773,0.0,19,19.56106116145462,0.0,0.0,0.6,1,0.4797836455708272,11736.636696872773,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1392.8841084336734,19.088879584272608,-3.3342769486347583,-5.039461733042236,-2.8,6.529479366362011,0,3.0,5731.392582891306,2392.7868215619337,16.029952676615352,224.39034722607457 +2018-01-02 07:40:00,0.6660039618822122,0.36150416966252097,0.6708242987857943,0.11100066031370204,0.06025069494375349,0.11180404979763238,0.17788729122107294,0.4781166706611393,0.010000000000000002,0.0,0.0,0.0,0.6651366788936347,0.005687619892159638,1,0.0,0.3585875029958543,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.11621869317427207,0,On,0.05583773278612568,0.0,On,0.4137330280258029,0.3102997710193521,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.02562374830347,0,82.57444346102794,50,44.44,0.0,49.999738705445125,0.0,0.0,129.02562374830347,129.02256790785614,49.999738705445125,49.999738705445125,49.999738705445125,9.980991816508038,On,11695.940731446712,0.0,19,19.493234552411188,0.0,0.0,0.5999999999999999,1,0.47812002939556103,11695.940731446712,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1392.541137702524,19.088879584272608,-1.7932379887939205,-4.851531310087411,-2.8,6.529479366362011,0,3.0,5702.595432304743,-733.8334154098193,9.483575486454512,228.28922410399903 +2018-01-02 07:50:00,0.6660039618822122,0.36150416966252097,0.668706953306252,0.11100066031370204,0.06025069494375349,0.11145115888437532,0.17788729122107294,0.4781166706611393,0.010000000000000002,0.0,0.0,0.0,0.6630194675600315,0.005687485746220488,1,0.0,0.3585875029958543,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.11621869317427207,0,On,0.05583773278612568,0.0,On,0.4137330280258029,0.3102997710193521,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.0225806012929,0,82.57444767555309,50,44.44,0.0,49.999741752619684,0.0,0.0,129.0225806012929,129.0225744930517,49.999741752619684,49.99974175261969,49.999741752619684,9.980991816508038,On,11658.711122766943,0.0,19,19.431185204611573,0.0,0.0,0.6,1,0.4765981149121457,11658.711122766943,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1392.6597714932902,19.088879584272608,-1.8111165447999162,-4.635530462993353,-2.8,6.529479366362011,0,3.0,5674.822153874582,-744.5172126476182,3.9525695242606247,228.75965394517996 +2018-01-02 08:00:00,0.6859993600361861,0.3688646162116091,0.759673407588922,0.11433322667269769,0.06147743603526818,0.12661223459815366,0.18806876064292938,0.48793059939325667,0.010000000000000002,0.0,0.0,0.0,0.6607153015022168,0.09895810608670522,1,0.0,0.3659479495449424,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.12321179505581853,0,On,0.059197596363514335,0.0,On,0.42193736569203694,0.3164530242690276,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,2244.8988513435556,0,82.55447098504693,50,44.44,0.7599191308145359,49.9997417587106,2120.154503191562,0.0,2244.8988513435556,128.99136091413584,49.999741758710606,49.99974175871061,49.9997417587106,9.980991816508038,On,11618.194052362049,0.0,19,19.36365675393675,0.0,0.0,0.6,1,0.47494181181196626,11618.194052362049,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1392.444564903106,19.088879584272608,-1.8156640425770287,-4.394725513748664,-2.8,6.529479366362011,0,3.0,5663.7679192547,-761.6032800664675,-4.193900401752302,227.99263426856982 +2018-01-02 08:10:00,0.6859993600361861,0.3688646162116091,0.6978834977133865,0.11433322667269769,0.06147743603526818,0.11631391628556442,0.18806876064292938,0.48793059939325667,0.010000000000000002,0.0,0.0,0.0,0.6570869979337859,0.0407964997796007,1,0.0,0.3659479495449424,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.12321179505581853,0,On,0.059197596363514335,0.0,On,0.42193736569203694,0.3164530242690276,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,925.4827028906461,0,82.55375670835303,50,44.44,0.2845647198033802,49.995506789809795,793.8441097827948,0.0,925.4827028906461,128.9902448568016,49.995506789809795,49.995506789809795,49.995506789809795,9.980991816508038,On,11554.392994867141,0.0,19,19.257321658111902,0.0,0.0,0.6,1,0.47233367928245407,11554.392994867141,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1392.2032435170865,19.091632409470446,-1.8197435764557908,-4.1512904116874445,-2.8,6.529479366362011,0,3.0,5613.479312187751,-776.01448342293,-13.741066271410752,225.44455942397337 +2018-01-02 08:20:00,0.6859993600361861,0.3688646162116091,0.6600778609095257,0.11433322667269769,0.06147743603526818,0.11001297681825428,0.18806876064292938,0.48793059939325667,0.010000000000000002,0.0,0.0,0.0,0.654320702407126,0.005757158502399666,1,0.0,0.3659479495449424,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.12321179505581853,0,On,0.059197596363514335,0.0,On,0.42193736569203694,0.3164530242690276,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,130.60313116457402,0,82.56488905851617,50,44.44,0.0,49.99814762776104,0.0,0.0,130.60313116457402,129.0076391539315,49.99814762776104,49.99814762776105,49.99814762776104,9.980991816508038,On,11505.749716647548,0.0,19,19.176249527745913,0.0,0.0,0.6,1,0.4703451837739468,11505.749716647548,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1391.9964744692184,19.091632409470446,-1.8254362113574083,-3.921081139277461,-2.8,6.529479366362011,0,3.0,5576.42043186613,-780.3698946001364,-23.412448232892153,221.8273337833345 +2018-01-02 08:30:00,0.5834364859147148,0.33150557862429336,0.6328103701920299,0.09723941431911912,0.05525092977071556,0.10546839503200497,0.13531793663787908,0.4381185492768357,0.010000000000000002,0.0,0.0,0.0,0.6271232509399316,0.005687119252098345,1,0.0,0.3285889119576267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.08758027594508183,0,On,0.04207829146920073,0.0,On,0.37212531557561596,0.27909398668171187,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.01426655541673,0,82.56708951482312,50,44.44,0.0,49.99973859520687,0.0,0.0,129.01426655541673,129.01107736691114,49.999738595206864,49.99973859520687,49.99973859520687,9.980991816508038,On,11027.502477394675,0.0,19,18.379170795657792,0.0,0.0,0.6,1,0.4507948466663779,11027.502477394675,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1397.6035905967278,19.091632409470446,-1.8296873405089933,-3.712537756288397,-1.7,6.529479366362011,0,2.0,5407.739091314972,1730.6955311082152,37.73499310980395,529.7610374400655 +2018-01-02 08:40:00,0.5834364859147148,0.33150557862429336,0.6324836468284204,0.09723941431911912,0.05525092977071556,0.10541394113807007,0.13531793663787908,0.4381185492768357,0.010000000000000002,0.0,0.0,0.0,0.6267940888208037,0.005689558007616766,1,0.0,0.3285889119576267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.08758027594508183,0,On,0.04207829146920073,0.0,On,0.37212531557561596,0.27909398668171187,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.06959056755187,0,82.60460903333616,50,44.44,0.0,49.99974177535134,0.0,0.0,129.06959056755187,129.06970161458776,49.99974177535133,49.99974177535134,49.99974177535134,9.980991816508038,On,11021.714402915364,0.0,19,18.369524004858942,0.0,0.0,0.6,1,0.45055823514416393,11021.714402915364,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1397.3886799780312,19.07758896854436,-0.7540671182503216,-3.4044273785912784,-1.7,6.529479366362011,0,2.0,5420.176337341201,-455.25138342825585,25.854310691921754,557.8895332841824 +2018-01-02 08:50:00,0.5834364859147148,0.33150557862429336,0.728507908484582,0.09723941431911912,0.05525092977071556,0.12141798474743033,0.13531793663787908,0.4381185492768357,0.010000000000000002,0.0,0.0,0.0,0.6220718355554773,0.10643607292910479,1,0.0,0.3285889119576267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.08758027594508183,0,On,0.04207829146920073,0.0,On,0.37212531557561596,0.27909398668171187,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,2414.539114670536,0,82.58303099545941,50,44.44,0.8208286813975274,49.99974166461921,2290.090551157298,0.0,2414.539114670536,129.03598593040533,49.999741664619215,49.99974166461922,49.99974166461921,9.980991816508038,On,10938.677042230327,0.0,19,18.231128403717214,0.0,0.0,0.5999999999999999,1,0.4471637390327982,10938.677042230327,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1398.1125655656492,19.07758896854436,-0.766248545623466,-3.0507019320761803,-1.7,6.529479366362011,0,2.0,5354.7797916545205,-478.99090598480507,15.350723132678795,540.6419575055172 +2018-01-02 09:00:00,0.5860299942156331,0.33150557862429336,0.6521875268127162,0.0976716657026055,0.05525092977071556,0.1086979211354527,0.13791144493879737,0.4381185492768357,0.010000000000000002,0.0,0.0,0.0,0.6126550818062483,0.03953244500646785,1,0.0,0.3285889119576267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.08991130990559731,0,On,0.04319824599499695,0.0,On,0.37212531557561596,0.27909398668171187,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,896.8071833151707,0,82.59107670416044,50,44.44,0.2741243038413585,49.99516725141171,764.7122158458113,0.0,896.8071833151707,129.0485573502507,49.99516725141171,49.995167251411715,49.99516725141171,9.980991816508038,On,10773.090333169552,0.0,19,17.95515055528259,0.0,0.0,0.5999999999999999,1,0.4403946963348656,10773.090333169552,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1397.9801884880858,19.07758896854436,-0.7742878821325851,-2.6626540902019227,-1.7,6.529479366362011,0,3.0,5292.299169174175,-512.3871929930569,0.8663610201918672,525.2669217115457 +2018-01-02 09:10:00,0.5860299942156331,0.33150557862429336,0.6134180902176024,0.0976716657026055,0.05525092977071556,0.1022363483696004,0.13791144493879737,0.4381185492768357,0.010000000000000002,0.0,0.0,0.0,0.6076609471509654,0.005757143066636943,1,0.0,0.3285889119576267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.08991130990559731,0,On,0.04319824599499695,0.0,On,0.37212531557561596,0.27909398668171187,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,130.60278099895973,0,82.60150152928813,50,44.44,0.0,49.99820502239007,0.0,0.0,130.60278099895973,129.0648461395127,49.99820502239007,49.99820502239007,49.99820502239007,9.980991816508038,On,10685.272137621818,0.0,19,17.808786896036363,0.0,0.0,0.6,1,0.4368047637932398,10685.272137621818,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1397.8533779319578,19.077956582995505,-0.788916211724636,-2.277692491011153,-1.7,6.529479366362011,0,3.0,5223.594485388215,-510.6282109031713,-15.036581324070248,510.93079089643726 +2018-01-02 09:20:00,0.5860299942156331,0.33150557862429336,0.6084055643499444,0.0976716657026055,0.05525092977071556,0.1014009273916574,0.13791144493879737,0.4381185492768357,0.010000000000000002,0.0,0.0,0.0,0.6027159338774475,0.005689630472496946,1,0.0,0.3285889119576267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.08991130990559731,0,On,0.04319824599499695,0.0,On,0.37212531557561596,0.27909398668171187,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.0712344584135,0,82.60362260444388,50,44.44,0.0,49.999738595907736,0.0,0.0,129.0712344584135,129.06816031944356,49.999738595907736,49.99973859590774,49.999738595907736,9.980991816508038,On,10598.317705550071,0.0,19,17.663862842583452,0.0,0.0,0.6,1,0.43325014116195054,10598.317705550071,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1397.7910471327066,19.077956582995505,-0.7966396825715973,-1.9185275879416448,-1.7,6.529479366362011,0,3.0,5155.948582160448,-519.035978990702,-68.54520287530612,497.15263193120256 +2018-01-02 09:30:00,0.48198812502859956,0.29414654103697757,0.5081095064542257,0.08033135417143325,0.04902442350616293,0.08468491774237094,0.0836816258681849,0.38830649916041465,0.010000000000000002,0.0,0.0,0.0,0.5024200109309405,0.005689495523285232,1,0.0,0.2912298743703109,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.05328077624035396,0,On,0.02559896058962782,0.0,On,0.3223132654591949,0.2417349490943961,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.06817308888708,0,82.60362684420785,50,44.44,0.0,49.99974166132893,0.0,0.0,129.06817308888708,129.06816694407476,49.99974166132893,49.99974166132894,49.99974166132893,9.980991816508038,On,8834.687450879239,0.0,19,14.724479084798734,0.0,0.0,0.5999999999999999,1,0.36115444842823596,8834.687450879239,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1411.742776572643,19.077956582995505,-0.8041414354265689,-1.646679403113949,2.2,6.529479366362011,0,2.0,4899.725985525221,1797.8842872985283,186.0224011456621,1260.2678360969528 +2018-01-02 09:40:00,0.48198812502859956,0.29414654103697757,0.5044424551499352,0.08033135417143325,0.04902442350616293,0.0840737425249892,0.0836816258681849,0.38830649916041465,0.010000000000000002,0.0,0.0,0.0,0.49875034264584983,0.005692112504085433,1,0.0,0.2912298743703109,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.05328077624035396,0,On,0.02559896058962782,0.0,On,0.3223132654591949,0.2417349490943961,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.12754020316078,0,82.64170199395565,50,44.44,0.0,49.99974166745632,0.0,0.0,129.12754020316078,129.1276593655557,49.99974166745632,49.99974166745633,49.99974166745632,9.980991816508038,On,8770.159025175995,0.0,19,14.61693170862666,0.0,0.0,0.5999999999999999,1,0.358516581709988,8770.159025175995,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1411.6761672638706,19.063703503272787,0.18686623136721237,-0.9731119029137795,2.2,6.529479366362011,0,2.0,4844.580378849337,1774.1307888247118,150.94906829298284,1226.4754248036961 +2018-01-02 09:50:00,0.48198812502859956,0.29414654103697757,0.4953427053508482,0.08033135417143325,0.04902442350616293,0.0825571175584747,0.0836816258681849,0.38830649916041465,0.010000000000000002,0.0,0.0,0.0,0.4896505876157466,0.0056921177351015985,1,0.0,0.2912298743703109,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.05328077624035396,0,On,0.02559896058962782,0.0,On,0.3223132654591949,0.2417349490943961,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.1276588705711,0,82.64170182960925,50,44.44,0.0,49.99974154863185,0.0,0.0,129.1276588705711,129.12765910876445,49.99974154863185,49.99974154863186,49.99974154863185,9.980991816508038,On,8610.14650612532,0.0,19,14.350244176875533,0.0,0.0,0.6,1,0.35197540712054537,8610.14650612532,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1411.8494029619396,19.063703503272784,1.0337282634476355,-0.22344263051223645,2.2,6.529479366362011,0,2.0,4718.3577039603515,1734.722871078408,122.70943198128602,1191.305881937518 +2018-01-02 10:00:00,0.4773775643194945,0.292939347737565,0.4861493437592256,0.07956292738658241,0.0488232246229275,0.08102489062653759,0.08068065622496325,0.3866969080945313,0.010000000000000002,0.0,0.0,0.0,0.48045722601366764,0.005692117745557919,1,0.0,0.29002268107089835,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.12765910777637,0,82.6417018292794,50,44.44,0.0,49.99974154839433,0.0,0.0,129.12765910777637,129.12765910824905,49.99974154839433,49.99974154839434,49.99974154839433,9.980991816508038,On,8448.487984151268,0.0,19,14.080813306918783,0.0,0.0,0.5999999999999999,1,0.3453669453428226,8448.487984151268,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1411.8495821984436,19.063703503272787,1.758585172355002,0.5989146215380298,2.2,6.529479366362011,0,2.0,4585.788073943448,1696.9842085804462,87.64199864108521,1155.3884100015057 +2018-01-02 10:10:00,0.4773775643194945,0.292939347737565,0.4768845727885866,0.07956292738658241,0.0488232246229275,0.0794807621314311,0.08068065622496325,0.3866969080945313,0.010000000000000002,0.0,0.0,0.0,0.4711923350391348,0.005692237749451769,1,0.0,0.29002268107089835,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.13038143759968,0,82.64344761721273,50,44.44,0.0,49.999741548393864,0.0,0.0,129.13038143759968,129.1303869018949,49.999741548393864,49.99974154839387,49.999741548393864,9.980991816508038,On,8285.571670617492,0.0,19,13.80928611769582,0.0,0.0,0.6,1,0.3387070661245264,8285.571670617492,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1411.8492346375301,19.063049983581358,2.3803471105216376,1.4125516872179036,2.2,6.529479366362011,0,2.0,4457.297070353585,1651.5532762553069,51.48302333214832,1119.3799504936908 +2018-01-02 10:20:00,0.4773775643194945,0.292939347737565,0.4671342895293382,0.07956292738658241,0.0488232246229275,0.07785571492155637,0.08068065622496325,0.3866969080945313,0.010000000000000002,0.0,0.0,0.0,0.46144205154001366,0.005692237989324579,1,0.0,0.29002268107089835,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.13038687919735,0,82.64344760967587,50,44.44,0.0,49.99974154294506,0.0,0.0,129.13038687919735,129.13038689011856,49.99974154294507,49.999741542945074,49.99974154294506,9.980991816508038,On,8114.120085493346,0.0,19,13.523533475822243,0.0,0.0,0.6,1,0.33169827232147053,8114.120085493346,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1411.869753779557,19.063049983581358,2.909434002432517,2.1682754078634474,2.2,6.529479366362011,0,2.0,4322.177607124939,529.8323160048537,-462.2635840726244,1083.9652632543407 +2018-01-02 10:30:00,0.9392246150451072,0.35874898821810625,0.4013044322451547,0.1565374358408512,0.05979149803635104,0.06688407204085911,0.08068065622496325,0.848543958820144,0.010000000000000002,0.0,0.0,0.0,0.3810492479676751,0.02025518427747965,1,0.0,0.35583232155143957,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.4618470507256127,0.0658096404805412,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,459.4958585648902,0,82.64032851822886,50,44.44,0.11865109798225178,49.999741542934174,331.033458875658,-0.0,459.4958585648902,129.12551330973258,49.999741542934174,49.99974154293418,49.999741542934174,9.980991816508038,On,6700.47158939639,0.0,19,11.167452648993985,0.0,0.0,0.6,1,0.2739095338156742,6700.47158939639,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1415.6256346278326,19.063049983581354,2.8960245995017937,2.2000010133073786,5.6,6.529479366362011,0,2.0,4259.7166715655885,1341.7975148060034,240.36859967239326,1544.581885696285 +2018-01-02 10:40:00,1.40107166577072,0.42455862869864747,0.38344497731231003,0.23351194429512,0.07075977144977458,0.06390749621871833,0.08068065622496325,1.3103910095457567,0.010000000000000002,0.0,0.0,0.0,0.3605860962784907,0.022858881033819323,1,0.0,0.4216419620319808,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.9236941014512254,0.1316192809610824,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,518.561619710648,0,82.58639828446373,50,44.44,0.13965914774968288,49.99908030979978,389.63892991027853,-0.0,518.561619710648,129.04124731947456,49.99908030979978,49.99908030979979,49.99908030979978,9.980991816508038,On,6340.642073253322,0.0,19,10.567736788755537,0.0,0.0,0.6,1,0.25920001170146334,6340.642073253322,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1415.6600740428387,19.082689209336365,3.246676406987807,3.3510177715342575,5.6,6.529479366362011,0,2.0,4101.16665909273,1266.7316642383316,167.41586851241289,1489.2291761797544 +2018-01-02 10:50:00,1.40107166577072,0.42455862869864747,0.3938367540208581,0.23351194429512,0.07075977144977458,0.06563945900347634,0.08068065622496325,1.3103910095457567,0.010000000000000002,0.0,0.0,0.0,0.3402764082049175,0.053560345815940595,1,0.0,0.4216419620319808,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.9236941014512254,0.1316192809610824,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,1215.0349633249728,0,82.52719598752243,50,44.44,0.3897905268261788,49.99896208849118,1087.484189418945,0.0,1215.0349633249728,128.9487437305038,49.99896208849118,49.99896208849119,49.99896208849118,9.980991816508038,On,5983.511102250791,0.0,19,9.972518503751319,0.0,0.0,0.6,1,0.2446008037989559,5983.511102250791,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1416.3376553469745,19.102328435091376,3.5266677007470624,4.437314972628656,5.6,6.529479366362011,0,2.0,3811.869737345429,1193.1043390448826,115.85494386379172,1438.8677451145354 +2018-01-02 11:00:00,1.2267490931907536,0.4268270628902639,0.32888885369389115,0.20445818219845893,0.07113784381504398,0.05481480894898186,0.12779402277377633,1.0889550704169773,0.010000000000000002,0.0,0.0,0.0,0.3231081459427827,0.005780707751108427,1,0.0,0.4239103962235972,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.6465858710158577,0.09213349667275768,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,131.13735401368535,0,82.53551453351508,50,44.44,0.0,49.997568083089625,0.0,0.0,131.13735401368535,128.96174145861733,49.997568083089625,49.997568083089625,49.997568083089625,9.980991816508038,On,5681.619800430143,0.0,19,9.469366334050239,0.0,0.0,0.6,1,0.23225974621197049,5681.619800430143,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1417.2087124672375,19.102328435091376,3.7472979108416977,5.500583246448918,5.6,6.529479366362011,0,3.0,3655.1121769739584,1131.1909403779678,-591.9102757705139,1394.602521502643 +2018-01-02 11:10:00,0.5801632221748958,0.33469356621750623,0.33365989579779093,0.09669387036248263,0.05578226103625104,0.055609982632965155,0.12779402277377633,0.4423691994011195,0.010000000000000002,0.0,0.0,0.0,0.30970786862321875,0.023952027174572194,1,0.0,0.33177689955083955,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,543.3600178689211,0,82.52863654438109,50,44.44,0.14883167652137816,49.9997375259491,415.2364416473889,-0.0,543.3600178689211,128.95099460059544,49.999737525949094,49.9997375259491,49.9997375259491,9.980991816508038,On,5445.985750635646,0.0,19,9.076642917726076,0.0,0.0,0.6,1,0.22262722828107595,5445.985750635646,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1417.762853641139,19.104561773024912,3.920638817199544,5.60000077179818,5.6,6.529479366362011,0,3.0,3276.348032318341,1082.9367519280534,78.11665425511518,1357.2465145283197 +2018-01-02 11:20:00,0.5801632221748958,0.33469356621750623,0.3346878035647946,0.09669387036248263,0.05578226103625104,0.05578130059413243,0.12779402277377633,0.4423691994011195,0.010000000000000002,0.0,0.0,0.0,0.3082979377644158,0.026389865800378845,1,0.0,0.33177689955083955,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,598.6632299780861,0,82.60043100255564,50,44.44,0.1683602861643423,49.998912453998635,469.7110618211915,-0.0,598.6632299780861,129.06317344149318,49.998912453998635,49.99891245399864,49.998912453998635,9.980991816508038,On,5421.193150432891,0.0,19,9.035321917388153,0.0,0.0,0.6,1,0.22161372804112842,5421.193150432891,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1418.2673238559166,19.0770668569679,4.05772240467291,6.7731496155415165,5.6,6.529479366362011,0,3.0,3270.193219799246,1077.105833913131,12.469341514319275,1327.2190538214804 +2018-01-02 11:30:00,0.5801632221748958,0.33469356621750623,0.25222525284857333,0.09669387036248263,0.05578226103625104,0.04203754214142889,0.12779402277377633,0.4423691994011195,0.010000000000000002,0.0,0.0,0.0,0.24649421677233474,0.0057310360762385885,1,0.0,0.33177689955083955,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,130.01053489528076,0,82.60470365854928,50,44.44,0.0,49.99880176350759,0.0,0.0,130.01053489528076,129.06984946648325,49.99880176350759,49.9988017635076,49.99880176350759,9.980991816508038,On,4334.420039515874,0.0,19,7.224033399193123,0.0,0.0,0.6,1,0.17718737502953297,4334.420039515874,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1414.05632901264,19.077066856967896,4.180492773887445,7.743406254271025,8.9,6.529479366362011,0,3.0,3085.966311197906,858.8757038566702,125.14224766742862,1090.3273333464092 +2018-01-02 11:40:00,0.5801632221748958,0.33469356621750623,0.24166345016834495,0.09669387036248263,0.05578226103625104,0.04027724169472416,0.12779402277377633,0.4423691994011195,0.010000000000000002,0.0,0.0,0.0,0.23597370850271007,0.005689741665634891,1,0.0,0.33177689955083955,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.0737569131928,0,82.60600102461127,50,44.44,0.0,49.99973978130022,0.0,0.0,129.0737569131928,129.0718766009551,49.99973978130022,49.99973978130023,49.99973978130022,9.980991816508038,On,4149.424616633922,0.0,19,6.915707694389869,0.0,0.0,0.6,1,0.1696249207509687,4149.424616633922,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1414.2247245112028,19.077066856967896,4.198884920081694,8.789855397751843,8.9,6.529479366362011,0,3.0,2943.752580050048,822.1178706264918,-492.23176162057655,1077.0456052585537 +2018-01-02 11:50:00,0.5801632221748958,0.33469356621750623,0.23097287374432246,0.09669387036248263,0.05578226103625104,0.03849547895738707,0.12779402277377633,0.4423691994011195,0.010000000000000002,0.0,0.0,0.0,0.22528321462103748,0.0056896591232849895,1,0.0,0.33177689955083955,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.07188441144626,0,82.60600361788165,50,44.44,0.0,49.99974165628019,0.0,0.0,129.07188441144626,129.07188065294008,49.99974165628019,49.99974165628019,49.99974165628019,9.980991816508038,On,3961.440121420222,0.0,19,6.602400202367037,0.0,0.0,0.6,1,0.16194027575821263,3961.440121420222,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1414.190391748546,19.077066856967896,4.205300958308975,8.900000564387332,8.9,6.529479366362011,0,3.0,2801.310332772935,784.5817744169237,75.28678481233516,1066.3194719107687 +2018-01-02 12:00:00,0.5846911447802653,0.34106361561969417,0.22050511233059594,0.0974485241300442,0.05684393593661569,0.03675085205509932,0.12382854617622857,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.21481545337230246,0.005689658958293491,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.07188066855707,0,82.60600362306833,50,44.44,0.0,49.999741660028036,0.0,0.0,129.07188066855707,129.07188066104428,49.999741660028036,49.99974166002804,49.999741660028036,9.980991816508038,On,3777.3722162194663,0.0,19,6.295620360365777,0.0,0.0,0.6,1,0.1544157376072332,3777.3722162194663,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1414.1567837529767,19.0770668569679,4.199794313537494,9.875580810253851,8.9,6.529479366362011,0,3.0,2666.2298908791417,747.8474774673722,26.410671712769357,1057.119334949126 +2018-01-02 12:10:00,0.5846911447802653,0.34106361561969417,0.20992194166692027,0.0974485241300442,0.05684393593661569,0.03498699027782004,0.12382854617622857,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.20423239095249326,0.005689550714427013,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.0694251190207,0,82.6044289217358,50,44.44,0.0,49.999741660035525,0.0,0.0,129.0694251190207,129.06942019021218,49.99974166003553,49.99974166003554,49.999741660035525,9.980991816508038,On,3591.276824479563,0.0,19,5.985461374132605,0.0,0.0,0.6,1,0.1468083175448322,3591.276824479563,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1414.1238933272741,19.077656331963553,4.183521180612513,10.663749032598997,8.9,6.529479366362011,0,3.0,2527.760826113381,710.7488158840744,-19.989413625069233,1061.1077377721144 +2018-01-02 12:20:00,0.5846911447802653,0.34106361561969417,0.1998458430506988,0.0974485241300442,0.05684393593661569,0.033307640508449796,0.12382854617622857,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.19415629255263753,0.005689550498061263,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.06942021068886,0,82.60442892853534,50,44.44,0.0,49.99974166495036,0.0,0.0,129.06942021068886,129.06942020083648,49.99974166495036,49.99974166495036,49.99974166495036,9.980991816508038,On,3414.096023256926,0.0,19,5.690160038761544,0.0,0.0,0.5999999999999999,1,0.13956531829970711,3414.096023256926,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1414.1055315226063,19.077656331963556,4.157251736317498,11.304144349844176,8.9,6.529479366362011,0,3.0,2397.423289998207,675.4398628739651,-61.735309577059795,1070.8182644776955 +2018-01-02 12:30:00,0.5846911447802653,0.34106361561969417,0.18646281019642683,0.0974485241300442,0.05684393593661569,0.031077135032737804,0.12382854617622857,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.18077325969879787,0.0056895504976289465,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.0694202008816,0,82.60442892854903,50,44.44,0.0,49.99974166496018,0.0,0.0,129.0694202008816,129.06942020085785,49.99974166496018,49.99974166496019,49.99974166496018,9.980991816508038,On,3178.765204746249,0.0,19,5.2979420079104145,0.0,0.0,0.6,1,0.12994519620371484,3178.765204746249,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1412.8396918741037,19.077656331963556,4.122863774244249,11.82736020449815,9.4,6.529479366362011,0,3.0,2271.2107884401476,628.5841241265375,-83.82754588222035,1013.4333479264408 +2018-01-02 12:40:00,0.5846911447802653,0.34106361561969417,0.17752964038143637,0.0974485241300442,0.05684393593661569,0.029588273396906062,0.12382854617622857,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.17184008988380858,0.0056895504976277956,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.0694202008555,0,82.60442892854752,50,44.44,0.0,49.99974166496021,0.0,0.0,129.0694202008555,129.0694202008555,49.99974166496021,49.99974166496021,49.99974166496021,9.980991816508038,On,3021.681964540859,0.0,19,5.036136607568099,0.0,0.0,0.6,1,0.12352376802200235,3021.681964540859,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1412.8092580304778,19.077656331963553,4.076429442342972,12.275223532146489,9.4,6.529479366362011,0,3.0,2156.749584191064,597.4659119789061,-118.35230752627322,1027.978766058701 +2018-01-02 12:50:00,0.5846911447802653,0.34106361561969417,0.16871218112825315,0.0974485241300442,0.05684393593661569,0.028118696854708858,0.12382854617622857,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.16302263063062536,0.0056895504976277956,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.0694202008555,0,82.60442892854752,50,44.44,0.0,49.99974166496021,0.0,0.0,129.0694202008555,129.0694202008555,49.99974166496021,49.99974166496021,49.99974166496021,9.980991816508038,On,2866.6334097104177,0.0,19,4.777722349517363,0.0,0.0,0.6,1,0.11718551603394699,2866.6334097104177,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1412.8567825622986,19.077656331963556,4.026348131008653,12.634624147890603,9.4,6.529479366362011,0,3.0,2044.8932775302553,566.879256385255,-147.51195708319813,1046.9540648020516 +2018-01-02 13:00:00,0.5835336520328118,0.34106361561969417,0.16004029006364587,0.0972556086721353,0.05684393593661569,0.02667338167727431,0.1226710534287751,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.15435073956601808,0.0056895504976277956,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.0694202008555,0,82.60442892854752,50,44.44,0.0,49.99974166496021,0.0,0.0,129.0694202008555,129.0694202008555,49.99974166496021,49.99974166496021,49.99974166496021,9.980991816508038,On,2714.14456472608,0.0,19,4.523574274543466,0.0,0.0,0.6,1,0.11095190278979125,2714.14456472608,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1412.8668932743412,19.077656331963553,3.973246601203363,12.923730292585663,9.4,6.529479366362011,0,3.0,1934.4531272970883,536.5855660352765,-171.81072767610564,1070.6220895037632 +2018-01-02 13:10:00,0.5835336520328118,0.34106361561969417,0.15153159538886507,0.0972556086721353,0.05684393593661569,0.025255265898144176,0.1226710534287751,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.14584201476396602,0.0056895806248990445,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.0701036484203,0,82.60486721295837,50,44.44,0.0,49.99974166496021,0.0,0.0,129.0701036484203,129.07010502024744,49.99974166496021,49.99974166496021,49.99974166496021,9.980991816508038,On,2564.5248788135164,0.0,19,4.27420813135586,0.0,0.0,0.6,1,0.10483557830856921,2564.5248788135164,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1412.9126596898243,19.077492264217597,3.9175629191556456,13.157422072620665,9.4,6.529479366362011,0,3.0,1828.3008793611696,507.0922203492341,-192.09719716179757,1098.9008054950016 +2018-01-02 13:20:00,0.5835336520328118,0.34106361561969417,0.17667034535631856,0.0972556086721353,0.05684393593661569,0.029445057559386426,0.1226710534287751,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.13733926219976722,0.039331083156551344,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,892.2392201289521,0,82.59766187499918,50,44.44,0.2740929695903069,49.999741663592275,764.7122158458113,0.0,892.2392201289521,129.0588466796862,49.999741663592275,49.999741663592275,49.999741663592275,9.980991816508038,On,2415.01021032396,0.0,19,4.025017017206601,0.0,0.0,0.5999999999999999,1,0.09872354684956132,2415.01021032396,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1412.9538262076144,19.077492264217597,3.8599490303039476,13.346528583669375,9.4,6.529479366362011,0,3.0,1722.9288343873027,477.419299111923,-209.09022713139566,1131.4279256462694 +2018-01-02 13:30:00,0.5835336520328118,0.34106361561969417,0.17617452022255287,0.0972556086721353,0.05684393593661569,0.029362420037092142,0.1226710534287751,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.13677619192010435,0.03939832830244851,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,893.7646995136394,0,82.5955492023885,50,44.44,0.2741034319994723,49.99821416526023,764.7122158458116,0.0,893.7646995136394,129.05554562873203,49.99821416526024,49.998214165260244,49.99821416526023,9.980991816508038,On,2405.1090323742933,0.0,19,4.008515053957156,0.0,0.0,0.5999999999999999,1,0.0983187951839157,2405.1090323742933,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1412.9978738921714,19.077492264217597,3.800498229862694,13.498816149867999,9.4,6.529479366362011,0,2.0,1629.7704818305833,475.9024650002205,-222.89766880576602,986.880930441088 +2018-01-02 13:40:00,0.5835336520328118,0.34106361561969417,0.13567373355794468,0.0972556086721353,0.05684393593661569,0.022612288926324112,0.1226710534287751,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.12991677331231158,0.005756960245633113,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,130.59863364127747,0,82.60275031548575,50,44.44,0.0,49.99821111198257,0.0,0.0,130.59863364127747,129.0667973679465,49.99821111198257,49.99821111198258,49.99821111198257,9.980991816508038,On,2284.4911863965704,0.0,19,3.8074853106609505,0.0,0.0,0.6,1,0.09338804105402838,2284.4911863965704,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1413.0045630747832,19.077492264217597,3.751244810815035,13.617996078938798,9.4,6.529479366362011,0,2.0,1543.9228619196226,452.0047139032826,-235.37752514882905,1010.285504860008 +2018-01-02 13:50:00,0.5835336520328118,0.34106361561969417,0.16231020695890155,0.0972556086721353,0.05684393593661569,0.027051701159816924,0.1226710534287751,0.45086259860403677,0.010000000000000002,0.0,0.0,0.0,0.12297898911893605,0.0393312178399655,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,892.242275468769,0,82.59765764358687,50,44.44,0.2740929905443742,49.99973860420876,764.7122158458114,0.0,892.242275468769,129.05884006810447,49.99973860420876,49.999738604208765,49.99973860420876,9.980991816508038,On,2162.49533906447,0.0,19,3.6041588984407835,0.0,0.0,0.6,1,0.08840095541022612,2162.49533906447,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1412.6786253680098,19.077492264217597,3.7003755066344213,13.701356004979711,9.4,6.529479366362011,0,2.0,1457.6894859261283,427.9020807136927,-244.99083815271413,1035.9716840803935 +2018-01-02 14:00:00,0.580231428382411,0.3371079528163313,0.1226422042185657,0.09670523806373517,0.05618465880272189,0.02044036736976095,0.12464304684952465,0.4455883815328863,0.010000000000000002,0.0,0.0,0.0,0.11688537811833324,0.005756826100232447,1,0.0,0.33419128614966465,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,130.5955905064826,0,82.6027545299957,50,44.44,0.0,49.99821415914491,0.0,0.0,130.5955905064826,129.0668039531183,49.99821415914491,49.99821415914491,49.99821415914491,9.980991816508038,On,2055.3436582669365,0.0,19,3.425572763778228,0.0,0.0,0.5999999999999999,1,0.08402068656746808,2055.3436582669365,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1412.780107791636,19.077492264217597,3.647949567171331,13.757543078842492,9.4,6.529479366362011,0,2.0,1373.0262392901202,406.77782917787596,-252.01246140769683,1026.3649725459113 +2018-01-02 14:10:00,0.580231428382411,0.3371079528163313,0.11631986928397556,0.09670523806373517,0.05618465880272189,0.019386644880662593,0.12464304684952465,0.4455883815328863,0.010000000000000002,0.0,0.0,0.0,0.11063007784259023,0.005689791441385336,1,0.0,0.33419128614966465,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.07488609330161,0,82.60597357874049,50,44.44,0.0,49.99973861029965,0.0,0.0,129.07488609330161,129.071833716782,49.99973861029965,49.99973861029966,49.99973861029965,9.980991816508038,On,1945.348790138198,0.0,19,3.2422479835636637,0.0,0.0,0.5999999999999999,1,0.07952419066426354,1945.348790138198,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1412.8432260342984,19.077076524794112,3.5954957037564323,13.795122141874108,9.4,6.529479366362011,0,2.0,1297.5963937683193,385.1007088731875,-257.2614014366162,1060.1526280563353 +2018-01-02 14:20:00,0.580231428382411,0.3371079528163313,0.10993296862443436,0.09670523806373517,0.05618465880272189,0.018322161437405726,0.12464304684952465,0.4455883815328863,0.010000000000000002,0.0,0.0,0.0,0.10424331117692795,0.005689657447506407,1,0.0,0.33419128614966465,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.0718463958297,0,82.60597778848785,50,44.44,0.0,49.99974165402011,0.0,0.0,129.0718463958297,129.07184029451227,49.99974165402011,49.99974165402011,49.99974165402011,9.980991816508038,On,1833.0421819514152,0.0,19,3.0550703032523585,0.0,0.0,0.6,1,0.07493319280949427,1833.0421819514152,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1412.894630551455,19.077076524794112,3.542750819960527,13.818914748345673,9.4,6.529479366362011,0,2.0,1221.4792872931407,362.9502561347554,-261.03522740580075,1098.9577330581826 +2018-01-02 14:30:00,0.580231428382411,0.3371079528163313,0.09573536641818785,0.09670523806373517,0.05618465880272189,0.015955894403031308,0.12464304684952465,0.4455883815328863,0.010000000000000002,0.0,0.0,0.0,0.09004570923851819,0.005689657179669659,1,0.0,0.33419128614966465,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.07184031986048,0,82.60597779690634,50,44.44,0.0,49.99974166010413,0.0,0.0,129.07184031986048,129.07184030766615,49.99974166010413,49.99974166010413,49.99974166010413,9.980991816508038,On,1583.3877634392343,0.0,19,2.6389796057320574,0.0,0.0,0.6,1,0.06472753422601316,1583.3877634392343,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1411.2835699542104,19.077076524794112,3.489622930124617,13.833104732871845,10.0,6.529479366362011,0,2.0,1133.132889502055,313.3323573607641,-242.95394805000177,1268.0842981344513 +2018-01-02 14:40:00,0.580231428382411,0.3371079528163313,0.08870679618584239,0.09670523806373517,0.05618465880272189,0.01478446603097373,0.12464304684952465,0.4455883815328863,0.010000000000000002,0.0,0.0,0.0,0.08301713900670797,0.005689657179134422,1,0.0,0.33419128614966465,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.07184030771842,0,82.60597779692155,50,44.44,0.0,49.999741660116285,0.0,0.0,129.07184030771842,129.0718403076899,49.99974166011628,49.999741660116285,49.999741660116285,9.980991816508038,On,1459.7955101976884,0.0,19,2.4329925169961473,0.0,0.0,0.6,1,0.05967518887733744,1459.7955101976884,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1411.3409198620163,19.077076524794112,3.424724189218601,13.870734707488594,10.0,6.529479366362011,0,2.0,1048.5817676788424,289.03967846604513,-247.2620709627795,1306.88442693335 +2018-01-02 14:50:00,0.580231428382411,0.3371079528163313,0.08193001121819966,0.09670523806373517,0.05618465880272189,0.013655001869699944,0.12464304684952465,0.4455883815328863,0.010000000000000002,0.0,0.0,0.0,0.07624035403906629,0.005689657179133375,1,0.0,0.33419128614966465,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.07184030769469,0,82.60597779692156,50,44.44,0.0,49.99974166011631,0.0,0.0,129.07184030769469,129.07184030768994,49.99974166011631,49.999741660116314,49.99974166011631,9.980991816508038,On,1340.6307161840189,0.0,19,2.234384526973365,0.0,0.0,0.6,1,0.05480383426594278,1340.6307161840189,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1411.7112505678006,19.077076524794112,3.3612979286117555,13.899718799172208,10.0,6.529479366362011,0,2.0,967.154542980641,265.5800087667758,-250.7120634992175,1346.3231825121923 +2018-01-02 15:00:00,0.5997877587186716,0.344251603212907,0.07515865651790847,0.09996462645311194,0.057375267202151164,0.012526442752984744,0.13467450999035108,0.45511324872832054,0.010000000000000002,0.0,0.0,0.0,0.0694689993387753,0.005689657179133166,1,0.0,0.3413349365462403,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.0895783050540951,0,On,0.043038252491311775,0.0,On,0.3891200150271008,0.2918400112703255,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.07184030768994,0,82.60597779692156,50,44.44,0.0,49.999741660116314,0.0,0.0,129.07184030768994,129.07184030768994,49.999741660116314,49.999741660116314,49.999741660116314,9.980991816508038,On,1221.5614094395155,0.0,19,2.0359356823991925,0.0,0.0,0.6,1,0.049936383092244054,1221.5614094395155,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1412.0713761826453,19.077076524794112,3.299474903340988,13.921095189903324,10.0,6.529479366362011,0,2.0,904.7292590643754,242.1189849442164,-253.62303524990438,1387.0462341155912 +2018-01-02 15:10:00,0.5997877587186716,0.344251603212907,0.06719968192157037,0.09996462645311194,0.057375267202151164,0.011199946986928395,0.13467450999035108,0.45511324872832054,0.010000000000000002,0.0,0.0,0.0,0.06151051346887556,0.005689168452694819,1,0.0,0.3413349365462403,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.0895783050540951,0,On,0.043038252491311775,0.0,On,0.3891200150271008,0.2918400112703255,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.06075337945887,0,82.59886792040899,50,44.44,0.0,49.999741660116314,0.0,0.0,129.06075337945887,129.06073112563905,49.999741660116314,49.999741660116314,49.999741660116314,9.980991816508038,On,1081.6172716402996,0.0,19,1.8026954527338328,0.0,0.0,0.5999999999999999,1,0.04421558672240632,1081.6172716402996,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1412.4578561620956,19.079738041819947,3.238854361759278,13.93743345876752,10.0,6.529479366362011,0,2.0,806.7436819369252,214.4790846280903,-255.83201480183715,1430.291536775482 +2018-01-02 15:20:00,0.5997877587186716,0.344251603212907,0.06012413221011538,0.09996462645311194,0.057375267202151164,0.010020688701685897,0.13467450999035108,0.45511324872832054,0.010000000000000002,0.0,0.0,0.0,0.05443496473432383,0.005689167475791547,1,0.0,0.3413349365462403,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.0895783050540951,0,On,0.043038252491311775,0.0,On,0.3891200150271008,0.2918400112703255,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.0607312180704,0,82.598867951099,50,44.44,0.0,49.999741682307025,0.0,0.0,129.0607312180704,129.0607311735922,49.99974168230702,49.999741682307025,49.999741682307025,9.980991816508038,On,957.1989358789463,0.0,19,1.5953315597982438,0.0,0.0,0.6,1,0.03912947182857624,957.1989358789463,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1412.859436701433,19.07973804181995,3.1773207975752102,13.952682785028621,10.0,6.529479366362011,0,2.0,722.8742452265135,189.96225963656542,-257.6369812340344,1478.2542851318183 +2018-01-02 15:30:00,0.7120339655719392,0.3877638940498983,0.12554621438173008,0.1186723275953232,0.06462731567498305,0.02092436906362168,0.18890432906096352,0.5131296365109757,0.010000000000000002,0.0,0.0,0.0,0.08621554443645876,0.03933066994527132,1,0.0,0.3848472273832316,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.12620883871933844,0,On,0.060637537896680895,0.0,On,0.44713640280975586,0.3353523021073168,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,892.2298462881968,0,82.59166261510073,50,44.44,0.27409296946182365,49.99974168235138,764.7122158458114,0.0,892.2298462881968,129.04947283609488,49.99974168235138,49.99974168235138,49.99974168235138,9.980991816508038,On,1516.0371241825408,0.0,19,2.5267285403042345,0.0,0.0,0.6,1,0.06197429783737107,1516.0371241825408,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1418.2348509107662,19.07973804181995,3.1162336066805327,13.969508320017418,7.8,6.529479366362011,0,3.0,807.9461343581861,302.0927243938157,-460.46739871468156,886.9685166491155 +2018-01-02 15:40:00,0.765503152096179,0.3877638940498983,0.13711231352130387,0.1275838586826965,0.06462731567498305,0.022852052253550643,0.18890432906096352,0.5665988230352156,0.010000000000000002,0.0,0.0,0.053469186524239945,0.07788953022285265,0.005753596774211278,1,0.0,0.3848472273832316,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,On,0.053469186524239945,0,0.053469186524239945,On,0.00205795244494419,0.0,On,0.12620883871933844,0,On,0.060637537896680895,0.0,On,0.44713640280975586,0.3353523021073168,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,130.5223321291529,0,82.55579102635804,50,44.44,0.0,49.99821418402216,0.0,0.0,130.5223321291529,128.99342347868443,49.99821418402217,49.998214184022174,49.99821418402216,9.980991816508038,On,1369.6302699800337,0.0,19,2.28271711663339,0.0,0.0,0.5999999999999999,1,0.05598931116188236,1369.6302699800337,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1418.5905499245762,19.095072633705552,3.1129004448894038,13.667894697443247,7.8,6.529479366362011,0,3.0,1726.1952625088293,272.5890230953405,-442.86819340265225,907.5070463076922 +2018-01-02 15:50:00,0.7788704487272391,0.3877638940498983,0.0882773590946874,0.12981174145453983,0.06462731567498305,0.014712893182447898,0.18890432906096352,0.5799661196662755,0.010000000000000002,0.0,0.0,0.06683648315529993,0.015781311757717253,0.005659564181670213,1,0.0,0.3848472273832316,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,On,0.06683648315529993,0,0.06683648315529993,On,0.00205795244494419,0.0,On,0.12620883871933844,0,On,0.060637537896680895,0.0,On,0.44713640280975586,0.3353523021073168,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,128.38917025558857,0,82.1663286700499,50,44.44,0.0,49.99973875692777,0.0,0.0,128.38917025558857,128.38488854695296,49.99973875692777,49.999738756927776,49.99973875692777,9.980991816508038,On,277.5027942975023,0.0,19,0.4625046571625038,0.0,0.0,0.6000000000000001,1,0.011344076309324843,277.5027942975023,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1419.1425533136116,19.24165363769438,3.0953573024197762,13.296090530684584,7.8,6.529479366362011,0,3.0,1078.7556379094012,54.31261050862369,-424.6417199079541,926.9530029919611 +2018-01-02 16:00:00,0.8422272329974612,0.403691980447487,0.072489130319392,0.14037120549957685,0.06728199674124782,0.012081521719898666,0.23102366480106737,0.6012035681963939,0.010000000000000002,0.0,0.0,0.06683648315529993,0.0,0.005652647164092073,1,0.0,0.4007753137808203,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.06683648315529993,0,0.06683648315529993,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,128.2322553202695,0,82.06844182956385,50,44.44,0.0,49.99974302649415,0.0,0.0,128.2322553202695,128.23194035869352,49.99974302649415,49.99974302649416,49.99974302649415,9.980991816508038,Off,0.0,0.0,19,0.0,0.0,0.0,0.0,0,0.0,0.0,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1422.5486195754452,19.278298888691587,2.9851144830834158,12.873074238602989,7.8,6.529479366362011,0,3.0,916.5856924941195,-0.048241666054458676,-396.05833983559234,943.2090388509918 +2018-01-02 16:10:00,0.8422272329974612,0.403691980447487,0.07248645602744748,0.14037120549957685,0.06728199674124782,0.01208107600457458,0.23102366480106737,0.6012035681963939,0.010000000000000002,0.0,0.0,0.06683648315529993,0.0,0.005649972872147553,1,0.0,0.4007753137808203,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.06683648315529993,0,0.06683648315529993,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,128.1715880828716,0,82.02973843894452,50,44.44,0.0,49.999743340562546,0.0,0.0,128.1715880828716,128.1714663108508,49.999743340562546,49.99974334056255,49.999743340562546,9.980991816508038,Off,0.0,0.0,19,0.0,0.0,0.0,0.0,0,0.0,0.0,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.0173523809187,19.29278731040027,2.8664273548234855,12.464429205772669,7.8,6.529479366362011,0,3.0,929.456259355936,0.9620523781372334,-364.54237559692217,1009.5163577794124 +2018-01-02 16:20:00,0.8288599363664013,0.403691980447487,0.05911549941445412,0.13814332272773355,0.06728199674124782,0.009852583235742353,0.23102366480106737,0.5878362715653339,0.010000000000000002,0.0,0.0,0.053469186524239945,0.0,0.005646312890214175,1,0.0,0.4007753137808203,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.053469186524239945,0,0.053469186524239945,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,128.0885601272741,0,81.97657182242968,50,44.44,0.0,49.99974346198924,0.0,0.0,128.0885601272741,128.08839347254636,49.99974346198924,49.99974346198925,49.99974346198924,9.980991816508038,Off,0.0,0.0,19,0.0,0.0,0.0,0.0,0,0.0,0.0,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.102910281984,19.312689808256263,2.7640824615324435,12.101320978967031,7.8,6.529479366362011,0,3.0,672.4606571146144,1.6727478041908235,-334.989200319379,1029.360103320703 +2018-01-02 16:30:00,0.7753907498421613,0.403691980447487,0.013354874201332197,0.1292317916403602,0.06728199674124782,0.0022258123668886993,0.23102366480106737,0.534367085041094,0.010000000000000002,0.0,0.0,0.0,0.007705842323053496,0.0056490318782787,1,0.0,0.4007753137808203,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,128.15024131160806,0,82.01623367605502,50,44.44,0.0,49.999743628171366,0.0,0.0,128.15024131160806,128.15036511883596,49.999743628171366,49.999743628171366,49.999743628171366,9.980991816508038,On,135.50158629985884,0.0,19,0.22583597716643142,0.0,0.0,0.6,1,0.005539188673438161,135.50158629985884,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1427.5034706758051,19.297842843365896,2.6758022969757347,11.792980622067313,6.7,6.529479366362011,0,3.0,-579.6104705778677,29.34628574678735,-371.74014550318134,334.59421139011135 +2018-01-02 16:40:00,0.7753907498421613,0.403691980447487,0.09568755938037184,0.1292317916403602,0.06728199674124782,0.015947926563395304,0.23102366480106737,0.534367085041094,0.010000000000000002,0.0,0.0,0.0,0.09000290713507589,0.005684652245295949,1,0.0,0.4007753137808203,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,128.95830165313674,0,82.5343511051165,50,44.44,0.0,49.99974350471523,0.0,0.0,128.95830165313674,128.95992360174452,49.999743504715234,49.99974350471524,49.99974350471523,9.980991816508038,On,1582.6351198384104,0.0,19,2.6377251997306845,0.0,0.0,0.5999999999999999,1,0.06469676680090276,1582.6351198384104,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1427.9170722086772,19.103890274595766,2.6103765338238794,11.415363469989229,6.7,6.529479366362011,0,3.0,623.4709006976461,319.1423915877557,-349.39888237808793,323.33332382909276 +2018-01-02 16:50:00,0.7753907498421613,0.403691980447487,0.10273308954907144,0.1292317916403602,0.06728199674124782,0.017122181591511906,0.23102366480106737,0.534367085041094,0.010000000000000002,0.0,0.0,0.0,0.0970483661031281,0.0056847234459433404,1,0.0,0.4007753137808203,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,128.95991686444043,0,82.53434886817344,50,44.44,0.0,49.99974188736621,0.0,0.0,128.95991686444043,128.959920106521,49.99974188736622,49.99974188736623,49.99974188736621,9.980991816508038,On,1706.5243491216988,0.0,19,2.844207248536165,0.0,0.0,0.6,1,0.06976125227554765,1706.5243491216988,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1423.7790443145882,19.103890274595766,2.6745242115776366,10.985601090895049,6.7,6.529479366362011,0,3.0,695.8527874071228,342.9088222263741,-326.8956412054567,222.38367747704808 +2018-01-02 17:00:00,0.8902041516505932,0.43313376664383935,0.1419533450012243,0.1483673586084322,0.07218896110730655,0.023658890833537383,0.3065813516810294,0.5736227999695638,0.010000000000000002,0.0,0.0,0.0,0.1026271189415275,0.039326226059696816,1,0.0,0.43021709997717267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,892.1290352074658,0,82.52714352763913,50,44.44,0.2740929680797961,49.99974188413333,764.7122158458113,0.0,892.1290352074658,128.94866176193614,49.999741884133336,49.99974188413334,49.99974188413333,9.980991816508038,On,1804.6226266995372,0.0,19,3.0077043778325625,0.0,0.0,0.5999999999999999,1,0.07377142575676778,1804.6226266995372,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1423.9953748643338,19.103890274595766,2.735897180945437,10.520247230783443,6.7,6.529479366362011,0,3.0,881.3628913706636,361.9278010752271,-299.3060552849345,221.7504313924473 +2018-01-02 17:10:00,0.9436733381748331,0.43313376664383935,0.19625923528679512,0.1572788896958055,0.07218896110730655,0.03270987254779918,0.3065813516810294,0.6270919864938037,0.010000000000000002,0.0,0.0,0.053469186524239945,0.10190432824535388,0.04088572051720128,1,0.0,0.43021709997717267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,On,0.053469186524239945,0,0.053469186524239945,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,927.5067061711866,0,82.48210638504374,50,44.44,0.28628580517726593,49.99821438579757,798.6994254389585,0.0,927.5067061711866,128.87829122663084,49.998214385797574,49.99821438579758,49.99821438579757,9.980991816508038,On,1791.912882353835,0.0,19,2.9865214705897247,0.0,0.0,0.6,1,0.07325186230482254,1791.912882353835,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.1707057088668,19.119838778176895,2.794569135456001,10.053971771314057,6.7,6.529479366362011,0,3.0,1894.7383584048353,358.89488314758205,-269.7690837816614,220.76601388935984 +2018-01-02 17:20:00,0.9570406348058931,0.43313376664383935,0.1445259391501278,0.15950677246764883,0.07218896110730655,0.024087656525021296,0.3065813516810294,0.6404592831248637,0.010000000000000002,0.0,0.0,0.06683648315529993,0.048539761262929235,0.029149694731898625,1,0.0,0.43021709997717267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,On,0.06683648315529993,0,0.06683648315529993,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,661.2709035005063,0,82.09294599106245,50,44.44,0.19085754116746456,49.99814357667778,532.4662836259723,0.0,661.2709035005063,128.27022811103507,49.99814357667778,49.99814357667779,49.99814357667778,9.980991816508038,On,853.5361059836845,0.0,19,1.4225601766394742,0.0,0.0,0.6,1,0.034891824219479735,853.5361059836845,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.6646340806865,19.266419782165723,2.842572572142949,9.614826620437261,6.7,6.529479366362011,0,3.0,1356.128542314973,170.87867305414852,-240.8474482775326,219.45459353797452 +2018-01-02 17:30:00,0.9570406348058931,0.43313376664383935,0.15111736334888487,0.15950677246764883,0.07218896110730655,0.025186227224814145,0.3065813516810294,0.6404592831248637,0.010000000000000002,0.0,0.0,0.06683648315529993,0.07858582693679037,0.005695053256794567,1,0.0,0.43021709997717267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,On,0.06683648315529993,0,0.06683648315529993,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.19425219513278,0,82.0008073118054,50,44.44,0.0,49.99867645299015,0.0,0.0,129.19425219513278,128.12626142469594,49.998676452990146,49.99867645299015,49.99867645299015,9.980991816508038,On,1381.8741370770385,0.0,19,2.303123561795064,0.0,0.0,0.6,1,0.05648982995132831,1381.8741370770385,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1428.247183133503,19.303065033162927,2.8028883755534775,9.217896158068429,5.0,6.529479366362011,0,3.0,1230.4155456145088,277.2172311573836,-404.8168234245915,0.0 +2018-01-02 17:40:00,0.9570406348058931,0.43313376664383935,0.15756872561391028,0.15950677246764883,0.07218896110730655,0.026261454268985046,0.3065813516810294,0.6404592831248637,0.010000000000000002,0.0,0.0,0.06683648315529993,0.08508407208959642,0.005648170369013917,1,0.0,0.43021709997717267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,On,0.06683648315529993,0,0.06683648315529993,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,128.13069767606956,0,82.00228025370609,50,44.44,0.0,49.999741415106456,0.0,0.0,128.13069767606956,128.12856289641576,49.999741415106456,49.99974141510646,49.999741415106456,9.980991816508038,On,1496.141012709354,0.0,19,2.4935683545155904,0.0,0.0,0.5999999999999999,1,0.06116096185860362,1496.141012709354,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1429.6501337663694,19.303065033162927,2.8143073279054525,8.594771369976208,5.0,6.529479366362011,0,3.0,1315.3265472538685,299.8851551176584,-349.61615285762247,0.0 +2018-01-02 17:50:00,0.9570406348058931,0.43313376664383935,0.25817163533600607,0.15950677246764883,0.07218896110730655,0.04302860588933434,0.3065813516810294,0.6404592831248637,0.010000000000000002,0.0,0.0,0.06683648315529993,0.09170446544578684,0.09963068673491934,1,0.0,0.43021709997717267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,On,0.06683648315529993,0,0.06683648315529993,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,2260.156575893062,0,81.98215400511428,50,44.44,0.7657200060534943,49.99974354383221,2136.338888712108,0.0,2260.156575893062,128.09711563299106,49.99974354383221,49.99974354383222,49.99974354383221,9.980991816508038,On,1612.5557749228346,0.0,19,2.687592958204725,0.0,0.0,0.5999999999999999,1,0.06591989752779127,1612.5557749228346,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1430.3559518366176,19.30306503316293,2.8320423974882396,8.069423231615694,5.0,6.529479366362011,0,3.0,1402.0839155647504,323.01689122061975,-307.1577940209137,0.0 +2018-01-02 18:00:00,1.03806288170951,0.44170140649234,0.19009640920292575,0.17301048028491833,0.07361690108205667,0.03168273486715429,0.3761800787866455,0.6518828029228646,0.010000000000000002,0.0,0.0,0.06683648315529993,0.09389273813083372,0.029367187916792086,1,0.0,0.43878473982567334,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,On,0.06683648315529993,0,0.06683648315529993,On,0.008403305816855444,0.0,On,0.24842161922065034,0,On,0.11935515374913971,0.0,On,0.5045667664733943,0.37842507485504556,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,666.2048115980864,0,81.99134121141665,50,44.44,0.1917404927053429,49.99547625116731,534.8939414540544,0.0,666.2048115980864,128.11147064283853,49.99547625116731,49.99547625116732,49.99547625116731,9.980991816508038,On,1651.034945356082,0.0,19,2.7517249089268034,0.0,0.0,0.6,1,0.06749289302435664,1651.034945356082,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1431.105284164239,19.30306503316293,2.8557534733496297,7.608430780863356,5.0,6.529479366362011,0,4.0,1572.7548789421994,330.49578173271266,-270.26989372738444,0.0 +2018-01-02 18:10:00,1.03806288170951,0.44170140649234,0.16894570621403432,0.17301048028491833,0.07361690108205667,0.02815761770233905,0.3761800787866455,0.6518828029228646,0.010000000000000002,0.0,0.0,0.06683648315529993,0.09641582896286864,0.005693394095865732,1,0.0,0.43878473982567334,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,On,0.06683648315529993,0,0.06683648315529993,On,0.008403305816855444,0.0,On,0.24842161922065034,0,On,0.11935515374913971,0.0,On,0.5045667664733943,0.37842507485504556,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.15661355580724,0,81.97033205496615,50,44.44,0.0,49.99866657767389,0.0,0.0,129.15661355580724,128.0786438358846,49.99866657767389,49.998666577673895,49.99866657767389,9.980991816508038,On,1695.4016473708057,0.0,19,2.8256694122846766,0.0,0.0,0.5999999999999999,1,0.0693065657642013,1695.4016473708057,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1431.7927183837305,19.314468052963996,2.8785160119970903,7.207462631610456,5.0,6.529479366362011,0,4.0,1598.063314221874,339.1799855807267,-238.144778951781,0.0 +2018-01-02 18:20:00,1.03806288170951,0.44170140649234,0.20966949335762416,0.17301048028491833,0.07361690108205667,0.03494491555960402,0.3761800787866455,0.6518828029228646,0.010000000000000002,0.0,0.0,0.06683648315529993,0.10354543458087104,0.0392875756214532,1,0.0,0.43878473982567334,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,On,0.06683648315529993,0,0.06683648315529993,On,0.008403305816855444,0.0,On,0.24842161922065034,0,On,0.11935515374913971,0.0,On,0.5045667664733943,0.37842507485504556,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,891.2522366525197,0,81.96461342347655,50,44.44,0.27409297077624,49.99974149044095,764.7122158458112,0.0,891.2522366525197,128.0697084741821,49.99974149044095,49.999741490440954,49.99974149044095,9.980991816508038,On,1820.7705337859245,0.0,19,3.0346175563098745,0.0,0.0,0.5999999999999999,1,0.07443153835378717,1820.7705337859245,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1432.784506498114,19.314468052963996,2.901570297610781,6.862894259813107,5.0,6.529479366362011,0,4.0,1691.5371759076663,364.0586906879844,-210.59291474741266,0.0 +2018-01-02 18:30:00,1.03806288170951,0.44170140649234,0.26115823361758306,0.17301048028491833,0.07361690108205667,0.04352637226959717,0.3761800787866455,0.6518828029228646,0.010000000000000002,0.0,0.0,0.06683648315529993,0.18860852675512318,0.005713223707159918,1,0.0,0.43878473982567334,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,On,0.06683648315529993,0,0.06683648315529993,On,0.008403305816855444,0.0,On,0.24842161922065034,0,On,0.11935515374913971,0.0,On,0.5045667664733943,0.37842507485504556,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.60645514410425,0,81.96970905867107,50,44.44,0.0,49.99821614072751,0.0,0.0,129.60645514410425,128.07767040417355,49.99821614072751,49.998216140727514,49.99821614072751,9.980991816508038,On,3316.542630069221,0.0,19,5.527571050115369,0.0,0.0,0.6,1,0.1355774192251901,3316.542630069221,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.7779408828492,19.314468052963996,2.932254758421532,6.5690014494552695,1.1,6.529479366362011,0,4.0,1826.2904503137606,-3305.992444133152,-540.2508521331627,0.0 +2018-01-02 18:40:00,1.03806288170951,0.44170140649234,0.26815439877027913,0.17301048028491833,0.07361690108205667,0.04469239979504652,0.3761800787866455,0.6518828029228646,0.010000000000000002,0.0,0.0,0.06683648315529993,0.1956718028280511,0.005646112786928119,1,0.0,0.43878473982567334,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,On,0.06683648315529993,0,0.06683648315529993,On,0.008403305816855444,0.0,On,0.24842161922065034,0,On,0.11935515374913971,0.0,On,0.5045667664733943,0.37842507485504556,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,128.08402071504423,0,81.97181751424978,50,44.44,0.0,49.99974059007397,0.0,0.0,128.08402071504423,128.08096486601528,49.99974059007396,49.99974059007397,49.99974059007397,9.980991816508038,On,3440.7451600758714,0.0,19,5.73457526679312,0.0,0.0,0.5999999999999999,1,0.1406547121647925,3440.7451600758714,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1427.5198624998968,19.314468052963996,1.384491137856287,5.812773784908705,1.1,6.529479366362011,0,4.0,1923.4112926380121,-201.4905681417705,-467.0275321576034,0.0 +2018-01-02 18:50:00,0.8463320795958298,0.38368501870968497,0.3764673856934208,0.14105534659930496,0.06394750311828082,0.06274456428223679,0.2618044603831719,0.5745276192126578,0.010000000000000002,0.0,0.0,0.06683648315529993,0.20323841385078667,0.10639248868733422,1,0.0,0.3807683520430183,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,On,0.06683648315529993,0,0.06683648315529993,On,0.008403305816855444,0.0,On,0.1711644936721371,0,On,0.08223666089417937,0.0,On,0.42721158276318744,0.3204086870723905,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,2413.550391076719,0,81.95024384406744,50,44.44,0.8208286409365516,49.99974363725708,2290.0905511572973,0.0,2413.550391076719,128.04725600635538,49.99974363725709,49.9997436372571,49.99974363725708,9.980991816508038,On,3573.7984660625934,0.0,19,5.956330776770989,0.0,0.0,0.6,1,0.14609381723810277,3573.7984660625934,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1429.029201763524,19.314468052963996,1.3880443457701748,5.180673961502489,1.1,6.529479366362011,0,4.0,1836.3229371805646,-144.50369684768805,-413.4555950243674,0.0 +2018-01-02 19:00:00,0.8328991472111653,0.36896412561150876,0.36154501977692455,0.13881652453519422,0.061494020935251456,0.06025750329615409,0.26799938546274255,0.5548997617484228,0.010000000000000002,0.0,0.0,0.06683648315529993,0.22157332422407724,0.07313521239754733,1,0.0,0.3660474589448421,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,On,0.06683648315529993,0,0.06683648315529993,On,0.011147242410114364,0.0,On,0.1734955276326526,0,On,0.08335661541997559,0.0,On,0.4108029074307193,0.3081021805730394,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,1659.0975797391327,0,82.02163272025122,50,44.44,0.5482485805684106,49.99516923036187,1529.4244316916229,0.0,1659.0975797391327,128.15880112539253,49.99516923036186,49.99516923036187,49.99516923036187,9.980991816508038,On,3896.2044193759675,0.0,19,6.4936740322932796,0.0,0.0,0.6,1,0.15927349618953907,3896.2044193759675,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1429.7175134915628,19.28805887134556,1.4007527596567764,4.6155047952131465,1.1,6.529479366362011,0,4.0,2083.6392357534387,-88.29772083818659,-366.0410532285751,0.0 +2018-01-02 19:10:00,0.8061645539490454,0.36896412561150876,0.27640930412348286,0.13436075899150757,0.061494020935251456,0.04606821735391381,0.26799938546274255,0.5281651684863029,0.010000000000000002,0.0,0.0,0.040101889893179955,0.23052136416448563,0.005786050065817247,1,0.0,0.3660474589448421,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,On,0.040101889893179955,0,0.040101889893179955,On,0.011147242410114364,0.0,On,0.1734955276326526,0,On,0.08335661541997559,0.0,On,0.4108029074307193,0.3081021805730394,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,131.25854626996033,0,82.04278339309379,50,44.44,0.0,49.99667928283389,0.0,0.0,131.25854626996033,128.19184905170903,49.99667928283389,49.996679282833895,49.99667928283389,9.980991816508038,On,4053.549139832093,0.0,19,6.755915233053488,0.0,0.0,0.6,1,0.16570561345971724,4053.549139832093,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1429.9306841544649,19.28631764096975,1.4290969597714123,4.11680128500953,1.1,6.529479366362011,0,4.0,1685.1967539798134,-104.94302395649254,-323.93899286497765,0.0 +2018-01-02 19:20:00,0.7660626640558654,0.36896412561150876,0.3073735104323228,0.12767711067597756,0.061494020935251456,0.05122891840538713,0.26799938546274255,0.48806327859312293,0.010000000000000002,0.0,0.0,0.0,0.2680671223105249,0.03930638812179791,1,0.0,0.3660474589448421,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.1734955276326526,0,On,0.08335661541997559,0.0,On,0.4108029074307193,0.3081021805730394,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,891.6790047272618,0,82.23559304828996,50,44.44,0.2740929995908798,49.999737283380355,764.7122158458113,0.0,891.6790047272618,128.49311413795306,49.99973728338036,49.99973728338037,49.999737283380355,9.980991816508038,On,4713.763763274219,0.0,19,7.856272938790366,0.0,0.0,0.5999999999999999,1,0.19269462122023137,4713.763763274219,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1430.5546275122529,19.213027138975338,1.4429696067623565,3.6850665745002114,1.1,6.529479366362011,0,4.0,1454.9724003118804,3.251784158255191,-287.45976558692195,0.0 +2018-01-02 19:30:00,0.7660626640558654,0.36896412561150876,0.3502492560427205,0.12767711067597756,0.061494020935251456,0.05837487600712008,0.26799938546274255,0.48806327859312293,0.010000000000000002,0.0,0.0,0.0,0.3444971802644102,0.005752075778310342,1,0.0,0.3660474589448421,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.1734955276326526,0,On,0.08335661541997559,0.0,On,0.4108029074307193,0.3081021805730394,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,130.4878278112558,0,82.534371557904,50,44.44,0.0,49.998215286542624,0.0,0.0,130.4878278112558,128.959955559225,49.998215286542624,49.99821528654263,49.998215286542624,9.980991816508038,On,6057.730283684127,0.0,19,10.096217139473545,0.0,0.0,0.6,1,0.24763482030292222,6057.730283684127,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.8527249315669,19.103091385983713,1.4997225082044732,3.315956870856554,0.0,6.529479366362011,0,4.0,2238.278547759433,-2403.2127312097464,-351.5769502670056,0.0 +2018-01-02 19:40:00,0.7660626640558654,0.36896412561150876,0.39301529931258694,0.12767711067597756,0.061494020935251456,0.06550254988543115,0.26799938546274255,0.48806327859312293,0.010000000000000002,0.0,0.0,0.0,0.35422278402920837,0.03879251528337859,1,0.0,0.3660474589448421,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.1734955276326526,0,On,0.08335661541997559,0.0,On,0.4108029074307193,0.3081021805730394,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,880.021621716178,0,82.52938778935437,50,44.44,0.2697423066598947,49.99973882598886,752.5739267054016,0.0,880.021621716178,128.9521684208662,49.99973882598885,49.99973882598886,49.99973882598886,9.980991816508038,On,6228.7478937786755,0.0,19,10.381246489631126,0.0,0.0,0.6,1,0.2546258735788437,6228.7478937786755,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.0189019369477,19.103091385983717,0.5153067646840808,2.865997855648685,0.0,6.529479366362011,0,4.0,2365.667935372315,-411.0869335169891,-311.9010756509234,0.0 +2018-01-02 19:50:00,0.7660626640558654,0.36896412561150876,0.4464439920677863,0.12767711067597756,0.061494020935251456,0.0744073320112977,0.26799938546274255,0.48806327859312293,0.010000000000000002,0.0,0.0,0.0,0.3634420859298638,0.08300190613792247,1,0.0,0.3660474589448421,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.1734955276326526,0,On,0.08335661541997559,0.0,On,0.4108029074307193,0.3081021805730394,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,1882.9269386490496,0,82.5178582423908,50,44.44,0.6294223110744035,49.998238619029124,1756.0058289792703,0.0,1882.9269386490496,128.93415350373562,49.998238619029124,49.998238619029124,49.998238619029124,9.980991816508038,On,6390.862556880307,0.0,19,10.651437594800512,0.0,0.0,0.6,1,0.2612529820147819,6390.862556880307,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1423.7545200872312,19.103091385983717,0.5253429963627507,2.4862257064402185,0.0,6.529479366362011,0,4.0,2486.3651083414766,-375.40437132008856,-280.4768915394569,0.0 +2018-01-02 20:00:00,0.7115844311410067,0.35545042581274516,0.3781346932920273,0.11859740519016777,0.05924173763545752,0.06302244888200455,0.23153941894623523,0.47004501219477146,0.010000000000000002,0.0,0.0,0.0,0.3722952756513467,0.005839417640680633,1,0.0,0.3525337591460785,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.14585612495796896,0,On,0.07007715461410616,0.0,On,0.39439423209825125,0.29579567407368834,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,132.46920815757605,0,82.53162749723398,50,44.44,0.0,49.996231283871396,0.0,0.0,132.46920815757605,128.9556679644281,49.996231283871396,49.996231283871396,49.996231283871396,9.980991816508038,On,6546.539405793454,0.0,19,10.910899009655758,0.0,0.0,0.5999999999999999,1,0.26761691812626004,6546.539405793454,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1423.8781182887049,19.103091385983717,0.5401078761221045,2.1559970180103734,0.0,6.529479366362011,0,4.0,2548.999017459878,-363.31611888809357,-253.39752519459603,0.0 +2018-01-02 20:10:00,0.7115844311410067,0.35545042581274516,0.3895216341176455,0.11859740519016777,0.05924173763545752,0.06492027235294091,0.23153941894623523,0.47004501219477146,0.010000000000000002,0.0,0.0,0.0,0.383835066551748,0.005686567565897522,1,0.0,0.3525337591460785,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.14585612495796896,0,On,0.07007715461410616,0.0,On,0.39439423209825125,0.29579567407368834,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.00175136320556,0,82.55666652253426,50,44.44,0.0,49.99973486021624,0.0,0.0,129.00175136320556,128.99479144145977,49.99973486021624,49.99973486021625,49.99973486021624,9.980991816508038,On,6749.458166263685,0.0,19,11.249096943772807,0.0,0.0,0.6,1,0.2759120630785667,6749.458166263685,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1423.9973016881224,19.095532227197562,0.5539480567239095,1.869982258365979,0.0,6.529479366362011,0,4.0,2705.733337627314,-345.4864874558814,-229.93705298008877,0.0 +2018-01-02 20:20:00,0.7115844311410067,0.35545042581274516,0.5327278226567068,0.11859740519016777,0.05924173763545752,0.08878797044278447,0.23153941894623523,0.47004501219477146,0.010000000000000002,0.0,0.0,0.0,0.3921195559980712,0.14060826665863563,1,0.0,0.3525337591460785,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.14585612495796896,0,On,0.07007715461410616,0.0,On,0.39439423209825125,0.29579567407368834,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,3189.7471444614316,0,82.52777853026113,50,44.44,1.0992723293079045,49.99974180040074,3066.941056143519,0.0,3189.7471444614316,128.94965395353302,49.99974180040075,49.999741800400756,49.99974180040074,9.980991816508038,On,6895.134837885017,0.0,19,11.49189139647503,0.0,0.0,0.5999999999999999,1,0.2818672005161709,6895.134837885017,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1423.980070279954,19.095532227197562,0.5715364829322452,1.6238996337086409,0.0,6.529479366362011,0,4.0,2814.043293921916,-348.9416025247908,-209.76794939731917,0.0 +2018-01-02 20:30:00,0.7115844311410067,0.35545042581274516,0.6082406911697312,0.11859740519016777,0.05924173763545752,0.10137344852828853,0.23153941894623523,0.47004501219477146,0.010000000000000002,0.0,0.0,0.0,0.4449350646355684,0.16330562653416283,1,0.0,0.3525337591460785,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.14585612495796896,0,On,0.07007715461410616,0.0,On,0.39439423209825125,0.29579567407368834,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,3704.6446008502808,0,82.5145019453278,50,44.44,1.2821972561780812,49.993615656952606,3576.749200040727,0.0,3704.6446008502808,128.92890928957468,49.993615656952606,49.99361565695261,49.993615656952606,9.980991816508038,On,7823.856825902405,0.0,19,13.039761376504009,0.0,0.0,0.6,1,0.31983255913134345,7823.856825902405,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1416.6027901786038,19.095532227197562,0.58415492914503,1.4129085704584812,-1.7,6.529479366362011,0,4.0,2935.444745401179,-4150.243142939407,-361.4858307937252,0.0 +2018-01-02 20:40:00,0.7115844311410067,0.35545042581274516,0.4586058537132203,0.11859740519016777,0.05924173763545752,0.07643430895220338,0.23153941894623523,0.47004501219477146,0.010000000000000002,0.0,0.0,0.0,0.4526045309374156,0.006001322775804734,1,0.0,0.3525337591460785,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.14585612495796896,0,On,0.07007715461410616,0.0,On,0.39439423209825125,0.29579567407368834,Off,0.7,False,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,136.14208212656914,0,82.54677770898019,50,44.44,0.0,49.99258507934036,0.0,0.0,136.14208212656914,128.97934017028155,49.99258507934035,49.99258507934036,49.99258507934036,9.980991816508038,On,7958.718766545099,0.0,19,13.264531277575166,0.0,0.0,0.6,1,0.3253455996387274,7958.718766545099,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1416.7076482785283,19.095532227197562,-1.036114310332474,0.9903632528883983,-1.7,6.529479366362011,0,4.0,3035.933199003306,-899.7471263476684,-321.33368163214925,0.0 +2018-01-02 20:50:00,1.79491776447434,0.35545042581274516,0.46571100142694694,0.2991529607457233,0.05924173763545752,0.07761850023782449,0.23153941894623523,0.47004501219477146,0.010000000000000002,0.0,1.0833333333333333,0.0,0.4600241102329824,0.00568689119396454,1,0.0,0.3525337591460785,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.14585612495796896,0,On,0.07007715461410616,0.0,On,0.39439423209825125,0.29579567407368834,On,0.43799999999999994,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.00909297780026,0,82.55665635495987,50,44.44,0.0,49.999727508885144,0.0,0.0,129.00909297780026,128.9947755546248,49.999727508885144,49.99972750888515,49.999727508885144,9.980991816508038,On,8089.186627432825,0.0,19,13.481977712388042,0.0,0.0,0.6,1,0.3306790139330643,8089.186627432825,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1416.7076171756557,19.095532227197562,-1.03205492245139,0.6367262688384323,-1.7,6.529479366362011,0,4.0,3133.210433586838,-843.0822214841182,-290.8302565013811,0.0 +2018-01-02 21:00:00,1.6087037954577594,0.30457768842666577,0.5065932213108079,0.2681172992429599,0.05076294807111096,0.08443220355180131,0.1131557664444272,0.4022146956799989,0.010000000000000002,0.0,1.0833333333333333,0.0,0.4672654561547233,0.039327765156084576,1,0.0,0.3016610217599991,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.06426993633992698,0,On,0.030878746211238556,0.0,On,0.3281735066493621,0.24613012998702152,On,0.4413333333333333,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,892.1639501411648,0,82.54947076507175,50,44.44,0.27409296875393363,49.999741785706355,764.7122158458112,0.0,892.1639501411648,128.9835480704246,49.999741785706355,49.99974178570636,49.999741785706355,9.980991816508038,On,8216.520385146296,0.0,19,13.694200641910495,0.0,0.0,0.5999999999999999,1,0.33588430877671227,8216.520385146296,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1416.674727009331,19.095532227197562,-1.0194852943095158,0.3234893832928467,-1.7,6.529479366362011,0,4.0,3046.622907173428,-824.816212334922,-263.8227197045366,0.0 +2018-01-02 21:10:00,1.6087037954577594,0.30457768842666577,0.4903134886462239,0.2681172992429599,0.05076294807111096,0.08171891477437065,0.1131557664444272,0.4022146956799989,0.010000000000000002,0.0,1.0833333333333333,0.0,0.4845552559385997,0.00575823270762419,1,0.0,0.3016610217599991,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.06426993633992698,0,On,0.030878746211238556,0.0,On,0.3281735066493621,0.24613012998702152,On,0.44466666666666665,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,130.62749988149884,0,82.62331813925609,50,44.44,0.0,49.99821431591462,0.0,0.0,130.62749988149884,129.09893459258763,49.99821431591463,49.99821431591464,49.99821431591462,9.980991816508038,On,8520.548835159256,0.0,19,14.200914725265426,0.0,0.0,0.6,1,0.34831273114948047,8520.548835159256,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1416.6758798831884,19.069794546968595,-1.007807603183941,0.04851079857932039,-1.7,6.529479366362011,0,4.0,3292.668600734783,-778.2318010820363,-239.77966022199382,0.0 +2018-01-02 21:20:00,1.6087037954577594,0.30457768842666577,0.4973723311277523,0.2681172992429599,0.05076294807111096,0.08289538852129205,0.1131557664444272,0.4022146956799989,0.010000000000000002,0.0,1.0833333333333333,0.0,0.49168119970685187,0.005691131420900438,1,0.0,0.3016610217599991,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.06426993633992698,0,On,0.030878746211238556,0.0,On,0.3281735066493621,0.24613012998702152,On,0.448,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.10528399189963,0,82.62542629217278,50,44.44,0.0,49.9997385464324,0.0,0.0,129.10528399189963,129.10222858151997,49.9997385464324,49.9997385464324,49.9997385464324,9.980991816508038,On,8645.853330631873,0.0,19,14.409755551053122,0.0,0.0,0.6,1,0.35343507149254355,8645.853330631873,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1416.1825718093094,19.06979454696859,-0.9814676173380561,-0.18935447155983168,-1.7,6.529479366362011,0,4.0,3386.070636740476,-800.2002257783615,-218.77181116953764,0.0 +2018-01-02 21:30:00,1.6087037954577594,0.30457768842666577,0.47287001852288335,0.2681172992429599,0.05076294807111096,0.07881166975381389,0.1131557664444272,0.4022146956799989,0.010000000000000002,0.0,1.0833333333333333,0.0,0.46717902122904287,0.005690997293840501,1,0.0,0.3016610217599991,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.06426993633992698,0,On,0.030878746211238556,0.0,On,0.3281735066493621,0.24613012998702152,On,0.45133333333333336,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.10224127317053,0,82.62543050610658,50,44.44,0.0,49.999741593178115,0.0,0.0,129.10224127317053,129.10223516579154,49.999741593178115,49.999741593178115,49.999741593178115,9.980991816508038,On,8215.000490363818,0.0,19,13.691667483939698,0.0,0.0,0.6,1,0.33582217678111126,8215.000490363818,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1419.0475800020292,19.069794546968595,-0.9705111469567688,-0.39316490900151413,-1.1,6.529479366362011,0,4.0,3469.356687699357,493.7605239389834,-124.3639653868675,0.0 +2018-01-02 21:40:00,1.6087037954577594,0.30457768842666577,0.47936460828250105,0.2681172992429599,0.05076294807111096,0.07989410138041683,0.1131557664444272,0.4022146956799989,0.010000000000000002,0.0,1.0833333333333333,0.0,0.47367361125676366,0.005690997025737391,1,0.0,0.3016610217599991,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.06426993633992698,0,On,0.030878746211238556,0.0,On,0.3281735066493621,0.24613012998702152,On,0.4546666666666667,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.1022351911588,0,82.6254305145327,50,44.44,0.0,49.99974159926818,0.0,0.0,129.1022351911588,129.10223517895733,49.99974159926818,49.99974159926818,49.99974159926818,9.980991816508038,On,8329.203093301934,0.0,19,13.882005155503226,0.0,0.0,0.5999999999999999,1,0.34049068127575294,8329.203093301934,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1419.046441714635,19.06979454696859,-0.407420023712159,-0.45881471324139034,-1.1,6.529479366362011,0,4.0,3554.5042021728614,-601.0528544410645,-120.54583318152386,0.0 +2018-01-02 21:50:00,1.6087037954577594,0.30457768842666577,0.6200811366132148,0.2681172992429599,0.05076294807111096,0.10334685610220247,0.1131557664444272,0.4022146956799989,0.010000000000000002,0.0,1.0833333333333333,0.0,0.47982412970228594,0.1402570069109289,1,0.0,0.3016610217599991,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.06426993633992698,0,On,0.030878746211238556,0.0,On,0.3281735066493621,0.24613012998702152,On,0.4580000000000001,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,3181.7786956366417,0,82.59660917028901,50,44.44,1.0963718801231466,49.99974159928034,3058.8488633832453,0.0,3181.7786956366417,129.05720182857658,49.999741599280334,49.99974159928034,49.99974159928034,9.980991816508038,On,8437.355449786251,0.0,19,14.062259082977086,0.0,0.0,0.6,1,0.344911856882641,8437.355449786251,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1418.482765521158,19.069794546968595,-0.3950316730470653,-0.5217838216948291,-1.1,6.529479366362011,0,4.0,3635.1165034690925,-615.1922259557562,-115.89814003327321,0.0 +2018-01-02 22:00:00,1.5786661244915547,0.29161486768553974,0.491582176788229,0.26311102074859244,0.048602477947589956,0.08193036279803817,0.10040185646639052,0.3849309346918309,0.010000000000000002,0.0,1.0833333333333333,0.0,0.4856221991799205,0.005959977608308542,1,0.0,0.28869820101887306,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.057276834458380506,0,On,0.027518882633849905,0.0,On,0.3141089277929609,0.2355816958447206,On,0.46133333333333343,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,135.2041527068258,0,82.61697982412858,50,44.44,0.0,49.99363160596316,0.0,0.0,135.2041527068258,129.0890309752009,49.99363160596315,49.99363160596316,49.99363160596316,9.980991816508038,On,8539.310249632837,0.0,19,14.232183749388064,0.0,0.0,0.6,1,0.3490796816877551,8539.310249632837,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1418.3150502041199,19.069794546968595,-0.3862123256938784,-0.5748263465717492,-1.1,6.529479366362011,0,4.0,3681.6683514159586,-616.5736872802008,-111.95372319750078,0.0 +2018-01-02 22:10:00,1.5786661244915547,0.29161486768553974,0.49831488305250854,0.26311102074859244,0.048602477947589956,0.08305248050875141,0.10040185646639052,0.3849309346918309,0.010000000000000002,0.0,1.0833333333333333,0.0,0.49262259217219156,0.005692290880316959,1,0.0,0.28869820101887306,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.057276834458380506,0,On,0.027518882633849905,0.0,On,0.3141089277929609,0.2355816958447206,On,0.4646666666666668,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.13158672964653,0,82.63641459254681,50,44.44,0.0,49.99972938616975,0.0,0.0,129.13158672964653,129.1193978008544,49.99972938616975,49.99972938616975,49.99972938616975,9.980991816508038,On,8662.407026780396,0.0,19,14.437345044633995,0.0,0.0,0.6,1,0.35411177239851316,8662.407026780396,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1418.1526309201986,19.065676434853252,-0.3776306633978634,-0.6201783353933618,-1.1,6.529479366362011,0,4.0,3776.8213014121866,-610.691508300833,-108.75269015458036,0.0 +2018-01-02 22:20:00,1.5786661244915547,0.29161486768553974,0.5370432180552315,0.26311102074859244,0.048602477947589956,0.08950720300920524,0.10040185646639052,0.3849309346918309,0.010000000000000002,0.0,1.0833333333333333,0.0,0.4977099597756918,0.03933325827953963,1,0.0,0.28869820101887306,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.057276834458380506,0,On,0.027518882633849905,0.0,On,0.3141089277929609,0.2355816958447206,On,0.46800000000000014,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,892.2885635459901,0,82.62922606709922,50,44.44,0.2740929704331562,49.99974154053265,764.7122158458114,0.0,892.2885635459901,129.10816572984254,49.99974154053265,49.99974154053265,49.99974154053265,9.980991816508038,On,8751.864655351706,0.0,19,14.586441092252844,0.0,0.0,0.6,1,0.3577687235565481,8751.864655351706,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1417.9051398180334,19.065676434853252,-0.3671214957259907,-0.6605592311809148,-1.1,6.529479366362011,0,4.0,3843.126372550142,-614.3714540266453,-105.99049264410175,0.0 +2018-01-02 22:30:00,1.476666113530913,0.2604090833478995,0.4679206541960196,0.2461110189218188,0.04340151389131658,0.0779867756993366,0.04000955795593573,0.34332322224164386,0.010000000000000002,0.0,1.0833333333333333,0.0,0.46216165431167694,0.00575899988434263,1,0.0,0.2574924166812328,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.4713333333333335,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,130.644903550608,0,82.63431876416256,50,44.44,0.0,49.99821406649839,0.0,0.0,130.644903550608,129.116123069004,49.99821406649839,49.9982140664984,49.99821406649839,9.980991816508038,On,8126.773772524344,0.0,19,13.544622954207242,0.0,0.0,0.5999999999999999,1,0.33221554419845234,8126.773772524344,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.5342153946692,19.065676434853252,-0.35946337804642536,-0.6976464962650335,0.6,6.529479366362011,0,4.0,3787.7800712495746,1649.1050011310538,-54.02605165114826,0.0 +2018-01-02 22:40:00,1.476666113530913,0.2604090833478995,0.47766173733761275,0.2461110189218188,0.04340151389131658,0.07961028955626878,0.04000955795593573,0.34332322224164386,0.010000000000000002,0.0,1.0833333333333333,0.0,0.47196726913359716,0.005694468204015581,1,0.0,0.2574924166812328,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.47466666666666685,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.18098007055946,0,82.67394666587,50,44.44,0.0,49.9997385115986,0.0,0.0,129.18098007055946,129.1780416654219,49.9997385115986,49.99973851159861,49.9997385115986,9.980991816508038,On,8299.198318383607,0.0,19,13.831997197306015,0.0,0.0,0.5999999999999999,1,0.33926411180217597,8299.198318383607,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.3856159843858,19.051631372307437,0.6182152186720601,-0.6545329786458086,0.6,6.529479366362011,0,4.0,3927.0258995508125,1297.2040266052954,-52.90398443302064,0.0 +2018-01-02 22:50:00,1.476666113530913,0.2604090833478995,0.48162883613552365,0.2461110189218188,0.04340151389131658,0.08027147268925394,0.04000955795593573,0.34332322224164386,0.010000000000000002,0.0,1.0833333333333333,0.0,0.47593449692224676,0.005694339213276915,1,0.0,0.2574924166812328,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.4780000000000002,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.1780538710543,0,82.67395071843538,50,44.44,0.0,49.99974144167088,0.0,0.0,129.1780538710543,129.17804799755527,49.999741441670885,49.99974144167089,49.99974144167088,9.980991816508038,On,8368.959109746633,0.0,19,13.948265182911056,0.0,0.0,0.5999999999999999,1,0.3421158731425416,8368.959109746633,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.1219897154392,19.051631372307437,1.3062338968938096,-0.5900003654070287,0.6,6.529479366362011,0,4.0,3978.7942572351653,-80.14320618126453,-51.20488159072785,0.0 +2018-01-02 23:00:00,1.4670354512950594,0.25678750344966184,0.4850794306155665,0.24450590854917656,0.042797917241610306,0.08084657176926108,0.03520766891773262,0.3384944490439936,0.010000000000000002,0.0,1.0833333333333333,0.0,0.4793850916601257,0.005694338955440825,1,0.0,0.25387083678299516,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.48133333333333356,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.17804802195343,0,82.67395072653314,50,44.44,0.0,49.999741447527725,0.0,0.0,129.17804802195343,129.17804801020802,49.999741447527725,49.99974144752773,49.999741447527725,9.980991816508038,On,8429.635287776095,0.0,19,14.04939214629349,0.0,0.0,0.6,1,0.3445962632786729,8429.635287776095,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.8966035790563,19.051631372307437,1.3145854991600703,-0.5058049691651564,0.6,6.529479366362011,0,4.0,4014.297193115167,-110.76695612482627,-51.33977938282688,0.0 +2018-01-02 23:10:00,1.4670354512950594,0.25678750344966184,0.4886043630604349,0.24450590854917656,0.042797917241610306,0.08143406051007249,0.03520766891773262,0.3384944490439936,0.010000000000000002,0.0,1.0833333333333333,0.0,0.48290977343821756,0.005694589622217383,1,0.0,0.25387083678299516,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.4846666666666669,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.1837344844477,0,82.67759737496888,50,44.44,0.0,49.99974144753944,0.0,0.0,129.1837344844477,129.18374589838888,49.99974144753944,49.99974144753944,49.99974144753944,9.980991816508038,On,8491.614232077201,0.0,19,14.152690386795337,0.0,0.0,0.6,1,0.34712990938304106,8491.614232077201,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.6778223410586,19.050266282937677,1.318859698315389,-0.4156528282689682,0.6,6.529479366362011,0,4.0,4061.3915150132484,-119.5454311499675,-52.72764977083256,0.0 +2018-01-02 23:20:00,1.4670354512950594,0.25678750344966184,0.4911867692858801,0.24450590854917656,0.042797917241610306,0.08186446154764668,0.03520766891773262,0.3384944490439936,0.010000000000000002,0.0,1.0833333333333333,0.0,0.4854921791626112,0.0056945901232689135,1,0.0,0.25387083678299516,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.48800000000000027,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.1837458509749,0,82.67759735922787,50,44.44,0.0,49.99974143615786,0.0,0.0,129.1837458509749,129.18374587379355,49.99974143615787,49.999741436157876,49.99974143615786,9.980991816508038,On,8537.023942976466,0.0,19,14.228373238294111,0.0,0.0,0.6,1,0.34898621943184505,8537.023942976466,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.4357263782551,19.050266282937677,1.3237233867344238,-0.3290254213162841,0.6,6.529479366362011,0,4.0,4095.0962983296704,-127.0401477168034,-54.63068809906029,0.0 +2018-01-02 23:30:00,1.4670354512950594,0.25678750344966184,0.5118760306058491,0.24450590854917656,0.042797917241610306,0.08531267176764151,0.03520766891773262,0.3384944490439936,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5061814404815785,0.005694590124270497,1,0.0,0.25387083678299516,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.4913333333333336,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.18374587369618,0,82.67759735919596,50,44.44,0.0,49.99974143613511,0.0,0.0,129.18374587369618,129.18374587374367,49.99974143613512,49.999741436135125,49.99974143613511,9.980991816508038,On,8900.82943114554,0.0,19,14.8347157185759,0.0,0.0,0.5999999999999999,1,0.3638582758736143,8900.82943114554,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1422.0620158094043,19.050266282937677,1.327489649341835,-0.25064756278741496,0.0,6.529479366362011,0,4.0,4130.498837150997,-1464.9994978959417,-61.25600804487312,0.0 +2018-01-02 23:40:00,1.4670354512950594,0.25678750344966184,0.5138719675116216,0.24450590854917656,0.042797917241610306,0.08564532791860359,0.03520766891773262,0.3384944490439936,0.010000000000000002,0.0,1.0833333333333333,0.0,0.508177377387349,0.005694590124272487,1,0.0,0.25387083678299516,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.494666666666667,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.18374587374132,0,82.67759735919445,50,44.44,0.0,49.99974143613507,0.0,0.0,129.18374587374132,129.18374587374132,49.99974143613507,49.999741436135075,49.99974143613507,9.980991816508038,On,8935.926517946451,0.0,19,14.893210863244082,0.0,0.0,0.6000000000000001,1,0.36529301469097447,8935.926517946451,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1421.829193472326,19.050266282937674,0.7586465218945687,-0.19358990409468751,0.0,6.529479366362011,0,4.0,4156.389736092497,-329.7618043509872,-65.50629755227938,0.0 +2018-01-02 23:50:00,1.4670354512950594,0.25678750344966184,0.5156512890752754,0.24450590854917656,0.042797917241610306,0.08594188151254589,0.03520766891773262,0.3384944490439936,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5099566989510028,0.005694590124272487,1,0.0,0.25387083678299516,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.49800000000000033,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.18374587374132,0,82.67759735919445,50,44.44,0.0,49.99974143613507,0.0,0.0,129.18374587374132,129.18374587374132,49.99974143613507,49.999741436135075,49.99974143613507,9.980991816508038,On,8967.214582807488,0.0,19,14.94535763801248,0.0,0.0,0.6,1,0.3665720439571598,8967.214582807488,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1420.4317302947616,19.050266282937677,0.7589890963717627,-0.16542910020712667,0.0,6.529479366362011,0,4.0,4179.713584505991,-313.29316927281957,-68.77915869794728,0.0 +2018-01-03 00:00:00,1.4625104275988385,0.2555803101502493,0.5509410772375639,0.24375173793313976,0.04259671835837488,0.09182351287292731,0.03229223628739501,0.33688485797811024,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5116049846418594,0.039336092595704426,1,0.0,0.2526636434835826,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5013333333333336,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,892.3528609881533,0,82.67039202313056,50,44.44,0.2740929711481872,49.99974143613507,764.7122158458116,0.0,892.3528609881533,129.1724875361415,49.99974143613507,49.999741436135075,49.99974143613507,9.980991816508038,On,8996.198477938362,0.0,19,14.99366412989727,0.0,0.0,0.6,1,0.3677568807402936,8996.198477938362,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1420.2441838620023,19.050266282937677,0.7621861826125602,-0.160661242051153,0.0,6.529479366362011,0,4.0,4196.874551955454,-310.0935367730044,-69.88476258301941,0.0 +2018-01-03 00:10:00,1.4625104275988385,0.2555803101502493,0.5191807563663017,0.24375173793313976,0.04259671835837488,0.08653012606105027,0.03229223628739501,0.33688485797811024,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5134188033187403,0.0057619530475612815,1,0.0,0.2526636434835826,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5046666666666669,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,130.71189707927934,0,82.67719808594761,50,44.44,0.0,49.99821393780577,0.0,0.0,130.71189707927934,129.18312200929313,49.998213937805765,49.99821393780577,49.99821393780577,9.980991816508038,On,9028.093149237617,0.0,19,15.046821915396027,0.0,0.0,0.6,1,0.36906070755758935,9028.093149237617,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1420.0292342151488,19.049624887611543,0.7648794600585543,-0.16893023879032215,0.0,6.529479366362011,0,4.0,4221.201979024898,-307.9987914529722,-70.09219915078641,0.0 +2018-01-03 00:20:00,1.4625104275988385,0.2555803101502493,0.5205814117452938,0.24375173793313976,0.04259671835837488,0.08676356862421564,0.03229223628739501,0.33688485797811024,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5148865691934711,0.005694842551822781,1,0.0,0.2526636434835826,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5080000000000002,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.18947227999658,0,82.67930652818863,50,44.44,0.0,49.99973837750971,0.0,0.0,129.18947227999658,129.18641645029473,49.99973837750971,49.99973837750971,49.99973837750971,9.980991816508038,On,9053.902735783115,0.0,19,15.08983789297186,0.0,0.0,0.5999999999999999,1,0.3701157813272984,9053.902735783115,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1419.8405015491546,19.049624887611547,0.7676944190739443,-0.18389946976006594,0.0,6.529479366362011,0,4.0,4240.834917282662,-308.40774770904227,-69.59368426368941,0.0 +2018-01-03 00:30:00,1.4625104275988385,0.2555803101502493,0.5436606145813948,0.24375173793313976,0.04259671835837488,0.09061010243023246,0.03229223628739501,0.33688485797811024,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5379659061750394,0.005694708406355421,1,0.0,0.2526636434835826,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5113333333333335,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.1864291436887,0,82.67931074270162,50,44.44,0.0,49.99974142467356,0.0,0.0,129.1864291436887,129.18642303547128,49.99974142467355,49.99974142467356,49.99974142467356,9.920878641202478,On,9459.735951756873,0.0,19,15.766226586261455,0.0,0.0,0.6,1,0.3867058952485637,9459.735951756873,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1417.2290771375372,19.049624887611543,0.7699699047020406,-0.20148813844556,-0.6,6.529479366362011,0,4.0,4265.807935280067,-1630.9991958675353,-106.61572101667565,0.0 +2018-01-03 00:40:00,1.4625104275988385,0.2555803101502493,0.5450385438803151,0.24375173793313976,0.04259671835837488,0.09083975731338585,0.03229223628739501,0.33688485797811024,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5393438357420995,0.005694708138215562,1,0.0,0.2526636434835826,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5146666666666668,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.18642306084328,0,82.6793107511262,50,44.44,0.0,49.999741430764445,0.0,0.0,129.18642306084328,129.18642304863468,49.99974143076445,49.99974143076446,49.999741430764445,9.920878641202478,On,9483.965832711943,0.0,19,15.806609721186573,0.0,0.0,0.6,1,0.38769639200812245,9483.965832711943,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1417.0332434159266,19.049624887611547,0.20481409949507468,-0.2747672201465521,-0.6,6.529479366362011,0,4.0,4284.184504688139,-502.73673465699335,-101.81672389102033,0.0 +2018-01-03 00:50:00,1.4625104275988385,0.2555803101502493,0.5464402524252635,0.24375173793313976,0.04259671835837488,0.09107337540421058,0.03229223628739501,0.33688485797811024,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5407455442875839,0.005694708137679588,1,0.0,0.2526636434835826,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5180000000000001,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.18642304868456,0,82.6793107511414,50,44.44,0.0,49.99974143077662,0.0,0.0,129.18642304868456,129.18642304865844,49.99974143077662,49.99974143077663,49.99974143077662,9.920878641202478,On,9508.613849564688,0.0,19,15.847689749274478,0.0,0.0,0.6000000000000001,1,0.3887039818046825,9508.613849564688,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1416.8065324891777,19.049624887611547,0.20427273788272557,-0.3438734317761518,-0.6,6.529479366362011,0,4.0,4302.183775551036,-484.1087538916206,-97.91299742813771,0.0 +2018-01-03 01:00:00,1.4609008365329552,0.2543731168508367,0.5477765751498872,0.24348347275549254,0.04239551947513945,0.09129609585831452,0.03229223628739501,0.3352752669122268,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5420818670122088,0.005694708137678332,1,0.0,0.25145645018417,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5213333333333334,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.18642304865605,0,82.67931075114139,50,44.44,0.0,49.99974143077665,0.0,0.0,129.18642304865605,129.1864230486584,49.99974143077665,49.99974143077665,49.99974143077665,9.920878641202478,On,9532.11210470722,0.0,19,15.886853507845364,0.0,0.0,0.6,1,0.389664570328296,9532.11210470722,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1416.5877389957789,19.049624887611547,0.20690622358014701,-0.41147138967864494,-0.6,6.529479366362011,0,4.0,4318.565347419995,-479.45882751485146,-93.76466061404561,0.0 +2018-01-03 01:10:00,1.4609008365329552,0.2543731168508367,0.5492538845978867,0.24348347275549254,0.04239551947513945,0.09154231409964778,0.03229223628739501,0.3352752669122268,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5435591345657024,0.005694750032184355,1,0.0,0.25145645018417,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5246666666666667,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.18737344001022,0,82.67992022248959,50,44.44,0.0,49.999741430776645,0.0,0.0,129.18737344001022,129.18737534763997,49.999741430776645,49.99974143077665,49.999741430776645,9.920878641202478,On,9558.088771305864,0.0,19,15.930147952176437,0.0,0.0,0.6000000000000001,1,0.3907264741873288,9558.088771305864,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1416.3428289260687,19.04939673760484,0.20913344167155418,-0.4746125753735383,-0.6,6.529479366362011,0,4.0,4337.93812724445,-476.38424466045785,-89.61224877165279,0.0 +2018-01-03 01:20:00,1.4609008365329552,0.2543731168508367,0.5505889233550773,0.24348347275549254,0.04239551947513945,0.09176482055917953,0.03229223628739501,0.3352752669122268,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5448941732391511,0.005694750115926116,1,0.0,0.25145645018417,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.528,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.187375339721,0,82.67992021986126,50,44.44,0.0,49.99974142887443,0.0,0.0,129.187375339721,129.1873753435332,49.99974142887443,49.99974142887443,49.99974142887443,9.920878641202478,On,9581.564447350098,0.0,19,15.96927407891683,0.0,0.0,0.6,1,0.3916861396967625,9581.564447350098,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1416.134548632486,19.049396737604837,0.2114505985541921,-0.5314017505362238,-0.6,6.529479366362011,0,4.0,4355.901355546831,-475.25908617259506,-85.6907669470261,0.0 +2018-01-03 01:30:00,1.4609008365329552,0.2543731168508367,0.5740393512847634,0.24348347275549254,0.04239551947513945,0.09567322521412722,0.03229223628739501,0.3352752669122268,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5683446011686701,0.005694750116093222,1,0.0,0.25145645018417,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5313333333333333,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.18737534351186,0,82.67992021985519,50,44.44,0.0,49.99974142887062,0.0,0.0,129.18737534351186,129.18737534352374,49.99974142887063,49.999741428870635,49.99974142887062,9.920878641202478,On,9993.92302551021,0.0,19,16.65653837585035,0.0,0.0,0.6,1,0.40854300482958006,9993.92302551021,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1415.9048641823204,19.04939673760484,0.2134990181342993,-0.5812597042820321,-0.6,6.529479366362011,0,4.0,4373.587687283175,-396.3755086283943,-64.1420745124773,0.0 +2018-01-03 01:40:00,1.4609008365329552,0.2543731168508367,0.5753236951575111,0.24348347275549254,0.04239551947513945,0.09588728252625185,0.03229223628739501,0.3352752669122268,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5696289450414174,0.005694750116093746,1,0.0,0.25145645018417,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5346666666666666,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.18737534352374,0,82.67992021985673,50,44.44,0.0,49.99974142887062,0.0,0.0,129.18737534352374,129.18737534352613,49.99974142887062,49.99974142887062,49.99974142887062,9.920878641202478,On,10016.507270660297,0.0,19,16.694178784433827,0.0,0.0,0.6,1,0.4094662294083438,10016.507270660297,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1415.6826175897772,19.04939673760484,0.24889782104208538,-0.5999987810659555,-0.6,6.529479366362011,0,4.0,4390.870345853842,-462.1621352227485,-47.746366541512415,0.0 +2018-01-03 01:50:00,1.4609008365329552,0.2543731168508367,0.576614053476021,0.24348347275549254,0.04239551947513945,0.0961023422460035,0.03229223628739501,0.3352752669122268,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5709193033599272,0.005694750116093746,1,0.0,0.25145645018417,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5379999999999999,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.18737534352374,0,82.67992021985673,50,44.44,0.0,49.99974142887062,0.0,0.0,129.18737534352374,129.18737534352613,49.99974142887062,49.99974142887062,49.99974142887062,9.920878641202478,On,10039.197275428523,0.0,19,16.731995459047543,0.0,0.0,0.5999999999999999,1,0.41039377734962246,10039.197275428523,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1415.4370740112959,19.04939673760484,0.25095925352022147,-0.5999987784264613,-0.6,6.529479366362011,0,4.0,4407.6055028303745,-462.2965370910488,-43.290713883951035,0.0 +2018-01-03 02:00:00,1.4592912454670717,0.25316592355142414,0.5778116692987654,0.24321520757784526,0.04219432059190402,0.09630194488312756,0.03229223628739501,0.33366567584634343,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5721169191826716,0.005694750116093746,1,0.0,0.25024925688475746,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5413333333333332,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.18737534352374,0,82.67992021985673,50,44.44,0.0,49.99974142887062,0.0,0.0,129.18737534352374,129.18737534352613,49.99974142887062,49.99974142887062,49.99974142887062,9.920878641202478,On,10060.256471419882,0.0,19,16.767094119033136,0.0,0.0,0.6,1,0.4112546592263032,10060.256471419882,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1415.166981986749,19.04939673760484,0.2529487857990527,-0.5999987757746068,-0.6,6.529479366362011,0,4.0,4422.114009882707,-462.4784277330059,-39.86928369775879,0.0 +2018-01-03 02:10:00,1.4592912454670717,0.25316592355142414,0.5790912358090367,0.24321520757784526,0.04219432059190402,0.09651520596817277,0.03229223628739501,0.33366567584634343,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5733964437984375,0.005694792010599245,1,0.0,0.25024925688475746,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5446666666666665,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.18832573486603,0,82.68052969120491,50,44.44,0.0,49.99974142887062,0.0,0.0,129.18832573486603,129.18832764250766,49.99974142887062,49.99974142887062,49.99974142887062,9.920878641202478,On,10082.755973470074,0.0,19,16.804593289116788,0.0,0.0,0.6,1,0.41217441957979917,10082.755973470074,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1414.906194031795,19.049168587598132,0.25474583988546884,-0.5999987735484978,-0.6,6.529479366362011,0,4.0,4438.896428604485,-461.92283510898073,-37.16084498415882,0.0 +2018-01-03 02:20:00,1.4592912454670717,0.25316592355142414,0.5801861729674702,0.24321520757784526,0.04219432059190402,0.09669769549457836,0.03229223628739501,0.33366567584634343,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5744913808731288,0.005694792094341425,1,0.0,0.25024925688475746,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5479999999999998,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.18832763458633,0,82.68052968857356,50,44.44,0.0,49.999741426968384,0.0,0.0,129.18832763458633,129.18832763839617,49.999741426968384,49.99974142696839,49.999741426968384,9.920878641202478,On,10102.009638974663,0.0,19,16.83668273162444,0.0,0.0,0.6,1,0.41296149291818196,10102.009638974663,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1414.6836973677118,19.049168587598132,0.25666200509852166,-0.5999987709189079,-0.6,6.529479366362011,0,4.0,4453.637479617628,-462.20465160209915,-34.95471520654315,0.0 +2018-01-03 02:30:00,1.4592912454670717,0.25316592355142414,0.5933184804488835,0.24321520757784526,0.04219432059190402,0.09888641340814724,0.03229223628739501,0.33366567584634343,0.010000000000000002,0.0,1.0833333333333333,0.0,0.587623688354375,0.00569479209450853,1,0.0,0.25024925688475746,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5513333333333331,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.18832763837716,0,82.68052968856898,50,44.44,0.0,49.99974142696459,0.0,0.0,129.18832763837716,129.18832763838904,49.99974142696458,49.99974142696459,49.99974142696459,9.920878641202478,On,10332.931635673556,0.0,19,17.221552726122596,0.0,0.0,0.5999999999999999,1,0.42240138615848394,10332.931635673556,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1412.250260899456,19.049168587598132,0.2583112896459989,-0.5999987686686695,-1.1,6.529479366362011,0,4.0,4472.889702424615,-1585.233246828966,-131.4089002588209,0.0 +2018-01-03 02:40:00,1.4592912454670717,0.25316592355142414,0.5943487917089547,0.24321520757784526,0.04219432059190402,0.09905813195149245,0.03229223628739501,0.33366567584634343,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5886539996144454,0.005694792094509263,1,0.0,0.25024925688475746,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5546666666666664,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.1883276383938,0,82.68052968856746,50,44.44,0.0,49.999741426964576,0.0,0.0,129.1883276383938,129.18832763838665,49.999741426964576,49.999741426964576,49.999741426964576,9.920878641202478,On,10351.048903620307,0.0,19,17.251748172700513,0.0,0.0,0.6,1,0.42314200453901124,10351.048903620307,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1412.0169468680547,19.049168587598132,-0.22187605714712644,-0.7365662165778648,-1.1,6.529479366362011,0,4.0,4486.671133013745,-626.800485672607,-116.91054281334715,0.0 +2018-01-03 02:50:00,1.4592912454670717,0.25316592355142414,0.5953956209475938,0.24321520757784526,0.04219432059190402,0.09923260349126563,0.03229223628739501,0.33366567584634343,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5897008288530848,0.005694792094508949,1,0.0,0.25024925688475746,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5579999999999997,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.18832763838665,0,82.68052968856898,50,44.44,0.0,49.99974142696458,0.0,0.0,129.18832763838665,129.18832763838904,49.99974142696458,49.99974142696458,49.99974142696458,9.920878641202478,On,10369.456628107006,0.0,19,17.282427713511677,0.0,0.0,0.6,1,0.42389449653386396,10369.456628107006,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1412.16777840465,19.049168587598132,-0.22254609194689257,-0.8368678441989064,-1.1,6.529479366362011,0,4.0,4500.171459431075,-610.7371479229164,-107.01654324419614,0.0 +2018-01-03 03:00:00,1.4576816544011881,0.2519587302520116,0.5963981812753611,0.242946942400198,0.0419931217086686,0.09939969687922685,0.03229223628739501,0.33205608478046,0.010000000000000002,0.0,1.0833333333333333,0.0,0.590703389180852,0.005694792094509159,1,0.0,0.24904206358534492,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.561333333333333,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.18832763839143,0,82.68052968856901,50,44.44,0.0,49.999741426964576,0.0,0.0,129.18832763839143,129.18832763838907,49.999741426964576,49.99974142696458,49.999741426964576,9.920878641202478,On,10387.085916259883,0.0,19,17.31180986043314,0.0,0.0,0.5999999999999999,1,0.42461516671879523,10387.085916259883,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1411.9748619897102,19.049168587598135,-0.2205326645734434,-0.9173710179746282,-1.1,6.529479366362011,0,4.0,4512.097070512959,-606.4586590828571,-99.13301023523607,0.0 +2018-01-03 03:10:00,1.4576816544011881,0.2519587302520116,0.597517514588004,0.242946942400198,0.0419931217086686,0.09958625243133398,0.03229223628739501,0.33205608478046,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5918226805989893,0.005694833989014553,1,0.0,0.24904206358534492,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5646666666666663,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.18927802973133,0,82.68113915991717,50,44.44,0.0,49.99974142696458,0.0,0.0,129.18927802973133,129.18927993737057,49.99974142696458,49.99974142696458,49.99974142696458,9.920878641202478,On,10406.767835034123,0.0,19,17.344613058390205,0.0,0.0,0.6,1,0.4254197466836714,10406.767835034123,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1411.756016677685,19.048940437591426,-0.21884999382680353,-0.9834152838066791,-1.1,6.529479366362011,0,4.0,4527.089657632715,-603.4944872317069,-92.5896685190153,0.0 +2018-01-03 03:20:00,1.4576816544011881,0.2519587302520116,0.5985617670836592,0.242946942400198,0.0419931217086686,0.09976029451394319,0.03229223628739501,0.33205608478046,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5928669330109028,0.005694834072756419,1,0.0,0.24904206358534492,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5679999999999996,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.1892799294445,0,82.68113915728733,50,44.44,0.0,49.99974142506235,0.0,0.0,129.1892799294445,129.18927993326145,49.99974142506235,49.99974142506235,49.99974142506235,9.920878641202478,On,10425.130247912519,0.0,19,17.3752170798542,0.0,0.0,0.6,1,0.4261703863788253,10425.130247912519,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1411.5402598468415,19.048940437591426,-0.2170791087997011,-1.0377958066242663,-1.1,6.529479366362011,0,4.0,4540.6987086318095,-602.0859895231083,-87.12503650654622,0.0 +2018-01-03 03:30:00,1.4576816544011881,0.2519587302520116,0.6241807069064742,0.242946942400198,0.0419931217086686,0.1040301178177457,0.03229223628739501,0.33205608478046,0.010000000000000002,0.0,1.0833333333333333,0.0,0.61848587283355,0.005694834072924152,1,0.0,0.24904206358534492,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5713333333333329,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.1892799332496,0,82.6811391572843,50,44.44,0.0,49.999741425058545,0.0,0.0,129.1892799332496,129.18927993325673,49.999741425058545,49.999741425058545,49.999741425058545,9.920878641202478,On,10875.620517471234,0.0,19,18.12603419578539,0.0,0.0,0.6,1,0.4445860423631888,10875.620517471234,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1408.484936224312,19.048940437591426,-0.21548171305455333,-1.0825963459359422,-1.7,6.529479366362011,0,4.0,4560.467863990243,-1913.1030555026305,-149.0387433860028,0.0 +2018-01-03 03:40:00,1.4576816544011881,0.2519587302520116,0.6252183238293332,0.242946942400198,0.0419931217086686,0.10420305397155552,0.03229223628739501,0.33205608478046,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6195234897564086,0.00569483407292457,1,0.0,0.24904206358534492,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5746666666666662,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.1892799332591,0,82.68113915728429,50,44.44,0.0,49.99974142505853,0.0,0.0,129.1892799332591,129.1892799332567,49.99974142505854,49.999741425058545,49.99974142505853,9.920878641202478,On,10893.866250140623,0.0,19,18.156443750234374,0.0,0.0,0.6,1,0.44533191227143626,10893.866250140623,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1408.2902711399556,19.048940437591426,-0.7768207709966346,-1.2136870607198018,-1.7,6.529479366362011,0,4.0,4574.32514882439,-792.3177645966525,-134.32973742335037,0.0 +2018-01-03 03:50:00,1.4576816544011881,0.2519587302520116,0.6263036210365373,0.242946942400198,0.0419931217086686,0.10438393683942288,0.03229223628739501,0.33205608478046,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6206087869636131,0.005694834072924152,1,0.0,0.24904206358534492,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5779999999999995,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.1892799332496,0,82.6811391572843,50,44.44,0.0,49.999741425058545,0.0,0.0,129.1892799332496,129.18927993325673,49.999741425058545,49.999741425058545,49.999741425058545,9.920878641202478,On,10912.950405644697,0.0,19,18.188250676074496,0.0,0.0,0.6,1,0.4461120561863301,10912.950405644697,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1408.8165448311172,19.048940437591426,-0.7778487149030917,-1.31687530999858,-1.7,6.529479366362011,0,4.0,4588.344621721322,-772.7134703261295,-123.6084265105947,0.0 +2018-01-03 04:00:00,1.4560720633353048,0.25075153695259905,0.6273746799695898,0.2426786772225508,0.041791922825433175,0.10456244666159831,0.03229223628739501,0.3304464937145766,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6216798458966653,0.00569483407292457,1,0.0,0.24783487028593237,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5813333333333328,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.1892799332591,0,82.68113915728429,50,44.44,0.0,49.99974142505853,0.0,0.0,129.1892799332591,129.1892799332567,49.99974142505854,49.999741425058545,49.99974142505853,9.920878641202478,On,10931.7841915392,0.0,19,18.219640319232003,0.0,0.0,0.5999999999999999,1,0.4468819652062432,10931.7841915392,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1408.5502314918238,19.048940437591426,-0.7757047069063132,-1.4044597099373546,-1.7,6.529479366362011,0,4.0,4601.205736145377,-766.8791593265678,-114.44934722579129,0.0 +2018-01-03 04:10:00,1.4560720633353048,0.25075153695259905,0.6286052691405364,0.2426786772225508,0.041791922825433175,0.10476754485675606,0.03229223628739501,0.3304464937145766,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6229103931731063,0.00569487596743007,1,0.0,0.24783487028593237,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5846666666666661,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.19023032460137,0,82.68174862863249,50,44.44,0.0,49.999741425058545,0.0,0.0,129.19023032460137,129.19023223223826,49.999741425058545,49.999741425058545,49.999741425058545,9.920878641202478,On,10953.422462994082,0.0,19,18.255704104990137,0.0,0.0,0.6,1,0.447766519191393,10953.422462994082,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1408.3280420909182,19.04871228758472,-0.7738862443912942,-1.478751085580866,-1.7,6.529479366362011,0,4.0,4617.447519777956,-762.7244241195986,-106.50549183452618,0.0 +2018-01-03 04:20:00,1.4560720633353048,0.25075153695259905,0.629729656526229,0.2426786772225508,0.041791922825433175,0.1049549427543715,0.03229223628739501,0.3304464937145766,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6240347804750573,0.005694876051171727,1,0.0,0.24783487028593237,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5879999999999994,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.1902322243098,0,82.68174862600264,50,44.44,0.0,49.999741423156316,0.0,0.0,129.1902322243098,129.19023222812913,49.999741423156316,49.99974142315632,49.999741423156316,9.920878641202478,On,10973.193989148203,0.0,19,18.28865664858034,0.0,0.0,0.6,1,0.44857476222913234,10973.193989148203,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1408.0763707495682,19.04871228758472,-0.7719481947917183,-1.5410081823972106,-1.7,6.529479366362011,0,4.0,4632.61397633334,-760.4439736267213,-99.72999449197592,0.0 +2018-01-03 04:30:00,1.4560720633353048,0.25075153695259905,0.6430982670519261,0.2426786772225508,0.041791922825433175,0.10718304450865435,0.03229223628739501,0.3304464937145766,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6374033910005867,0.005694876051339356,1,0.0,0.24783487028593237,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5913333333333327,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.19023222811254,0,82.68174862599659,50,44.44,0.0,49.999741423152514,0.0,0.0,129.19023222811254,129.19023222811967,49.99974142315251,49.999741423152514,49.999741423152514,9.920878641202478,On,11208.271201591919,0.0,19,18.680452002653197,0.0,0.0,0.6,1,0.4581845171265405,11208.271201591919,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1407.839243258539,19.04871228758472,-0.7702124605307923,-1.5927391748595356,-1.7,6.529479366362011,0,4.0,4647.7939801127,-715.3368571377027,-95.10478740159206,0.0 +2018-01-03 04:40:00,1.4560720633353048,0.25075153695259905,0.7119847961123359,0.2426786772225508,0.041791922825433175,0.1186641326853893,0.03229223628739501,0.3304464937145766,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6385179341830892,0.07346686192924667,1,0.0,0.24783487028593237,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.594666666666666,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,1666.6211640335625,0,82.6672332239461,50,44.44,0.5513417133109259,49.9997414231525,1540.5395623152042,0.0,1666.6211640335625,129.16755191241577,49.99974142315251,49.999741423152514,49.9997414231525,9.920878641202478,On,11227.869626124557,0.0,19,18.71311604354093,0.0,0.0,0.6,1,0.4589856839184051,11227.869626124557,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1407.6115202544274,19.04871228758472,-0.7500378237207941,-1.6370273241209228,-1.7,6.529479366362011,0,4.0,4662.821659245339,-750.335395673364,-89.69288005043055,0.0 +2018-01-03 04:50:00,1.4560720633353048,0.25075153695259905,0.7803094465805631,0.2426786772225508,0.041791922825433175,0.13005157443009385,0.03229223628739501,0.3304464937145766,0.010000000000000002,0.0,1.0833333333333333,0.0,0.639648520395301,0.14066092618526213,1,0.0,0.24783487028593237,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.5979999999999993,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,3190.9417440299867,0,82.64861456258484,50,44.44,1.0969640530024989,49.996664224228645,3064.8629187113,0.0,3190.9417440299867,129.13846025403882,49.996664224228645,49.99666422422865,49.996664224228645,9.920878641202478,On,11247.750155569745,0.0,19,18.74625025928291,0.0,0.0,0.6,1,0.45979838291722747,11247.750155569745,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1408.8994210236592,19.04871228758472,-0.7482890320425977,-1.6727613147636915,-1.7,6.529479366362011,0,4.0,4677.523000212097,-749.0918009906695,-83.91297975917486,0.0 +2018-01-03 05:00:00,1.4899056978650083,0.26789274243383804,0.6466723679887818,0.2483176163108347,0.04464879040563967,0.10777872799813029,0.04327093017544647,0.35330143435622857,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6407077117240316,0.005964656264750193,1,0.0,0.26497607576717136,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.024942063377515696,0,On,0.011983513426019521,0.0,On,0.2953561559844259,0.22151711698831936,On,0.6013333333333326,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,135.31028964585013,0,82.67327281321057,50,44.44,0.0,49.99361326593755,0.0,0.0,135.31028964585013,129.17698877064151,49.99361326593755,49.993613265937555,49.99361326593755,9.920878641202478,On,11266.375258345166,0.0,19,18.777292097241943,0.0,0.0,0.6,1,0.46055976115015035,11266.375258345166,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1408.6675043281964,19.048712287584717,-0.7465602638761488,-1.6999986352325493,-1.7,6.529479366362011,0,4.0,4724.035760472779,-748.0520838321213,-63.77349661367113,0.0 +2018-01-03 05:10:00,1.4899056978650083,0.26789274243383804,0.6456325024957025,0.2483176163108347,0.04464879040563967,0.10760541708261707,0.04327093017544647,0.35330143435622857,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6399379261699812,0.0056945763257211955,1,0.0,0.26497607576717136,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.024942063377515696,0,On,0.011983513426019521,0.0,On,0.2953561559844259,0.22151711698831936,On,0.6046666666666659,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.18343284883443,0,82.66952636597709,50,44.44,0.0,49.99972917373452,0.0,0.0,129.18343284883443,129.1711349468392,49.99972917373452,49.99972917373453,49.99972917373452,9.920878641202478,On,11252.839143886597,0.0,19,18.754731906477662,0.0,0.0,0.6,1,0.46000641639649303,11252.839143886597,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1408.4114806719713,19.053281236344745,-0.7449692997447602,-1.6999986283466886,-1.7,6.529479366362011,0,4.0,4710.624422261858,-753.1835526214231,-60.02188355693975,0.0 +2018-01-03 05:20:00,1.4899056978650083,0.26789274243383804,0.6466085744260167,0.2483176163108347,0.04464879040563967,0.10776809573766945,0.04327093017544647,0.35330143435622857,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6409145379562337,0.0056940364697830965,1,0.0,0.26497607576717136,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.024942063377515696,0,On,0.011983513426019521,0.0,On,0.2953561559844259,0.22151711698831936,On,0.6079999999999992,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.17118603022342,0,82.66954332688898,50,44.44,0.0,49.999741436761596,0.0,0.0,129.17118603022342,129.17116144826403,49.9997414367616,49.99974143676161,49.999741436761596,9.920878641202478,On,11270.012145965868,0.0,19,18.78335357660978,0.0,0.0,0.6,1,0.4607084339979396,11270.012145965868,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1408.2672841507824,19.05328123634474,-0.7461405201700892,-1.6999986299286982,-1.7,6.529479366362011,0,4.0,4723.2476997055755,-746.6833358928538,-57.114873284022764,0.0 +2018-01-03 05:30:00,1.524548873102847,0.2845944298258145,0.7178763968910802,0.25409147885047445,0.04743240497096908,0.11964606614851336,0.05564518889064987,0.37557035087886387,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6501174902227392,0.067758906668341,1,0.0,0.28167776315914783,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,On,0.6113333333333325,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,1537.1342254143015,0,82.65625030838274,50,44.44,0.5049129369729112,49.99974146127386,1410.8099149623445,0.0,1537.1342254143015,129.15039110684802,49.99974146127386,49.99974146127386,49.99974146127386,9.920878641202478,On,11431.839312740707,0.0,19,19.05306552123451,0.0,0.0,0.6,1,0.4673237898305282,11431.839312740707,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1410.8844142007429,19.053281236344745,-0.7446806298562262,-1.6999986279216337,-1.1,6.529479366362011,0,4.0,4762.144387102058,682.2305095749748,1.071452136642037,0.0 +2018-01-03 05:40:00,1.524548873102847,0.2845944298258145,0.6548908416124374,0.25409147885047445,0.04743240497096908,0.10914847360207289,0.05564518889064987,0.37557035087886387,0.010000000000000002,0.0,1.0833333333333333,0.0,0.649073607448274,0.005817234164163373,1,0.0,0.28167776315914783,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,On,0.6146666666666658,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,131.96596832284467,0,82.65311832909097,50,44.44,0.0,49.996923394939955,0.0,0.0,131.96596832284467,129.14549738920465,49.996923394939955,49.996923394939955,49.996923394939955,9.920878641202478,On,11413.48339966577,0.0,19,19.022472332776285,0.0,0.0,0.6,1,0.4665734158417669,11413.48339966577,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1410.6591895908682,19.057970747290135,-0.1308025943981188,-1.6185321015226335,-1.1,6.529479366362011,0,4.0,4745.16667892189,-541.9113977851603,-9.659405221272593,0.0 +2018-01-03 05:50:00,1.4899056978650083,0.26789274243383804,0.6601461046251739,0.2483176163108347,0.04464879040563967,0.11002435077086231,0.04327093017544647,0.35330143435622857,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6544526840986663,0.005693420526507521,1,0.0,0.26497607576717136,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.024942063377515696,0,On,0.011983513426019521,0.0,On,0.2953561559844259,0.22151711698831936,On,0.6179999999999991,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.15721314405462,0,82.65700824080847,50,44.44,0.0,49.99973586746089,0.0,0.0,129.15721314405462,129.15157537626322,49.99973586746089,49.9997358674609,49.99973586746089,9.920878641202478,On,11508.07051790671,0.0,19,19.180117529844516,0.0,0.0,0.6,1,0.47044005613964446,11508.07051790671,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.645592892307,19.057970747290135,-0.12954216882645836,-1.5519374150677123,-1.1,6.529479366362011,0,3.0,4721.227004294445,-539.3914741162212,-17.247392919033175,0.0 +2018-01-03 06:00:00,1.5285225380149943,0.2782184546393889,0.6625829476807303,0.25475375633583236,0.046369742439898144,0.11043049128012172,0.06812015405136454,0.3670690506302964,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6568889135212447,0.005694034159485616,1,0.0,0.2753017879727222,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.04195861128927875,0,On,0.020159181464331908,0.0,On,0.3059045901267268,0.22942844259504505,On,0.6213333333333324,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.17113362032632,0,82.66954339946935,50,44.44,0.0,49.99974148924086,0.0,0.0,129.17113362032632,129.17116156167086,49.99974148924086,49.99974148924086,49.99974148924086,9.920878641202478,On,11550.909825734505,0.0,19,19.251516376224178,0.0,0.0,0.5999999999999999,1,0.4721912903146639,11550.909825734505,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.3755405628563,19.053281236344745,-0.12195976579581316,-1.4906772230734036,-1.1,6.529479366362011,0,3.0,4794.688103533978,-551.9189893638791,-24.51178416160485,0.0 +2018-01-03 06:10:00,1.5285225380149943,0.2782184546393889,0.6966213622225075,0.25475375633583236,0.046369742439898144,0.11610356037041791,0.06812015405136454,0.3670690506302964,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6552588464868411,0.041362515735666426,1,0.0,0.2753017879727222,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.04195861128927875,0,On,0.020159181464331908,0.0,On,0.3059045901267268,0.22942844259504505,On,0.6246666666666657,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,938.322970554022,0,82.64756100787613,50,44.44,0.290179848834247,49.999741461378754,810.8102959553705,0.0,938.322970554022,129.13681407480647,49.999741461378754,49.999741461378754,49.999741461378754,9.920878641202478,On,11522.246292317011,0.0,19,19.203743820528352,0.0,0.0,0.6,1,0.4710195496437057,11522.246292317011,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1408.900526029308,19.05865028240244,-0.11849764095888343,-1.4367157115256206,-1.1,6.529479366362011,0,3.0,4769.413250948444,-567.6021462497224,-31.243281084864627,0.0 +2018-01-03 06:20:00,1.5285225380149943,0.2782184546393889,0.733065247663185,0.25475375633583236,0.046369742439898144,0.1221775412771975,0.06812015405136454,0.3670690506302964,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6556052741905897,0.07745997347259537,1,0.0,0.2753017879727222,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.04195861128927875,0,On,0.020159181464331908,0.0,On,0.3059045901267268,0.22942844259504505,On,0.627999999999999,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,1757.2062800128028,0,82.63760495967145,50,44.44,0.5832850659324729,49.99812192770713,1629.7286948702947,0.0,1757.2062800128028,129.12125774948663,49.99812192770713,49.99812192770713,49.99812192770713,9.920878641202478,On,11528.337969440447,0.0,19,19.21389661573408,0.0,0.0,0.6,1,0.47126857218171275,11528.337969440447,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1408.628536005602,19.05865028240244,-0.12103707123851387,-1.3914112533469083,-1.1,6.529479366362011,0,3.0,4773.900293992322,-563.0764108537305,-37.06382325824863,0.0 +2018-01-03 06:30:00,1.5993937877931883,0.3032709857273535,0.6276094973407863,0.2665656312988647,0.05054516428789225,0.10460158289013105,0.10558802904560591,0.40047242541424927,0.010000000000000002,0.0,1.0833333333333333,0.0,0.621772996741319,0.005836500599467253,1,0.0,0.3003543190606868,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.06726698000344689,0,On,0.03231868774440513,0.0,On,0.3393079649106797,0.2544809736830097,On,0.6313333333333323,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,132.4030340690835,0,82.65069382151424,50,44.44,0.0,49.99648291629758,0.0,0.0,132.4030340690835,129.141709096116,49.99648291629757,49.99648291629758,49.99648291629758,9.920878641202478,On,10933.42218083182,0.0,19,18.222370301386366,0.0,0.0,0.6,1,0.4469489248041686,10933.42218083182,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1408.2890589998729,19.058650282402436,-0.12057653340989662,-1.354548683376211,-1.1,6.529479366362011,0,3.0,4845.7839683928405,-683.9951007655795,-49.126160391262765,0.0 +2018-01-03 06:40:00,1.5993937877931883,0.3032709857273535,0.6237921287284083,0.2665656312988647,0.05054516428789225,0.10396535478806804,0.10558802904560591,0.40047242541424927,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6181005782519522,0.005691550476456111,1,0.0,0.3003543190606868,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.06726698000344689,0,On,0.03231868774440513,0.0,On,0.3393079649106797,0.2544809736830097,On,0.6346666666666656,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.11479041206854,0,82.62924173384039,50,44.44,0.0,49.99973499266501,0.0,0.0,129.11479041206854,129.1081902091256,49.99973499266501,49.99973499266502,49.99973499266501,9.920878641202478,On,10868.845394803195,0.0,19,18.114742324671994,0.0,0.0,0.5999999999999999,1,0.4443090811572815,10868.845394803195,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1407.9303415505992,19.06836443143752,-0.17161964122915882,-1.332721966807618,-1.1,6.529479366362011,0,3.0,4790.334735431751,-596.1442317839405,-50.66501563899641,0.0 +2018-01-03 06:50:00,1.5285225380149943,0.2782184546393889,0.6705518049079842,0.25475375633583236,0.046369742439898144,0.1117586341513307,0.06812015405136454,0.3670690506302964,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6181335433791473,0.05241826152883692,1,0.0,0.2753017879727222,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.04195861128927875,0,On,0.020159181464331908,0.0,On,0.3059045901267268,0.22942844259504505,On,0.6379999999999989,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,1189.1263863963668,0,82.6192428489188,50,44.44,0.3801356009032555,49.99974157415082,1062.1614877015354,0.0,1189.1263863963668,129.09256695143563,49.99974157415082,49.99974157415082,49.99974157415082,9.920878641202478,On,10869.425062390494,0.0,19,18.11570843731749,0.0,0.0,0.6,1,0.4443327774712628,10869.425062390494,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1408.2996850629918,19.068364431437516,-0.17733395715485384,-1.3042534090026663,-1.1,6.529479366362011,0,3.0,4722.156475816655,-584.4858164999278,-52.78905799706352,0.0 +2018-01-03 07:00:00,1.5569737651353934,0.29118127538051486,0.6627547858630465,0.25949562752256555,0.04853021256341914,0.11045913097717441,0.07928762018359574,0.3843528116184644,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6219765941135035,0.040778191749543,1,0.0,0.2882646087138482,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.04961772287382962,0,On,0.023839032049090905,0.0,On,0.31996916898312805,0.23997687673734597,On,0.6413333333333322,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,925.0673788987854,0,82.64477189951468,50,44.44,0.2846815009462399,49.9976199396273,795.4049003322185,0.0,925.0673788987854,129.13245609299167,49.9976199396273,49.997619939627306,49.9976199396273,9.920878641202478,On,10937.002291316943,0.0,19,18.228337152194907,0.0,0.0,0.5999999999999999,1,0.4470952766513342,10937.002291316943,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1408.0825030260546,19.058650282402436,-0.17736129486139895,-1.2727306082166132,-1.1,6.529479366362011,0,3.0,4807.3764643181885,-570.8883410778421,-55.521005997279936,0.0 +2018-01-03 07:10:00,1.5569737651353934,0.29118127538051486,0.6262190092158505,0.25949562752256555,0.04853021256341914,0.10436983486930841,0.07928762018359574,0.3843528116184644,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6204565458038456,0.005762463412004924,1,0.0,0.2882646087138482,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.04961772287382962,0,On,0.023839032049090905,0.0,On,0.31996916898312805,0.23997687673734597,On,0.6446666666666655,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,130.72347487314187,0,82.6425971592029,50,44.44,0.0,49.998148459040365,0.0,0.0,130.72347487314187,129.1290580612545,49.99814845904036,49.998148459040365,49.998148459040365,9.920878641202478,On,10910.273356493703,0.0,19,18.183788927489505,0.0,0.0,0.6,1,0.44600262071224933,10910.273356493703,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1407.6924017448273,19.062543525492515,-0.17155024805192037,-1.2423015858214619,-1.1,6.529479366362011,0,3.0,4784.886066714541,-587.9258626332157,-58.49748474175516,0.0 +2018-01-03 07:20:00,1.5569737651353934,0.29118127538051486,0.6261136670555545,0.25949562752256555,0.04853021256341914,0.1043522778425924,0.07928762018359574,0.3843528116184644,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6204211956945457,0.005692471361008779,1,0.0,0.2882646087138482,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.04961772287382962,0,On,0.023839032049090905,0.0,On,0.31996916898312805,0.23997687673734597,On,0.6479999999999988,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.13568099654165,0,82.64479613262844,50,44.44,0.0,49.99973835433653,0.0,0.0,129.13568099654165,129.13249395723193,49.99973835433652,49.99973835433653,49.99973835433653,9.920878641202478,On,10909.651750745077,0.0,19,18.182752917908463,0.0,0.0,0.6,1,0.4459772100021894,10909.651750745077,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1407.5762633950558,19.062543525492515,-0.17379492653688167,-1.2152747586363613,-1.1,6.529479366362011,0,3.0,4784.425127376992,-583.9009026129447,-61.26177160288665,0.0 +2018-01-03 07:30:00,1.5569737651353934,0.29118127538051486,0.6386092266803198,0.25949562752256555,0.04853021256341914,0.10643487111338663,0.07928762018359574,0.3843528116184644,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6329168952246458,0.005692331455674066,1,0.0,0.2882646087138482,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.04961772287382962,0,On,0.023839032049090905,0.0,On,0.31996916898312805,0.23997687673734597,On,0.6513333333333321,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.13250719565144,0,82.64480052810137,50,44.44,0.0,49.99974153233789,0.0,0.0,129.13250719565144,129.1325008251584,49.99974153233789,49.99974153233789,49.99974153233789,9.920878641202478,On,11129.379463468898,0.0,19,18.548965772448167,0.0,0.0,0.5999999999999999,1,0.4549594905111928,11129.379463468898,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.565835792401,19.06254352549251,-0.17383672468203226,-1.1922704524845529,-0.6,6.529479366362011,0,2.0,4771.545870092591,625.188873838011,2.8996611357104456,111.4162656400562 +2018-01-03 07:40:00,1.5569737651353934,0.29118127538051486,0.6378176425009349,0.25949562752256555,0.04853021256341914,0.10630294041682248,0.07928762018359574,0.3843528116184644,0.010000000000000002,0.0,1.0833333333333333,0.0,0.632125311324914,0.005692331176020811,1,0.0,0.2882646087138482,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.04961772287382962,0,On,0.023839032049090905,0.0,On,0.31996916898312805,0.23997687673734597,On,0.6546666666666654,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.13250085162065,0,82.64480053688779,50,44.44,0.0,49.999741538690316,0.0,0.0,129.13250085162065,129.13250083888715,49.999741538690316,49.99974153869032,49.999741538690316,9.920878641202478,On,11115.460041086975,0.0,19,18.52576673514496,0.0,0.0,0.6,1,0.4543904764582641,11115.460041086975,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.3797920377935,19.062543525492515,0.3450059080849712,-1.075411968537642,-0.6,6.529479366362011,0,2.0,4760.370731865625,-410.82987353850103,-11.287031806166937,104.66090329211899 +2018-01-03 07:50:00,1.5569737651353934,0.29118127538051486,0.6371388029306784,0.25949562752256555,0.04853021256341914,0.1061898004884464,0.07928762018359574,0.3843528116184644,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6314464717552166,0.005692331175461698,1,0.0,0.2882646087138482,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.04961772287382962,0,On,0.023839032049090905,0.0,On,0.31996916898312805,0.23997687673734597,On,0.6579999999999987,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.132500838937,0,82.64480053690296,50,44.44,0.0,49.99974153870302,0.0,0.0,129.132500838937,129.1325008389109,49.99974153870302,49.99974153870302,49.99974153870302,9.920878641202478,On,11103.52314506953,0.0,19,18.50587190844922,0.0,0.0,0.5999999999999999,1,0.4539025063833638,11103.52314506953,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.53011067413,19.06254352549251,0.34621053991696005,-0.9736072246725997,-0.6,6.529479366362011,0,2.0,4750.978629460089,-429.0713753484274,-22.260024862011548,101.63135695171938 +2018-01-03 08:00:00,1.666769819248048,0.33150557862429336,0.6364227939704734,0.27779496987467467,0.05525092977071556,0.10607046566174556,0.13531793663787908,0.4381185492768357,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6307304627950128,0.005692331175460651,1,0.0,0.3285889119576267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.08758027594508183,0,On,0.04207829146920073,0.0,On,0.37212531557561596,0.27909398668171187,On,0.661333333333332,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.13250083891324,0,82.64480053690295,50,44.44,0.0,49.99974153870304,0.0,0.0,129.13250083891324,129.13250083891086,49.99974153870304,49.99974153870305,49.99974153870304,9.920878641202478,On,11090.932652577585,0.0,19,18.484887754295976,0.0,0.0,0.6,1,0.4533878178449577,11090.932652577585,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.2750072976125,19.062543525492515,0.3447202777467839,-0.8779750221735416,-0.6,6.529479366362011,0,2.0,4847.264273220326,-435.0975956746902,-33.0252666400146,99.02159033964692 +2018-01-03 08:10:00,1.720239005772288,0.33150557862429336,0.6831435243601468,0.28670650096204797,0.05525092977071556,0.11385725406002446,0.13531793663787908,0.4915877358010756,0.010000000000000002,0.0,1.0833333333333333,0.053469186524239945,0.623984769410309,0.005689568425597842,1,0.0,0.3285889119576267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,On,0.053469186524239945,0,0.053469186524239945,On,0.005659369223596524,0.0,On,0.08758027594508183,0,On,0.04207829146920073,0.0,On,0.37212531557561596,0.27909398668171187,On,0.6646666666666653,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.06982690305458,0,82.60460870602671,50,44.44,0.0,49.99974153870305,0.0,0.0,129.06982690305458,129.06970110316672,49.99974153870304,49.99974153870305,49.99974153870305,9.920878641202478,On,10972.314581249384,0.0,19,18.287190968748973,0.0,0.0,0.6,1,0.44853881278820334,10972.314581249384,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.0301150838595,19.07758896854436,0.34345251996000126,-0.7923468954948142,-0.6,6.529479366362011,0,2.0,5780.979241020921,-459.96185085909747,-43.12764358450684,96.27327790463424 +2018-01-03 08:20:00,1.7135553574567581,0.33150557862429336,0.6169788962225229,0.28559255957612634,0.05525092977071556,0.10282981603708714,0.13531793663787908,0.48490408748554564,0.010000000000000002,0.0,1.0833333333333333,0.04678553820870995,0.5645307113434631,0.0056626466703497795,1,0.0,0.3285889119576267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,On,0.04678553820870995,0,0.04678553820870995,On,0.005659369223596524,0.0,On,0.08758027594508183,0,On,0.04207829146920073,0.0,On,0.37212531557561596,0.27909398668171187,On,0.6679999999999986,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,128.45909757705502,0,82.21303789675147,50,44.44,0.0,49.999741664146185,0.0,0.0,128.45909757705502,128.45787171367417,49.999741664146185,49.999741664146185,49.999741664146185,9.920878641202478,On,9926.85856978648,0.0,19,16.544764282977468,0.0,0.0,0.6,1,0.4058014673784014,9926.85856978648,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.096226185892,19.22416997253319,0.3331996236548023,-0.7190037337325804,-0.6,6.529479366362011,0,2.0,4764.263008771304,-651.0979489569638,-52.0713849291019,113.16585731725642 +2018-01-03 08:30:00,1.5642069451265768,0.29414654103697757,0.4457102627259642,0.2607011575210961,0.04902442350616293,0.0742850437876607,0.08256711263282876,0.38830649916041465,0.010000000000000002,0.0,1.0833333333333333,0.0,0.44004430533972083,0.005665957386243385,1,0.0,0.2912298743703109,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,0.6713333333333319,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,128.5342023117815,0,82.26198596027155,50,44.44,0.0,49.99974288653321,0.0,0.0,128.5342023117815,128.53435306292428,49.99974288653321,49.99974288653321,49.99974288653321,9.920878641202478,On,7737.856410241742,0.0,19,12.896427350402904,0.0,0.0,0.6,1,0.31631693587299775,7737.856410241742,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1423.113026092029,19.205847347034585,0.24343782568768874,-0.6576354237544177,3.3,6.529479366362011,0,1.0,3767.1916912673887,1567.464291515037,318.6165521315562,577.7851739280491 +2018-01-03 08:40:00,1.5642069451265768,0.29414654103697757,0.49806731300192986,0.2607011575210961,0.04902442350616293,0.08301121883365498,0.08256711263282876,0.38830649916041465,0.010000000000000002,0.0,1.0833333333333333,0.0,0.4923752185390313,0.005692094462898522,1,0.0,0.2912298743703109,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,0.6746666666666652,True,0.0,2018-01-02 20:50:00,2018-01-03 08:50:00,On,129.12713093259794,0,82.64212548236603,50,44.44,0.0,49.99974273620957,0.0,0.0,129.12713093259794,129.12832106619692,49.999742736209576,49.99974273620958,49.99974273620957,9.920878641202478,On,8658.057142848606,0.0,19,14.430095238081009,0.0,0.0,0.6,1,0.35393395287282564,8658.057142848606,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1422.9233919005676,19.063545527618277,1.1199492021275044,-0.04611286237480594,3.3,6.529479366362011,0,1.0,4543.561612080662,1741.679825302577,261.2227366563665,559.8065328740462 +2018-01-03 08:50:00,0.48087361179324345,0.29414654103697757,0.4948139009911223,0.08014560196554057,0.04902442350616293,0.08246898349852039,0.08256711263282876,0.38830649916041465,0.010000000000000002,0.0,0.0,0.0,0.48912175428348403,0.005692146707638311,1,0.0,0.2912298743703109,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,0.6779999999999985,False,0.046000000000001484,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.1283161225837,0,82.6421238409634,50,44.44,0.0,49.99974154945101,0.0,0.0,129.1283161225837,129.1283185015053,49.99974154945101,49.99974154945102,49.99974154945101,9.920878641202478,On,8600.847359788593,0.0,19,14.334745599647656,0.0,0.0,0.6,1,0.35159526599107505,8600.847359788593,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1420.842337595146,19.063545527618277,1.950111891924247,0.5293779575149499,3.3,6.529479366362011,0,1.0,4497.061885822724,1722.775234727137,215.86215083620525,544.0351459510395 +2018-01-03 09:00:00,0.5860299942156331,0.33150557862429336,0.5199593151224513,0.0976716657026055,0.05525092977071556,0.08665988585374187,0.13791144493879737,0.4381185492768357,0.010000000000000002,0.0,0.0,0.0,0.48055952270268687,0.03939979241976449,1,0.0,0.3285889119576267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.08991130990559731,0,On,0.04319824599499695,0.0,On,0.37212531557561596,0.27909398668171187,Off,0.6779999999999985,False,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,893.797913521171,0,82.63490433508407,50,44.44,0.2742199565620026,49.99974154707884,766.2157296778252,0.0,893.797913521171,129.11703802356885,49.99974154707884,49.99974154707884,49.99974154707884,9.920878641202478,On,8450.2867964101,0.0,19,14.083811327350169,0.0,0.0,0.5999999999999999,1,0.3454404792457225,8450.2867964101,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1420.580092380526,19.063545527618277,2.6655897662920793,1.0964315696914309,3.3,6.529479366362011,0,2.0,4544.775912181685,1687.2433327216977,168.2406738496494,529.3575506320162 +2018-01-03 09:10:00,0.5860299942156331,0.33150557862429336,0.47608640572171235,0.0976716657026055,0.05525092977071556,0.07934773428695205,0.13791144493879737,0.4381185492768357,0.010000000000000002,0.0,0.0,0.0,0.4703295278109656,0.005756877910746737,1,0.0,0.3285889119576267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.08991130990559731,0,On,0.04319824599499695,0.0,On,0.37212531557561596,0.27909398668171187,Off,0.6779999999999985,False,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,130.59676584591278,0,82.60150985981693,50,44.44,0.0,49.998211045504064,0.0,0.0,130.59676584591278,129.06485915596394,49.99821104550407,49.99821104550408,49.998211045504064,9.920878641202478,On,8270.399838235437,0.0,19,13.783999730392393,0.0,0.0,0.6,1,0.3380868546245665,8270.399838235437,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1420.3266741940004,19.0779565829955,3.27769428617151,1.618652269263111,3.3,6.529479366362011,0,2.0,4397.294594546525,1647.0679069704966,122.24643944171389,515.1484715329693 +2018-01-03 09:20:00,0.5860299942156331,0.33150557862429336,0.4709513703940445,0.0976716657026055,0.05525092977071556,0.07849189506567408,0.13791144493879737,0.4381185492768357,0.010000000000000002,0.0,0.0,0.0,0.4652617404515607,0.005689629942483773,1,0.0,0.3285889119576267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.08991130990559731,0,On,0.04319824599499695,0.0,On,0.37212531557561596,0.27909398668171187,Off,0.6779999999999985,False,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.0712224348814,0,82.60362262109544,50,44.44,0.0,49.99973860794718,0.0,0.0,129.0712224348814,129.06816034546162,49.99973860794719,49.999738607947194,49.99973860794718,9.920878641202478,On,8181.286513897699,0.0,19,13.63547752316283,0.0,0.0,0.6,1,0.3344439783284051,8181.286513897699,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1420.3842994919912,19.077956582995505,3.7989504912176355,2.0771052747061693,3.3,6.529479366362011,0,2.0,4327.908149584565,1048.4421071137062,81.00488842068852,501.059915163653 +2018-01-03 09:30:00,0.5860299942156331,0.33150557862429336,0.4549689117218392,0.0976716657026055,0.05525092977071556,0.07582815195363986,0.13791144493879737,0.4381185492768357,0.010000000000000002,0.0,0.0,0.0,0.4155717705919173,0.0393971411299219,1,0.0,0.3285889119576267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.08991130990559731,0,On,0.04319824599499695,0.0,On,0.37212531557561596,0.27909398668171187,Off,0.6779999999999985,False,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,893.7377680944086,0,82.59640734164095,50,44.44,0.27421995578013775,49.999741661353,766.2157296778252,0.0,893.7377680944086,129.056886471314,49.999741661353,49.999741661353006,49.999741661353,9.920878641202478,On,7307.524833227099,0.0,19,12.1792080553785,0.0,0.0,0.6,1,0.2987253499564514,7307.524833227099,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1421.9191712438585,19.077956582995505,4.001786097475392,2.468713945440438,5.6,6.529479366362011,0,2.0,4202.609827912791,1450.923202396582,300.63476299121794,953.8270747179089 +2018-01-03 09:40:00,0.5860299942156331,0.33150557862429336,0.44654215344296133,0.0976716657026055,0.05525092977071556,0.07442369224049356,0.13791144493879737,0.4381185492768357,0.010000000000000002,0.0,0.0,0.0,0.40707763522411483,0.0394645182188465,1,0.0,0.3285889119576267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.08991130990559731,0,On,0.04319824599499695,0.0,On,0.37212531557561596,0.27909398668171187,Off,0.6779999999999985,False,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,895.2662406522926,0,82.59429052371699,50,44.44,0.27423042784433826,49.99821116588635,766.215729677825,0.0,895.2662406522926,129.0535789433078,49.99821116588635,49.99821116588636,49.99821116588635,9.920878641202478,On,7158.161691816895,0.0,19,11.930269486361492,0.0,0.0,0.5999999999999999,1,0.2926195127945332,7158.161691816895,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1421.7716106714734,19.077956582995505,4.360767757820825,3.1860391385961364,5.6,6.529479366362011,0,2.0,4084.7655583656633,1418.3418293843008,228.93554585658543,926.2679469548935 +2018-01-03 09:50:00,0.5860299942156331,0.33150557862429336,0.4047816560560696,0.0976716657026055,0.05525092977071556,0.06746360934267825,0.13791144493879737,0.4381185492768357,0.010000000000000002,0.0,0.0,0.0,0.39902464876656524,0.005757007289504344,1,0.0,0.3285889119576267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.08991130990559731,0,On,0.04319824599499695,0.0,On,0.37212531557561596,0.27909398668171187,Off,0.6779999999999985,False,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,130.5997008477618,0,82.6015057950616,50,44.44,0.0,49.99820810661779,0.0,0.0,130.5997008477618,129.06485280478375,49.99820810661779,49.998208106617795,49.99820810661779,9.920878641202478,On,7016.555830484289,0.0,19,11.694259717473814,0.0,0.0,0.6,1,0.2868307865913563,7016.555830484289,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1422.4640063494162,19.0779565829955,4.6661272687014534,3.854264321674897,5.6,6.529479366362011,0,2.0,3974.0958055801393,1387.8327050504715,170.16266162810288,898.9721191881234 +2018-01-03 10:00:00,0.4773775643194945,0.292939347737565,0.43507236310550546,0.07956292738658241,0.0488232246229275,0.07251206051758424,0.08068065622496325,0.3866969080945313,0.010000000000000002,0.0,0.0,0.0,0.3956750872967139,0.03939727580879156,1,0.0,0.29002268107089835,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,0.6779999999999985,False,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,893.7408233311317,0,82.59640311037161,50,44.44,0.2742199767117636,49.99973860207272,766.2157296778249,0.0,893.7408233311317,129.05687985995564,49.99973860207272,49.999738602072725,49.99973860207272,9.920878641202478,On,6957.656248382031,0.0,19,11.596093747303385,0.0,0.0,0.6,1,0.28442302217353554,6957.656248382031,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1422.385640883697,19.077956582995505,4.92629962132356,4.496106233116158,5.6,6.529479366362011,0,1.0,3757.9585232720374,1374.2892850616493,111.72056426536605,872.029388642631 +2018-01-03 10:10:00,0.4773775643194945,0.292939347737565,0.4329525092536583,0.07956292738658241,0.0488232246229275,0.07215875154227638,0.08068065622496325,0.3866969080945313,0.010000000000000002,0.0,0.0,0.0,0.393485253511186,0.03946725574247228,1,0.0,0.29002268107089835,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,0.6779999999999985,False,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,895.3283423222422,0,82.63411144446385,50,44.44,0.27423042788618124,49.99821115977123,766.215729677825,0.0,895.3283423222422,129.11579913197477,49.99821115977123,49.99821115977124,49.99821115977123,9.920878641202478,On,6919.149627141632,0.0,19,11.531916045236054,0.0,0.0,0.6,1,0.28284890451150924,6919.149627141632,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1422.3100030606222,19.063049983581358,5.15380053759652,5.081733333326406,5.6,6.529479366362011,0,1.0,3734.039474337507,1365.0648434788313,57.07214606362419,845.6540794816774 +2018-01-03 10:20:00,0.5799404384409659,0.33029838532488076,0.38644661152205,0.09665673974016098,0.05504973088748012,0.06440776858700833,0.13343148023001358,0.4365089582109523,0.010000000000000002,0.0,0.0,0.0,0.38068686150615977,0.005759750015890235,1,0.0,0.3273817186582141,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.08758027594508183,0,On,0.04207829146920073,0.0,On,0.37212531557561596,0.27909398668171187,Off,0.6779999999999985,False,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,130.66192054412343,0,82.64132655235134,50,44.44,0.0,49.998207982320054,0.0,0.0,130.66192054412343,129.12707273804898,49.998207982320054,49.998207982320054,49.998207982320054,9.920878641202478,On,6694.099289220715,0.0,19,11.156832148701193,0.0,0.0,0.5999999999999999,1,0.2736490396478883,6694.099289220715,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1421.848823974025,19.063049983581358,5.353927992905001,5.598809160696664,5.6,6.529479366362011,0,2.0,3721.584295323188,1318.7159203037518,-321.23760104970694,820.1495936379164 +2018-01-03 10:30:00,0.4773775643194945,0.292939347737565,0.33018452973168255,0.07956292738658241,0.0488232246229275,0.055030754955280425,0.08068065622496325,0.3866969080945313,0.010000000000000002,0.0,0.0,0.0,0.32449473554900077,0.0056897941826818035,1,0.0,0.29002268107089835,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,0.6779999999999985,False,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.07494828055977,0,82.60592824985586,50,44.44,0.0,49.99973847753875,0.0,0.0,129.07494828055977,129.07176289039978,49.99973847753875,49.999738477538756,49.99973847753875,9.920878641202478,On,5706.00196182311,0.0,19,9.510003269705184,0.0,0.0,0.6,1,0.2332564680652703,5706.00196182311,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1421.5906248724314,19.07709342450744,5.513639277413355,5.600000861819108,6.1,6.529479366362011,0,1.0,3391.782203077605,1120.097187941512,-45.009852100570015,1300.274840446224 +2018-01-03 10:40:00,0.4773775643194945,0.292939347737565,0.3246380888540088,0.07956292738658241,0.0488232246229275,0.054106348142334795,0.08068065622496325,0.3866969080945313,0.010000000000000002,0.0,0.0,0.0,0.31894585574906814,0.005692233104940672,1,0.0,0.29002268107089835,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,0.6779999999999985,False,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.13027607525964,0,82.64344776313052,50,44.44,0.0,49.99974165389564,0.0,0.0,129.13027607525964,129.13038712989143,49.99974165389565,49.999741653895654,49.99974165389564,9.920878641202478,On,5608.4289797198135,0.0,19,9.347381632866357,0.0,0.0,0.5999999999999999,1,0.2292677682126788,5608.4289797198135,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1421.7744477181886,19.063049983581354,5.5733078996948695,6.100000731862792,6.1,6.529479366362011,0,1.0,3320.131516554484,1100.4967106929842,23.586637311629907,1254.7824616394441 +2018-01-03 10:50:00,0.4773775643194945,0.292939347737565,0.3145924365026741,0.07956292738658241,0.0488232246229275,0.05243207275044568,0.08068065622496325,0.3866969080945313,0.010000000000000002,0.0,0.0,0.0,0.30890019852263306,0.005692237980041032,1,0.0,0.29002268107089835,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,Off,0.6779999999999985,False,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.13038666859686,0,82.64344760996929,50,44.44,0.0,49.99974154315595,0.0,0.0,129.13038666859686,129.130386890577,49.99974154315595,49.99974154315595,49.99974154315595,9.920878641202478,On,5431.7834642082535,0.0,19,9.052972440347089,0.0,0.0,0.6,1,0.22204665098848658,5431.7834642082535,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1422.9709348507918,19.063049983581354,5.62505098117607,6.765637173646037,6.1,6.529479366362011,0,1.0,3180.4655305636043,1064.8985888378209,11.100350755975242,1213.2200279045205 +2018-01-03 11:00:00,0.5801632221748958,0.33469356621750623,0.3001934965030032,0.09669387036248263,0.05578226103625104,0.0500322494171672,0.12779402277377633,0.4423691994011195,0.010000000000000002,0.0,0.0,0.0,0.2945012585132179,0.005692237989785272,1,0.0,0.33177689955083955,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,Off,0.6779999999999985,False,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.1303868896483,0,82.64344760966222,50,44.44,0.0,49.9997415429346,0.0,0.0,129.1303868896483,129.1303868900972,49.9997415429346,49.9997415429346,49.9997415429346,9.920878641202478,On,5178.588663365361,0.0,19,8.630981105608935,0.0,0.0,0.6,1,0.21169626461073063,5178.588663365361,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1423.2434020227959,19.063049983581354,5.661705120078257,7.440947154725724,6.1,6.529479366362011,0,2.0,3144.858616520843,1014.0606553585147,-11.815651798246506,1176.4708053240308 +2018-01-03 11:10:00,0.6336324086991358,0.33469356621750623,0.33846258788033523,0.10560540144985597,0.05578226103625104,0.0564104313133892,0.12779402277377633,0.49583838592535945,0.010000000000000002,0.0,0.0,0.053469186524239945,0.27930373724297114,0.005689664113124168,1,0.0,0.33177689955083955,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,On,0.053469186524239945,0,0.053469186524239945,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,Off,0.6779999999999985,False,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.07199760767327,0,82.60600346111312,50,44.44,0.0,49.999741542934146,0.0,0.0,129.07199760767327,129.07188040798925,49.99974154293415,49.99974154293416,49.999741542934146,9.920878641202478,On,4911.351396677003,0.0,19,8.18558566112834,0.0,0.0,0.6,1,0.20077183426874973,4911.351396677003,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1423.4720220282752,19.0770668569679,5.677577498321476,8.083702543314008,6.1,6.529479366362011,0,2.0,3964.204784792786,960.5787181982357,-41.137255847502736,1145.190591309225 +2018-01-03 11:20:00,0.6469997053301958,0.33469356621750623,0.28319075051921233,0.1078332842216993,0.05578226103625104,0.04719845841986872,0.12779402277377633,0.5092056825564194,0.010000000000000002,0.0,0.0,0.06683648315529993,0.2106915246285028,0.005662742735409619,1,0.0,0.33177689955083955,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,On,0.06683648315529993,0,0.06683648315529993,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,Off,0.6779999999999985,False,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,128.46127684615197,0,82.21443263997475,50,44.44,0.0,49.99974165980148,0.0,0.0,128.46127684615197,128.46005099996054,49.99974165980148,49.99974165980148,49.99974165980148,9.920878641202478,On,3704.855953474161,0.0,19,6.174759922456936,0.0,0.0,0.6,1,0.15145133495920843,3704.855953474161,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.0970802878103,19.223647860956724,5.673434358588248,8.670932498511021,6.1,6.529479366362011,0,2.0,3220.4280494561444,719.4125987005456,-72.97417263939104,1119.7274844467697 +2018-01-03 11:30:00,0.6469997053301958,0.33469356621750623,0.3122530552205126,0.1078332842216993,0.05578226103625104,0.05204217587008543,0.12779402277377633,0.5092056825564194,0.010000000000000002,0.0,0.0,0.06683648315529993,0.23976061220047662,0.0056559598647360895,1,0.0,0.33177689955083955,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,On,0.06683648315529993,0,0.06683648315529993,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,Off,0.6779999999999985,False,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,128.3074050797453,0,82.11654158493313,50,44.44,0.0,49.99974288217136,0.0,0.0,128.3074050797453,128.30709622645801,49.999742882171354,49.99974288217136,49.99974288217136,9.920878641202478,On,4216.014541096435,0.0,19,7.026690901827392,0.0,0.0,0.6,1,0.17234705977103595,4216.014541096435,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1427.196890393959,19.26029311195393,5.570711723495558,9.194533962091516,6.7,6.529479366362011,0,2.0,2836.166434079685,822.8448692293177,-327.496166895671,1386.8936549566463 +2018-01-03 11:40:00,0.6469997053301958,0.33469356621750623,0.30008539371832277,0.1078332842216993,0.05578226103625104,0.05001423228638713,0.12779402277377633,0.5092056825564194,0.010000000000000002,0.0,0.0,0.06683648315529993,0.22759296425639447,0.005655946306628344,1,0.0,0.33177689955083955,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,On,0.06683648315529993,0,0.06683648315529993,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,Off,0.6779999999999985,False,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,128.3070975093834,0,82.11654201089787,50,44.44,0.0,49.99974319014879,0.0,0.0,128.3070975093834,128.30709689202791,49.999743190148784,49.99974319014879,49.99974319014879,9.920878641202478,On,4002.055374941576,0.0,19,6.6700922915692935,0.0,0.0,0.6,1,0.16360059250001402,4002.055374941576,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1428.724252017316,19.260293111953935,5.5308755671488665,9.37578462987082,6.7,6.529479366362011,0,2.0,2673.898599844374,780.1814398778976,-345.0927428928989,1369.747288052186 +2018-01-03 11:50:00,0.6336324086991358,0.33469356621750623,0.27565278628786516,0.10560540144985597,0.05578226103625104,0.04594213104797752,0.12779402277377633,0.49583838592535945,0.010000000000000002,0.0,0.0,0.053469186524239945,0.2165276534840976,0.0056559462795275775,1,0.0,0.33177689955083955,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,On,0.053469186524239945,0,0.053469186524239945,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,Off,0.6779999999999985,False,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,128.30709689459314,0,82.11654201174609,50,44.44,0.0,49.99974319076439,0.0,0.0,128.30709689459314,128.30709689335328,49.99974319076439,49.9997431907644,49.99974319076439,9.920878641202478,On,3807.4799995719686,0.0,19,6.345799999286615,0.0,0.0,0.6,1,0.1556465179772833,3807.4799995719686,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1428.356262109008,19.26029311195393,5.481914489493812,9.658484785602685,6.7,6.529479366362011,0,2.0,2268.3172678205997,741.5872325826783,-377.61294213213347,1358.1803406696463 +2018-01-03 12:00:00,1.6680244781135987,0.34106361561969417,0.2601895502070706,0.27800407968559976,0.05684393593661569,0.04336492503451176,0.12382854617622857,0.45086259860403677,0.010000000000000002,0.0,1.0833333333333333,0.0,0.22081922926168715,0.03937032094538345,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,0.0,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,893.1293429350746,0,82.20721525484085,50,44.44,0.2742199453158826,49.99974319076563,766.2157296778252,0.0,893.1293429350746,128.44877383568883,49.99974319076563,49.999743190765635,49.99974319076563,9.920878641202478,On,3882.9442124653106,0.0,19,6.471573687442184,0.0,0.0,0.6,1,0.15873143029988657,3882.9442124653106,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1428.7190148855075,19.223647860956724,5.426708657032711,9.982053186997332,6.7,6.529479366362011,0,2.0,1318.9727944473789,757.0695699193842,-420.6508191723804,1350.0065692608464 +2018-01-03 12:10:00,1.6680244781135987,0.34106361561969417,0.3762283995314645,0.27800407968559976,0.05684393593661569,0.06270473325524407,0.12382854617622857,0.45086259860403677,0.010000000000000002,0.0,1.0833333333333333,0.0,0.26952693590446797,0.10670146362699648,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,0.0033333333333333327,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,2420.559594411047,0,82.58069348055928,50,44.44,0.8212403039344279,49.99821238366154,2294.5931375536984,0.0,2420.559594411047,129.03233356337387,49.99821238366154,49.998212383661546,49.99821238366154,9.920878641202478,On,4739.43351479374,0.0,19,7.899055857989566,0.0,0.0,0.6,1,0.1937439786539683,4739.43351479374,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1428.3169160193368,19.077656331963556,5.388707666049503,10.294678779772486,6.7,6.529479366362011,0,2.0,2062.52919837659,928.5201444687273,-465.3000581483683,1352.674742868741 +2018-01-03 12:20:00,1.6680244781135987,0.34106361561969417,0.40238656315912125,0.27800407968559976,0.05684393593661569,0.06706442719318687,0.12382854617622857,0.45086259860403677,0.010000000000000002,0.0,1.0833333333333333,0.0,0.26166452008031277,0.14072204307880848,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,0.006666666666666665,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,3192.328201891253,0,82.56920741129143,50,44.44,1.097005359896833,49.99515520130045,3064.8629187113,0.0,3192.328201891253,129.01438658014285,49.99515520130045,49.995155201300456,49.99515520130045,9.920878641202478,On,4601.178698297575,0.0,19,7.668631163829292,0.0,0.0,0.5999999999999999,1,0.18809224029063204,4601.178698297575,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.470803734937,19.077656331963556,5.43181664514297,10.572909826662137,6.7,6.529479366362011,0,2.0,1959.5944178779137,900.4445659467747,-506.7626326933872,1361.7224703461434 +2018-01-03 12:30:00,1.6680244781135987,0.34106361561969417,0.42009270078718874,0.27800407968559976,0.05684393593661569,0.07001545013119811,0.12382854617622857,0.45086259860403677,0.010000000000000002,0.0,1.0833333333333333,0.0,0.313188647774198,0.10690405301299073,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,0.009999999999999998,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,2425.15540467761,0,82.57432863383728,50,44.44,0.8213346139458496,49.993610490914264,2294.5931375536984,0.0,2425.15540467761,129.02238849037076,49.993610490914264,49.993610490914264,49.993610490914264,9.920878641202478,On,5507.192699434238,0.0,19,9.178654499057064,0.0,0.0,0.6,1,0.22512931587118432,5507.192699434238,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.7665840241916,19.077656331963556,5.4589149495758305,10.809930943331558,5.6,6.529479366362011,0,2.0,1873.0539669501413,1081.0704390271262,-871.8366391023017,1299.1043669516275 +2018-01-03 12:40:00,1.6680244781135987,0.34106361561969417,0.31175394620646757,0.27800407968559976,0.05684393593661569,0.05195899103441126,0.12382854617622857,0.45086259860403677,0.010000000000000002,0.0,1.0833333333333333,0.0,0.3058620806076585,0.005891865598809047,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,0.01333333333333333,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,133.65900822160143,0,82.59807269915977,50,44.44,0.0,49.99514600269379,0.0,0.0,133.65900822160143,129.05948859243713,49.99514600269379,49.995146002693794,49.99514600269379,9.920878641202478,On,5378.360388626563,0.0,19,8.963933981044272,0.0,0.0,0.5999999999999999,1,0.21986276146185424,5378.360388626563,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.5947572718471,19.077656331963553,5.562422610264271,10.547805681012788,5.6,6.529479366362011,0,2.0,1780.3670048806543,1054.236121922662,-820.643175994667,1316.628726585562 +2018-01-03 12:50:00,1.6680244781135987,0.34106361561969417,0.3042500291010031,0.27800407968559976,0.05684393593661569,0.05070833818350052,0.12382854617622857,0.45086259860403677,0.010000000000000002,0.0,1.0833333333333333,0.0,0.29856007420085257,0.005689954900150581,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,0.016666666666666663,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.07859421190707,0,82.60441622324088,50,44.44,0.0,49.9997324788075,0.0,0.0,129.07859421190707,129.06940034881387,49.9997324788075,49.9997324788075,49.9997324788075,9.920878641202478,On,5249.959960767578,0.0,19,8.749933267945964,0.0,0.0,0.5999999999999999,1,0.21461386205718475,5249.959960767578,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.1531767476715,19.077656331963553,5.642188994166891,10.416226187808372,5.6,6.529479366362011,0,2.0,1689.2593900944926,1027.877867830412,-798.8945772041817,1341.186257798365 +2018-01-03 13:00:00,1.666866985366145,0.34106361561969417,0.3307343521878606,0.2778111642276908,0.05684393593661569,0.0551223920313101,0.1226710534287751,0.45086259860403677,0.010000000000000002,0.0,1.0833333333333333,0.0,0.2913371552741871,0.03939719691367353,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,0.019999999999999997,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,893.7390335681013,0,82.59720940055159,50,44.44,0.27421995588108994,49.99974164659824,766.2157296778252,0.0,893.7390335681013,129.05813968836185,49.99974164659824,49.999741646598245,49.99974164659824,9.920878641202478,On,5122.9502282493795,0.0,19,8.538250380415633,0.0,0.0,0.6,1,0.2094218130857112,5122.9502282493795,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.2804632313257,19.077656331963553,5.702619005676773,10.328109695796854,5.6,6.529479366362011,0,2.0,1599.474572944574,1002.0792382500308,-785.3862320830649,1373.1995114259173 +2018-01-03 13:10:00,1.666866985366145,0.34106361561969417,0.2899891246657532,0.2778111642276908,0.05684393593661569,0.048331520777625536,0.1226710534287751,0.45086259860403677,0.010000000000000002,0.0,1.0833333333333333,0.0,0.2842321666816244,0.005756957984128865,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,0.02333333333333333,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,130.5985823382717,0,82.60275038653843,50,44.44,0.0,49.99821116335348,0.0,0.0,130.5985823382717,129.0667974789663,49.99821116335348,49.99821116335348,49.99821116335348,9.920878641202478,On,4998.014214174133,0.0,19,8.33002369029022,0.0,0.0,0.6,1,0.2043145359462491,4998.014214174133,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.400753755727,19.077492264217597,5.747066474915975,10.261341741088152,5.6,6.529479366362011,0,2.0,1513.890566401788,976.822364708865,-775.5013038427664,1412.5228336163668 +2018-01-03 13:20:00,1.666866985366145,0.34106361561969417,0.2827481904680502,0.2778111642276908,0.05684393593661569,0.0471246984113417,0.1226710534287751,0.45086259860403677,0.010000000000000002,0.0,1.0833333333333333,0.0,0.2770584751040365,0.005689715364013754,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,0.026666666666666665,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.07316025182354,0,82.60486297979787,50,44.44,0.0,49.99973860431144,0.0,0.0,129.07316025182354,129.07009840593417,49.99973860431144,49.999738604311446,49.99973860431144,9.920878641202478,On,4871.8701084894055,0.0,19,8.11978351414901,0.0,0.0,0.6,1,0.19915787305756855,4871.8701084894055,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.5460562255762,19.077492264217597,5.7781668187121955,10.207097132766469,5.6,6.529479366362011,0,2.0,1428.5314928339167,951.4181067701553,-767.739786200717,1458.5448932330123 +2018-01-03 13:30:00,1.666866985366145,0.34106361561969417,0.34971377007208704,0.2778111642276908,0.05684393593661569,0.05828562834534784,0.1226710534287751,0.45086259860403677,0.010000000000000002,0.0,1.0833333333333333,0.0,0.3440241891176404,0.005689580954446688,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,0.03,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.07011112432252,0,82.60486720260322,50,44.44,0.0,49.99974165747442,0.0,0.0,129.07011112432252,129.07010500406753,49.99974165747442,49.99974165747442,49.99974165747442,9.920878641202478,On,6049.413081228353,0.0,19,10.08235513538059,0.0,0.0,0.5999999999999999,1,0.24729482019741966,6049.413081228353,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.3327628784425,19.077492264217597,5.797770875262001,10.159769245165238,4.6,6.529479366362011,0,2.0,1361.765910072088,-678.7218739790601,-1136.8552884224187,1382.556207168751 +2018-01-03 13:40:00,1.666866985366145,0.34106361561969417,0.34348422904061443,0.2778111642276908,0.05684393593661569,0.05724737150676907,0.1226710534287751,0.45086259860403677,0.010000000000000002,0.0,1.0833333333333333,0.0,0.33779464835483614,0.00568958068577829,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,0.03333333333333333,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.07010502948702,0,82.604867211043,50,44.44,0.0,49.99974166357731,0.0,0.0,129.07010502948702,129.0701050172547,49.99974166357731,49.99974166357732,49.99974166357731,9.920878641202478,On,5939.871175244334,0.0,19,9.89978529207389,0.0,0.0,0.6,1,0.24281684099833675,5939.871175244334,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.4681480673041,19.077492264217597,5.118915208638653,9.59191792571905,4.6,6.529479366362011,0,2.0,1288.9666252829802,649.9762795783992,-1011.1353720094985,1434.903259856237 +2018-01-03 13:50:00,1.666866985366145,0.34106361561969417,0.33697605364454364,0.2778111642276908,0.05684393593661569,0.05616267560742394,0.1226710534287751,0.45086259860403677,0.010000000000000002,0.0,1.0833333333333333,0.0,0.33128647295930225,0.005689580685241375,1,0.0,0.3381469489530275,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,0.03666666666666667,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.07010501730693,0,82.60486721106123,50,44.44,0.0,49.999741663589504,0.0,0.0,129.07010501730693,129.07010501728317,49.99974166358951,49.99974166358952,49.999741663589504,9.920878641202478,On,5825.429683575828,0.0,19,9.70904947262638,0.0,0.0,0.6,1,0.23813857093721189,5825.429683575828,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.2560014496873,19.077492264217597,5.109518766333407,9.253651513840637,4.6,6.529479366362011,0,2.0,1214.4066588515725,654.037815497345,-941.6760788781887,1490.1841227769314 +2018-01-03 14:00:00,1.6635647617157443,0.3371079528163313,0.3305368653915934,0.2772607936192907,0.05618465880272189,0.05508947756526556,0.12464304684952465,0.4455883815328863,0.010000000000000002,0.0,1.0833333333333333,0.0,0.32484728470635293,0.0056895806852404335,1,0.0,0.33419128614966465,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,0.04,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.07010501728556,0,82.60486721105973,50,44.44,0.0,49.99974166358953,0.0,0.0,129.07010501728556,129.0701050172808,49.99974166358953,49.99974166358954,49.99974166358953,9.920878641202478,On,5712.201280219099,0.0,19,9.520335467031831,0.0,0.0,0.6000000000000001,1,0.2335098908862114,5712.201280219099,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.0557854622177,19.077492264217597,5.099702040358723,9.007445184627333,4.6,6.529479366362011,0,2.0,1137.4931785863428,651.2826658265711,-892.663007091516,1547.1170418842428 +2018-01-03 14:10:00,1.6635647617157443,0.3371079528163313,0.3243008697004545,0.2772607936192907,0.05618465880272189,0.05405014495007575,0.12464304684952465,0.4455883815328863,0.010000000000000002,0.0,1.0833333333333333,0.0,0.3186112126742234,0.005689657026231136,1,0.0,0.33419128614966465,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,0.043333333333333335,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.07183683905455,0,82.60597780172519,50,44.44,0.0,49.99974166358954,0.0,0.0,129.07183683905455,129.0718403151956,49.99974166358954,49.999741663589546,49.99974166358954,9.920878641202478,On,5602.544526653591,0.0,19,9.337574211089319,0.0,0.0,0.6,1,0.22902721681646365,5602.544526653591,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.8672135172867,19.077076524794116,5.089989372408505,8.811748935326413,4.6,6.529479366362011,0,2.0,1067.247583181315,645.9305798073767,-854.2439041849884,1604.4111129085588 +2018-01-03 14:20:00,1.6635647617157443,0.3371079528163313,0.31806138331430645,0.2772607936192907,0.05618465880272189,0.05301023055238441,0.12464304684952465,0.4455883815328863,0.010000000000000002,0.0,1.0833333333333333,0.0,0.31237172613547903,0.005689657178827433,1,0.0,0.33419128614966465,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,0.04666666666666667,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.0718403007543,0,82.60597779693218,50,44.44,0.0,49.999741660123256,0.0,0.0,129.0718403007543,129.07184030770654,49.999741660123256,49.99974166012326,49.999741660123256,9.920878641202478,On,5492.827731493233,0.0,19,9.154712885822056,0.0,0.0,0.6,1,0.2245420882977961,5492.827731493233,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.6802538133777,19.077076524794112,5.080583078543129,8.64835555008504,4.6,6.529479366362011,0,2.0,995.7710633790184,638.5070914204821,-822.5580664937895,1660.806339220973 +2018-01-03 14:30:00,1.6635647617157443,0.3371079528163313,0.2766929201056367,0.2772607936192907,0.05618465880272189,0.046115486684272775,0.12464304684952465,0.4455883815328863,0.010000000000000002,0.0,1.0833333333333333,0.0,0.2710032629265041,0.005689657179132537,1,0.0,0.33419128614966465,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,0.05,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.07184030767567,0,82.60597779692155,50,44.44,0.0,49.99974166011633,0.0,0.0,129.07184030767567,129.0718403076899,49.99974166011632,49.99974166011633,49.99974166011633,9.920878641202478,On,4765.393642836429,0.0,19,7.9423227380607155,0.0,0.0,0.5999999999999999,1,0.19480520643101326,4765.393642836429,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1422.1589621514672,19.077076524794112,5.071171634343944,8.506247409454664,2.3,6.529479366362011,0,2.0,972.0188651792246,-4853.932866948374,-898.4880151771814,1342.105048927775 +2018-01-03 14:40:00,1.6635647617157443,0.3371079528163313,0.27366588505827016,0.2772607936192907,0.05618465880272189,0.045610980843045025,0.12464304684952465,0.4455883815328863,0.010000000000000002,0.0,1.0833333333333333,0.0,0.2679762278791368,0.005689657179133375,1,0.0,0.33419128614966465,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,0.05333333333333334,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.07184030769469,0,82.60597779692156,50,44.44,0.0,49.99974166011631,0.0,0.0,129.07184030769469,129.07184030768994,49.99974166011631,49.999741660116314,49.99974166011631,9.920878641202478,On,4712.165451354176,0.0,19,7.853609085590294,0.0,0.0,0.6,1,0.1926292835992789,4712.165451354176,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1421.9690671964368,19.077076524794112,2.708772752532162,8.212139793837906,2.3,6.529479366362011,0,2.0,938.7080807697394,-150.09806400560456,-860.8272823440159,1381.4707891323185 +2018-01-03 14:50:00,1.6635647617157443,0.3371079528163313,0.33780767673588863,0.2772607936192907,0.05618465880272189,0.056301279455981436,0.12464304684952465,0.4455883815328863,0.010000000000000002,0.0,1.0833333333333333,0.0,0.26470272834136344,0.07310494839452518,1,0.0,0.33419128614966465,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,0.05666666666666667,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,1658.4110303667953,0,82.59153879172402,50,44.44,0.5484399115771983,49.999741660116314,1532.4314593556503,0.0,1658.4110303667953,129.04927936206877,49.999741660116314,49.999741660116314,49.999741660116314,9.920878641202478,On,4654.603362548759,0.0,19,7.7576722709145995,0.0,0.0,0.5999999999999999,1,0.19027619476071123,4654.603362548759,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1421.9122036270032,19.077076524794112,2.70062937502414,7.890415950754931,2.3,6.529479366362011,0,2.0,902.8229716271203,-91.95031673663664,-822.0135196274401,1418.6220050222782 +2018-01-03 15:00:00,1.6831210920520048,0.344251603212907,0.296620177991997,0.28052018200866746,0.057375267202151164,0.0494366963319995,0.13467450999035108,0.45511324872832054,0.010000000000000002,0.0,1.0833333333333333,0.0,0.25708812048994034,0.03953205750205668,1,0.0,0.3413349365462403,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.0895783050540951,0,On,0.043038252491311775,0.0,On,0.3891200150271008,0.2918400112703255,On,0.060000000000000005,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,896.7983926436236,0,82.59452464158458,50,44.44,0.2742409008003896,49.99668065697627,766.2157296778252,0.0,896.7983926436236,129.0539447524759,49.99668065697627,49.99668065697627,49.99668065697627,9.920878641202478,On,4520.706067527242,0.0,19,7.534510112545404,0.0,0.0,0.6,1,0.18480258813926634,4520.706067527242,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1421.8585488639344,19.077076524794112,2.6976487119029997,7.551489273549622,2.3,6.529479366362011,0,3.0,889.8702258054054,-90.09020329657983,-777.126953474332,1452.982033493675 +2018-01-03 15:10:00,1.6831210920520048,0.344251603212907,0.2593636207935034,0.28052018200866746,0.057375267202151164,0.04322727013225056,0.13467450999035108,0.45511324872832054,0.010000000000000002,0.0,1.0833333333333333,0.0,0.2536068056254133,0.005756815168090047,1,0.0,0.3413349365462403,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.0895783050540951,0,On,0.043038252491311775,0.0,On,0.3891200150271008,0.2918400112703255,On,0.06333333333333334,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,130.5953425070525,0,82.59674263149883,50,44.44,0.0,49.99820503998477,0.0,0.0,130.5953425070525,129.0574103617169,49.998205039984775,49.99820503998478,49.99820503998477,9.920878641202478,On,4459.489698598769,0.0,19,7.432482830997948,0.0,0.0,0.6,1,0.18230011546232497,4459.489698598769,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1421.7727324557688,19.07973804181995,2.68713352719241,7.234153936633874,2.3,6.529479366362011,0,3.0,848.198449008647,-71.36581299971704,-732.4916101830382,1483.8937775371428 +2018-01-03 15:20:00,1.6831210920520048,0.344251603212907,0.25734506081027825,0.28052018200866746,0.057375267202151164,0.04289084346837971,0.13467450999035108,0.45511324872832054,0.010000000000000002,0.0,1.0833333333333333,0.0,0.2516557581171837,0.0056893026930945395,1,0.0,0.3413349365462403,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.0895783050540951,0,On,0.043038252491311775,0.0,On,0.3891200150271008,0.2918400112703255,On,0.06666666666666667,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.06379866934017,0,82.59886370291198,50,44.44,0.0,49.99973861079603,0.0,0.0,129.06379866934017,129.06072453579998,49.99973861079603,49.99973861079604,49.99973861079603,9.920878641202478,On,4425.181958934724,0.0,19,7.375303264891206,0.0,0.0,0.6000000000000001,1,0.18089764447916024,4425.181958934724,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1421.830478111529,19.07973804181995,2.6822132730970303,6.95903714359833,2.3,6.529479366362011,0,3.0,827.6577219882847,-63.87724171823311,-692.4672469123896,1510.4342553593362 +2018-01-03 15:30:00,1.6831210920520048,0.344251603212907,0.34910152004659567,0.28052018200866746,0.057375267202151164,0.05818358667443261,0.13467450999035108,0.45511324872832054,0.010000000000000002,0.0,1.0833333333333333,0.0,0.30970470669477784,0.03939681335181781,1,0.0,0.3413349365462403,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.0895783050540951,0,On,0.043038252491311775,0.0,On,0.3891200150271008,0.2918400112703255,On,0.06999999999999999,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,893.7303323347878,0,82.59164844007414,50,44.44,0.2742199556784736,49.99974167621181,766.215729677825,0.0,893.7303323347878,129.04945068761583,49.99974167621181,49.99974167621181,49.99974167621181,9.920878641202478,On,5445.930150442759,0.0,19,9.076550250737933,0.0,0.0,0.6,1,0.22262495539286048,5445.930150442759,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1413.7677100883102,19.079738041819947,2.679396204211758,6.7303787864177975,-0.3,6.529479366362011,0,3.0,884.4681464038385,-5911.180123147425,-999.6554266661117,782.8914649433104 +2018-01-03 15:40:00,1.6831210920520048,0.344251603212907,0.3530050745220398,0.28052018200866746,0.057375267202151164,0.058834179087006624,0.13467450999035108,0.45511324872832054,0.010000000000000002,0.0,1.0833333333333333,0.0,0.31354088408235453,0.03946419043968523,1,0.0,0.3413349365462403,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.0895783050540951,0,On,0.043038252491311775,0.0,On,0.3891200150271008,0.2918400112703255,On,0.07333333333333332,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,895.2588048686895,0,82.58953162217753,50,44.44,0.2742304277425021,49.998211180769175,766.215729677825,0.0,895.2588048686895,129.0461431596524,49.998211180769175,49.998211180769175,49.998211180769175,9.920878641202478,On,5513.386516606544,0.0,19,9.188977527677574,0.0,0.0,0.6,1,0.22538251380681779,5513.386516606544,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1413.76466376831,19.079738041819947,0.16700541163743532,6.03760740358193,-0.3,6.529479366362011,0,3.0,941.1687312719996,-892.1699702080723,-901.609098158929,815.0826214541106 +2018-01-03 15:50:00,1.6831210920520048,0.344251603212907,0.3222868532541882,0.28052018200866746,0.057375267202151164,0.0537144755423647,0.13467450999035108,0.45511324872832054,0.010000000000000002,0.0,1.0833333333333333,0.0,0.31653017374384734,0.005756679510340869,1,0.0,0.3413349365462403,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.0895783050540951,0,On,0.043038252491311775,0.0,On,0.3891200150271008,0.2918400112703255,On,0.07666666666666665,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,130.59226506410872,0,82.59674689352516,50,44.44,0.0,49.99820812150066,0.0,0.0,130.59226506410872,129.05741702113306,49.99820812150066,49.99820812150067,49.99820812150066,9.920878641202478,On,5565.9509831581445,0.0,19,9.276584971930241,0.0,0.0,0.6,1,0.22753130413244252,5565.9509831581445,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1414.1399601120154,19.079738041819947,0.16107828946927133,5.434292266766205,-0.3,6.529479366362011,0,3.0,988.3952079821988,-803.9719368821259,-824.4327960510892,858.7986005342171 +2018-01-03 16:00:00,1.7273066795420005,0.3557845087178703,0.32490739718582873,0.2878844465903334,0.05929741811964505,0.05415123286430479,0.16348289014039546,0.47049045606827167,0.010000000000000002,0.0,1.0833333333333333,0.0,0.3192180947638966,0.00568930242193213,1,0.0,0.35286784205120364,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.003258424704494968,0.0,On,0.10822657673821899,0,On,0.05199788869768151,0.0,On,0.3996684491694017,0.2997513368770512,On,0.07999999999999997,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.06379251792714,0,82.59886371143386,50,44.44,0.0,49.99973861695558,0.0,0.0,129.06379251792714,129.0607245491154,49.99973861695559,49.9997386169556,49.99973861695558,9.920878641202478,On,5613.216103153629,0.0,19,9.355360171922715,0.0,0.0,0.6,1,0.22946346171433465,5613.216103153629,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1414.1356284636997,19.07973804181995,0.16764041176090444,4.879885868497903,-0.3,6.529479366362011,0,3.0,1079.9220824698718,-776.3636530699525,-750.6547477148787,926.5281762318838 +2018-01-03 16:10:00,1.7807758660662405,0.3557845087178703,0.3781794494074603,0.2967959776777067,0.05929741811964505,0.06302990823457671,0.16348289014039546,0.5239596425925116,0.010000000000000002,0.0,1.0833333333333333,0.053469186524239945,0.3190222259851611,0.005688036898059217,1,0.0,0.35286784205120364,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.053469186524239945,0,0.053469186524239945,On,0.003258424704494968,0.0,On,0.10822657673821899,0,On,0.05199788869768151,0.0,On,0.3996684491694017,0.2997513368770512,On,0.0833333333333333,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.03508367131522,0,82.58241666980176,50,44.44,0.0,49.999741676224126,0.0,0.0,129.03508367131522,129.03502604656524,49.99974167622412,49.999741676224126,49.999741676224126,9.920878641202478,On,5609.77189431667,0.0,19,9.349619823861117,0.0,0.0,0.6,1,0.22932266541002852,5609.77189431667,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1414.0970558996216,19.08589642485267,0.17270859008414785,4.400614202654183,-0.3,6.529479366362011,0,3.0,2126.211935545057,-770.9737621306035,-684.5512653372627,1028.9828875248074 +2018-01-03 16:20:00,1.7941431626973003,0.3557845087178703,0.33743364263403836,0.29902386044955004,0.05929741811964505,0.05623894043900639,0.16348289014039546,0.5373269392235716,0.010000000000000002,0.0,1.0833333333333333,0.06683648315529993,0.2649360413431606,0.005661118135577803,1,0.0,0.35286784205120364,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.06683648315529993,0,0.06683648315529993,On,0.003258424704494968,0.0,On,0.10822657673821899,0,On,0.05199788869768151,0.0,On,0.3996684491694017,0.2997513368770512,On,0.08666666666666663,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,128.4244222372618,0,82.19084576649702,50,44.44,0.0,49.99974173368546,0.0,0.0,128.4244222372618,128.4231965101516,49.99974173368546,49.99974173368546,49.99974173368546,9.920878641202478,On,4658.706000589162,0.0,19,7.764510000981937,0.0,0.0,0.6,1,0.1904439070863391,4658.706000589162,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1414.1966122104575,19.232477428841495,0.17283507407862775,4.008731351716674,-0.3,6.529479366362011,0,3.0,1564.9850822561252,-952.6477321706019,-628.452715794673,1032.72982459945 +2018-01-03 16:30:00,1.9255605663307944,0.403691980447487,0.3644784155455427,0.3209267610551324,0.06728199674124782,0.06074640259092379,0.23102366480106737,0.6012035681963939,0.010000000000000002,0.0,1.0833333333333333,0.06683648315529993,0.29198759712011063,0.00565433527013217,1,0.0,0.4007753137808203,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.06683648315529993,0,0.06683648315529993,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,0.08999999999999996,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,128.27055058945183,0,82.09295471129428,50,44.44,0.0,49.9997429559366,0.0,0.0,128.27055058945183,128.2702417363973,49.9997429559366,49.999742955936604,49.9997429559366,9.920878641202478,On,5134.387771119258,0.0,19,8.55731295186543,0.0,0.0,0.6,1,0.20988937003206748,5134.387771119258,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1403.9160025446963,19.269122679838702,0.09139715214596539,3.7071528064795465,-3.0,6.529479366362011,0,4.0,1598.4326037994515,-6981.53705233273,-755.0316431219917,131.28296911123314 +2018-01-03 16:40:00,1.8787750281220845,0.403691980447487,0.31939423792665184,0.31312917135368074,0.06728199674124782,0.053232372987775306,0.23102366480106737,0.554418029987684,0.010000000000000002,0.0,1.0833333333333333,0.020050944946589978,0.2936922754250228,0.005651017555039082,1,0.0,0.4007753137808203,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.020050944946589978,0,0.020050944946589978,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,0.09333333333333328,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,128.19528707546505,0,82.04488704359449,50,44.44,0.0,49.9997432639138,0.0,0.0,128.19528707546505,128.19513600561638,49.9997432639138,49.9997432639138,49.9997432639138,9.920878641202478,On,5164.363289013714,0.0,19,8.607272148356191,0.0,0.0,0.5999999999999999,1,0.21111474350359255,5164.363289013714,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1405.0688398836458,19.2871165295818,-2.568165203053134,3.1913531743236256,-3.0,6.529479366362011,0,4.0,712.8467399819201,-1669.405391685578,-704.7884184002274,169.14697066715917 +2018-01-03 16:50:00,1.8587240831754945,0.403691980447487,0.3612897087580637,0.3097873471959157,0.06728199674124782,0.060214951459677285,0.23102366480106737,0.534367085041094,0.010000000000000002,0.0,1.0833333333333333,0.0,0.3556151461309707,0.0056745626270929906,1,0.0,0.4007753137808203,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,0.09666666666666661,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,128.72941517571698,0,82.38751186187788,50,44.44,0.0,49.99974341455524,0.0,0.0,128.72941517571698,128.7304872841842,49.99974341455524,49.99974341455524,49.99974341455524,9.920878641202478,On,6253.231560272625,0.0,19,10.422052600454375,0.0,0.0,0.6,1,0.2556267448736447,6253.231560272625,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1406.1835960316705,19.158858151091575,-2.5778046705638804,2.6092755406958292,-3.0,6.529479366362011,0,4.0,1211.8236319343678,-1356.1830163963436,-654.7973379190893,42.97276998946588 +2018-01-03 17:00:00,2.435384535709539,0.49894340712438057,0.41117612724697805,0.40589742261825645,0.0831572345207301,0.068529354541163,0.3065813516810294,1.0354698506951765,0.010000000000000002,0.0,1.0833333333333333,0.0,0.3886879632691361,0.022488163977841945,1,0.0,0.4960267404577139,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.4618470507256127,0.0658096404805412,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,On,0.09999999999999994,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,510.1517751203734,0,82.53075053705237,50,44.44,0.13670026750074893,49.99974234548711,381.96307303809806,-0.0,510.1517751203734,128.95429771414433,49.9997423454871,49.99974234548711,49.99974234548711,9.920878641202478,On,6834.792796248029,0.0,19,11.391321327080048,0.0,0.0,0.6,1,0.27940046958928666,6834.792796248029,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1403.943247680663,19.103890274595766,-2.482232594095884,1.9750579498083427,-3.0,6.529479366362011,0,4.0,1938.6586702477116,-1389.7609103133582,-594.9334362116113,42.88291809781586 +2018-01-03 17:10:00,2.8972315864351517,0.5647530476049217,0.4402633605965418,0.48287193107252524,0.09412550793415361,0.07337722676609029,0.3065813516810294,1.4973169014207892,0.010000000000000002,0.0,1.0833333333333333,0.0,0.38655183947350374,0.053711521123038064,1,0.0,0.561836380938255,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.9236941014512254,0.1316192809610824,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,On,0.10333333333333326,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,1218.4644274353434,0,82.42794530848798,50,44.44,0.3904971129947349,49.998978920964234,1091.092496720722,0.0,1218.4644274353434,128.79366454451247,49.998978920964234,49.99897892096424,49.998978920964234,9.920878641202478,On,6797.230625792617,0.0,19,11.328717709654361,0.0,0.0,0.6,1,0.2778649602656103,6797.230625792617,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1402.8641596995178,19.139478003931906,-2.430830746073185,1.351669522787472,-3.0,6.529479366362011,0,4.0,2021.7933213831739,-1477.570966209304,-532.1099979031017,42.7414264372664 +2018-01-03 17:20:00,2.8972315864351517,0.5647530476049217,0.553091503897078,0.48287193107252524,0.09412550793415361,0.09218191731617965,0.3065813516810294,1.4973169014207892,0.010000000000000002,0.0,1.0833333333333333,0.0,0.3904912317934849,0.16260027210359304,1,0.0,0.561836380938255,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.9236941014512254,0.1316192809610824,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,On,0.10666666666666659,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,3688.6433917165,0,82.35021181040734,50,44.44,1.27591736903305,49.99756121894825,3564.929359230223,0.0,3688.6433917165,128.67220595376148,49.99756121894824,49.99756121894825,49.99756121894825,9.920878641202478,On,6866.5019508517835,0.0,19,11.444169918086306,0.0,0.0,0.6,1,0.2806967126431261,6866.5019508517835,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1403.6169326040524,19.159117229686913,-2.4335361579424544,0.7885656454891521,-3.0,6.529479366362011,0,4.0,2058.3890966205645,-1443.9785009110265,-473.3230587694647,42.55184937792367 +2018-01-03 17:30:00,2.620123355999784,0.525267263316597,0.4608213119972056,0.43668722599996396,0.0875445438860995,0.07680355199953426,0.3065813516810294,1.2202086709854214,0.010000000000000002,0.0,1.0833333333333333,0.0,0.45483307506096016,0.005988236936245469,1,0.0,0.5223505966499303,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.6465858710158577,0.09213349667275768,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,On,0.10999999999999992,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,135.84522533173802,0,82.37696342002558,50,44.44,0.0,49.992617106082186,0.0,0.0,135.84522533173802,128.71400534378995,49.992617106082186,49.99261710608219,49.992617106082186,9.920878641202478,On,7997.90608069194,0.0,19,13.3298434678199,0.0,0.0,0.6,1,0.32694754344316584,7997.90608069194,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1385.228143420068,19.159117229686913,-2.4275609982950517,0.301892148958282,-5.8,6.529479366362011,0,4.0,2160.254553654984,-7745.364019115353,-577.6760137392619,0.0 +2018-01-03 17:40:00,1.9735374849839264,0.43313376664383935,0.49353166594699066,0.3289229141639877,0.07218896110730655,0.08225527765783178,0.3065813516810294,0.5736227999695638,0.010000000000000002,0.0,1.0833333333333333,0.0,0.4715964250424364,0.021935240904554294,1,0.0,0.43021709997717267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,On,0.11333333333333324,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,497.60852402968226,0,82.41479457137939,50,44.44,0.13226194712734798,49.99972810304999,369.5615432352868,-0.0,497.60852402968226,128.7731165177803,49.99972810304999,49.999728103049996,49.99972810304999,9.920878641202478,On,8292.677296992879,0.0,19,13.821128828321466,0.0,0.0,0.5999999999999999,1,0.3389975380386273,8292.677296992879,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1385.5257172482682,19.147333694233907,-5.130475676617474,-0.34064179763720537,-5.8,6.529479366362011,0,4.0,2196.4971618243435,-2299.8386209648083,-518.2783408249353,0.0 +2018-01-03 17:50:00,1.9735374849839264,0.43313376664383935,0.5004466341228637,0.3289229141639877,0.07218896110730655,0.08340777235381061,0.3065813516810294,0.5736227999695638,0.010000000000000002,0.0,1.0833333333333333,0.0,0.4947323563637157,0.0057142777591479834,1,0.0,0.43021709997717267,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,On,0.11666666666666657,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.630366677892,0,82.49072410503034,50,44.44,0.0,49.9990040265335,0.0,0.0,129.630366677892,128.8917564141099,49.9990040265335,49.999004026533505,49.9990040265335,9.920878641202478,On,8699.505682927942,0.0,19,14.499176138213237,0.0,0.0,0.6,1,0.35562833365468555,8699.505682927942,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1385.220894504338,19.119838778176895,-5.117589730084751,-0.9121181464353453,-5.8,6.529479366362011,0,4.0,2521.7112203205525,-2171.98174645882,-470.0775441554812,0.0 +2018-01-03 18:00:00,2.246290534001224,0.4997177942749952,0.5609041237205321,0.3743817556668706,0.08328629904583253,0.09348402062008868,0.49055569719011904,0.6624015034777715,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5072935139864139,0.05361060973411819,1,0.0,0.4968011276083285,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.3256787447691636,0,On,0.15647364660410004,0.0,On,0.581921950183601,0.4364414626377007,On,0.1199999999999999,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,1216.1752176875823,0,82.48147739533015,50,44.44,0.38991218117061155,49.99974054221455,1089.4788353884005,0.0,1216.1752176875823,128.87730843020336,49.99974054221455,49.99974054221455,49.99974054221455,9.920878641202478,On,8920.3844282075,0.0,19,14.867307380345832,0.0,0.0,0.6000000000000001,1,0.3646576673877109,8920.3844282075,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1384.7066987993744,19.119838778176895,-5.080388325179717,-1.4341542234823237,-5.8,6.529479366362011,0,4.0,2953.2837305986677,-2165.5929187512074,-426.2586505737081,0.0 +2018-01-03 18:10:00,2.246290534001224,0.4997177942749952,0.5305399321847295,0.3743817556668706,0.08328629904583253,0.08842332203078825,0.49055569719011904,0.6624015034777715,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5048389874539904,0.025700944730739084,1,0.0,0.4968011276083285,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.3256787447691636,0,On,0.15647364660410004,0.0,On,0.581921950183601,0.4364414626377007,On,0.12333333333333323,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,583.034817318838,0,82.38345614155882,50,44.44,0.162146637641581,49.99756580084759,453.03981993245264,-0.0,583.034817318838,128.72415022118565,49.99756580084759,49.997565800847596,49.99756580084759,9.920878641202478,On,8877.223379120956,0.0,19,14.795372298534925,0.0,0.0,0.6000000000000001,1,0.36289328070588395,8877.223379120956,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1384.6897582829497,19.157650979596397,-5.060248925610165,-1.9003452235288179,-5.8,6.529479366362011,0,4.0,2891.2868576889323,-2193.08448588359,-387.05599158144435,0.0 +2018-01-03 18:20:00,2.0545597318875433,0.44170140649234,0.5472430554628434,0.3424266219812572,0.07361690108205667,0.09120717591047389,0.3761800787866455,0.5850463197675647,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5214154169389311,0.02582763852391219,1,0.0,0.43878473982567334,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.24842161922065034,0,On,0.11935515374913971,0.0,On,0.5045667664733943,0.37842507485504556,On,0.12666666666666657,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,585.9089098213509,0,82.38516977318613,50,44.44,0.16362607776604796,49.99883304408978,457.18785096441513,-0.0,585.9089098213509,128.72682777060334,49.99883304408978,49.99883304408978,49.99883304408978,9.920878641202478,On,9168.70773556535,0.0,19,15.281179559275582,0.0,0.0,0.6,1,0.37480891128845284,9168.70773556535,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1385.3318282511984,19.157650979596397,-5.063481761848227,-2.308360312033822,-5.8,6.529479366362011,0,3.0,2860.9098347446134,-2113.7572842419277,-352.8967846987082,0.0 +2018-01-03 18:30:00,2.0545597318875433,0.44170140649234,0.5372031738403605,0.3424266219812572,0.07361690108205667,0.08953386230672675,0.3761800787866455,0.5850463197675647,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5314832095689026,0.005719964271457891,1,0.0,0.43878473982567334,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.24842161922065034,0,On,0.11935515374913971,0.0,On,0.5045667664733943,0.37842507485504556,On,0.1299999999999999,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.75936717575397,0,82.46001806569195,50,44.44,0.0,49.99882729153584,0.0,0.0,129.75936717575397,128.84377822764367,49.99882729153584,49.99882729153585,49.99882729153584,9.920878641202478,On,9345.742485915469,0.0,19,15.576237476525783,0.0,0.0,0.5999999999999999,1,0.3820459400991285,9345.742485915469,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1386.861634118438,19.13124179797796,-5.0383934867279825,-2.661295345618746,-5.6,6.529479366362011,0,3.0,3169.4029824255113,-1650.0553119624876,-256.65739910923537,0.0 +2018-01-03 18:40:00,2.0545597318875433,0.44170140649234,0.6062227531591932,0.3424266219812572,0.07361690108205667,0.10103712552653218,0.3761800787866455,0.5850463197675647,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5430872113702807,0.06313554178891241,1,0.0,0.43878473982567334,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.24842161922065034,0,On,0.11935515374913971,0.0,On,0.5045667664733943,0.37842507485504556,On,0.13333333333333322,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,1432.2515945959883,0,82.44897494414239,50,44.44,0.4674167842697481,49.99974028401746,1306.0394495952596,0.0,1432.2515945959883,128.8265233502225,49.99974028401746,49.99974028401746,49.99974028401746,9.920878641202478,On,9549.790347991384,0.0,19,15.916317246652305,0.0,0.0,0.6,1,0.3903872417570218,9549.790347991384,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1386.2986169561668,19.13124179797796,-4.823060429506291,-2.8726569955884016,-5.6,6.529479366362011,0,3.0,3321.5081580774313,-2027.8062488624364,-242.8400602597592,0.0 +2018-01-03 18:50:00,2.0545597318875433,0.44170140649234,0.6291692191940644,0.3424266219812572,0.07361690108205667,0.10486153653234406,0.3761800787866455,0.5850463197675647,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5542053199813382,0.07496389921272624,1,0.0,0.43878473982567334,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.24842161922065034,0,On,0.11935515374913971,0.0,On,0.5045667664733943,0.37842507485504556,On,0.13666666666666655,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,1700.5819724099595,0,82.44286045277113,50,44.44,0.5627463236628228,49.99713331963446,1572.3035989728846,0.0,1700.5819724099595,128.8169694574549,49.99713331963446,49.99713331963446,49.99713331963446,9.920878641202478,On,9745.294134637179,0.0,19,16.242156891061967,0.0,0.0,0.5999999999999999,1,0.3983792689367345,9745.294134637179,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1385.9966107945695,19.13124179797796,-4.804584584349807,-3.0715346423862786,-5.6,6.529479366362011,0,3.0,3467.230818230073,-2021.447509541048,-229.46959813216955,0.0 +2018-01-03 19:00:00,2.2198999147704033,0.4726903946774679,0.5659342788699836,0.36998331912840055,0.07878173244624465,0.09432237981166393,0.5002016107560014,0.6263649706810684,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5601160973736632,0.005818181496320362,1,0.0,0.4697737280108012,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,On,0.13999999999999987,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,131.98745888036606,0,82.45693232860515,50,44.44,0.0,49.996596250987814,0.0,0.0,131.98745888036606,128.83895676344554,49.996596250987814,49.99659625098782,49.996596250987814,9.920878641202478,On,9849.230820511128,0.0,19,16.41538470085188,0.0,0.0,0.5999999999999999,1,0.4026281115434448,9849.230820511128,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1385.6721446355368,19.13124179797796,-4.7879370212733114,-3.251550877632241,-5.6,6.529479366362011,0,4.0,3768.4009581965784,-2028.1412077370226,-217.45734843522416,0.0 +2018-01-03 19:10:00,2.2198999147704033,0.4726903946774679,0.5668012222946001,0.36998331912840055,0.07878173244624465,0.09446687038243334,0.5002016107560014,0.6263649706810684,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5611254767542656,0.005675745540334502,1,0.0,0.4697737280108012,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,On,0.1433333333333332,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,128.75624997159295,0,82.39984911967892,50,44.44,0.0,49.99973582444711,0.0,0.0,128.75624997159295,128.7497642494983,49.99973582444711,49.999735824447114,49.99973582444711,9.920878641202478,On,9866.980016707474,0.0,19,16.44496669451246,0.0,0.0,0.5999999999999999,1,0.40335368346638795,9866.980016707474,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1385.393775318373,19.154235882086965,-4.7791327777055645,-3.412793491995383,-5.6,6.529479366362011,0,4.0,3763.4418912586334,-2035.8408893237145,-206.86207918824056,0.0 +2018-01-03 19:20:00,2.2198999147704033,0.4726903946774679,0.5761184213459777,0.36998331912840055,0.07878173244624465,0.09601973689099627,0.5002016107560014,0.6263649706810684,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5704429605172622,0.005675460828715462,1,0.0,0.4697737280108012,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,On,0.14666666666666653,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,128.74979119007597,0,82.39985806459778,50,44.44,0.0,49.99974229177671,0.0,0.0,128.74979119007597,128.74977822593402,49.99974229177671,49.99974229177672,49.99974229177671,9.920878641202478,On,10030.821135858343,0.0,19,16.718035226430572,0.0,0.0,0.6,1,0.41005136794541364,10030.821135858343,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1385.6056287958027,19.154235882086965,-4.777632932344483,-3.556973646084621,-5.6,6.529479366362011,0,4.0,3885.559169829661,-1999.6821028171616,-197.5382233483087,0.0 +2018-01-03 19:30:00,2.2198999147704033,0.4726903946774679,0.7534691848398495,0.36998331912840055,0.07878173244624465,0.12557819747330823,0.5002016107560014,0.6263649706810684,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6215238140498202,0.13194537079002933,1,0.0,0.4697737280108012,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,On,0.14999999999999986,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,2993.2263564857235,0,82.37281359655114,50,44.44,1.0272366432584819,49.99974230470409,2870.2684476820104,0.0,2993.2263564857235,128.70752124461114,49.99974230470409,49.9997423047041,49.99974230470409,9.920878641202478,On,10929.040485935784,0.0,19,18.215067476559643,0.0,0.0,0.5999999999999999,1,0.4467698048735364,10929.040485935784,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1372.3207802676886,19.154235882086965,-4.763639857889881,-3.686083809794778,-7.2,6.529479366362011,0,4.0,4018.233702880898,-5571.391490444535,-257.9052321252965,0.0 +2018-01-03 19:40:00,2.2198999147704033,0.4726903946774679,0.6359347132339493,0.36998331912840055,0.07878173244624465,0.10598911887232489,0.5002016107560014,0.6263649706810684,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6300068552548889,0.0059278579790604385,1,0.0,0.4697737280108012,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,On,0.15333333333333318,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,134.47550781197026,0,82.39192838374036,50,44.44,0.0,49.994008997261275,0.0,0.0,134.47550781197026,128.7373880995943,49.994008997261275,49.99400899726128,49.994008997261275,9.920878641202478,On,11078.208544630035,0.0,19,18.463680907716725,0.0,0.0,0.6,1,0.4528676672212838,11078.208544630035,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1372.1168317285806,19.154235882086965,-6.286575870355518,-3.905043768641354,-7.2,6.529479366362011,0,4.0,4129.348313422046,-2505.8325176803323,-244.66299281750065,0.0 +2018-01-03 19:50:00,2.0348944552573944,0.4208272601444883,0.6484822760062047,0.3391490758762324,0.07013787669074804,0.10808037933436744,0.3843469972869657,0.5572141246370956,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6428063112363314,0.005675964769873302,1,0.0,0.4179105934778216,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.2520846725871747,0,On,0.12111508228967661,0.0,On,0.47995375347469205,0.3599653151060189,On,0.1566666666666665,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,128.76122326947925,0,82.39984223203979,50,44.44,0.0,49.99973084456715,0.0,0.0,128.76122326947925,128.74975348756217,49.99973084456715,49.999730844567154,49.99973084456715,9.920878641202478,On,11303.277591795983,0.0,19,18.838795986326637,0.0,0.0,0.6,1,0.4620682969028009,11303.277591795983,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1372.0916505730256,19.154235882086965,-6.280739001589637,-4.117348428600533,-7.2,6.529479366362011,0,3.0,4055.537513038761,-2430.50044767966,-233.72827675634022,0.0 +2018-01-03 20:00:00,1.9515059537584316,0.40116030709604916,0.6663346051600356,0.3252509922930719,0.06686005118267485,0.1110557675266726,0.32718109985258814,0.5309915205725102,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6606544545533106,0.005680150606725002,1,0.0,0.3982436404293825,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.21045906614939816,0,On,0.10111589432902988,0.0,On,0.45534074047598994,0.34150555535699234,On,0.15999999999999984,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,128.8561804257132,0,82.46807745592278,50,44.44,0.0,49.99974228182256,0.0,0.0,128.8561804257132,128.85637102487934,49.99974228182256,49.99974228182257,49.99974228182256,9.920878641202478,On,11617.12410338663,0.0,19,19.361873505644382,0.0,0.0,0.6,1,0.4748980732151894,11617.12410338663,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1372.0676400263787,19.12869857383478,-6.260159623862104,-4.327725406607576,-7.2,6.529479366362011,0,3.0,4228.534403230428,-2386.372368779698,-222.43831591073499,0.0 +2018-01-03 20:10:00,1.9515059537584316,0.40116030709604916,0.6786768234459959,0.3252509922930719,0.06686005118267485,0.11311280390766598,0.32718109985258814,0.5309915205725102,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6729945388767933,0.00568228456920261,1,0.0,0.3982436404293825,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.21045906614939816,0,On,0.10111589432902988,0.0,On,0.45534074047598994,0.34150555535699234,On,0.16333333333333316,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,128.90459010233528,0,82.49899985333714,50,44.44,0.0,49.999742091763906,0.0,0.0,128.90459010233528,128.90468727083928,49.999742091763906,49.99974209176391,49.999742091763906,9.920878641202478,On,11834.115436819902,0.0,19,19.72352572803317,0.0,0.0,0.6,1,0.48376849288487467,11834.115436819902,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1371.5110218707066,19.117122959732846,-6.2325604109284285,-4.527600257197216,-7.2,6.529479366362011,0,3.0,4399.68395694571,-2383.7567751661845,-211.26405258679353,0.0 +2018-01-03 20:20:00,2.371445513759028,0.48410996061070244,0.8014149055914327,0.39524091895983793,0.08068499343511706,0.13356915093190544,0.42232978240375363,0.8557823980219408,0.010000000000000002,0.0,1.0833333333333333,0.11986856377957562,0.6758640529771308,0.005682288834726292,1,0.0,0.48119329394403576,0.0029166666666666685,0,0,Off,0.0,0.0,On,0.2644303931907087,0.03767929032061181,0.11986856377957562,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.2747290024893251,0,On,0.13199464054026844,0.0,On,0.5157012247347119,0.3867759185510338,On,0.1666666666666665,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,128.90468686721482,0,82.4989997193235,50,44.44,0.0,49.99974199487096,0.0,0.0,128.90468686721482,128.90468706144298,49.99974199487096,49.99974199487096,49.99974199487096,9.920878641202478,On,11884.573737963998,0.0,19,19.807622896606663,0.0,0.0,0.6,1,0.485831184974396,11884.573737963998,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1371.1921996181347,19.117122959732846,-6.2136280045702845,-4.711288555820536,-7.2,6.529479366362011,0,4.0,5154.526141279683,-2401.039156673585,-200.79889679659365,0.0 +2018-01-03 20:30:00,2.5477324425528334,0.5092294874911103,0.9265804317388712,0.42462207375880556,0.08487158124851837,0.1544300719564785,0.42232978240375363,1.0320693268157468,0.010000000000000002,0.0,1.0833333333333333,0.19978093963262605,0.6920204161043985,0.03477907600184663,1,0.0,0.5063128208244436,0.0029166666666666685,0,0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.2747290024893251,0,On,0.13199464054026844,0.0,On,0.5157012247347119,0.3867759185510338,On,0.16999999999999982,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,788.9753639679343,0,82.2445017838556,50,44.44,0.2368483212266461,49.99974199467728,661.7932318771019,-0.0,788.9753639679343,128.50703403727437,49.99974199467728,49.99974199467728,49.99974199467728,9.920878641202478,On,12168.671535557372,0.0,19,20.281119225928954,0.0,0.0,0.6,1,0.4974448593641222,12168.671535557372,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1356.283145438002,19.210057685091254,-6.209191400310162,-4.876801090903079,-8.8,6.529479366362011,0,4.0,5048.691992202649,-6074.326269663169,-297.5527660339577,0.0 +2018-01-03 20:40:00,2.5477324425528334,0.5092294874911103,0.9140762981678476,0.42462207375880556,0.08487158124851837,0.15234604969464127,0.42232978240375363,1.0320693268157468,0.010000000000000002,0.0,1.0833333333333333,0.19978093963262605,0.6794678332031668,0.03482752533205473,1,0.0,0.5063128208244436,0.0029166666666666685,0,0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.2747290024893251,0,On,0.13199464054026844,0.0,On,0.5157012247347119,0.3867759185510338,On,0.17333333333333314,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,790.0744537750617,0,82.11535559055017,50,44.44,0.2368483212266461,49.99842084994472,661.7714167713534,-0.0,790.0744537750617,128.30524311023464,49.99842084994472,49.99842084994472,49.99842084994472,9.920878641202478,On,11947.943570466676,0.0,19,19.913239284111125,0.0,0.0,0.6,1,0.4884216893959436,11947.943570466676,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1357.985891934705,19.257718433951773,-7.784828515083447,-5.179332167468932,-8.8,6.529479366362011,0,4.0,4845.253693594856,-2975.8240170011964,-277.38405459835315,0.0 +2018-01-03 20:50:00,2.506563946609208,0.6420809132426517,0.8295150294980845,0.41776065776820126,0.10701348554044195,0.1382525049163474,0.42232978240375363,0.9909008308721214,0.010000000000000002,0.0,1.0833333333333333,0.11986856377957562,0.6851267587670496,0.024519706951459257,1,0.0,0.639164246575985,0.0029166666666666685,0,0,On,0.13511843285018058,0.15797095263194932,On,0.2644303931907087,0.03767929032061181,0.11986856377957562,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.2747290024893251,0,On,0.13199464054026844,0.0,On,0.5157012247347119,0.3867759185510338,On,0.17666666666666647,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,556.2380298828955,0,82.11756029694264,50,44.44,0.15298815007462788,49.998418650094365,427.45998258526555,-0.0,556.2380298828955,128.3086879639729,49.99841865009436,49.998418650094365,49.998418650094365,9.920878641202478,On,12047.451626628806,0.0,19,20.079086044381345,0.0,0.0,0.6,1,0.49248949341699294,12047.451626628806,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1357.6404177170725,19.257718433951773,-7.8109186299146725,-5.453826725215356,-8.8,6.529479366362011,0,4.0,4620.292438176866,-2859.218517272409,-261.4907539742159,0.0 +2018-01-03 21:00:00,2.3243339959955174,0.8238886892678374,0.7632307835131871,0.3873889993325862,0.13731478154463955,0.12720513058553118,0.32514505917500325,0.9058556034871814,0.010000000000000002,0.0,1.0833333333333333,0.0,0.7075233727604664,0.05570741075272064,1,0.0,0.8209720226011707,0.0029166666666666685,0,0,On,0.3377960821254514,0.3949273815798733,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,On,0.1799999999999998,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,1263.741873763562,0,82.22503033924426,50,44.44,0.4068155357709822,49.99888667839865,1136.685374238184,0.0,1263.741873763562,128.47660990506915,49.99888667839864,49.99888667839865,49.99888667839865,9.920878641202478,On,12441.279659519445,0.0,19,20.735466099199076,0.0,0.0,0.6,1,0.5085888457466603,12441.279659519445,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1357.5903201565031,19.2152287893822,-7.801203234099683,-5.7122453754609035,-8.8,6.529479366362011,0,4.0,4380.7614887005675,-2774.7412391546322,-246.38783973221717,0.0 +2018-01-03 21:10:00,1.9865379138700665,0.42896130768796414,0.8519936382079836,0.33108965231167775,0.07149355128132735,0.1419989397013306,0.32514505917500325,0.5680595213617301,0.010000000000000002,0.0,1.0833333333333333,0.0,0.7452699811562749,0.10672365705170869,1,0.0,0.42604464102129747,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,On,0.18333333333333313,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,2421.0630599240203,0,82.42746344192477,50,44.44,0.8212555044923617,49.997470595229004,2294.593137553698,0.0,2421.0630599240203,128.79291162800746,49.997470595229004,49.99747059522901,49.997470595229004,9.920878641202478,On,13105.02608731358,0.0,19,21.841710145522633,0.0,0.0,0.6,1,0.5357222306410343,13105.02608731358,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1356.7675707250569,19.134632531077727,-7.76674640769027,-5.949556418447934,-8.8,6.529479366362011,0,4.0,4850.645392906423,-2694.1743031806636,-232.23934709723176,0.0 +2018-01-03 21:20:00,1.9865379138700665,0.42896130768796414,0.7842157856294388,0.33108965231167775,0.07149355128132735,0.1307026309382398,0.32514505917500325,0.5680595213617301,0.010000000000000002,0.0,1.0833333333333333,0.0,0.7570914395534225,0.027124346076016364,1,0.0,0.42604464102129747,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,On,0.18666666666666645,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,615.3251689774894,0,82.47586530411434,50,44.44,0.17281994730652406,49.995154193604094,482.8321302316167,-0.0,615.3251689774894,128.86853953767866,49.9951541936041,49.99515419360411,49.995154193604094,9.920878641202478,On,13312.897764157931,0.0,19,22.18816294026322,0.0,0.0,0.6,1,0.5442198465682512,13312.897764157931,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1355.1685735718368,19.121704770350366,-7.70942830349212,-6.162402377514065,-8.8,6.529479366362011,0,4.0,5016.202260255043,-2754.703864265168,-219.45503576355395,0.0 +2018-01-03 21:30:00,1.9865379138700665,0.42896130768796414,0.8558504880195135,0.33108965231167775,0.07149355128132735,0.14264174800325224,0.32514505917500325,0.5680595213617301,0.010000000000000002,0.0,1.0833333333333333,0.0,0.7992849614007848,0.05656552661872872,1,0.0,0.42604464102129747,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,On,0.18999999999999978,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,1283.2085288775286,0,82.47452431911036,50,44.44,0.4136158183086024,49.99876841430165,1155.6826682879685,0.0,1283.2085288775286,128.86644424860992,49.99876841430166,49.998768414301665,49.99876841430165,9.920878641202478,On,14054.839903927774,0.0,19,23.424733173212957,0.0,0.0,0.6,1,0.5745498051258202,14054.839903927774,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1343.5730413855947,19.12170477035037,-7.691312030520987,-6.350542811356772,-9.9,6.529479366362011,0,4.0,5112.76233549981,-5197.378328333762,-303.65539205491723,0.0 +2018-01-03 21:40:00,1.9865379138700665,0.42896130768796414,0.9065488866148389,0.33108965231167775,0.07149355128132735,0.15109148110247314,0.32514505917500325,0.5680595213617301,0.010000000000000002,0.0,1.0833333333333333,0.0,0.8054918987779305,0.10105698783690838,1,0.0,0.42604464102129747,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,On,0.1933333333333331,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,2292.5127095353105,0,82.46315884940356,50,44.44,0.7751206350844018,49.99743163232736,2165.6899115447072,0.0,2292.5127095353105,128.84868570219305,49.99743163232737,49.99743163232738,49.99743163232736,9.920878641202478,On,14163.984345950805,0.0,19,23.606640576584677,0.0,0.0,0.5999999999999999,1,0.5790115363389502,14163.984345950805,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1343.3884945332422,19.12170477035037,-8.727638605058932,-6.652427246888155,-9.9,6.529479366362011,0,4.0,5194.291555480156,-3105.0167366544033,-282.1497706378763,0.0 +2018-01-03 21:50:00,1.9865379138700665,0.42896130768796414,0.8381568878795613,0.33108965231167775,0.07149355128132735,0.13969281464659355,0.32514505917500325,0.5680595213617301,0.010000000000000002,0.0,1.0833333333333333,0.0,0.8114615894225135,0.02669529845704788,1,0.0,0.42604464102129747,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,On,0.19666666666666643,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,605.5920753979688,0,82.4763106360253,50,44.44,0.169420210638199,49.995411489715224,473.33683227391873,-0.0,605.5920753979688,128.86923536878953,49.995411489715224,49.99541148971523,49.995411489715224,9.920878641202478,On,14268.956978162658,0.0,19,23.78159496360443,0.0,0.0,0.6,1,0.5833027275437686,14268.956978162658,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1343.4840247494978,19.121704770350366,-8.72300932800259,-6.913652402653041,-9.9,6.529479366362011,0,4.0,5272.745238175169,-3060.010983795856,-265.3749493264233,0.0 +2018-01-03 22:00:00,1.7821731480576508,0.35402643636082015,0.8464000948928087,0.29702885800960843,0.05900440606013669,0.14106668248213478,0.22069345513211272,0.4681463595922048,0.010000000000000002,0.0,1.0833333333333333,0.0,0.8172746795600517,0.02912541533275688,1,0.0,0.3511097696941535,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.13853001822492028,0,On,0.06655729753303233,0.0,On,0.3973243526933348,0.297993264520001,On,0.19999999999999976,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,660.7201169363732,0,82.4804282017111,50,44.44,0.19038525342620358,49.99878789528416,531.9551015512808,-0.0,660.7201169363732,128.8756690651736,49.99878789528416,49.99878789528417,49.99878789528416,9.920878641202478,On,14371.1759052985,0.0,19,23.951959842164168,0.0,0.0,0.6,1,0.5874813496460136,14371.1759052985,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1343.1892511311498,19.12170477035037,-8.713152778865027,-7.148645505873146,-9.9,6.529479366362011,0,4.0,5151.231192057795,-3039.411970523177,-250.39508454770643,0.0 +2018-01-03 22:10:00,1.7821731480576508,0.35402643636082015,0.8575157972194318,0.29702885800960843,0.05900440606013669,0.14291929953657195,0.22069345513211272,0.4681463595922048,0.010000000000000002,0.0,1.0833333333333333,0.0,0.8338130299427946,0.023702767276637202,1,0.0,0.3511097696941535,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.13853001822492028,0,On,0.06655729753303233,0.0,On,0.3973243526933348,0.297993264520001,On,0.2033333333333331,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,537.7054709026525,0,82.55625891445972,50,44.44,0.14618867673797775,49.99867755540054,408.4643998448291,-0.0,537.7054709026525,128.99415455384332,49.99867755540054,49.99867755540055,49.99867755540054,9.920878641202478,On,14661.99066865542,0.0,19,24.4366511144257,0.0,0.0,0.6,1,0.5993696078372531,14661.99066865542,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1342.9071757766492,19.093696680346007,-8.703942923543313,-7.358090060921661,-9.9,6.529479366362011,0,4.0,5391.905886329793,-2985.506002475442,-236.95431111862936,0.0 +2018-01-03 22:20:00,1.7821731480576508,0.35402643636082015,0.9720505559692575,0.29702885800960843,0.05900440606013669,0.16200842599487625,0.22069345513211272,0.4681463595922048,0.010000000000000002,0.0,1.0833333333333333,0.0,0.8395435974572155,0.13250695851204197,1,0.0,0.3511097696941535,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.13853001822492028,0,On,0.06655729753303233,0.0,On,0.3973243526933348,0.297993264520001,On,0.20666666666666642,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,3005.9661681285434,0,82.533293454347,50,44.44,1.0314427775212847,49.99892377168809,2881.962220204483,0.0,3005.9661681285434,128.9582710224172,49.998923771688084,49.99892377168809,49.99892377168809,9.920878641202478,On,14762.758495980335,0.0,19,24.60459749330056,0.0,0.0,0.6,1,0.6034889102233516,14762.758495980335,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1342.1644125507191,19.093696680346007,-8.678856902539243,-7.542437957294364,-9.9,6.529479366362011,0,4.0,5466.821506918338,-3003.6309935025733,-225.09688767134887,0.0 +2018-01-03 22:30:00,1.5786661244915547,0.29161486768553974,0.9670176057890886,0.26311102074859244,0.048602477947589956,0.1611696009648481,0.10040185646639052,0.3849309346918309,0.010000000000000002,0.0,1.0833333333333333,0.0,0.8936622174180162,0.07335538837107237,1,0.0,0.28869820101887306,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.057276834458380506,0,On,0.027518882633849905,0.0,On,0.3141089277929609,0.2355816958447206,On,0.20999999999999974,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,1664.0923478243944,0,82.53917625838993,50,44.44,0.5485187176937683,49.99398349827211,1532.4314593556503,0.0,1664.0923478243944,128.96746290373426,49.99398349827211,49.993983498272115,49.99398349827211,9.920878641202478,On,15714.394741003045,0.0,19,26.19065790167174,0.0,0.0,0.6,1,0.6423909840189889,15714.394741003045,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1325.3180219469016,19.093696680346003,-8.67007580838588,-7.703420882853408,-11.4,6.529479366362011,0,4.0,5356.248883053168,-6317.651332154372,-312.1149885367236,0.0 +2018-01-03 22:40:00,1.5786661244915547,0.29161486768553974,0.9156977641355175,0.26311102074859244,0.048602477947589956,0.15261629402258625,0.10040185646639052,0.3849309346918309,0.010000000000000002,0.0,1.0833333333333333,0.0,0.9098707582785049,0.005827005857012526,1,0.0,0.28869820101887306,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.057276834458380506,0,On,0.027518882633849905,0.0,On,0.3141089277929609,0.2355816958447206,On,0.21333333333333307,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,132.18764255369064,0,82.63218218829745,50,44.44,0.0,49.99666928570514,0.0,0.0,132.18764255369064,129.11278466921476,49.99666928570514,49.99666928570514,49.99666928570514,9.920878641202478,On,15999.41004577144,0.0,19,26.665683409619067,0.0,0.0,0.6,1,0.6540421653153902,15999.41004577144,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1325.0337460772973,19.065676434853252,-10.088444667133421,-7.985343919455044,-11.4,6.529479366362011,0,4.0,5592.652617773699,-3429.338717156925,-292.32255063425293,0.0 +2018-01-03 22:50:00,1.5786661244915547,0.29161486768553974,0.9209895682540958,0.26311102074859244,0.048602477947589956,0.15349826137568262,0.10040185646639052,0.3849309346918309,0.010000000000000002,0.0,1.0833333333333333,0.0,0.9152975431676387,0.005692025086457178,1,0.0,0.28869820101887306,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.057276834458380506,0,On,0.027518882633849905,0.0,On,0.3141089277929609,0.2355816958447206,On,0.2166666666666664,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.12555710403916,0,82.63642294311857,50,44.44,0.0,49.99973542377546,0.0,0.0,129.12555710403916,129.11941084862278,49.99973542377546,49.99973542377547,49.99973542377546,9.920878641202478,On,16094.836078404605,0.0,19,26.824726797341008,0.0,0.0,0.6,1,0.6579430997143649,16094.836078404605,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1325.2824404889625,19.065676434853252,-10.070391367631217,-8.237929040077702,-11.4,6.529479366362011,0,4.0,5663.669035607062,-3403.511350785213,-276.7413208562756,0.0 +2018-01-03 23:00:00,1.522744647362315,0.2800819621805764,0.9262260340328451,0.2537907745603858,0.046680327030096065,0.15437100567214085,0.05985758667710192,0.3695537273518797,0.010000000000000002,0.0,1.0833333333333333,0.0,0.9205342787560258,0.00569175527681934,1,0.0,0.2771652955139097,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.03313398272447012,0,On,0.015919353616674802,0.0,On,0.30356049365065996,0.2276703702379949,On,0.21999999999999972,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.11943637911813,0,82.63643141985551,50,44.44,0.0,49.999741552601066,0.0,0.0,129.11943637911813,129.11942409352423,49.999741552601066,49.999741552601066,49.999741552601066,9.920878641202478,On,16186.920233453628,0.0,19,26.97820038908938,0.0,0.0,0.6,1,0.6617074210229134,16186.920233453628,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1324.9191234662007,19.065676434853252,-10.060964152462725,-8.473274643624942,-11.4,6.529479366362011,0,4.0,5677.468162496524,-3379.9346197112363,-262.0940827591047,0.0 +2018-01-03 23:10:00,1.522744647362315,0.2800819621805764,0.9343973512746552,0.2537907745603858,0.046680327030096065,0.1557328918791092,0.05985758667710192,0.3695537273518797,0.010000000000000002,0.0,1.0833333333333333,0.0,0.9287041602293891,0.005693191045266148,1,0.0,0.2771652955139097,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.03313398272447012,0,On,0.015919353616674802,0.0,On,0.30356049365065996,0.2276703702379949,On,0.22333333333333305,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.1520072827509,0,82.65732650205574,50,44.44,0.0,49.99974156485182,0.0,0.0,129.1520072827509,129.15207265946208,49.99974156485181,49.99974156485182,49.99974156485182,9.920878641202478,On,16330.581607916309,0.0,19,27.217636013193847,0.0,0.0,0.6,1,0.6675801748405199,16330.581607916309,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1324.5728947243097,19.057854558926806,-10.052500120451349,-8.687657123622865,-11.4,6.529479366362011,0,4.0,5791.52333556812,-3351.4651133161824,-248.46765906497552,0.0 +2018-01-03 23:20:00,1.522744647362315,0.2800819621805764,0.9394747038090278,0.2537907745603858,0.046680327030096065,0.15657911730150462,0.05985758667710192,0.3695537273518797,0.010000000000000002,0.0,1.0833333333333333,0.0,0.9337815098938406,0.0056931939151871796,1,0.0,0.2771652955139097,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.03313398272447012,0,On,0.015919353616674802,0.0,On,0.30356049365065996,0.2276703702379949,On,0.22666666666666638,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.1520723879018,0,82.65732641189045,50,44.44,0.0,49.9997414996605,0.0,0.0,129.1520723879018,129.15207251857882,49.9997414996605,49.9997414996605,49.9997414996605,9.920878641202478,On,16419.863078375933,0.0,19,27.366438463959888,0.0,0.0,0.6,1,0.6712299248059811,16419.863078375933,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1324.0745812631121,19.057854558926806,-10.03996547704019,-8.87859091125012,-11.4,6.529479366362011,0,4.0,5858.320943692217,-3345.247409622404,-236.2006974018022,0.0 +2018-01-03 23:30:00,1.522744647362315,0.2800819621805764,0.9750930978298464,0.2537907745603858,0.046680327030096065,0.1625155163049744,0.05985758667710192,0.3695537273518797,0.010000000000000002,0.0,1.0833333333333333,0.0,0.969399903908923,0.005693193920923407,1,0.0,0.2771652955139097,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.03313398272447012,0,On,0.015919353616674802,0.0,On,0.30356049365065996,0.2276703702379949,On,0.2299999999999997,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.1520725180301,0,82.657326411708,50,44.44,0.0,49.99974149953019,0.0,0.0,129.1520725180301,129.15207251829375,49.999741499530195,49.9997414995302,49.99974149953019,9.920878641202478,On,17046.186416975546,0.0,19,28.410310694959247,0.0,0.0,0.5999999999999999,1,0.6968334858993804,17046.186416975546,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1311.8239465960776,19.05785455892681,-10.032210749970448,-9.046245491450458,-12.4,6.529479366362011,0,4.0,5933.306108124922,-5555.118975744333,-303.0341989802865,0.0 +2018-01-03 23:40:00,1.522744647362315,0.2800819621805764,0.9798888605850649,0.2537907745603858,0.046680327030096065,0.1633148100975108,0.05985758667710192,0.3695537273518797,0.010000000000000002,0.0,1.0833333333333333,0.0,0.9741956666641296,0.0056931939209352396,1,0.0,0.2771652955139097,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.03313398272447012,0,On,0.015919353616674802,0.0,On,0.30356049365065996,0.2276703702379949,On,0.23333333333333303,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.15207251829852,0,82.65732641170955,50,44.44,0.0,49.99974149952993,0.0,0.0,129.15207251829852,129.15207251829617,49.99974149952993,49.99974149952993,49.99974149952993,9.920878641202478,On,17130.51638813317,0.0,19,28.550860646888612,0.0,0.0,0.6,1,0.7002808228186247,17130.51638813317,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1311.4934565424517,19.05785455892681,-10.978464526602583,-9.300057234064107,-12.4,6.529479366362011,0,4.0,5996.267054624058,-3645.1734958875486,-283.73333299967305,0.0 +2018-01-03 23:50:00,1.4670354512950594,0.25678750344966184,0.9845241563514258,0.24450590854917656,0.042797917241610306,0.16408735939190427,0.03520766891773262,0.3384944490439936,0.010000000000000002,0.0,1.0833333333333333,0.0,0.9788309624304905,0.0056931939209352396,1,0.0,0.25387083678299516,0.0029166666666666685,0,0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,0.23666666666666636,True,0.0,2018-01-03 12:00:00,2018-01-04 07:50:00,On,129.15207251829852,0,82.65732641170955,50,44.44,0.0,49.99974149952993,0.0,0.0,129.15207251829852,129.15207251829617,49.99974149952993,49.99974149952993,49.99974149952993,9.920878641202478,On,17212.02466496773,0.0,19,28.686707774946214,0.0,0.0,0.6,1,0.703612811293168,17212.02466496773,24462.352573333334,Off,0.0,0.0,22,0.010000000000000002,0.0,0.0,0,0,0.0,0,1309.7201755435026,19.05785455892681,-10.975481435390105,-9.505973626208396,-12.4,6.529479366362011,0,4.0,6003.814394728087,-3602.4528402728292,-268.8820658546497,0.0 diff --git a/ochre/defaults/Input Files/OCHRE with Controller.json b/ochre/defaults/Input Files/OCHRE with Controller.json new file mode 100644 index 0000000..fb0b09c --- /dev/null +++ b/ochre/defaults/Input Files/OCHRE with Controller.json @@ -0,0 +1,368 @@ +{ + "Occupancy": { + "Number of Occupants (-)": 4.0, + "weekday_fractions": [0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061], + "weekend_fractions": [0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061], + "month_multipliers": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0] + }, + "Construction": { + "Number of Bedrooms (-)": 4, + "Number of Bathrooms (-)": 2, + "House Type": "single-family detached", + "Total Floors": 4.0, + "Indoor Floors": 3.0, + "Conditioned Floor Area (m^2)": 248.79434111999998, + "Conditioned Volume (m^3)": 606.6601213870078, + "Ceiling Height (m)": 2.4383999999999997, + "Foundation Type": "Finished Basement", + "First Floor Area (m^2)": 62.198585279999996, + "Attic Floor Area (m^2)": 62.198585279999996, + "Garage Floor Area (m^2)": 0, + "Garage Protruded Area (m^2)": 0, + "Indoor Floor Area (m^2)": 186.59575583999998, + "Number of Bedrooms, Adjusted (-)": 3.68 + }, + "Boundaries": { + "Exterior Wall": { + "Interior Zone": "Indoor", + "Exterior Zone": "Outdoor", + "Area (m^2)": [ + 68.11650892800002, + 37.848698496, + 66.249157824, + 37.848698496 + ], + "Azimuth (deg)": [ + 270, + 0, + 90, + 180 + ], + "Boundary R Value": 4.8, + "Exterior Solar Absorptivity (-)": 0.85, + "Exterior Emissivity (-)": 0.9, + "Finish Type": "wood siding", + "Construction Type": "WoodStud" + }, + "Attic Wall": { + "Interior Zone": "Attic", + "Exterior Zone": "Outdoor", + "Area (m^2)": [ + 4.3199913599999995, + 4.3199913599999995 + ], + "Azimuth (deg)": [ + 0, + 180 + ], + "Boundary R Value": 4.0, + "Exterior Solar Absorptivity (-)": 0.85, + "Exterior Emissivity (-)": 0.9, + "Finish Type": "wood siding", + "Construction Type": "WoodStud" + }, + "Foundation Wall": { + "Interior Zone": "Foundation", + "Exterior Zone": "Ground", + "Area (m^2)": [ + 25.799174207999997, + 14.334939072, + 25.799174207999997, + 14.334939072 + ], + "Azimuth (deg)": [ + 270, + 0, + 90, + 180 + ], + "Insulation Details": "Uninsulated", + "Height (m)": 2.4383999999999997, + "Construction Type": "Finished Basement" + }, + "Attic Floor": { + "Interior Zone": "Indoor", + "Exterior Zone": "Attic", + "Area (m^2)": [ + 62.198585279999996 + ], + "Boundary R Value": 20.6 + }, + "Foundation Floor": { + "Interior Zone": "Foundation", + "Exterior Zone": "Ground", + "Area (m^2)": [ + 62.198585279999996 + ], + "Insulation Details": "Uninsulated" + }, + "Attic Roof": { + "Interior Zone": "Attic", + "Exterior Zone": "Outdoor", + "Area (m^2)": [ + 34.773607872, + 34.773607872 + ], + "Azimuth (deg)": [ + 270, + 90 + ], + "Boundary R Value": 2.3, + "Exterior Solar Absorptivity (-)": 0.85, + "Exterior Emissivity (-)": 0.9, + "Finish Type": "asphalt or fiberglass shingles", + "Construction Type": "Pitched", + "Tilt (deg)": 26.56505117707799, + "Radiant Barrier": false + }, + "Rim Joist": { + "Interior Zone": "Foundation", + "Exterior Zone": "Outdoor", + "Area (m^2)": [ + 2.489801472, + 1.3842552959999999, + 2.489801472, + 1.3842552959999999 + ], + "Azimuth (deg)": [ + 270, + 0, + 90, + 180 + ], + "Boundary R Value": 3.9, + "Exterior Solar Absorptivity (-)": 0.85, + "Exterior Emissivity (-)": 0.9, + "Finish Type": "wood siding" + }, + "Window": { + "Interior Zone": "Indoor", + "Exterior Zone": "Outdoor", + "Area (m^2)": [ + 5.15611872, + 9.290303999999999, + 5.15611872, + 9.281013695999999 + ], + "Azimuth (deg)": [ + 0, + 90, + 180, + 270 + ], + "U Factor (W/m^2-K)": 0.38, + "SHGC (-)": 0.44, + "Shading Fraction (-)": 0.7 + }, + "Door": { + "Interior Zone": "Indoor", + "Exterior Zone": "Outdoor", + "Area (m^2)": [ + 1.8580607999999998 + ], + "Azimuth (deg)": [ + 90 + ], + "Boundary R Value": 5.0 + }, + "Interior Wall": { + "Area (m^2)": [ + 186.59575583999998 + ], + "Interior Zone": "Indoor", + "Exterior Zone": "Indoor", + "Insulation Level": "Standard" + }, + "Indoor Furniture": { + "Area (m^2)": [ + 74.638302336 + ], + "Interior Zone": "Indoor", + "Exterior Zone": "Indoor", + "Insulation Level": "Standard" + }, + "Foundation Furniture": { + "Area (m^2)": [ + 24.879434112 + ], + "Interior Zone": "Foundation", + "Exterior Zone": "Foundation", + "Insulation Level": "Standard" + } + }, + "Zones": { + "Indoor": { + "Zone Area (m^2)": 186.59575583999998, + "Volume (m^3)": 454.9950910402559, + "ELA stack coefficient (L/s/cm^4/K)": 0.000268931575688997, + "ELA wind coefficient (L/s/cm^4/(m/s))": 0.00017712110373510295, + "Infiltration Method": "ASHRAE", + "inf_f_t": 0.6795803782001975, + "inf_sft": 0.4757062647401383, + "inf_n_i": 0.65, + "inf_c": 0.19696030768156073, + "inf_Cs": 0.12411460236981756, + "inf_Cw": 0.14935713017546384 + }, + "Attic": { + "Zone Area (m^2)": 62.198585279999996, + "Volume (m^3)": 45.706393291233574, + "Vented": true, + "Infiltration Method": "ELA", + "ELA (cm^2)": 2073.0788473824, + "ELA stack coefficient (L/s/cm^4/K)": 0.00010215213070974475, + "ELA wind coefficient (L/s/cm^4/(m/s))": 7.563121523966859e-05 + }, + "Foundation": { + "Zone Type": "Finished Basement", + "Zone Area (m^2)": 62.198585279999996, + "Volume (m^3)": 151.66503034675196, + "Vented": false, + "Infiltration Method": null + } + }, + "Equipment": { + "HVAC Heating": { + "Equipment Name": "WallFurnace", + "Fuel": "Natural gas", + "Capacity (W)": 24462.352573333334, + "EIR (-)": 1.6666666666666667, + "Rated Efficiency": "0.6 AFUE", + "SHR (-)": null, + "Conditioned Space Fraction (-)": 1.0, + "Number of Speeds (-)": 1, + "Rated Auxiliary Power (W)": 0.0, + "Weekday Setpoints (C)": [20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057], + "Weekend Setpoints (C)": [20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057] + }, + "HVAC Cooling": { + "Equipment Name": "room air conditioner", + "Fuel": "Electricity", + "Capacity (W)": 1869.5006177777777, + "EIR (-)": 0.3188916968680725, + "Rated Efficiency": "10.7 EER", + "SHR (-)": 0.65, + "Conditioned Space Fraction (-)": 0.2, + "Number of Speeds (-)": 1, + "Rated Auxiliary Power (W)": 0, + "Weekday Setpoints (C)": [22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285], + "Weekend Setpoints (C)": [22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285] + }, + "Water Heating": { + "Equipment Name": "storage water heater", + "Fuel": "Natural gas", + "Zone": "Foundation", + "Setpoint Temperature (C)": 51.666666666666686, + "UA (W/K)": 4.174338563113251, + "Efficiency (-)": 0.7740560188279427, + "Energy Factor (-)": 0.59, + "Tank Volume (L)": 143.84564779199997, + "Tank Height (m)": 1.2191999999999998, + "Capacity (W)": 11136.702222222222, + "weekday_fractions": [0.012, 0.006, 0.004, 0.005, 0.01, 0.034, 0.078, 0.087, 0.08, 0.067, 0.056, 0.047, 0.04, 0.035, 0.033, 0.031, 0.039, 0.051, 0.06, 0.06, 0.055, 0.048, 0.038, 0.026], + "weekend_fractions": [0.012, 0.006, 0.004, 0.005, 0.01, 0.034, 0.078, 0.087, 0.08, 0.067, 0.056, 0.047, 0.04, 0.035, 0.033, 0.031, 0.039, 0.051, 0.06, 0.06, 0.055, 0.048, 0.038, 0.026], + "month_multipliers": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], + "Fixture Average Water Draw (L/day)": 259.53132510700146 + }, + "Clothes Washer": { + "Annual Electric Energy (kWh)": 37.85005100215684, + "Average Water Draw (L/day)": 18.395385203661274, + "Convective Gain Fraction (-)": 0.2700000000000001, + "Radiative Gain Fraction (-)": 0, + "Latent Gain Fraction (-)": 0.030000000000000027, + "weekday_fractions": [0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.06, 0.049, 0.052, 0.05, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017], + "weekend_fractions": [0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.06, 0.049, 0.052, 0.05, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017], + "month_multipliers": [1.011, 1.002, 1.022, 1.02, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011] + }, + "Clothes Dryer": { + "Annual Electric Energy (kWh)": 90.37643216162446, + "Annual Gas Energy (therms)": 40.96841135399718, + "Convective Gain Fraction (-)": 0.1335213042822171, + "Radiative Gain Fraction (-)": 0, + "Latent Gain Fraction (-)": 0.016478695717782932, + "weekday_fractions": [0.01, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024], + "weekend_fractions": [0.01, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024], + "month_multipliers": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0] + }, + "Dishwasher": { + "Annual Electric Energy (kWh)": 127.45439109857826, + "Average Water Draw (L/day)": 9.445110548052545, + "Convective Gain Fraction (-)": 0.3, + "Radiative Gain Fraction (-)": 0, + "Latent Gain Fraction (-)": 0.29999999999999993, + "weekday_fractions": [0.015, 0.007, 0.005, 0.003, 0.003, 0.01, 0.02, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.09, 0.067, 0.044, 0.031], + "weekend_fractions": [0.015, 0.007, 0.005, 0.003, 0.003, 0.01, 0.02, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.09, 0.067, 0.044, 0.031], + "month_multipliers": [1.097, 1.097, 0.991, 0.987, 0.991, 0.89, 0.896, 0.896, 0.89, 1.085, 1.085, 1.097] + }, + "Refrigerator": { + "Annual Electric Energy (kWh)": 703.24, + "Convective Gain Fraction (-)": 1.0, + "Radiative Gain Fraction (-)": 0, + "Latent Gain Fraction (-)": 0, + "weekday_fractions": [0.04, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.04, 0.041, 0.041, 0.04, 0.04, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.05, 0.048, 0.047, 0.046, 0.044, 0.041], + "month_multipliers": [0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837] + }, + "Cooking Range": { + "Annual Electric Energy (kWh)": 32.536, + "Annual Gas Energy (therms)": 32.536, + "Convective Gain Fraction (-)": 0.6381527439104869, + "Radiative Gain Fraction (-)": 0, + "Latent Gain Fraction (-)": 0.16184725608951306, + "weekday_fractions": [0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.05, 0.057, 0.046, 0.057, 0.044, 0.092, 0.15, 0.117, 0.06, 0.035, 0.025, 0.016, 0.011], + "weekend_fractions": [0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.05, 0.057, 0.046, 0.057, 0.044, 0.092, 0.15, 0.117, 0.06, 0.035, 0.025, 0.016, 0.011], + "month_multipliers": [1.097, 1.097, 0.991, 0.987, 0.991, 0.89, 0.896, 0.896, 0.89, 1.085, 1.085, 1.097] + }, + "Exterior Lighting": { + "Annual Electric Energy (kWh)": 50.10625, + "Convective Gain Fraction (-)": 1, + "Radiative Gain Fraction (-)": 0, + "Latent Gain Fraction (-)": 0, + "weekday_fractions": [0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063], + "weekend_fractions": [0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059], + "month_multipliers": [1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248] + }, + "Indoor Lighting": { + "Annual Electric Energy (kWh)": 707.6989189189189, + "Convective Gain Fraction (-)": 1, + "Radiative Gain Fraction (-)": 0, + "Latent Gain Fraction (-)": 0 + }, + "Basement Lighting": { + "Annual Electric Energy (kWh)": 340.01675675675676, + "Convective Gain Fraction (-)": 1, + "Radiative Gain Fraction (-)": 0, + "Latent Gain Fraction (-)": 0 + }, + "MELs": { + "Annual Electric Energy (kWh)": 2855.6801, + "Convective Gain Fraction (-)": 0.93, + "Radiative Gain Fraction (-)": 0, + "Latent Gain Fraction (-)": 0.021, + "weekday_fractions": [0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036], + "weekend_fractions": [0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036], + "month_multipliers": [1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248] + }, + "EV": { + "vehicle_type": "BEV", + "charging_level": "Level 2", + "mileage": 150 + } + }, + "Location": { + "loc": "LOCATION", + "city": "Denver Intl Ap", + "state-prov": "CO", + "country": "USA", + "data_type": "TMY3", + "WMO_code": "725650", + "latitude": 39.83, + "longitude": -104.65, + "TZ": -7.0, + "altitude": 1650.0, + "timezone": -7.0, + "Weather Station": "G0800310", + "Average Wind Speed (m/s)": 3.916529680365298, + "Average Ambient Temperature (C)": 10.875342465753425, + "Average Ground Temperature (C)": 10.820501311970599 + } +} \ No newline at end of file diff --git a/ochre/defaults/Input Files/OCHRE with Controller_complete b/ochre/defaults/Input Files/OCHRE with Controller_complete new file mode 100644 index 0000000..e69de29 diff --git a/ochre/defaults/Input Files/OCHRE with Controller_hourly.csv b/ochre/defaults/Input Files/OCHRE with Controller_hourly.csv new file mode 100644 index 0000000..d878d28 --- /dev/null +++ b/ochre/defaults/Input Files/OCHRE with Controller_hourly.csv @@ -0,0 +1,73 @@ +Time,Total Electric Power (kW),Total Reactive Power (kVAR),Total Gas Power (therms/hour),Total Electric Energy (kWh),Total Reactive Energy (kVARh),Total Gas Energy (therms),Lighting Electric Power (kW),Other Electric Power (kW),HVAC Cooling Electric Power (kW),HVAC Heating Electric Power (kW),EV Electric Power (kW),Other Gas Power (therms/hour),HVAC Heating Gas Power (therms/hour),Water Heating Gas Power (therms/hour),Grid Voltage (-),Lighting Reactive Power (kVAR),Other Reactive Power (kVAR),HVAC Cooling Reactive Power (kVAR),HVAC Heating Reactive Power (kVAR),EV Reactive Power (kVAR),Clothes Washer Electric Power (kW),Clothes Washer Reactive Power (kVAR),Clothes Dryer Electric Power (kW),Clothes Dryer Reactive Power (kVAR),Clothes Dryer Gas Power (therms/hour),Dishwasher Electric Power (kW),Dishwasher Reactive Power (kVAR),Refrigerator Electric Power (kW),Refrigerator Reactive Power (kVAR),Cooking Range Electric Power (kW),Cooking Range Reactive Power (kVAR),Cooking Range Gas Power (therms/hour),Exterior Lighting Electric Power (kW),Exterior Lighting Reactive Power (kVAR),Indoor Lighting Electric Power (kW),Indoor Lighting Reactive Power (kVAR),Basement Lighting Electric Power (kW),Basement Lighting Reactive Power (kVAR),MELs Electric Power (kW),MELs Reactive Power (kVAR),EV SOC (-),EV Unmet Load (kW),Water Heating Delivered (W),Water Heating COP (-),Water Heating Total Sensible Heat Gain (W),Water Heating Deadband Upper Limit (C),Water Heating Deadband Lower Limit (C),Hot Water Delivered (L/min),Hot Water Outlet Temperature (C),Hot Water Delivered (W),Hot Water Unmet Demand (kW),Hot Water Heat Injected (W),Hot Water Heat Loss (W),Hot Water Average Temperature (C),Hot Water Maximum Temperature (C),Hot Water Minimum Temperature (C),Hot Water Mains Temperature (C),HVAC Heating Delivered (W),HVAC Heating Duct Losses (W),HVAC Heating Setpoint (C),HVAC Heating Main Power (kW),HVAC Heating Fan Power (kW),HVAC Heating Latent Gains (W),HVAC Heating COP (-),HVAC Heating SHR (-),HVAC Heating Speed (-),HVAC Heating Capacity (W),HVAC Heating Max Capacity (W),HVAC Cooling Delivered (W),HVAC Cooling Duct Losses (W),HVAC Cooling Setpoint (C),HVAC Cooling Main Power (kW),HVAC Cooling Fan Power (kW),HVAC Cooling Latent Gains (W),HVAC Cooling COP (-),HVAC Cooling SHR (-),HVAC Cooling Speed (-),HVAC Cooling Capacity (W),HVAC Cooling Max Capacity (W),Temperature - Indoor (C),Temperature - Foundation (C),Temperature - Attic (C),Temperature - Outdoor (C),Temperature - Ground (C),Unmet HVAC Load (C),Occupancy (Persons),Net Sensible Heat Gain - Indoor (W),Net Sensible Heat Gain - Foundation (W),Net Sensible Heat Gain - Attic (W),Window Transmitted Solar Gain (W) +2018-01-01 00:00:00,0.3791770942655053,0.2555803101502493,1.0329766188058367,0.3791770942655052,0.2555803101502493,1.0329766188058367,0.03229223628739501,0.33688485797811024,0.010000000000000002,0.0,0.0,0.0,1.0329766188058367,0.0,1.0,0.0,0.2526636434835826,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06438364263533634,0.04828773197650224,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,1.0,0.0,0.0,0.0,85.61990613572847,50.0,44.44,0.0,51.33302251357429,0.0,0.0,0.0,133.78110333707573,51.33302251357429,51.33302251357429,51.33302251357429,10.042356980382465,18164.13632551352,0.0,19.0,30.273560542522528,0.0,0.0,0.6,1.0,0.7425343196677834,18164.13632551352,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1246.7579852858244,19.217663166164098,-14.392099527451975,-8.395135961179378,-18.0,6.529479366362011,0.0,4.0,3971.9405288913767,-9971.245243954296,-851.7207776337731,0.0 +2018-01-01 01:00:00,0.3775675031996218,0.2543731168508367,1.1380782051270513,0.37756750319962185,0.2543731168508367,1.138078205127051,0.03229223628739501,0.3352752669122268,0.010000000000000002,0.0,0.0,0.0,1.1380782051270513,0.0,1.0,0.0,0.25145645018417,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06277405156945293,0.04708053867708969,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,1.0,0.0,0.0,0.0,83.94730777529072,50.0,44.44,0.0,50.53741550364135,0.0,0.0,0.0,131.16766839889175,50.53741550364136,50.53741550364136,50.53741550364135,10.042356980382465,20012.270646475437,0.0,19.0,33.35378441079239,0.0,0.0,0.6,1.0,0.818084466180535,20012.270646475437,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1247.6572601350463,19.04943476260596,-15.884913006832269,-12.95442620364851,-17.3,6.529479366362011,0.0,4.0,5871.258547214117,-4658.187834157634,-372.3359794136697,0.0 +2018-01-01 02:00:00,0.3759579121337384,0.25316592355142414,1.1499341733006456,0.3759579121337384,0.2531659235514241,1.1499341733006454,0.03229223628739501,0.33366567584634343,0.010000000000000002,0.0,0.0,0.0,1.1448383941310671,0.005095779169578458,1.0,0.0,0.25024925688475746,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06116446050356953,0.04587334537767714,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,1.0,0.0,115.5995123276108,0.0,82.6992473635092,50.0,44.44,0.0,50.013348068244916,0.0,0.0,115.5995123276108,129.21757400548313,50.013348068244916,50.013348068244916,50.013348068244916,10.042356980382465,20131.14361263912,0.0,19.0,33.5519060210652,0.0,0.0,0.6,1.0,0.8229438911196256,20131.14361263912,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1262.3661878921475,19.04920661259925,-14.500389645663255,-14.078115212928276,-15.950000000000001,6.529479366362011,0.0,4.0,6614.450365450412,-4185.219756628158,-197.61612166794248,0.0 +2018-01-01 03:00:00,0.37434832106785504,0.2519587302520116,1.1456946623644668,0.374348321067855,0.2519587302520116,1.1456946623644668,0.03229223628739501,0.33205608478046,0.010000000000000002,0.0,0.0,0.0,1.139999835301958,0.0056948270625088344,1.0,0.0,0.2490420635853449,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05955486943768611,0.04466615207826457,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,1.0,0.0,129.18912089955424,0.0,82.68103757960439,50.0,44.44,0.0,49.999741425694516,0.0,0.0,129.18912089955424,129.18912121813187,49.999741425694516,49.99974142569453,49.999741425694516,10.042356980382465,20046.06110390571,0.0,19.0,33.41010183984285,0.0,0.0,0.6,1.0,0.8194657911094835,20046.06110390571,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1274.2188614958266,19.048978462592544,-13.335768630701573,-13.940041673973779,-14.850000000000001,6.529479366362011,0.0,4.0,7075.489654699652,-3926.323557504011,-143.23393005160554,0.0 +2018-01-01 04:00:00,0.3933537477458023,0.26569515198752536,1.1285468608593288,0.39335374774580234,0.26569515198752536,1.1285468608593285,0.03298243398465735,0.350371313761145,0.010000000000000002,0.0,0.0,0.0,1.1228524093746233,0.0056944514847055185,1.0,0.0,0.2627784853208587,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05794527837180271,0.04345895877885201,0.0,0.0,0.0,0.007888817705619396,0.0,0.016949946941462603,0.0,0.00814366933757535,0.0,0.2924260353893423,0.21931952654200668,1.0,0.0,129.18060078723002,0.0,82.67558227305896,50.0,44.44,0.0,49.99974143895434,0.0,0.0,129.18060078723002,129.18059730165461,49.99974143895434,49.99974143895434,49.99974143895434,10.042356980382465,19744.53619375254,0.0,19.0,32.90756032292091,0.0,0.0,0.6,1.0,0.8071397112997327,19744.53619375254,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1286.8345926204831,19.051020613399892,-12.286403396852032,-13.460128004410556,-13.700000000000001,6.529479366362011,0.0,3.0,7314.937052190825,-3367.8782787529285,-119.4596187431783,0.0 +2018-01-01 05:00:00,0.44121553976951383,0.2845944298258145,1.0777118459469892,0.4412155397695137,0.2845944298258145,1.0777118459469892,0.05564518889064987,0.37557035087886387,0.010000000000000002,0.0,0.0,0.0,1.0720184726294186,0.00569337331757054,1.0,0.0,0.28167776315914783,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05794527837180271,0.04345895877885201,0.0,0.0,0.0,0.006345353371911252,0.0,0.03330048515022123,0.0,0.01599935036851739,0.0,0.3176250725070612,0.23821880438029583,1.0,0.0,129.15614219299673,0.0,82.65992516424573,50.0,44.44,0.0,49.9997414822864,0.0,0.0,129.15614219299673,129.15613306913394,49.9997414822864,49.9997414822864,49.9997414822864,10.042356980382465,18850.6586943084,0.0,19.0,31.417764490514003,0.0,0.0,0.6,1.0,0.7705987655029426,18850.6586943084,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1306.7392930523467,19.05688173083538,-10.774212373420534,-12.697389545511319,-12.049999999999999,6.529479366362011,0.0,3.0,7395.276923764571,-2692.8280537805426,-85.12301465967127,0.0 +2018-01-01 06:00:00,1.0539382845073273,0.5475315481118257,1.181531842930582,1.0539382845073273,0.5475315481118256,1.181531842930582,0.1055880290456059,0.9383502554617215,0.010000000000000002,0.0,0.0,0.16981379868773216,0.9753961758663032,0.03632186837654667,1.0,0.0,0.544614881445159,0.0029166666666666685,0.0,0.0,0.16326810636063485,0.19088156776360543,0.37460972368683737,0.05337899462086674,0.16981379868773216,0.0,0.0,0.06116446050356953,0.04587334537767714,0.0,0.0,0.0,0.006002361297753889,0.0,0.06726698000344689,0.0,0.03231868774440513,0.0,0.33930796491067977,0.2544809736830097,1.0,0.0,823.9741424084913,0.0,82.39447612247878,50.0,44.44,0.24968196798996212,49.99863427899374,695.5170594653827,0.0,823.9741424084913,128.7413689413731,49.99863427899374,49.99863427899374,49.99863427899374,10.042356980382465,17151.626462079974,0.0,19.0,28.58604410346663,0.0,0.0,0.6,1.0,0.7011437845425031,17151.626462079974,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1325.998070743452,19.15322370100729,-9.17881955872991,-11.53944165767107,-10.4,6.529479366362011,0.0,3.0,7577.069758533001,-2413.3110659693,-63.114165168537504,0.0 +2018-01-01 07:00:00,1.0105395188266508,0.3891415397225377,1.1317734257328906,1.0105395188266506,0.3891415397225377,1.1317734257328906,0.12858745570233435,0.8719520631243164,0.010000000000000002,0.0,0.0,0.19978093963262608,0.8927182525749352,0.039274233525329334,1.0,0.0,0.386224873055871,0.0029166666666666685,0.0,0.0,0.0,0.0,0.4407173219845146,0.0627988172010197,0.19978093963262608,0.0,0.0,0.06438364263533634,0.04828773197650224,0.0,0.0,0.0,0.0058308652606752056,0.0,0.08291820802405085,0.0,0.039838382417608294,0.0,0.3668510985044655,0.2751383238783491,1.0,0.0,890.9495665889199,0.0,82.28203901241669,50.0,44.44,0.2735861767892853,49.99793426380214,762.1005945515868,0.0,890.9495665889199,128.56568595690106,49.99793426380214,49.997934263802144,49.99793426380214,10.042356980382465,15697.795811478352,0.0,19.0,26.162993019130585,0.0,0.0,0.6,1.0,0.641712434011383,15697.795811478352,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1346.0214997655917,19.194716219853632,-7.701296995285172,-10.239817192147648,-8.7,6.529479366362011,0.0,3.0,7254.2572383170855,-1695.4626947117242,-28.07150902154282,34.33852255640937 +2018-01-01 08:00:00,0.7453040049839522,0.3318258313575894,0.9683466351680355,0.7453040049839521,0.33182583135758936,0.9683466351680354,0.08256711263282876,0.6527368923511234,0.010000000000000002,0.0,0.0,0.11986856377957562,0.8371961901919128,0.01128188119654703,1.0,0.0,0.32890916469092274,0.0029166666666666685,0.0,0.0,0.0,0.0,0.26443039319070877,0.03767929032061181,0.11986856377957562,0.0,0.0,0.06599323370121975,0.04949492527591479,0.0,0.0,0.0,0.005659369223596524,0.0,0.05194875683434511,0.0,0.024958986574887123,0.0,0.3223132654591949,0.2417349490943961,1.0,0.0,255.93337565426043,0.0,82.3911279549428,50.0,44.44,0.04566048975344897,49.99948674017389,127.19623134073639,0.0,255.93337565426043,128.73613742959813,49.99948674017389,49.99948674017389,49.99948674017389,10.042356980382465,14721.481060651982,0.0,19.0,24.535801767753302,0.0,0.0,0.6,1.0,0.6018015240570125,14721.481060651982,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1365.4711913690483,19.15692296747832,-5.859592324354042,-8.553106487423593,-6.800000000000001,6.529479366362011,0.0,1.0,6749.789996692488,-1196.367860796612,0.5386730901789841,279.3773010835925 +2018-01-01 09:00:00,0.48198812502859956,0.29414654103697757,0.7650129494038079,0.4819881250285995,0.29414654103697757,0.7650129494038078,0.0836816258681849,0.38830649916041465,0.010000000000000002,0.0,0.0,0.0,0.7537139557539813,0.011298993649826705,1.0,0.0,0.2912298743703109,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.0,0.0,0.0,0.004801889038203111,0.0,0.05328077624035396,0.0,0.02559896058962782,0.0,0.3223132654591949,0.2417349490943961,1.0,0.0,256.3215775735408,0.0,82.64022157569393,50.0,44.44,0.045660490889451406,49.99948696718778,127.19623134073636,0.0,256.3215775735408,129.12534621202175,49.99948696718778,49.999486967187785,49.99948696718778,10.042356980382465,13253.50718836621,0.0,19.0,22.089178647277013,0.0,0.0,0.6,1.0,0.5417920107493666,13253.50718836621,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1385.7830985198732,19.063677173997032,-3.854209628357373,-5.969808398016382,-4.05,6.529479366362011,0.0,1.0,6263.944753362183,38.631765675875236,54.017981240020646,924.4022486671244 +2018-01-01 10:00:00,0.4603248351621816,0.2867128414730124,0.5964958140784453,0.46032483516218153,0.28671284147301235,0.5964958140784453,0.07192993542038714,0.37839489974179447,0.010000000000000002,0.0,0.0,0.0,0.5908035961247046,0.0056922179537407915,1.0,0.0,0.2837961748063457,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06438364263533634,0.04828773197650224,0.0,0.0,0.0,0.003772912815731015,0.0,0.04603792072018084,0.0,0.022119101884475287,0.0,0.3140112571064581,0.23550844282984348,1.0,0.0,129.12993236505181,0.0,82.64315664611838,50.0,44.44,0.0,49.9997415437387,0.0,0.0,129.12993236505181,129.12993225955998,49.9997415437387,49.99974154373871,49.9997415437387,10.042356980382465,10388.84798188244,0.0,19.0,17.314746636470733,0.0,0.0,0.6,1.0,0.4246871984507095,10388.84798188244,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1407.3414067109063,19.063158903529928,-0.7108933406910155,-1.483134626672627,-0.40000000000000013,6.529479366362011,0.0,0.8333333333333334,5274.057712698445,635.3290183448158,-33.94415416659391,1308.3646470337032 +2018-01-01 11:00:00,0.373860717116066,0.2555803101502493,0.5148569740053562,0.37386071711606605,0.2555803101502493,0.5148569740053561,0.02697585913795585,0.33688485797811024,0.010000000000000002,0.0,0.0,0.0,0.4789733686405262,0.03588360536482997,1.0,0.0,0.2526636434835826,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06438364263533634,0.04828773197650224,0.0,0.0,0.0,0.0025724405561802378,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,1.0,0.0,814.0319944582551,0.0,82.67324832078417,50.0,44.44,0.2459420163418231,49.998624791834295,685.1098598141251,0.0,814.0319944582551,129.17695050122526,49.998624791834295,49.99862479183431,49.998624791834295,10.042356980382465,8422.395440406652,0.0,19.0,14.037325734011084,0.0,0.0,0.6,1.0,0.34430030452541155,8422.395440406652,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1417.7014262285268,19.048899682590203,2.3241954385671844,3.567495089476014,2.1,6.529479366362011,0.0,0.0,4216.072728374688,1122.4683700910957,-58.391204651384584,1282.0513811698713 +2018-01-01 12:00:00,0.498000382840522,0.3064881925977078,0.47568896666735777,0.498000382840522,0.30648819259770776,0.47568896666735777,0.08323834826580044,0.4047620345747216,0.010000000000000002,0.0,0.0,0.0,0.40317102090645646,0.07251794576090133,1.0,0.0,0.30357152593104114,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06760282476710315,0.05070211857532734,0.0,0.0,0.0,0.00205795244494419,0.0,0.054834798880697616,0.0,0.02634559694015863,0.0,0.33715920980761843,0.2528694073557138,1.0,0.0,1645.0946726668692,0.0,82.63074513145939,50.0,44.44,0.544342670083962,49.996982231776144,1516.2598370935402,0.0,1645.0946726668692,129.1105392679053,49.996982231776144,49.99698223177615,49.996982231776144,10.042356980382465,7089.466743891372,0.0,19.0,11.815777906485621,0.0,0.0,0.6,1.0,0.2898113222200744,7089.466743891372,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1421.8758761619217,19.061028341754355,3.585847185444898,7.141358065252548,3.6,6.529479366362011,0.0,1.1666666666666667,3332.9004191249187,994.1195422588168,-349.52276280777454,1222.4993526903388 +2018-01-01 13:00:00,0.5835336520328118,0.34106361561969417,0.4023005956146286,0.5835336520328118,0.34106361561969417,0.40230059561462855,0.1226710534287751,0.4508625986040367,0.010000000000000002,0.0,0.0,0.0,0.3648450803826664,0.03745551523196217,1.0,0.0,0.3381469489530275,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06760282476710315,0.05070211857532734,0.0,0.0,0.0,0.0018864564078655075,0.0,0.081586188618042,0.0,0.0391984084028676,0.0,0.3832597738369336,0.28744483037770013,1.0,0.0,849.6913132820091,0.0,82.59528253580875,50.0,44.44,0.25851120055079385,49.99777029427943,720.1056483311531,0.0,849.6913132820091,129.05512896220117,49.99777029427943,49.997770294279434,49.99777029427943,10.042356980382465,6415.533185470242,0.0,19.0,10.69255530911707,0.0,0.0,0.6,1.0,0.26226149615977173,6415.533185470242,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1424.1537542230383,19.07751960884192,4.279666522061581,8.245893500554285,3.85,6.529479366362011,0.0,2.5,2607.6996862994656,680.4561938632156,-617.1782191721358,1271.2321436208074 +2018-01-01 14:00:00,0.631005932319939,0.35688626683314556,0.3482373954658762,0.6310059323199388,0.3568862668331455,0.3482373954658762,0.14904646543130026,0.4719594668886386,0.010000000000000002,0.0,0.0,0.0,0.3242150223721508,0.024022373093725426,1.0,0.0,0.3539696001664789,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06760282476710315,0.05070211857532734,0.0,0.0,0.0,0.0018864564078655075,0.0,0.09940194817341036,0.0,0.0477580608500244,0.0,0.40435664212153544,0.3032674815911515,1.0,0.0,544.9558393670147,0.0,82.58837135882456,50.0,44.44,0.14930669623458417,49.99890923748103,415.91148660621747,0.0,544.9558393670147,129.04433024816336,49.99890923748103,49.99890923748103,49.99890923748103,10.042356980382465,5701.083410731199,0.0,19.0,9.501805684551998,0.0,0.0,0.6,1.0,0.2330554019136332,5701.083410731199,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1425.3848925514842,19.08176936752434,3.9132620076729783,7.640665556012487,3.5999999999999996,6.529479366362011,0.0,3.0,2031.495106751838,844.9269189691198,-593.954530056671,1364.130376932184 +2018-01-01 15:00:00,0.7153757897297042,0.38776389404989836,0.28988718651293727,0.7153757897297042,0.3877638940498983,0.2898871865129372,0.18890432906096352,0.5164714606687406,0.010000000000000002,0.0,0.0,0.003341824157764996,0.2808588896027109,0.00568647275246138,1.0,0.0,0.3848472273832317,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.003341824157764996,0.0,0.003341824157764996,0.00205795244494419,0.0,0.12620883871933844,0.0,0.060637537896680895,0.0,0.4471364028097559,0.3353523021073168,1.0,0.0,128.99960048762495,0.0,82.55974062243223,50.0,44.44,0.0,49.99974179895705,0.0,0.0,128.99960048762495,128.99959472255037,49.99974179895705,49.99974179895705,49.99974179895705,10.042356980382465,4938.697610477962,0.0,19.0,8.231162684129938,0.0,0.0,0.6,1.0,0.2018897240432095,4938.697610477962,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1426.1054170399611,19.09438505863347,3.751977144288574,7.253531174273012,3.0500000000000003,6.529479366362011,0.0,3.0,1714.3376203644332,-81.53425238548749,-563.1813729031201,1264.068603115389 +2018-01-01 16:00:00,1.9255605663307944,0.403691980447487,0.32528210323935675,1.9255605663307944,0.40369198044748694,0.32528210323935675,0.23102366480106737,0.6012035681963939,0.010000000000000002,0.0,1.0833333333333333,0.06683648315529993,0.22478577165587313,0.03365984842818368,1.0,0.0,0.4007753137808203,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07082200689886999,0.05311650517415247,0.06683648315529993,0.0,0.06683648315529993,0.0032584247044949674,0.0,0.15384824139402206,0.0,0.07391699870255033,0.0,0.46354507814222395,0.34765880860666787,0.5043333333333333,0.0,763.5852994864402,0.0,82.09817394371662,50.0,44.44,0.22806607276039048,49.99847292317289,635.3081607706621,0.0,763.5852994864402,128.27839678705723,49.99847292317289,49.9984729231729,49.99847292317289,10.042356980382465,3952.692951669315,0.0,19.0,6.587821586115525,0.0,0.0,0.6,1.0,0.16158269895832453,3952.692951669315,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1423.974457037324,19.264270526351726,1.6072121031089728,5.711402547417751,0.8000000000000002,6.529479366362011,0.0,3.0,1893.252510994878,-1206.090149036059,-531.0219153202728,733.2104307745122 +2018-01-01 17:00:00,2.217643214295192,0.49523244570028374,0.3920072244037429,2.217643214295192,0.49523244570028374,0.39200722440374286,0.3987720441010707,0.7255378368607884,0.010000000000000002,0.0,1.0833333333333333,0.053396335540912575,0.31329812042804744,0.025312768434782914,1.0,0.0,0.49231577903361706,0.0029166666666666685,0.0,0.0,0.0,0.0,0.04407173219845145,0.006279881720101969,0.019978093963262604,0.0,0.0,0.07726037116240361,0.057945278371802696,0.033418241577649964,0.0,0.033418241577649964,0.006345353371911252,0.0,0.265071861795761,0.0,0.12735482893339842,0.0,0.5707874919222834,0.4280906189417124,0.5243333333333332,0.0,574.2289038331123,0.0,82.11669641927152,50.0,44.44,0.16021474637414793,49.99923269052229,446.3046733307535,0.0,574.2289038331123,128.30733815511175,49.99923269052229,49.99923269052229,49.99923269052229,10.042356980382465,5509.117695772234,0.0,19.0,9.181862826287057,0.0,0.0,0.6,1.0,0.22520800807105448,5509.117695772234,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1421.0367185894502,19.25839681867491,-0.7220828466345406,2.725269857750597,-1.4000000000000001,6.529479366362011,0.0,4.0,2064.8155454475896,-1252.7687095099811,-510.07825487008057,121.78647353016555 +2018-01-01 18:00:00,2.7225300297780723,0.7300793316887804,0.5758312511178206,2.7225300297780723,0.7300793316887803,0.5758312511178206,0.47149309412287344,1.1577036023218656,0.010000000000000002,0.0,1.0833333333333333,0.0865717405074713,0.4586369717451088,0.030622538865240582,1.0,0.0,0.7271626650221137,0.0029166666666666685,0.0,0.0,0.16326810636063485,0.19088156776360543,0.19097750619328965,0.027212820787108533,0.0865717405074713,0.15394901690853757,0.021936546826847068,0.08047955329417043,0.06035966497062781,0.0,0.0,0.0,0.008403305816855444,0.0,0.3128025571777447,0.0,0.15028723112827333,0.0,0.5690294195652332,0.4267720646739248,0.544333333333333,0.0,694.6828819012495,0.0,82.21575576728388,50.0,44.44,0.20325653409525324,49.998584826078115,566.1959409565535,0.0,694.6828819012495,128.46211838638104,49.998584826078115,49.99858482607812,49.998584826078115,10.042356980382465,8064.794814358459,0.0,19.0,13.441324690597432,0.0,0.0,0.6,1.0,0.3296818975273039,8064.794814358459,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1410.983854385762,19.220556556143162,-2.490255241458492,-0.5351752389339102,-3.6,6.529479366362011,0.0,3.8333333333333335,2845.159339601941,-2257.7804683402082,-460.20556651563993,0.0 +2018-01-01 19:00:00,2.558587751969186,0.5209507976965314,0.6336672440740646,2.5585877519691858,0.5209507976965314,0.6336672440740646,0.5002016107560014,0.9650528078798511,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5670041727595015,0.06666307131456319,1.0,0.0,0.5180341310298647,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33868783719878265,0.04826040301906356,0.07726037116240361,0.057945278371802696,0.0,0.0,0.0,0.011147242410114366,0.0,0.33034081269019455,0.0,0.15871355565569248,0.0,0.5491045995186649,0.4118284496389985,0.5643333333333328,0.0,1512.274821528762,0.0,82.32645410042021,50.0,44.44,0.49696393803135885,49.99766081964734,1384.3293607722635,0.0,1512.274821528762,128.63508453190659,49.99766081964734,49.99766081964736,49.99766081964734,10.042356980382465,9970.352574915813,0.0,19.0,16.61725429152635,0.0,0.0,0.6,1.0,0.4075794650177922,9970.352574915813,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1400.989770437207,19.175753572477216,-4.387173192326166,-3.051051546629189,-5.3,6.529479366362011,0.0,4.0,3533.8180650866466,-1940.2620688238276,-349.0435682892551,0.0 +2018-01-01 20:00:00,2.1070151205683185,0.44643067029009065,0.6944331275337815,2.1070151205683185,0.4464306702900906,0.6944331275337815,0.4223297824037536,0.5913520048312322,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6224919483938854,0.07194117913989606,1.0,0.0,0.44351400362342397,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07565078009652021,0.05673808507239014,0.0,0.0,0.0,0.015606139374160109,0.0,0.2747290024893251,0.0,0.13199464054026844,0.0,0.5157012247347119,0.3867759185510338,0.5843333333333326,0.0,1632.0105224522968,0.0,82.4155614461726,50.0,44.44,0.5394624936518312,49.99611231497389,1502.6132579551986,0.0,1632.0105224522968,128.77431475964468,49.99611231497389,49.99611231497389,49.99611231497389,10.042356980382465,10946.06441841099,0.0,19.0,18.243440697351648,0.0,0.0,0.6,1.0,0.44746572863737594,10946.06441841099,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1395.9501843395321,19.141178115181557,-4.862279018117346,-4.329857067718296,-5.849999999999999,6.529479366362011,0.0,4.0,4200.971096726672,-2023.3649459431172,-216.10540078969322,0.0 +2018-01-01 21:00:00,1.9865379138700667,0.42896130768796414,0.7126293599064489,1.9865379138700665,0.42896130768796414,0.712629359906449,0.32514505917500325,0.5680595213617301,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6583876683103855,0.05424169159606351,1.0,0.0,0.42604464102129747,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07404118903063679,0.05553089177297758,0.0,0.0,0.0,0.018007083893261663,0.0,0.20746202248587822,0.0,0.09967595279586332,0.0,0.4940183323310932,0.37051374924831987,0.6043333333333324,0.0,1230.4915279223749,0.0,82.46582495235364,50.0,44.44,0.39548200220034396,49.99753838371427,1101.63991720243,0.0,1230.4915279223749,128.85285148805258,49.99753838371427,49.99753838371428,49.99753838371427,10.042356980382465,11577.264329614702,0.0,19.0,19.29544054935784,0.0,0.0,0.6,1.0,0.47326863983782164,11577.264329614702,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1392.3205357966615,19.124515068925387,-5.146609419154495,-4.9147120413193095,-6.099999999999999,6.529479366362011,0.0,4.0,4704.307319127612,-1866.855197488334,-162.80312159253558,0.0 +2018-01-01 22:00:00,1.7821731480576508,0.3540264363608201,0.77161814194472,1.7821731480576506,0.3540264363608201,0.7716181419447199,0.22069345513211278,0.4681463595922048,0.010000000000000002,0.0,1.0833333333333333,0.0,0.7095739727556136,0.062044169189106275,1.0,0.0,0.3511097696941534,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07082200689886999,0.05311650517415247,0.0,0.0,0.0,0.015606139374160109,0.0,0.1385300182249203,0.0,0.06655729753303233,0.0,0.39732435269333477,0.297993264520001,0.6243333333333322,0.0,1407.4934298272935,0.0,82.52670207691399,50.0,44.44,0.45884596783751697,49.99675790446491,1278.1192801248956,0.0,1407.4934298272935,128.9479719951781,49.99675790446491,49.99675790446491,49.99675790446491,10.042356980382465,12477.337956660778,0.0,19.0,20.7955632611013,0.0,0.0,0.6,1.0,0.5100628780186275,12477.337956660778,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1391.2914399028614,19.100699715804463,-5.073609821337091,-5.344214594430897,-6.099999999999999,6.529479366362011,0.0,3.5,5031.382463387469,-1805.7502556006884,-149.06195409262887,0.0 +2018-01-01 23:00:00,1.559370179072344,0.29531858927501103,0.8010287252768332,1.5593701790723438,0.29531858927501103,0.8010287252768331,0.07616761559455128,0.38986923014445923,0.010000000000000002,0.0,1.0833333333333333,0.0,0.7953370649356581,0.00569166034117501,1.0,0.0,0.29240192260834436,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.0,0.0,0.0,0.010804250335956998,0.0,0.04415089322833498,0.0,0.021212472030259305,0.0,0.3238759964432395,0.24290699733242957,0.644333333333332,0.0,129.11728273120252,0.0,82.63427483895346,50.0,44.44,0.0,49.9997403443503,0.0,0.0,129.11728273120252,129.11605443586478,49.9997403443503,49.99974034435031,49.9997403443503,10.042356980382465,13985.419039712599,0.0,19.0,23.309031732854333,0.0,0.0,0.6,1.0,0.5717119397158166,13985.419039712599,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1392.866831472039,19.066483105552795,-4.587633893203766,-5.541711124609929,-5.55,6.529479366362011,0.0,3.6666666666666665,5288.366789290471,-1172.6354028588603,-74.66545986118432,0.0 +2018-01-02 00:00:00,1.5510506584705228,0.27667717843485107,0.864735263731148,1.5510506584705228,0.27667717843485107,0.8647352637311478,0.04146200569388039,0.41625531944330935,0.010000000000000002,0.0,1.0833333333333333,0.05124130375239661,0.8078216123590507,0.005672347619700542,1.0,0.0,0.2737605117681844,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06438364263533634,0.04828773197650224,0.05124130375239661,0.0,0.05124130375239661,0.007888817705619396,0.0,0.022677630387300654,0.0,0.010895557600960339,0.0,0.3006303730555763,0.22547277979168215,0.6643333333333318,0.0,128.67916696718046,0.0,82.35450599608664,50.0,44.44,0.0,49.999742195424396,0.0,0.0,128.67916696718046,128.67891561888538,49.99974219542438,49.999742195424396,49.999742195424396,10.011674398445251,14204.950650818178,0.0,19.0,23.674917751363633,0.0,0.0,0.6,1.0,0.5806862037587973,14204.950650818178,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1394.4894430867305,19.171212962855627,-3.788664228851627,-5.135168895485361,-5.0,6.529479366362011,0.0,4.0,5744.321585837429,-1463.1389276304908,-67.9929377875628,0.0 +2018-01-02 01:00:00,1.4868123669767688,0.27151432233207573,0.8721833086985004,1.4868123669767688,0.27151432233207573,0.8721833086985002,0.035348826089556806,0.3581302075538788,0.010000000000000002,0.0,1.0833333333333333,0.0,0.8309195170493086,0.0412637916491918,1.0,0.0,0.26859765566540905,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06277405156945293,0.04708053867708969,0.0,0.0,0.0,0.007888817705619396,0.0,0.018548370228673224,0.0,0.008911638155264185,0.0,0.2953561559844259,0.22151711698831936,0.6843333333333316,0.0,936.0833805184908,0.0,82.59541793782674,50.0,44.44,0.2894232734207051,49.998563096002975,807.465967595921,0.0,936.0833805184908,129.05534052785427,49.998563096002975,49.99856309600298,49.998563096002975,9.980991816508038,14611.110366332921,0.0,19.0,24.351850610554873,0.0,0.0,0.6,1.0,0.5972896647013685,14611.110366332921,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1390.3755224186816,19.077571261473647,-3.981739273291683,-5.050213847669091,-5.3,6.529479366362011,0.0,4.0,5348.005732577594,-1686.6250434246704,-124.22098483712436,0.0 +2018-01-02 02:00:00,0.6125493988470777,0.2681095385863505,0.8480689540886873,0.6125493988470777,0.26810953858635045,0.8480689540886872,0.03229223628739501,0.35359049589291186,0.010000000000000002,0.0,0.21666666666677092,0.0,0.8211015893493377,0.026967364739349603,1.0,0.0,0.2651928719196838,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06116446050356953,0.04587334537767714,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2924260353893423,0.21931952654200668,0.6992222222222216,0.0,611.7639930789044,0.0,82.66656425608812,50.0,44.44,0.17283110587678985,49.998339115428145,482.15981863294104,0.0,611.7639930789044,129.16650665013768,49.998339115428145,49.998339115428145,49.998339115428145,9.980991816508038,14438.469307542582,0.0,19.0,24.064115512570968,0.0,0.0,0.6,1.0,0.5902322462346532,14438.469307542582,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1386.4557546410422,19.05196972678051,-4.183442301280753,-5.299408610890412,-5.3,6.529479366362011,0.0,4.0,5572.432096777092,-1288.95479556138,-90.82374799619498,0.0 +2018-01-02 03:00:00,0.3913430205193398,0.26470475484062517,0.8812474823211024,0.3913430205193398,0.26470475484062517,0.8812474823211024,0.03229223628739501,0.3490507842319448,0.010000000000000002,0.0,0.0,0.0,0.833736433435381,0.047511048885721587,1.0,0.0,0.2617880881739585,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05955486943768611,0.04466615207826457,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2894959147942587,0.21712193609569394,0.6999999999999998,0.0,1077.8045709184512,0.0,82.66521132948833,50.0,44.44,0.3405151912679014,49.999222081634294,950.0234300560661,0.0,1077.8045709184512,129.1643927023255,49.999222081634294,49.99922208163431,49.999222081634294,9.980991816508038,14660.643775243321,0.0,19.0,24.434406292072207,0.0,0.0,0.6,1.0,0.5993145479893477,14660.643775243321,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1378.550261646891,19.051283113511072,-4.343062391327907,-5.258806787208475,-5.8500000000000005,6.529479366362011,0.0,4.0,5630.562358692136,-2208.722217837008,-167.0666006553976,0.0 +2018-01-02 04:00:00,0.38304623887388695,0.2582233444700622,0.8777910677299604,0.383046238873887,0.2582233444700622,0.8777910677299603,0.03263733513602618,0.3404089037378608,0.010000000000000002,0.0,0.0,0.0,0.813239666311183,0.06455140141877733,1.0,0.0,0.2553066778033955,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05794527837180271,0.04345895877885201,0.0,0.0,0.0,0.007888817705619396,0.0,0.016716843545411055,0.0,0.008031673884995729,0.0,0.2824636253660581,0.2118477190245435,0.6999999999999998,0.0,1464.370859832962,0.0,82.66073153599334,50.0,44.44,0.47862288463967034,49.9970673756277,1335.2118054450673,0.0,1464.370859832962,129.15739302498957,49.9970673756277,49.997067375627715,49.9970673756277,9.980991816508038,14300.22315632686,0.0,19.0,23.83370526054477,0.0,0.0,0.6,1.0,0.5845808621005522,14300.22315632686,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1373.807207730655,19.05048587227336,-5.114927215600808,-5.989018558978373,-6.1499999999999995,6.529479366362011,0.0,3.5,5687.026434774166,-1375.5638270506915,-127.94366714015668,0.0 +2018-01-02 05:00:00,0.42389395215059444,0.2762435861298263,0.7945144442694899,0.4238939521505944,0.27624358612982625,0.7945144442694898,0.04945805953304817,0.3644358926175462,0.010000000000000002,0.0,0.0,0.0,0.7728023982708839,0.021712045998605937,1.0,0.0,0.2733269194631596,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05794527837180271,0.04345895877885201,0.0,0.0,0.0,0.006345353371911252,0.0,0.02912127426386846,0.0,0.013991431897268454,0.0,0.30649061424574353,0.2298679606843076,0.6999999999999998,0.0,492.54527041860183,0.0,82.66142919168796,50.0,44.44,0.12984500775122423,49.99789106331796,362.2604959015607,0.0,492.54527041860183,129.15848311201242,49.99789106331796,49.99789106331797,49.99789106331796,9.980991816508038,13589.163451834764,0.0,19.0,22.64860575305794,0.0,0.0,0.6,1.0,0.5555133510195766,13589.163451834764,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1375.2796568037793,19.05408291519987,-4.626660395417123,-5.824210790892632,-5.849999999999999,6.529479366362011,0.0,4.0,5767.328958221401,-1799.6351924574094,-90.2411790698186,0.0 +2018-01-02 06:00:00,0.6928281353350028,0.35337604790328286,0.7510799113770631,0.6928281353350028,0.35337604790328286,0.7510799113770631,0.181016777389276,0.5018113579457267,0.010000000000000002,0.0,0.0,0.03453218296357163,0.7052584050714682,0.011289323342023165,1.0,0.0,0.3504593812366162,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06116446050356953,0.04587334537767714,0.03453218296357163,0.0,0.03453218296357163,0.006002361297753889,0.0,0.11821672228328535,0.0,0.05679769380823672,0.0,0.40611471447858555,0.30458603585893906,0.6999999999999998,0.0,256.10220329750854,0.0,82.33603061887271,50.0,44.44,0.045682159752133744,49.999487287148135,127.45203597430191,0.0,256.10220329750854,128.6500478419886,49.999487287148135,49.99948728714815,49.999487287148135,9.980991816508038,12401.451863684719,0.0,19.0,20.669086439474533,0.0,0.0,0.6,1.0,0.5069607195999485,12401.451863684719,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1378.7642088879477,19.177547530546608,-4.47024101516286,-5.748080333318182,-5.25,6.529479366362011,0.0,4.0,5931.459121974374,-915.5168272087254,-56.74207455234674,0.0 +2018-01-02 07:00:00,0.6660039618822122,0.36150416966252097,0.7043289291459919,0.6660039618822122,0.36150416966252097,0.7043289291459918,0.17788729122107294,0.4781166706611393,0.010000000000000002,0.0,0.0,0.0,0.6930120387898099,0.01131689035618196,1.0,0.0,0.3585875029958543,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06438364263533634,0.04828773197650224,0.0,0.0,0.0,0.0058308652606752056,0.0,0.11621869317427207,0.0,0.05583773278612567,0.0,0.4137330280258029,0.3102997710193521,0.6999999999999998,0.0,256.72757054499635,0.0,82.57299404748892,50.0,44.44,0.045682161496775286,49.99923164703001,127.45203597430191,0.0,256.72757054499635,129.02030319920144,49.99923164703001,49.99923164703001,49.99923164703001,9.980991816508038,12186.108493290361,0.0,19.0,20.310180822150603,0.0,0.0,0.6,1.0,0.49815766724638605,12186.108493290361,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1388.3110728000927,19.0887100884116,-2.830008681714135,-5.056220665359079,-3.6,6.529479366362011,0.0,3.0,5735.602527010281,-430.57117129115227,-9.202808424693565,113.57320421254225 +2018-01-02 08:00:00,0.6347179229754504,0.35018509741795123,0.6852394486194777,0.6347179229754504,0.35018509741795123,0.6852394486194777,0.16169334864040422,0.46302457433504624,0.010000000000000002,0.0,0.0,0.0,0.6413520295265569,0.04388741909292091,1.0,0.0,0.34726843075128455,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.0,0.0,0.0,0.005659369223596524,0.0,0.10539603550045018,0.0,0.050637943916357536,0.0,0.39703134063382645,0.29777350547536974,0.6999999999999998,0.0,995.6012761987134,0.0,82.57130771592247,50.0,44.44,0.3108854220025739,49.998769701909815,867.3481940219425,0.0,995.6012761987134,129.01766830612885,49.998769701909815,49.998769701909815,49.998769701909815,9.980991816508038,11277.705114402852,0.0,19.0,18.79617519067142,0.0,0.0,0.6,1.0,0.4610229159519512,11277.705114402852,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1394.9581865049697,19.086492458295442,-1.4684744724621683,-3.7724606886115706,-2.25,6.529479366362011,0.0,2.5,5506.060480603212,-253.58906939906328,6.265435338058215,383.92617595094043 +2018-01-02 09:00:00,0.5340090596221163,0.31282605983063544,0.5636509747225453,0.5340090596221163,0.31282605983063544,0.5636509747225453,0.11079653540349114,0.41321252421862514,0.010000000000000002,0.0,0.0,0.0,0.5523088173378664,0.011342157384679,1.0,0.0,0.30990939316396876,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.0,0.0,0.0,0.004801889038203111,0.0,0.07159604307297564,0.0,0.03439860329231238,0.0,0.3472192905174054,0.260414467888054,0.6999999999999998,0.0,257.30076182252714,0.0,82.61387191761087,50.0,44.44,0.04568738397355975,49.9987226245211,127.4520359743019,0.0,257.30076182252714,129.08417487126698,49.9987226245211,49.998722624521115,49.9987226245211,9.980991816508038,9711.945526420333,0.0,19.0,16.186575877367222,0.0,0.0,0.6,1.0,0.3970160064248042,9711.945526420333,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1404.8154933918674,19.073144287346075,-0.32389845284008995,-1.617018017615781,0.25000000000000017,6.529479366362011,0.0,2.5,5022.417717509625,627.4477607191196,62.82757970679108,868.5665812295588 +2018-01-02 10:00:00,0.8622501065908384,0.3477807148046827,0.4347923949425789,0.8622501065908384,0.3477807148046827,0.4347923949425788,0.08068065622496325,0.7715694503658752,0.010000000000000002,0.0,0.0,0.0,0.41583389417398325,0.018958500768595638,1.0,0.0,0.344864048138016,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38487254227134393,0.054841367067117675,0.06438364263533634,0.04828773197650224,0.0,0.0,0.0,0.003772912815731015,0.0,0.05194875683434511,0.0,0.024958986574887123,0.0,0.3223132654591949,0.2417349490943961,0.6999999999999998,0.0,430.08014483751407,0.0,82.6137533077305,50.0,44.44,0.10801679542635223,49.99950143015973,301.3594297008136,0.0,430.08014483751407,129.0839895433289,49.99950143015973,49.99950143015974,49.99950143015973,9.980991816508038,7312.134084193768,0.0,19.0,12.186890140322946,0.0,0.0,0.6,1.0,0.29891377218415216,7312.134084193768,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1413.8653224388627,19.072978516407435,2.786289165424303,2.3613459123482787,3.9,6.529479366362011,0.0,2.0,4256.335969904286,1280.0005531549707,33.41680832486784,1305.2354051233522 +2018-01-02 11:00:00,0.6879275340108721,0.3500491489962992,0.2870163549696196,0.687927534010872,0.3500491489962992,0.2870163549696196,0.12779402277377633,0.5501335112370959,0.010000000000000002,0.0,0.0,0.0,0.2748108487044166,0.01220550626520299,1.0,0.0,0.3471324823296325,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10776431183597629,0.015355582778792946,0.06438364263533634,0.04828773197650224,0.0,0.0,0.0,0.0025724405561802378,0.0,0.08458323228156191,0.0,0.040638349936034164,0.0,0.3779855567657832,0.2834891675743373,0.6999999999999998,0.0,276.88612968010204,0.0,82.58021506358234,50.0,44.44,0.05286532711428674,49.99908354402089,147.49125057809673,0.0,276.88612968010204,129.03158603684741,49.99908354402089,49.9990835440209,49.99908354402089,9.980991816508038,4832.347246511449,0.0,19.0,8.053912077519083,0.0,0.0,0.6,1.0,0.19754221234548153,4832.347246511449,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1415.9517225394468,19.085859605997978,4.051722964165378,7.217832641699803,7.25,6.529479366362011,0.0,3.0,3172.113775518739,959.4681458532064,-132.18783485698202,1218.7934167280291 +2018-01-02 12:00:00,0.5846911447802653,0.34106361561969417,0.1938295881257219,0.5846911447802652,0.34106361561969417,0.19382958812572187,0.12382854617622857,0.4508625986040367,0.010000000000000002,0.0,0.0,0.0,0.18814001951511083,0.00568956861061105,1.0,0.0,0.3381469489530275,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06760282476710315,0.05070211857532734,0.0,0.0,0.0,0.00205795244494419,0.0,0.08225219832104642,0.0,0.039518395410237946,0.0,0.3832597738369336,0.28744483037770013,0.6999999999999998,0.0,129.0698311001432,0.0,82.60469137649726,50.0,44.44,0.0,49.99974166331575,0.0,0.0,129.0698311001432,129.06983027577698,49.99974166331575,49.99974166331575,49.99974166331575,9.980991816508038,3308.3042738255804,0.0,19.0,5.513840456375966,0.0,0.0,0.6,1.0,0.13524064228523944,3308.3042738255804,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1413.4819901782896,19.077558086130946,4.12770142967723,11.430113679538712,9.15,6.529479366362011,0.0,3.0,2344.044609525366,654.4942414526851,-67.50097699684189,1046.235252664355 +2018-01-02 13:00:00,0.5835336520328118,0.34106361561969417,0.1604001152580381,0.5835336520328118,0.34106361561969417,0.1604001152580381,0.1226710534287751,0.4508625986040367,0.010000000000000002,0.0,0.0,0.0,0.13786732848018388,0.022532786777854214,1.0,0.0,0.3381469489530275,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06760282476710315,0.05070211857532734,0.0,0.0,0.0,0.0018864564078655075,0.0,0.081586188618042,0.0,0.0391984084028676,0.0,0.3832597738369336,0.28744483037770013,0.6999999999999998,0.0,511.1640587669856,0.0,82.60048586299436,50.0,44.44,0.1370482320223589,49.999231479160706,382.3561079229057,0.0,511.1640587669856,129.0632591609287,49.999231479160706,49.99923147916072,49.999231479160706,9.980991816508038,2424.2958686164816,0.0,19.0,4.040493114360803,0.0,0.0,0.6,1.0,0.09910313659934866,2424.2958686164816,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1412.9024069177906,19.07751960884192,3.8338128496625177,13.374308197110368,9.4,6.529479366362011,0.0,2.5,1686.1776117869824,479.4843908522716,-212.71069734610134,1055.6814900044208 +2018-01-02 14:00:00,0.580231428382411,0.3371079528163314,0.10254453599153425,0.580231428382411,0.3371079528163313,0.10254453599153425,0.12464304684952465,0.4455883815328863,0.010000000000000002,0.0,0.0,0.0,0.0968436615703573,0.005700874421176941,1.0,0.0,0.3341912861496647,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06760282476710315,0.05070211857532734,0.0,0.0,0.0,0.0018864564078655075,0.0,0.08291820802405085,0.0,0.039838382417608294,0.0,0.3779855567657832,0.2834891675743373,0.6999999999999998,0.0,129.3263073218146,0.0,82.60543988132892,50.0,44.44,0.0,49.99948656730023,0.0,0.0,129.3263073218146,129.07099981457642,49.99948656730023,49.99948656730024,49.99948656730023,9.980991816508038,1702.9247700295819,0.0,19.0,2.8382079500493034,0.0,0.0,0.6,1.0,0.06961410456841988,1702.9247700295819,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1412.142284126903,19.077145814698024,3.510306856473877,13.829189701432488,9.700000000000001,6.529479366362011,0.0,2.0,1173.4951867521866,337.13013979656733,-251.87286212701875,1184.4612068734039 +2018-01-02 15:00:00,0.6759618070918955,0.3660077486314026,0.09223639294121927,0.6759618070918954,0.3660077486314026,0.09223639294121926,0.1617894195256573,0.5041723875662381,0.010000000000000002,0.0,0.0,0.020050944946589978,0.06088347732650056,0.011301970668128722,1.0,0.0,0.36309108196473594,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.020050944946589978,0.0,0.020050944946589978,0.00205795244494419,0.0,0.10789357188671678,0.0,0.051837895193996335,0.0,0.41812820891842833,0.3135961566888212,0.6999999999999998,0.0,256.3891122630262,0.0,82.51958266332304,50.0,44.44,0.04568216157697061,49.99948660430683,127.45203597430191,0.0,256.3891122630262,128.93684791144224,49.99948660430683,49.99948660430683,49.99948660430683,9.980991816508038,1070.5913009031397,0.0,19.0,1.7843188348385661,0.0,0.0,0.6,1.0,0.043764854491967486,1070.5913009031397,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1415.559437199188,19.10883615360898,3.1733569027775315,13.790784163640787,8.9,6.529479366362011,0.0,2.5,1007.8740368340385,212.59244786777535,-349.17822388517726,1169.5034369952766 +2018-01-02 16:00:00,0.806581108647968,0.403691980447487,0.06931110148201151,0.8065811086479678,0.40369198044748694,0.0693111014820115,0.23102366480106737,0.5655574438469005,0.010000000000000002,0.0,0.0,0.031190358805806635,0.032459519260209575,0.005661223415995298,1.0,0.0,0.4007753137808203,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07082200689886999,0.05311650517415247,0.031190358805806635,0.0,0.031190358805806635,0.0032584247044949674,0.0,0.15384824139402206,0.0,0.07391699870255033,0.0,0.46354507814222395,0.34765880860666787,0.6999999999999998,0.0,128.42681055993341,0.0,82.19328095671383,50.0,44.44,0.0,49.99974314154979,0.0,0.0,128.42681055993341,128.42700149486538,49.99974314154979,49.9997431415498,49.99974314154979,9.980991816508038,570.776842543328,0.0,19.0,0.9512947375722135,0.0,0.0,0.3,0.5,0.023332867958314765,570.776842543328,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1425.1447449062364,19.231566566650926,2.762721223636099,11.93879493438238,7.25,6.529479366362011,0.0,3.0,543.0359710819286,115.66400967953179,-357.2707641397699,643.7327854412266 +2018-01-02 17:00:00,0.9436733381748331,0.43313376664383935,0.1749327072894914,0.943673338174833,0.4331337666438393,0.1749327072894914,0.3065813516810294,0.6270919864938037,0.010000000000000002,0.0,0.0,0.05346918652423994,0.0847409288203307,0.03672259194492076,1.0,0.0,0.43021709997717267,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07726037116240361,0.057945278371802696,0.05346918652423994,0.0,0.05346918652423994,0.006345353371911252,0.0,0.20279995456484726,0.0,0.09743604374427088,0.0,0.49636242880716014,0.37227182160537,0.6999999999999998,0.0,833.0646951072372,0.0,82.18123957906185,50.0,44.44,0.2528260534130035,49.999043543089584,705.3694689371417,0.0,833.0646951072372,128.40818684228415,49.999043543089584,49.99904354308959,49.999043543089584,9.980991816508038,1490.1070899577142,0.0,19.0,2.4835118165961902,0.0,0.0,0.6,1.0,0.06091430026979888,1490.1070899577142,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1426.847330565063,19.233223989071195,2.803712831581926,9.345189397032515,5.8500000000000005,6.529479366362011,0.0,3.0,1346.6759667539334,298.63677246210324,-311.9188929412093,110.3285064699636 +2018-01-02 18:00:00,1.0061077480238967,0.4320320085285642,0.24574860447597788,1.0061077480238967,0.43203200852856416,0.24574860447597785,0.35711747571939995,0.6389902723044968,0.010000000000000002,0.0,0.0,0.06683648315529993,0.14689545751808905,0.03201666380258888,1.0,0.0,0.42911534186189754,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08047955329417043,0.06035966497062781,0.06683648315529993,0.0,0.06683648315529993,0.008403305816855444,0.0,0.23554543162923147,0.0,0.11316873827331299,0.0,0.4916742358550265,0.3687556768912697,0.6999999999999998,0.0,726.3090881237134,0.0,81.96967618447461,50.0,44.44,0.21444368406968908,49.99859744789012,598.2827847428605,0.0,726.3090881237134,128.07761903824158,49.99859744789012,49.99859744789012,49.99859744789012,9.980991816508038,2583.048897120083,0.0,19.0,4.305081495200139,0.0,0.0,0.6,1.0,0.10559282429507173,2583.048897120083,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1429.834919032059,19.312567549663818,2.3901050041675824,6.54020614469223,3.0500000000000003,6.529479366362011,0.0,4.0,1741.3966748673463,-436.3753751868644,-356.62359445695193,0.0 +2018-01-02 19:00:00,0.7838857262306121,0.36896412561150876,0.35583939695930394,0.783885726230612,0.3689641256115087,0.355839396959304,0.26799938546274255,0.5058863407678696,0.010000000000000002,0.0,0.0,0.01782306217474665,0.29705397682042833,0.04096235796412898,1.0,0.0,0.3660474589448421,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07726037116240361,0.057945278371802696,0.01782306217474665,0.0,0.01782306217474665,0.011147242410114366,0.0,0.1734955276326526,0.0,0.08335661541997559,0.0,0.4108029074307193,0.3081021805730394,0.6999999999999998,0.0,929.2452531521398,0.0,82.31360445854735,50.0,44.44,0.28691769964893143,49.99796308802278,800.452733870351,0.0,929.2452531521398,128.61500696648025,49.99796308802278,49.99796308802279,49.99796308802278,9.980991816508038,5223.4763428042315,0.0,19.0,8.705793904673719,0.0,0.0,0.6,1.0,0.21353123446100594,5223.4763428042315,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1427.304828685671,19.182779634873633,1.1355319325736417,3.514258847944724,0.55,6.529479366362011,0.0,4.0,2052.3533302530595,-563.2821661138747,-320.2324548563101,0.0 +2018-01-02 20:00:00,0.8921399866965621,0.35545042581274516,0.4721569493960464,0.8921399866965621,0.3554504258127451,0.47215694939604635,0.23153941894623523,0.47004501219477146,0.010000000000000002,0.0,0.18055555555555555,0.0,0.4176356006678554,0.054521348728190984,1.0,0.0,0.3525337591460785,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07565078009652021,0.05673808507239014,0.0,0.0,0.0,0.015606139374160109,0.0,0.14585612495796896,0.0,0.07007715461410616,0.0,0.39439423209825125,0.29579567407368834,0.6563333333333333,0.0,1236.8356466561438,0.0,82.53900142654953,50.0,44.44,0.39691159758099764,49.99693936494441,1107.2817093640408,0.0,1236.8356466561438,128.96718972898364,49.99693936494441,49.99693936494442,49.99693936494441,9.980991816508038,7343.815771637081,0.0,19.0,12.239692952728468,0.0,0.0,0.6,1.0,0.3002088924040221,7343.815771637081,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1420.3122576482613,19.096792086995254,0.03026301868990422,1.4483128337117177,-0.85,6.529479366362011,0.0,4.0,2862.2273378334053,-1158.4694499399932,-277.79204941654325,0.0 +2018-01-02 21:00:00,1.6087037954577594,0.30457768842666577,0.5110991340838972,1.6087037954577594,0.30457768842666577,0.5110991340838972,0.1131557664444272,0.40221469567999896,0.010000000000000002,0.0,1.0833333333333333,0.0,0.4773631123313779,0.033736021752519336,1.0,0.0,0.3016610217599991,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07404118903063679,0.05553089177297758,0.0,0.0,0.0,0.018007083893261663,0.0,0.06426993633992698,0.0,0.030878746211238556,0.0,0.3281735066493621,0.24613012998702152,0.44966666666666666,0.0,765.3133176859224,0.0,82.60761423123814,50.0,44.44,0.22841080814618006,49.99948657329667,637.2601798715094,0.0,765.3133176859224,129.0743972363096,49.99948657329667,49.99948657329667,49.99948657329667,9.980991816508038,8394.080264064905,0.0,19.0,13.990133773441508,0.0,0.0,0.6,1.0,0.34314280439304023,8394.080264064905,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1417.6849943232753,19.07408416034009,-0.796953893091251,-0.19851962227089967,-1.4000000000000001,6.529479366362011,0.0,4.0,3397.3899229983326,-520.9554659421929,-180.53035494962214,0.0 +2018-01-02 22:00:00,1.5276661190112337,0.2760119755167196,0.4923585842608542,1.5276661190112337,0.27601197551671963,0.49235858426085416,0.07020570721116312,0.36412707846673736,0.010000000000000002,0.0,1.0833333333333333,0.0,0.4810030285825541,0.011355555678300043,1.0,0.0,0.2730953088500529,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07082200689886999,0.05311650517415247,0.0,0.0,0.0,0.015606139374160109,0.0,0.03688028730387,0.0,0.017719280533133007,0.0,0.2933050715678674,0.21997880367590048,0.46966666666666684,0.0,257.6047067457807,0.0,82.64413943870709,50.0,44.44,0.04568216173885937,49.99846609207224,127.45203597430191,0.0,257.6047067457807,129.1314678729798,49.99846609207224,49.99846609207224,49.99846609207224,9.980991816508038,8458.085522069921,0.0,19.0,14.09680920344987,0.0,0.0,0.6,1.0,0.3457592844643311,8458.085522069921,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1421.4024403394742,19.061681099357205,0.07233687545028532,-0.6329572922439828,-0.25000000000000006,6.529479366362011,0.0,4.0,3832.5360422356403,170.75486199123426,-80.80530394517994,0.0 +2018-01-02 23:00:00,1.4670354512950594,0.25678750344966184,0.5010449750257713,1.4670354512950594,0.25678750344966184,0.5010449750257713,0.03520766891773262,0.3384944490439936,0.010000000000000002,0.0,1.0833333333333333,0.0,0.49535042684681413,0.005694548178957099,1.0,0.0,0.25387083678299516,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.0,0.0,0.0,0.010804250335956998,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,0.4896666666666669,0.0,129.18279432975916,0.0,82.67698958971913,50.0,44.44,0.0,49.99974143993838,0.0,0.0,129.18279432975916,129.18279623393613,49.99974143993838,49.99974143993839,49.99974143993838,9.980991816508038,8710.37399912154,0.0,19.0,14.517289998535901,0.0,0.0,0.6,1.0,0.3560726211025513,8710.37399912154,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1423.055515312477,19.050493797832637,1.133715641969675,-0.3100249643066063,0.3,6.529479366362011,0.0,4.0,4106.231194034594,-410.9011677518909,-59.03993025796992,0.0 +2018-01-03 00:00:00,1.4625104275988388,0.2555803101502493,0.5376404427060222,1.4625104275988385,0.2555803101502493,0.5376404427060221,0.03229223628739501,0.33688485797811024,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5263276072264657,0.011312835479556511,1.0,0.0,0.2526636434835826,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06438364263533634,0.04828773197650224,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,0.5096666666666668,0.0,256.6355842667743,0.0,82.67747148037267,50.0,44.44,0.0456821618580312,49.99948633961086,127.45203597430192,0.0,256.6355842667743,129.1835491880823,49.99948633961086,49.99948633961086,49.99948633961086,9.950935228855258,9255.084999498766,0.0,19.0,15.425141665831276,0.0,0.0,0.6,1.0,0.37833993978109165,9255.084999498766,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1418.5304621114913,19.049731786832567,0.57896946730415,-0.22226995682830084,-0.3,6.529479366362011,0.0,4.0,4251.847943963709,-590.7241267251947,-85.9860147222215,0.0 +2018-01-03 01:00:00,1.4609008365329552,0.2543731168508367,0.5622660805035244,1.4609008365329552,0.2543731168508367,0.5622660805035244,0.03229223628739501,0.3352752669122268,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5565713373978461,0.005694743105678253,1.0,0.0,0.25145645018417,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06277405156945293,0.04708053867708969,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,0.5296666666666666,0.0,129.18721630982444,0.0,82.67981864217681,50.0,44.44,0.0,49.9997414295066,0.0,0.0,129.18721630982444,129.18721662840127,49.9997414295066,49.9997414295066,49.9997414295066,9.920878641202478,9786.898815827035,0.0,19.0,16.31149802637839,0.0,0.0,0.6,1.0,0.40008003263332226,9786.898815827035,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1416.014945389621,19.04943476260596,0.22347439275041658,-0.5331238298938094,-0.6,6.529479366362011,0.0,4.0,4364.078061029778,-458.65605654834934,-70.70780521177754,0.0 +2018-01-03 02:00:00,1.4592912454670717,0.25316592355142414,0.586691995196784,1.4592912454670715,0.2531659235514241,0.586691995196784,0.03229223628739501,0.33366567584634343,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5809972101126905,0.005694785084093527,1.0,0.0,0.25024925688475746,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06116446050356953,0.04587334537767714,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,0.5496666666666664,0.0,129.18816860468894,0.0,82.6804281108901,50.0,44.44,0.0,49.99974142760056,0.0,0.0,129.18816860468894,129.18816892326578,49.99974142760056,49.99974142760056,49.99974142760056,9.920878641202478,10216.409875210915,0.0,19.0,17.02734979201819,0.0,0.0,0.6,1.0,0.41763807649260726,10216.409875210915,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1413.5319765930697,19.04920661259925,0.09637429522250385,-0.6622381916145755,-0.85,6.529479366362011,0.0,4.0,4462.396702162376,-701.5627991447626,-77.8868050341375,0.0 +2018-01-03 03:00:00,1.4576816544011881,0.2519587302520116,0.6113633524532281,1.4576816544011881,0.2519587302520116,0.6113633524532281,0.03229223628739501,0.33205608478046,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6056685253907194,0.0056948270625088344,1.0,0.0,0.2490420635853449,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05955486943768611,0.04466615207826457,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,0.5696666666666662,0.0,129.18912089955424,0.0,82.68103757960439,50.0,44.44,0.0,49.999741425694516,0.0,0.0,129.18912089955424,129.18912121813187,49.999741425694516,49.99974142569453,49.999741425694516,9.920878641202478,10650.23686207718,0.0,19.0,17.750394770128633,0.0,0.0,0.6,1.0,0.4353725517670412,10650.23686207718,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1410.1438151182701,19.048978462592544,-0.404435494359038,-1.0919568041766496,-1.4000000000000001,6.529479366362011,0.0,4.0,4550.5038452189065,-881.6955710438475,-114.30410376345758,0.0 +2018-01-03 04:00:00,1.4560720633353048,0.25075153695259905,0.6701836858968634,1.4560720633353048,0.25075153695259905,0.6701836858968634,0.03229223628739501,0.3304464937145766,0.010000000000000002,0.0,1.0833333333333333,0.0,0.630699144187301,0.03948454170956242,1.0,0.0,0.2478348702859324,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05794527837180271,0.04345895877885201,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,0.589666666666666,0.0,895.7204804623053,0.0,82.67370547074115,50.0,44.44,0.2747176277189041,49.99922855730117,767.5670801710841,0.0,895.7204804623053,129.17766479803308,49.99922855730117,49.99922855730119,49.99922855730117,9.920878641202478,11090.381937827951,0.0,19.0,18.483969896379918,0.0,0.0,0.6,1.0,0.4533653050981569,11090.381937827951,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1408.2174714781559,19.048750312585838,-0.7650130770639182,-1.5544577986099302,-1.7,6.529479366362011,0.0,4.0,4639.900978637802,-750.8019351457706,-98.23258012724847,0.0 +2018-01-03 05:00:00,1.501453422944288,0.27345997156449686,0.6619711313398654,1.5014534229442877,0.27345997156449686,0.6619711313398654,0.04739568308051426,0.3607244065304403,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6458673262699877,0.01610380506987773,1.0,0.0,0.2705433048978302,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05794527837180271,0.04345895877885201,0.0,0.0,0.0,0.006345353371911252,0.0,0.027728203968417537,0.0,0.013322125740185478,0.0,0.30277912815863767,0.22708434611897818,0.6096666666666658,0.0,365.32038590101814,0.0,82.66311989739314,50.0,44.44,0.08415215616215187,49.998247433351395,235.13498582705742,0.0,365.32038590101814,129.16112483967677,49.998247433351395,49.9982474333514,49.998247433351395,9.920878641202478,11357.10329641847,0.0,19.0,18.928505494030784,0.0,0.0,0.6,1.0,0.46426864555942043,11357.10329641847,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1409.4225776391447,19.05408291519987,-0.5404492461453002,-1.6617440063366526,-1.4000000000000001,6.529479366362011,0.0,3.8333333333333335,4731.074325459767,-441.16522244546746,-34.45759990971623,0.0 +2018-01-03 06:00:00,1.552146287941059,0.2865692983353771,0.6690371647572669,1.5521462879410588,0.2865692983353771,0.6690371647572669,0.08060944571611166,0.378203508891614,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6376266920951823,0.03141047266208461,1.0,0.0,0.2836526316687104,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06116446050356953,0.04587334537767714,0.0,0.0,0.0,0.006002361297753889,0.0,0.05039473419400146,0.0,0.024212350224356315,0.0,0.3170390483880445,0.2377792862910333,0.6296666666666656,0.0,712.5574325107783,0.0,82.64231462854839,50.0,44.44,0.20893341927832923,49.99892739357336,583.7834130878667,0.0,712.5574325107783,129.12861660710686,49.998927393573354,49.99892739357336,49.99892739357336,9.920878641202478,11212.197787586245,0.0,19.0,18.686996312643743,0.0,0.0,0.6,1.0,0.4583450325954659,11212.197787586245,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1408.5706147018718,19.060993491071184,-0.13850410163118662,-1.3850547078554047,-1.1,6.529479366362011,0.0,3.0,4782.712804685999,-591.2037825861299,-40.89985375534013,0.0 +2018-01-03 07:00:00,1.5569737651353934,0.29118127538051486,0.6381088557077308,1.5569737651353934,0.29118127538051486,0.6381088557077308,0.07928762018359574,0.3843528116184644,0.010000000000000002,0.0,1.0833333333333333,0.0,0.6265571689861119,0.011551686721618881,1.0,0.0,0.2882646087138482,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06438364263533634,0.04828773197650224,0.0,0.0,0.0,0.0058308652606752056,0.0,0.04961772287382962,0.0,0.023839032049090905,0.0,0.31996916898312805,0.23997687673734594,0.6496666666666654,0.0,262.05400727577967,0.0,82.64442779887302,50.0,44.44,0.04744691682437332,49.99912189378924,132.5674833887031,0.0,262.05400727577967,129.1319184357391,49.99912189378924,49.99912189378924,49.99912189378924,9.920878641202478,11017.548341363521,0.0,19.0,18.362580568939205,0.0,0.0,0.6,1.0,0.4503879301197656,11017.548341363521,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1408.637817778377,19.061894651644167,-0.0008877910217169974,-1.161932766394872,-0.8500000000000001,6.529479366362011,0.0,2.5,4776.5971483046715,-326.2379135621533,-34.3212763123983,52.9514209806491 +2018-01-03 08:00:00,1.4516419474205817,0.31282605983063544,0.5625227818786932,1.4516419474205817,0.31282605983063544,0.5625227818786932,0.10894252463535392,0.42992164500745017,0.010000000000000002,0.0,0.9027777777777777,0.016709120788824982,0.5401312036185035,0.005682457471364748,1.0,0.0,0.30990939316396876,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.016709120788824982,0.0,0.016709120788824982,0.005659369223596524,0.0,0.06976451638971347,0.0,0.033518639022043925,0.0,0.3472192905174054,0.260414467888054,0.6696666666666653,0.007666666666666914,128.90851244766432,0.0,82.50144707054702,50.0,44.44,0.0,49.99974198562435,0.0,0.0,128.90851244766432,128.90851104772972,49.99974198562435,49.99974198562435,49.99974198562435,9.920878641202478,9497.811119415399,0.0,19.0,15.829685199025663,0.0,0.0,0.6,1.0,0.3882623754580768,9497.811119415399,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1415.7133506925177,19.116206811473536,0.7224785568501714,-0.42728266333586834,1.3499999999999999,6.529479366362011,0.0,1.5,4700.053618697221,580.9603260089999,111.2461907450841,331.6812630524454 +2018-01-03 09:00:00,0.5860299942156331,0.33150557862429336,0.46221496874317974,0.5860299942156331,0.33150557862429336,0.4622149687431797,0.13791144493879737,0.43811854927683563,0.010000000000000002,0.0,0.0,0.0,0.43963747425796845,0.02257749448521129,1.0,0.0,0.3285889119576267,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.0,0.0,0.0,0.004801889038203111,0.0,0.08991130990559731,0.0,0.04319824599499695,0.0,0.37212531557561596,0.27909398668171187,0.6779999999999985,0.0,512.1782685660713,0.0,82.605373412736,50.0,44.44,0.1371117233644131,49.998975355731204,383.1078648389125,0.0,512.1782685660713,129.07089595739998,49.998975355731204,49.99897535573121,49.998975355731204,9.920878641202478,7730.7025840119195,0.0,19.0,12.884504306686532,0.0,0.0,0.6,1.0,0.31602449359017254,7730.7025840119195,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1421.2409757218775,19.075554740432633,3.795152611279816,2.383534419895364,4.45,6.529479366362011,0.0,2.0,4255.241641361895,1439.9751806062093,178.53749536465966,720.7721796982609 +2018-01-03 10:00:00,0.49447137667307306,0.29916585400211765,0.3706477564949299,0.49447137667307306,0.2991658540021176,0.37064775649492987,0.08947246022580496,0.3949989164472681,0.010000000000000002,0.0,0.0,0.0,0.35369799868912694,0.01694975780580293,1.0,0.0,0.29624918733545097,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06438364263533634,0.04828773197650224,0.0,0.0,0.0,0.003772912815731015,0.0,0.057887343352801233,0.0,0.027812204057272725,0.0,0.33061527381193173,0.24796145535894873,0.6779999999999985,0.0,384.5111162036523,0.0,82.62744412169042,50.0,44.44,0.09140840076632413,49.99922990312572,255.4052432259417,0.0,384.5111162036523,129.10538144014126,49.99922990312572,49.99922990312573,49.99922990312572,9.920878641202478,6219.519928415925,0.0,19.0,10.365866547359877,0.0,0.0,0.6,1.0,0.25424864226656146,6219.519928415925,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1422.1467458932927,19.067874990304727,5.357671051684896,5.607047915744528,5.849999999999999,6.529479366362011,0.0,1.1666666666666667,3517.660257188071,1223.9270893860914,-27.127959125613597,1051.0183986254021 +2018-01-03 11:00:00,0.6314045259272925,0.3346935662175062,0.3016396783548752,0.6314045259272925,0.33469356621750623,0.3016396783548752,0.12779402277377633,0.49361050315351607,0.010000000000000002,0.0,0.0,0.05124130375239661,0.24472962505427676,0.005668749548201845,1.0,0.0,0.33177689955083955,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06438364263533634,0.04828773197650224,0.05124130375239661,0.0,0.05124130375239661,0.0025724405561802378,0.0,0.08458323228156191,0.0,0.040638349936034164,0.0,0.3779855567657832,0.2834891675743373,0.6779999999999985,0.0,128.59754347119923,0.0,82.30225155305453,50.0,44.44,0.0,49.999742334792465,0.0,0.0,128.59754347119923,128.59726805164772,49.999742334792465,49.999742334792465,49.999742334792465,9.920878641202478,4303.390988187751,0.0,19.0,7.172318313646252,0.0,0.0,0.6,1.0,0.17591893401450368,4303.390988187751,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1425.848318143194,19.190774006227965,5.599369792854369,8.737397595685962,6.3999999999999995,6.529479366362011,0.0,2.0,3017.978958752405,839.777585657865,-196.02148870097395,1259.368360793084 +2018-01-03 12:00:00,1.6680244781135987,0.34106361561969417,0.3458168648320526,1.6680244781135984,0.34106361561969417,0.3458168648320526,0.12382854617622857,0.4508625986040367,0.010000000000000002,0.0,1.0833333333333333,0.0,0.2782702479715295,0.06754661686052313,1.0,0.0,0.3381469489530275,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06760282476710315,0.05070211857532734,0.0,0.0,0.0,0.00205795244494419,0.0,0.08225219832104642,0.0,0.039518395410237946,0.0,0.3832597738369336,0.28744483037770013,0.008333333333333331,0.0,1532.318357724749,0.0,82.52232228382158,50.0,44.44,0.5023000371821655,49.99693329135719,1403.3774872494203,0.0,1532.318357724749,128.9411285684712,49.99693329135719,49.9969332913572,49.99693329135719,9.920878641202478,4893.178245730834,0.0,19.0,8.155297076218057,0.0,0.0,0.6,1.0,0.20002893143911837,4893.178245730834,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1426.6702087805818,19.101988253462416,5.485126587038696,10.437267434264113,6.1499999999999995,6.529479366362011,0.0,2.0,1780.6294621045283,958.2031181858478,-647.3479837192143,1336.8871889685477 +2018-01-03 13:00:00,1.666866985366145,0.34106361561969417,0.3222742866798182,1.6668669853661449,0.34106361561969417,0.32227428667981817,0.1226710534287751,0.4508625986040367,0.010000000000000002,0.0,1.0833333333333333,0.0,0.31095551791527115,0.011318768764547084,1.0,0.0,0.3381469489530275,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06760282476710315,0.05070211857532734,0.0,0.0,0.0,0.0018864564078655075,0.0,0.081586188618042,0.0,0.0391984084028676,0.0,0.3832597738369336,0.28744483037770013,0.028333333333333332,0.0,256.7701828882188,0.0,82.60323739859922,50.0,44.44,0.045703325980181654,49.99948606648406,127.70262161297086,0.0,256.7701828882188,129.06755843531127,49.99948606648406,49.999486066484074,49.99948606648406,9.920878641202478,5467.924748493572,0.0,19.0,9.113207914155954,0.0,0.0,0.6,1.0,0.22352407570374952,5467.924748493572,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1426.3806976013439,19.07751960884192,5.542342858256501,9.966981209062734,5.1,6.529479366362011,0.0,2.0,1401.1726377311534,592.6019884709559,-903.0490102394424,1425.3184713462026 +2018-01-03 14:00:00,1.6635647617157445,0.3371079528163314,0.31017760005102496,1.663564761715744,0.3371079528163313,0.31017760005102496,0.12464304684952465,0.4455883815328863,0.010000000000000002,0.0,1.0833333333333333,0.0,0.2932520737771766,0.016925526273848347,1.0,0.0,0.3341912861496647,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06760282476710315,0.05070211857532734,0.0,0.0,0.0,0.0018864564078655075,0.0,0.08291820802405085,0.0,0.039838382417608294,0.0,0.3779855567657832,0.2834891675743373,0.04833333333333334,0.0,383.96141552321,0.0,82.60338619921403,50.0,44.44,0.09140665192953305,49.99974166127521,255.40524322594172,0.0,383.96141552321,129.06779093627193,49.99974166127521,49.999741661275216,49.99974166127521,9.920878641202478,5156.622665850881,0.0,19.0,8.594371109751469,0.0,0.0,0.6,1.0,0.21079831346524577,5156.622665850881,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1423.940580961298,19.077145814698028,4.291808042201767,8.512725470681048,3.4499999999999997,6.529479366362011,0.0,2.0,1002.3436237871268,-526.7101517726975,-858.4656324864885,1492.4220561826912 +2018-01-03 15:00:00,1.6831210920520048,0.344251603212907,0.30628705123643374,1.6831210920520048,0.344251603212907,0.3062870512364337,0.13467450999035108,0.45511324872832054,0.010000000000000002,0.0,1.0833333333333333,0.0,0.2836877414589195,0.022599309777514193,1.0,0.0,0.3413349365462403,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.0,0.0,0.0,0.00205795244494419,0.0,0.0895783050540951,0.0,0.043038252491311775,0.0,0.3891200150271008,0.2918400112703255,0.06833333333333333,0.0,512.6731560146004,0.0,82.59467632196204,50.0,44.44,0.13711521403689422,49.998464214373115,383.1078648389125,0.0,512.6731560146004,129.05418175306568,49.99846421437312,49.99846421437312,49.998464214373115,9.920878641202478,4988.4408958780305,0.0,19.0,8.314068159796717,0.0,0.0,0.6,1.0,0.2039231869021454,4988.4408958780305,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1417.8556822333112,19.079294455648977,1.845745902918484,6.657826468424626,0.9999999999999999,6.529479366362011,0.0,3.0,896.6264137433958,-1305.4425480420255,-821.297188574315,1150.6804588869654 +2018-01-03 16:00:00,1.827547564322319,0.3797382445826787,0.3476138085762643,1.8275475643223191,0.37973824458267863,0.3476138085762643,0.1972532774707314,0.5369609535182545,0.010000000000000002,0.0,1.0833333333333333,0.03453218296357163,0.3074118967947204,0.005669728817972231,1.0,0.0,0.376821577916012,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07082200689886999,0.05311650517415247,0.03453218296357163,0.0,0.03453218296357163,0.0032584247044949674,0.0,0.13103740906612052,0.0,0.06295744370011593,0.0,0.4316067636558128,0.3237050727418595,0.0883333333333333,0.0,128.61975854452302,0.0,82.31624662741655,50.0,44.44,0.0,49.99974194354513,0.0,0.0,128.61975854452302,128.61913535533836,49.99974194354513,49.99974194354514,49.99974194354513,9.920878641202478,5405.612769744176,0.0,19.0,9.009354616240294,0.0,0.0,0.6,1.0,0.2209768154366678,5405.612769744176,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1409.5996225056317,19.185534876004365,-0.7568981075912281,3.799502157394627,-1.6500000000000001,6.529479366362011,0.0,3.5,1382.3703459977987,-2084.5184346309684,-696.3793547146871,555.2739330206665 +2018-01-03 17:00:00,2.4661743390912467,0.5033307164897499,0.47655510063460965,2.4661743390912463,0.5033307164897499,0.4765551006346096,0.3065813516810294,1.066259654076884,0.010000000000000002,0.0,1.0833333333333333,0.0,0.4311488151672062,0.04540628546740347,1.0,0.0,0.5004140498230832,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4926368541073202,0.07019694984591061,0.07726037116240361,0.057945278371802696,0.0,0.0,0.0,0.006345353371911252,0.0,0.20279995456484726,0.0,0.09743604374427088,0.0,0.49636242880716014,0.37227182160537,0.10833333333333324,0.0,1030.0572850519213,0.0,82.43189829206383,50.0,44.44,0.32256278277598033,49.99793862017754,901.2577453707216,0.0,1030.0572850519213,128.79984108134974,49.99793862017754,49.99793862017754,49.99793862017754,9.920878641202478,7581.435738917532,0.0,19.0,12.635726231529219,0.0,0.0,0.6,1.0,0.30992259293908364,7581.435738917532,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1394.3998491928178,19.138129201718716,-3.3370376505181327,0.5274042204951164,-4.3999999999999995,6.529479366362011,0.0,4.0,2149.5506706752217,-2754.7491273287783,-527.7330652673094,21.362698985500987 +2018-01-03 18:00:00,2.11846999925877,0.4610402024198918,0.5685470429269538,2.11846999925877,0.46104020241989174,0.5685470429269538,0.41430528492113666,0.6108313810043003,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5270539432166428,0.041493099710311,1.0,0.0,0.4581235357532251,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08047955329417043,0.06035966497062781,0.0,0.0,0.0,0.008403305816855444,0.0,0.27417399440348805,0.0,0.13172798470079317,0.0,0.5303518277101299,0.3977638707825973,0.12833333333333322,0.0,941.2853131682455,0.0,82.43365946211343,50.0,44.44,0.29097466741846856,49.99864004705662,813.0082591422355,0.0,941.2853131682455,128.80259290955223,49.99864004705662,49.99864004705662,49.99864004705662,9.920878641202478,9267.857085239639,0.0,19.0,15.446428475399399,0.0,0.0,0.6,1.0,0.3788620516958221,9267.857085239639,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1385.6475245337826,19.13814435521726,-4.9783595855370315,-2.374724457106398,-5.699999999999999,6.529479366362011,0.0,3.3333333333333335,3110.6037302942045,-2028.623959873783,-315.86308072583745,0.0 +2018-01-03 19:00:00,2.189065671518235,0.4640465389219713,0.6244566827650941,2.189065671518235,0.4640465389219713,0.6244566827650941,0.48089250851116216,0.6148398296737396,0.010000000000000002,0.0,1.0833333333333333,0.0,0.5976702525310386,0.026786430234055563,1.0,0.0,0.4611298722553046,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07726037116240361,0.057945278371802696,0.0,0.0,0.0,0.011147242410114366,0.0,0.31729812267302454,0.0,0.15244714342802315,0.0,0.537579458511336,0.4031845938835019,0.14833333333333318,0.0,607.6594312682013,0.0,82.40353728753553,50.0,44.44,0.17120610720974697,49.99825941895736,478.3780746136684,0.0,607.6594312682013,128.75552701177426,49.99825941895736,49.99825941895737,49.99825941895736,9.920878641202478,10509.593099239792,0.0,19.0,17.515988498732984,0.0,0.0,0.6,1.0,0.4296231553254779,10509.593099239792,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1378.8668018865012,19.150403534735464,-5.279276243526399,-3.6549656704581515,-6.3999999999999995,6.529479366362011,0.0,3.8333333333333335,3936.7535914377627,-2761.8981092804042,-226.3590254451518,0.0 +2018-01-03 20:00:00,2.3127477088317945,0.4911617438379455,0.8027663489337112,2.312747708831794,0.4911617438379455,0.8027663489337112,0.39061355488669847,0.8288008206117627,0.010000000000000002,0.0,1.0833333333333333,0.10654983447073389,0.6776880090803082,0.018528505382669088,1.0,0.0,0.4882450771712788,0.0029166666666666685,0.0,0.0,0.02251973880836343,0.026328492105324886,0.23504923839174108,0.0334927025072105,0.10654983447073389,0.0,0.0,0.07565078009652021,0.05673808507239014,0.0,0.0,0.0,0.015606139374160109,0.0,0.2533056903760161,0.0,0.12170172513652226,0.0,0.4955810633151379,0.3716857974863534,0.16833333333333314,0.0,420.3255508368591,0.0,82.32391578332197,50.0,44.44,0.10444746542132001,49.99930131052897,291.83743853895345,0.0,420.3255508368591,128.63111841144058,49.99930131052897,49.99930131052897,49.99930131052897,9.920878641202478,11916.646668470565,0.0,19.0,19.861077780784274,0.0,0.0,0.6,1.0,0.4871422988752531,11916.646668470565,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1364.4467194341667,19.181406507715877,-6.75188109744485,-4.846095700535449,-8.0,6.529479366362011,0.0,3.6666666666666665,4716.163770905032,-3180.0895174260404,-245.15480665010816,0.0 +2018-01-03 21:00:00,2.042837260890975,0.4947825379512764,0.8333327449774206,2.042837260890975,0.4947825379512763,0.8333327449774205,0.32514505917500325,0.6243588683826387,0.010000000000000002,0.0,1.0833333333333333,0.0,0.7710205405118987,0.06231220446552178,1.0,0.0,0.49186587128460973,0.0029166666666666685,0.0,0.0,0.05629934702090857,0.06582123026331221,0.0,0.0,0.0,0.0,0.0,0.07404118903063679,0.05553089177297758,0.0,0.0,0.0,0.018007083893261663,0.0,0.20746202248587822,0.0,0.09967595279586332,0.0,0.4940183323310932,0.37051374924831987,0.18833333333333313,0.0,1413.5739027459797,0.0,82.4237254816371,50.0,44.44,0.4598412752668452,49.997187167262666,1284.8033423550155,0.0,1413.5739027459797,128.78707106505797,49.997187167262666,49.99718716726267,49.997187167262666,9.920878641202478,13557.8307898387,0.0,19.0,22.596384649731164,0.0,0.0,0.6,1.0,0.5542324986607475,13557.8307898387,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1349.9953375202886,19.139446733643567,-8.06988965147743,-6.290137772053478,-9.35,6.529479366362011,0.0,4.0,4971.234711836195,-3264.3375758974144,-258.21038910203663,0.0 +2018-01-03 22:00:00,1.6804196362746027,0.32282065202317994,0.9132785643767,1.6804196362746027,0.32282065202317994,0.9132785643767,0.16054765579925162,0.42653864714201783,0.010000000000000002,0.0,1.0833333333333333,0.0,0.8682436376373702,0.04503492673932969,1.0,0.0,0.31990398535651327,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07082200689886999,0.05311650517415247,0.0,0.0,0.0,0.015606139374160109,0.0,0.09790342634165039,0.0,0.04703809008344112,0.0,0.3557166402431478,0.2667874801823608,0.20833333333333307,0.0,1021.6328839082822,0.0,82.56296032672063,50.0,44.44,0.319422570896539,49.99779623835425,892.4688634927071,0.0,1021.6328839082822,129.00462551050097,49.99779623835425,49.997796238354255,49.99779623835425,9.920878641202478,15267.427655852225,0.0,19.0,25.445712759753707,0.0,0.0,0.6,1.0,0.6241193527925604,15267.427655852225,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1333.98250799528,19.089024613515814,-9.154144074683016,-7.6626445610792215,-10.65,6.529479366362011,0.0,4.0,5437.088186956643,-3696.5083944329504,-265.6041905608228,0.0 +2018-01-03 23:00:00,1.5134597813511057,0.27619955239209065,0.9566007006471442,1.5134597813511055,0.27619955239209065,0.9566007006471442,0.05574926705054037,0.36437718096723204,0.010000000000000002,0.0,1.0833333333333333,0.0,0.9509077469804664,0.005692953666677759,1.0,0.0,0.273282885725424,0.0029166666666666685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.0,0.0,0.0,0.010804250335956998,0.0,0.03035894229528502,0.0,0.014586074419298352,0.0,0.2983839472660123,0.22378796044950913,0.22833333333333306,0.0,129.14662226739966,0.0,82.6538439281548,50.0,44.44,0.0,49.99974151928391,0.0,0.0,129.14662226739966,129.14663113774188,49.99974151928391,49.99974151928391,49.99974151928391,9.920878641202478,16721.01539830372,0.0,19.0,27.868358997172862,0.0,0.0,0.6,1.0,0.6835407734467646,16721.01539830372,24462.352573333334,0.0,0.0,22.0,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1317.767363022609,19.05915820491455,-10.3565977436529,-8.981966505036814,-11.9,6.529479366362011,0.0,4.0,5876.783333205654,-3813.232075759089,-267.0686728434153,0.0 diff --git a/ochre/defaults/Input Files/OCHRE with Controller_metrics.csv b/ochre/defaults/Input Files/OCHRE with Controller_metrics.csv new file mode 100644 index 0000000..08373af --- /dev/null +++ b/ochre/defaults/Input Files/OCHRE with Controller_metrics.csv @@ -0,0 +1,50 @@ +Metric,Value +Total Electric Energy (kWh),84.04442977313063 +Total Gas Energy (therms),43.63171664005722 +Average Electric Power (kW),1.1672837468490367 +Peak Electric Power (kW),3.1699846354524492 +Peak Electric Power - 15 min avg (kW),3.1699846354524492 +Peak Electric Power - 30 min avg (kW),2.8972755891679682 +Peak Electric Power - 1 hour avg (kW),2.7225300297780723 +Lighting Electric Energy (kWh),10.785714442881087 +Other Electric Energy (kWh),35.488715330249434 +HVAC Cooling Electric Energy (kWh),0.7200000000000003 +HVAC Heating Electric Energy (kWh),0.0 +EV Electric Energy (kWh),37.050000000000104 +Other Gas Energy (therms),1.1837856497595611 +HVAC Heating Gas Energy (therms),40.666426703218164 +Water Heating Gas Energy (therms),1.7815042870795028 +Average Temperature - Indoor (C),19.10745286726903 +Average Temperature - Foundation (C),-1.908297741534829 +Average Temperature - Attic (C),-0.49617127649266474 +"Component Load - Ducts, Heating (kWh)",-0.0 +"Component Load - Ducts, Cooling (kWh)",-0.0 +Unmet Heating Load (C-hours),0.0 +Unmet Cooling Load (C-hours),0.0 +Total HVAC Heating Delivered (kWh),715.0892915298424 +Average HVAC Heating COP (-),0.6000000000000001 +Average HVAC Heating SHR (-),1.0 +Average HVAC Heating Duct Efficiency (-),1.0 +Total HVAC Cooling Delivered (kWh),0.0 +Average HVAC Cooling COP (-),0.0 +Total Water Heating Delivered (kWh),40.41404070753221 +Average Water Heating COP (-),0.0 +Total Hot Water Unmet Demand (kWh),0.0 +Total Hot Water Delivered (gal/day),59.47778324237036 +Total Hot Water Delivered (kWh),31.401856143123382 +Clothes Washer Electric Energy (kWh),0.40535529855054175 +Clothes Dryer Electric Energy (kWh),1.5498559156455427 +Dishwasher Electric Energy (kWh),1.4779105623219604 +Refrigerator Electric Energy (kWh),4.833601970847876 +Cooking Range Electric Energy (kWh),0.4812226787181594 +Exterior Lighting Electric Energy (kWh),0.5144881112360474 +Indoor Lighting Electric Energy (kWh),6.937889677167392 +Basement Lighting Electric Energy (kWh),3.33333665447765 +MELs Electric Energy (kWh),26.740768904165353 +Clothes Dryer Gas Energy (therms),0.7025629710414016 +Cooking Range Gas Energy (therms),0.4812226787181594 +Clothes Washer Cycles,3.0 +Clothes Dryer Cycles,3.0 +Dishwasher Cycles,3.0 +Cooking Range Cycles,8.0 +EV Cycles,3.0 diff --git a/ochre/defaults/Input Files/OCHRE.csv b/ochre/defaults/Input Files/OCHRE.csv new file mode 100644 index 0000000..9a29946 --- /dev/null +++ b/ochre/defaults/Input Files/OCHRE.csv @@ -0,0 +1,433 @@ +Time,Total Electric Power (kW),Total Reactive Power (kVAR),Total Gas Power (therms/hour),Total Electric Energy (kWh),Total Reactive Energy (kVARh),Total Gas Energy (therms),HVAC Cooling Electric Power (kW),HVAC Heating Electric Power (kW),PV Electric Power (kW),Other Electric Power (kW),Lighting Electric Power (kW),Water Heating Gas Power (therms/hour),HVAC Heating Gas Power (therms/hour),Other Gas Power (therms/hour),Grid Voltage (-),HVAC Cooling Reactive Power (kVAR),HVAC Heating Reactive Power (kVAR),PV Reactive Power (kVAR),Other Reactive Power (kVAR),Lighting Reactive Power (kVAR),Clothes Washer Mode,Clothes Washer Electric Power (kW),Clothes Washer Reactive Power (kVAR),Clothes Dryer Mode,Clothes Dryer Electric Power (kW),Clothes Dryer Reactive Power (kVAR),Clothes Dryer Gas Power (therms/hour),Dishwasher Mode,Dishwasher Electric Power (kW),Dishwasher Reactive Power (kVAR),Refrigerator Mode,Refrigerator Electric Power (kW),Refrigerator Reactive Power (kVAR),Cooking Range Mode,Cooking Range Electric Power (kW),Cooking Range Reactive Power (kVAR),Cooking Range Gas Power (therms/hour),Exterior Lighting Mode,Exterior Lighting Electric Power (kW),Exterior Lighting Reactive Power (kVAR),Indoor Lighting Mode,Indoor Lighting Electric Power (kW),Indoor Lighting Reactive Power (kVAR),Basement Lighting Mode,Basement Lighting Electric Power (kW),Basement Lighting Reactive Power (kVAR),MELs Mode,MELs Electric Power (kW),MELs Reactive Power (kVAR),PV Mode,PV P Setpoint (kW),PV Q Setpoint (kW),Water Heating Mode,Water Heating Delivered (W),Water Heating COP (-),Water Heating Total Sensible Heat Gain (W),Water Heating Deadband Upper Limit (C),Water Heating Deadband Lower Limit (C),Hot Water Delivered (L/min),Hot Water Outlet Temperature (C),Hot Water Delivered (W),Hot Water Unmet Demand (kW),Hot Water Heat Injected (W),Hot Water Heat Loss (W),Hot Water Average Temperature (C),Hot Water Maximum Temperature (C),Hot Water Minimum Temperature (C),Hot Water Mains Temperature (C),HVAC Heating Mode,HVAC Heating Delivered (W),HVAC Heating Duct Losses (W),HVAC Heating Setpoint (C),HVAC Heating Main Power (kW),HVAC Heating Fan Power (kW),HVAC Heating Latent Gains (W),HVAC Heating COP (-),HVAC Heating SHR (-),HVAC Heating Speed (-),HVAC Heating Capacity (W),HVAC Heating Max Capacity (W),HVAC Cooling Mode,HVAC Cooling Delivered (W),HVAC Cooling Duct Losses (W),HVAC Cooling Setpoint (C),HVAC Cooling Main Power (kW),HVAC Cooling Fan Power (kW),HVAC Cooling Latent Gains (W),HVAC Cooling COP (-),HVAC Cooling SHR (-),HVAC Cooling Speed (-),HVAC Cooling Capacity (W),HVAC Cooling Max Capacity (W),Temperature - Indoor (C),Temperature - Foundation (C),Temperature - Attic (C),Temperature - Outdoor (C),Temperature - Ground (C),Unmet HVAC Load (C),Occupancy (Persons),Net Sensible Heat Gain - Indoor (W),Net Sensible Heat Gain - Foundation (W),Net Sensible Heat Gain - Attic (W),Window Transmitted Solar Gain (W) +2018-01-01 00:00:00,0.3791770942655053,0.2555803101502493,1.1977052462601132,0.0631961823775842,0.04259671835837488,0.1996175410433522,0.010000000000000002,0.0,0.0,0.33688485797811024,0.03229223628739501,0.0058158571221827784,1.1918893891379305,0.0,1,0.0029166666666666685,0,0,0.2526636434835826,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.9347296494026,0,84.43822697593842,51.666666666666686,46.10666666666668,0.0,51.666402596652915,0.0,0.0,131.9347296494026,131.93472964990377,51.666402596652915,51.666402596652915,51.666402596652915,10.042356980382465,On,20958.50085577181,0.0,20.000000000000057,34.930834759619685,0.0,0.0,0.6,1,0.8567655458706327,20958.50085577181,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1255.9762009160147,20.057854558926863,-3.680878494326496,-5.22396275025196,-18.0,6.529479366362011,0,4.0,5728.075577342945,-31026.871920582824,-1194.084794909214,0.0 +2018-01-01 00:10:00,0.3791770942655053,0.2555803101502493,1.2018300151918222,0.0631961823775842,0.04259671835837488,0.20030500253197037,0.010000000000000002,0.0,0.0,0.33688485797811024,0.03229223628739501,0.005817368312219085,1.196012646879603,0.0,1,0.0029166666666666685,0,0,0.2526636434835826,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.9690115178702,0,84.46021141046542,51.666666666666686,46.10666666666668,0.0,51.66640259665241,0.0,0.0,131.9690115178702,131.96908032885221,51.66640259665241,51.66640259665242,51.66640259665241,10.042356980382465,On,21031.00531943678,0.0,20.000000000000057,35.05167553239463,0.0,0.0,0.6,1,0.8597294661823695,21031.00531943678,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1255.5485630596413,20.049624887611603,-16.229858489647878,-6.780835844840268,-18.0,6.529479366362011,0,4.0,5811.585361242362,-6046.745393718371,-1003.9570326989301,0.0 +2018-01-01 00:20:00,0.3791770942655053,0.2555803101502493,1.2039426150915122,0.0631961823775842,0.04259671835837488,0.20065710251525204,0.010000000000000002,0.0,0.0,0.33688485797811024,0.03229223628739501,0.005817371332898257,1.198125243758614,0.0,1,0.0029166666666666685,0,0,0.2526636434835826,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.9690800430216,0,84.46021131556184,51.666666666666686,46.10666666666668,0.0,51.66640252803656,0.0,0.0,131.9690800430216,131.96908018056536,51.66640252803656,51.66640252803657,51.66640252803656,10.042356980382465,On,21068.153786316474,0.0,20.000000000000057,35.11358964386079,0.0,0.0,0.6,1,0.8612480636585661,21068.153786316474,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1261.0634966862729,20.049624887611603,-16.279804104252946,-8.02684951175825,-18.0,6.529479366362011,0,4.0,5860.415897019351,-5644.063767997804,-878.7475398550521,0.0 +2018-01-01 00:30:00,0.3791770942655053,0.2555803101502493,1.2078136537235897,0.0631961823775842,0.04259671835837488,0.20130227562059827,0.010000000000000002,0.0,0.0,0.33688485797811024,0.03229223628739501,0.005817371338935925,1.2019962823846537,0.0,1,0.0029166666666666685,0,0,0.2526636434835826,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.9690801799882,0,84.4602113153703,51.666666666666686,46.10666666666668,0.0,51.66640252789941,0.0,0.0,131.9690801799882,131.9690801802661,51.666402527899415,51.66640252789942,51.66640252789941,10.042356980382465,On,21136.22316179372,0.0,20.000000000000057,35.22703860298954,0.0,0.0,0.6,1,0.8640306813676841,21136.22316179372,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1259.8584902642326,20.0496248876116,-16.26633043763996,-9.155552897925372,-18.0,6.529479366362011,0,4.0,5927.927216048949,-5520.573084660202,-769.159922228825,0.0 +2018-01-01 00:40:00,0.3791770942655053,0.2555803101502493,1.2141747264866152,0.0631961823775842,0.04259671835837488,0.20236245441443584,0.010000000000000002,0.0,0.0,0.33688485797811024,0.03229223628739501,0.005817371338948383,1.2083573551476667,0.0,1,0.0029166666666666685,0,0,0.2526636434835826,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.96908018027082,0,84.46021131536877,51.666666666666686,46.10666666666668,0.0,51.66640252789914,0.0,0.0,131.96908018027082,131.9690801802637,51.66640252789914,51.66640252789914,51.66640252789914,10.042356980382465,On,21248.077961544608,0.0,20.000000000000057,35.41346326924102,0.0,0.0,0.5999999999999999,1,0.8686032096809593,21248.077961544608,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1258.6400826574932,20.049624887611603,-16.25556445044346,-10.158132672253425,-18.0,6.529479366362011,0,4.0,6012.788988652106,-5446.13219478649,-672.9716575969691,0.0 +2018-01-01 00:50:00,0.3791770942655053,0.2555803101502493,1.221607979677373,0.0631961823775842,0.04259671835837488,0.20360132994622882,0.010000000000000002,0.0,0.0,0.33688485797811024,0.03229223628739501,0.005817371338947965,1.215790608338425,0.0,1,0.0029166666666666685,0,0,0.2526636434835826,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.96908018026133,0,84.46021131536878,51.666666666666686,46.10666666666668,0.0,51.666402527899145,0.0,0.0,131.96908018026133,131.96908018026372,51.666402527899145,51.666402527899145,51.666402527899145,10.042356980382465,On,21378.78626785176,0.0,20.000000000000057,35.6313104464196,0.0,0.0,0.6,1,0.8739464531778925,21378.78626785176,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1257.5101941851065,20.049624887611603,-16.243960894472544,-11.024109963810517,-18.0,6.529479366362011,0,4.0,6111.158767514651,-5397.003622260615,-591.776169363965,0.0 +2018-01-01 01:00:00,0.37756750319962185,0.2543731168508367,1.2297852081338776,0.06292791719993697,0.04239551947513945,0.20496420135564625,0.010000000000000002,0.0,0.0,0.3352752669122268,0.03229223628739501,0.005817371338947965,1.2239678367949296,0.0,1,0.0029166666666666685,0,0,0.25145645018417,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.96908018026133,0,84.46021131536878,51.666666666666686,46.10666666666668,0.0,51.66640252789914,0.0,0.0,131.96908018026133,131.96908018026372,51.66640252789914,51.666402527899145,51.66640252789914,10.042356980382465,On,21522.576833625186,0.0,20.000000000000057,35.87096138937532,0.0,0.0,0.5999999999999999,1,0.8798244882255181,21522.576833625186,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1256.3647942450423,20.049624887611603,-16.231908965394393,-11.76005833926244,-18.0,6.529479366362011,0,4.0,6217.571011345544,-5358.695293701884,-524.8591291329192,0.0 +2018-01-01 01:10:00,0.37756750319962185,0.2543731168508367,1.238512687225108,0.06292791719993697,0.04239551947513945,0.20641878120418466,0.010000000000000002,0.0,0.0,0.3352752669122268,0.03229223628739501,0.005817413233453883,1.2326952739916541,0.0,1,0.0029166666666666685,0,0,0.25145645018417,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.9700305716131,0,84.46082078671847,51.666666666666686,46.10666666666668,0.0,51.66640252789914,0.0,0.0,131.9700305716131,131.9700324792476,51.66640252789914,51.66640252789914,51.66640252789914,10.042356980382465,On,21676.04241660898,0.0,20.000000000000057,36.12673736101497,0.0,0.0,0.6,1,0.8860980296816693,21676.04241660898,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1255.2718802530426,20.049396737604894,-16.21920705558953,-12.380722555919178,-18.0,6.529479366362011,0,4.0,6332.9035757540605,-5326.031035531501,-470.30257754621454,0.0 +2018-01-01 01:20:00,0.37756750319962185,0.2543731168508367,1.2473649336928236,0.06292791719993697,0.04239551947513945,0.2078941556154706,0.010000000000000002,0.0,0.0,0.3352752669122268,0.03229223628739501,0.005817413317195854,1.2415475203756279,0.0,1,0.0029166666666666685,0,0,0.25145645018417,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97003247132866,0,84.4608207840932,51.666666666666686,46.10666666666668,0.0,51.666402525996915,0.0,0.0,131.97003247132866,131.97003247514562,51.666402525996915,51.666402525996915,51.666402525996915,10.042356980382465,On,21831.70267762381,0.0,20.000000000000057,36.38617112937302,0.0,0.0,0.6,1,0.8924612876940862,21831.70267762381,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1254.1911186994007,20.049396737604898,-16.20589099417248,-12.902881660339338,-18.0,6.529479366362011,0,4.0,6449.786975763471,-5297.544728164575,-425.9536813075947,0.0 +2018-01-01 01:30:00,0.37756750319962185,0.2543731168508367,1.2010515563334816,0.06292791719993697,0.04239551947513945,0.2001752593889136,0.010000000000000002,0.0,0.0,0.3352752669122268,0.03229223628739501,0.005817413317363377,1.1952341430161182,0.0,1,0.0029166666666666685,0,0,0.25145645018417,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.970032475129,0,84.4608207840856,51.666666666666686,46.10666666666668,0.0,51.66640252599311,0.0,0.0,131.970032475129,131.97003247513373,51.66640252599311,51.66640252599311,51.66640252599311,10.042356980382465,On,21017.31589990023,0.0,20.000000000000057,35.02885983316705,0.0,0.0,0.6,1,0.859169854448563,21017.31589990023,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1275.0465617294165,20.049396737604894,-16.19246012732705,-13.342513189634337,-16.6,6.529479366362011,0,4.0,6552.420262246127,-2201.6853481578846,-288.33270798467026,0.0 +2018-01-01 01:40:00,0.37756750319962185,0.2543731168508367,1.2097807505202147,0.06292791719993697,0.04239551947513945,0.20163012508670244,0.010000000000000002,0.0,0.0,0.3352752669122268,0.03229223628739501,0.005817413317363797,1.2039633372028509,0.0,1,0.0029166666666666685,0,0,0.25145645018417,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.9700324751385,0,84.46082078408561,51.666666666666686,46.10666666666668,0.0,51.66640252599309,0.0,0.0,131.9700324751385,131.97003247513376,51.6664025259931,51.66640252599311,51.66640252599309,10.042356980382465,On,21170.81237826485,0.0,20.000000000000057,35.284687297108086,0.0,0.0,0.6,1,0.8654446588813938,21170.81237826485,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1274.0321398293563,20.049396737604894,-14.862270293765162,-13.566223886436578,-16.6,6.529479366362011,0,4.0,6666.876013393061,-4797.442813318744,-271.88494574123825,0.0 +2018-01-01 01:50:00,0.37756750319962185,0.2543731168508367,1.2181772072534967,0.06292791719993697,0.04239551947513945,0.20302953454224942,0.010000000000000002,0.0,0.0,0.3352752669122268,0.03229223628739501,0.005817413317363377,1.2123597939361332,0.0,1,0.0029166666666666685,0,0,0.25145645018417,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.970032475129,0,84.4608207840856,51.666666666666686,46.10666666666668,0.0,51.66640252599311,0.0,0.0,131.970032475129,131.97003247513373,51.66640252599311,51.66640252599311,51.66640252599311,10.042356980382465,On,21318.45791251802,0.0,20.000000000000057,35.530763187530034,0.0,0.0,0.6,1,0.871480281735351,21318.45791251802,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1272.4400462778206,20.049396737604898,-14.843305291487802,-13.748795393918556,-16.6,6.529479366362011,0,4.0,6777.256212420118,-4817.337294409609,-256.8285214549629,0.0 +2018-01-01 02:00:00,0.3759579121337384,0.25316592355142414,1.2261464714954118,0.06265965202228974,0.04219432059190402,0.20435774524923528,0.010000000000000002,0.0,0.0,0.33366567584634343,0.03229223628739501,0.005817413317363797,1.220329058178048,0.0,1,0.0029166666666666685,0,0,0.25024925688475746,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.9700324751385,0,84.46082078408561,51.666666666666686,46.10666666666668,0.0,51.66640252599309,0.0,0.0,131.9700324751385,131.97003247513376,51.6664025259931,51.66640252599311,51.66640252599309,10.042356980382465,On,21458.591580084976,0.0,20.000000000000057,35.76431930014163,0.0,0.0,0.6,1,0.8772088259195974,21458.591580084976,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1271.5962332008758,20.049396737604894,-14.831693744443712,-13.888380595651364,-16.6,6.529479366362011,0,4.0,6880.349849132817,-4808.1956596319615,-245.40758588648345,0.0 +2018-01-01 02:10:00,0.3759579121337384,0.25316592355142414,1.2337243216348808,0.06265965202228974,0.04219432059190402,0.20562072027248013,0.010000000000000002,0.0,0.0,0.33366567584634343,0.03229223628739501,0.0058174552118691915,1.2279068664230115,0.0,1,0.0029166666666666685,0,0,0.25024925688475746,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.9709828664784,0,84.4614302554353,51.666666666666686,46.10666666666668,0.0,51.66640252599311,0.0,0.0,131.9709828664784,131.97098477411765,51.66640252599311,51.66640252599311,51.66640252599311,10.042356980382465,On,21591.84178101328,0.0,20.000000000000057,35.98640296835547,0.0,0.0,0.6,1,0.8826559798893086,21591.84178101328,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1270.7934317302793,20.04916858759819,-14.82016530440535,-13.997879443409069,-16.6,6.529479366362011,0,4.0,6980.090161939974,-4794.194678124437,-236.8164126957558,0.0 +2018-01-01 02:20:00,0.3759579121337384,0.25316592355142414,1.2407326937013854,0.06265965202228974,0.04219432059190402,0.20678878228356423,0.010000000000000002,0.0,0.0,0.33366567584634343,0.03229223628739501,0.005817455295610847,1.2349152384057744,0.0,1,0.0029166666666666685,0,0,0.25024925688475746,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97098476618683,0,84.46143025280242,51.666666666666686,46.10666666666668,0.0,51.66640252409087,0.0,0.0,131.97098476618683,131.97098477000378,51.66640252409088,51.666402524090884,51.66640252409087,10.042356980382465,On,21715.078862857383,0.0,20.000000000000057,36.191798104762306,0.0,0.0,0.6,1,0.8876938061357686,21715.078862857383,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1269.9905582327995,20.04916858759819,-14.808885453836059,-14.087877880589518,-16.6,6.529479366362011,0,4.0,7072.143668065595,-4779.480162339777,-230.08613834104034,0.0 +2018-01-01 02:30:00,0.3759579121337384,0.25316592355142414,1.1985323992862453,0.06265965202228974,0.04219432059190402,0.19975539988104088,0.010000000000000002,0.0,0.0,0.33366567584634343,0.03229223628739501,0.005817455295778162,1.1927149439904672,0.0,1,0.0029166666666666685,0,0,0.25024925688475746,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97098476998244,0,84.46143025279636,51.666666666666686,46.10666666666668,0.0,51.666402524087076,0.0,0.0,131.97098476998244,131.97098476999432,51.66640252408707,51.666402524087076,51.666402524087076,10.042356980382465,On,20973.017632446776,0.0,20.000000000000057,34.955029387411294,0.0,0.0,0.6,1,0.8573589792549096,20973.017632446776,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1288.3606735910498,20.04916858759819,-14.798410270043245,-14.165114251922681,-15.3,6.529479366362011,0,4.0,7144.37235961023,-1904.5946061884006,-162.54369602872578,0.0 +2018-01-01 02:40:00,0.3759579121337384,0.25316592355142414,1.2044808990368767,0.06265965202228974,0.04219432059190402,0.20074681650614612,0.010000000000000002,0.0,0.0,0.33366567584634343,0.03229223628739501,0.00581745529577879,1.198663443741098,0.0,1,0.0029166666666666685,0,0,0.25024925688475746,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97098476999668,0,84.46143025279635,51.666666666666686,46.10666666666668,0.0,51.66640252408706,0.0,0.0,131.97098476999668,131.9709847699943,51.66640252408706,51.66640252408706,51.66640252408706,10.042356980382465,On,21077.617638328466,0.0,20.000000000000057,35.12936273054744,0.0,0.0,0.6,1,0.861634937814828,21077.617638328466,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1287.6025099079563,20.04916858759819,-13.56205353025765,-14.140873638211929,-15.3,6.529479366362011,0,4.0,7223.247115584585,-4329.886804563626,-160.99308948017554,0.0 +2018-01-01 02:50:00,0.3759579121337384,0.25316592355142414,1.2100164332610075,0.06265965202228974,0.04219432059190402,0.20166940554350124,0.010000000000000002,0.0,0.0,0.33366567584634343,0.03229223628739501,0.00581745529577879,1.2041989779652287,0.0,1,0.0029166666666666685,0,0,0.25024925688475746,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97098476999668,0,84.46143025279635,51.666666666666686,46.10666666666668,0.0,51.66640252408706,0.0,0.0,131.97098476999668,131.9709847699943,51.66640252408706,51.66640252408706,51.66640252408706,10.042356980382465,On,21174.95594826804,0.0,20.000000000000057,35.291593247113404,0.0,0.0,0.6,1,0.8656140444705667,21174.95594826804,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1286.6882529115746,20.04916858759819,-13.547677272793173,-14.104205681180234,-15.3,6.529479366362011,0,4.0,7295.559296673497,-4354.027538785787,-159.3641327739139,0.0 +2018-01-01 03:00:00,0.374348321067855,0.2519587302520116,1.2149940067526956,0.062391386844642495,0.0419931217086686,0.20249900112544927,0.010000000000000002,0.0,0.0,0.33205608478046,0.03229223628739501,0.00581745529577879,1.2091765514569168,0.0,1,0.0029166666666666685,0,0,0.24904206358534492,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97098476999668,0,84.46143025279635,51.666666666666686,46.10666666666668,0.0,51.66640252408706,0.0,0.0,131.97098476999668,131.9709847699943,51.66640252408706,51.66640252408706,51.66640252408706,10.042356980382465,On,21262.482927898815,0.0,20.000000000000057,35.43747154649803,0.0,0.0,0.5999999999999999,1,0.8691920723551859,21262.482927898815,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1286.137607422757,20.049168587598192,-13.540317390899624,-14.054765503007259,-15.3,6.529479366362011,0,4.0,7359.3483481972235,-4350.722739717815,-158.91100684932795,0.0 +2018-01-01 03:10:00,0.374348321067855,0.2519587302520116,1.2195637563101154,0.062391386844642495,0.0419931217086686,0.20326062605168588,0.010000000000000002,0.0,0.0,0.33205608478046,0.03229223628739501,0.00581749719028471,1.2137462591198307,0.0,1,0.0029166666666666685,0,0,0.24904206358534492,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97193516134848,0,84.46203972414911,51.666666666666686,46.10666666666668,0.0,51.66640252408706,0.0,0.0,131.97193516134848,131.97193706898298,51.66640252408706,51.66640252408706,51.66640252408706,10.042356980382465,On,21342.8378860322,0.0,20.000000000000057,35.57139647672034,0.0,0.0,0.6,1,0.8724769141500418,21342.8378860322,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1285.6154348082348,20.048940437591483,-13.533299765514606,-14.00171580534616,-15.3,6.529479366362011,0,4.0,7419.56626934234,-4341.922011356128,-159.51197888835844,0.0 +2018-01-01 03:20:00,0.374348321067855,0.2519587302520116,1.2235950936082631,0.062391386844642495,0.0419931217086686,0.20393251560137718,0.010000000000000002,0.0,0.0,0.33205608478046,0.03229223628739501,0.0058174972740266786,1.2177775963342365,0.0,1,0.0029166666666666685,0,0,0.24904206358534492,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.971937061064,0,84.46203972152078,51.666666666666686,46.10666666666668,0.0,51.66640252218483,0.0,0.0,131.971937061064,131.97193706487622,51.66640252218483,51.66640252218484,51.66640252218483,10.042356980382465,On,21413.725994633573,0.0,20.000000000000057,35.68954332438929,0.0,0.0,0.5999999999999999,1,0.8753747592525871,21413.725994633573,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1285.1163454880777,20.048940437591483,-13.526552755638729,-13.952000934103717,-15.3,6.529479366362011,0,4.0,7472.53629997403,-4331.946845533471,-160.52108814304847,0.0 +2018-01-01 03:30:00,0.374348321067855,0.2519587302520116,1.192472331195354,0.062391386844642495,0.0419931217086686,0.198745388532559,0.010000000000000002,0.0,0.0,0.33205608478046,0.03229223628739501,0.005817497274193785,1.1866548339211602,0.0,1,0.0029166666666666685,0,0,0.24904206358534492,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97193706485487,0,84.46203972151015,51.666666666666686,46.10666666666668,0.0,51.66640252218103,0.0,0.0,131.97193706485487,131.97193706485962,51.66640252218103,51.66640252218104,51.66640252218103,10.042356980382465,On,20866.45504095873,0.0,20.000000000000057,34.77742506826455,0.0,0.0,0.6,1,0.8530027918780579,20866.45504095873,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1297.1699389613002,20.048940437591483,-13.520517812435914,-13.90894981369839,-14.4,6.529479366362011,0,4.0,7510.8192935624265,-2344.996906249683,-130.9611560812365,0.0 +2018-01-01 03:40:00,0.374348321067855,0.2519587302520116,1.1956675203272942,0.062391386844642495,0.0419931217086686,0.19927792005454903,0.010000000000000002,0.0,0.0,0.33205608478046,0.03229223628739501,0.005817497274194099,1.1898500230531002,0.0,1,0.0029166666666666685,0,0,0.24904206358534492,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.971937064862,0,84.46203972151169,51.666666666666686,46.10666666666668,0.0,51.66640252218102,0.0,0.0,131.971937064862,131.971937064862,51.66640252218102,51.66640252218103,51.66640252218102,10.042356980382465,On,20922.640098705193,0.0,20.000000000000057,34.87106683117533,0.0,0.0,0.5999999999999999,1,0.8552995888675556,20922.640098705193,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1296.6561331016735,20.048940437591483,-12.667471246362734,-13.825747672359835,-14.4,6.529479366362011,0,4.0,7553.102925459016,-4020.2553815096626,-131.55222207435452,0.0 +2018-01-01 03:50:00,0.374348321067855,0.2519587302520116,1.1985197368403337,0.062391386844642495,0.0419931217086686,0.19975328947338894,0.010000000000000002,0.0,0.0,0.33205608478046,0.03229223628739501,0.005817497274194099,1.1927022395661397,0.0,1,0.0029166666666666685,0,0,0.24904206358534492,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.971937064862,0,84.46203972151169,51.666666666666686,46.10666666666668,0.0,51.66640252218102,0.0,0.0,131.971937064862,131.971937064862,51.66640252218102,51.66640252218103,51.66640252218102,10.042356980382465,On,20972.79423446155,0.0,20.000000000000057,34.954657057435924,0.0,0.0,0.5999999999999999,1,0.8573498469368075,20972.79423446155,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1295.2503290956463,20.048940437591487,-12.65890337477547,-13.73752666039346,-14.4,6.529479366362011,0,4.0,7590.583210543909,-4036.232132881505,-131.73381108516978,0.0 +2018-01-01 04:00:00,0.39335374774580234,0.26569515198752536,1.2056992228620604,0.06555895795763372,0.04428252533125422,0.20094987047701007,0.010000000000000002,0.0,0.0,0.350371313761145,0.03298243398465735,0.005817497274194099,1.1998817255878664,0.0,1,0.0029166666666666685,0,0,0.2627784853208587,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016949946941462603,0,On,0.00814366933757535,0.0,On,0.2924260353893423,0.21931952654200668,Off,-0.0,0,On,131.971937064862,0,84.46203972151169,51.666666666666686,46.10666666666668,0.0,51.66640252218102,0.0,0.0,131.971937064862,131.971937064862,51.66640252218102,51.66640252218103,51.66640252218102,10.042356980382465,On,21099.0402311972,0.0,20.000000000000057,35.16506705199534,0.0,0.0,0.5999999999999999,1,0.8625106750442917,21099.0402311972,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1294.9738008569366,20.048940437591483,-12.65530366161434,-13.644791507112709,-14.4,6.529479366362011,0,3.0,7640.870938067896,-4016.1734430196348,-132.9174586501989,0.0 +2018-01-01 04:10:00,0.39335374774580234,0.26569515198752536,1.2068843689174509,0.06555895795763372,0.04428252533125422,0.20114739481957514,0.010000000000000002,0.0,0.0,0.350371313761145,0.03298243398465735,0.005817038902413837,1.201067330015037,0.0,1,0.0029166666666666685,0,0,0.2627784853208587,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016949946941462603,0,On,0.00814366933757535,0.0,On,0.2924260353893423,0.21931952654200668,Off,-0.0,0,On,131.96153874254472,0,84.45537143737958,51.666666666666686,46.10666666666668,0.0,51.66640252218102,0.0,0.0,131.96153874254472,131.9615178709056,51.66640252218102,51.66640252218103,51.66640252218102,10.042356980382465,On,21119.88821560575,0.0,20.000000000000057,35.19981369267625,0.0,0.0,0.6,1,0.8633629227725531,21119.88821560575,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1294.6768909669227,20.05143664856164,-12.644784888962114,-13.554959188671639,-14.4,6.529479366362011,0,3.0,7654.2795134318,-4026.5988655667843,-134.8463271897671,0.0 +2018-01-01 04:20:00,0.39335374774580234,0.26569515198752536,1.2087132023118665,0.06555895795763372,0.04428252533125422,0.2014522003853111,0.010000000000000002,0.0,0.0,0.350371313761145,0.03298243398465735,0.005817037986186375,1.2028961643256801,0.0,1,0.0029166666666666685,0,0,0.2627784853208587,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016949946941462603,0,On,0.00814366933757535,0.0,On,0.2924260353893423,0.21931952654200668,Off,-0.0,0,On,131.96151795760795,0,84.4553714661679,51.666666666666686,46.10666666666668,0.0,51.666402542993474,0.0,0.0,131.96151795760795,131.96151791588736,51.666402542993474,51.66640254299348,51.666402542993474,10.042356980382465,On,21152.046925813247,0.0,20.000000000000057,35.25341154302208,0.0,0.0,0.5999999999999999,1,0.8646775432740396,21152.046925813247,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1294.363296701203,20.05143664856164,-12.643060218299937,-13.473047309295454,-14.4,6.529479366362011,0,3.0,7678.430809128326,-4015.6214839076947,-137.08838718985643,0.0 +2018-01-01 04:30:00,0.39335374774580234,0.26569515198752536,1.1640274105512438,0.06555895795763372,0.04428252533125422,0.1940045684252073,0.010000000000000002,0.0,0.0,0.350371313761145,0.03298243398465735,0.005817037984354817,1.158210372566889,0.0,1,0.0029166666666666685,0,0,0.2627784853208587,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016949946941462603,0,On,0.00814366933757535,0.0,On,0.2924260353893423,0.21931952654200668,Off,-0.0,0,On,131.9615179160584,0,84.45537146622416,51.666666666666686,46.10666666666668,0.0,51.666402543035076,0.0,0.0,131.9615179160584,131.96151791597526,51.666402543035076,51.66640254303508,51.666402543035076,10.042356980382465,On,20366.28004731553,0.0,20.000000000000057,33.94380007885922,0.0,0.0,0.5999999999999999,1,0.8325560669711312,20366.28004731553,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1312.4348975180185,20.05143664856164,-12.640347833300668,-13.401249592656335,-13.0,6.529479366362011,0,3.0,7684.713589602978,-905.5490028311024,-109.87247608159932,0.0 +2018-01-01 04:40:00,0.39335374774580234,0.26569515198752536,1.1652689158326477,0.06555895795763372,0.04428252533125422,0.19421148597210794,0.010000000000000002,0.0,0.0,0.350371313761145,0.03298243398465735,0.0058170379843513614,1.1594518778482963,0.0,1,0.0029166666666666685,0,0,0.2627784853208587,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016949946941462603,0,On,0.00814366933757535,0.0,On,0.2924260353893423,0.21931952654200668,Off,-0.0,0,On,131.96151791598,0,84.45537146622264,51.666666666666686,46.10666666666668,0.0,51.66640254303516,0.0,0.0,131.96151791598,131.96151791597288,51.666402543035154,51.66640254303516,51.66640254303516,10.042356980382465,On,20388.111007251868,0.0,20.000000000000057,33.98018501208645,0.0,0.0,0.5999999999999999,1,0.8334484978961982,20388.111007251868,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1312.1044364850934,20.05143664856164,-11.307752937032614,-13.290344043979882,-13.0,6.529479366362011,0,3.0,7701.645312419172,-3543.223037194579,-109.96952356057972,0.0 +2018-01-01 04:50:00,0.39335374774580234,0.26569515198752536,1.1662981701703896,0.06555895795763372,0.04428252533125422,0.1943830283617316,0.010000000000000002,0.0,0.0,0.350371313761145,0.03298243398465735,0.005817037984350732,1.1604811321860389,0.0,1,0.0029166666666666685,0,0,0.2627784853208587,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016949946941462603,0,On,0.00814366933757535,0.0,On,0.2924260353893423,0.21931952654200668,Off,-0.0,0,On,131.96151791596574,0,84.45537146622264,51.666666666666686,46.10666666666668,0.0,51.66640254303516,0.0,0.0,131.96151791596574,131.96151791597288,51.66640254303517,51.666402543035176,51.66640254303516,10.042356980382465,On,20406.20968999456,0.0,20.000000000000057,34.01034948332427,0.0,0.0,0.6,1,0.8341883565295181,20406.20968999456,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1313.0126881590847,20.05143664856164,-11.299980543069887,-13.16312604259915,-13.0,6.529479366362011,0,3.0,7714.997658119004,-3576.8125033701745,-108.87548053900244,0.0 +2018-01-01 05:00:00,0.4412155397695138,0.2845944298258145,1.1669962333323207,0.07353592329491895,0.04743240497096908,0.19449937222205343,0.010000000000000002,0.0,0.0,0.37557035087886387,0.05564518889064987,0.0058170379843513614,1.1611791953479693,0.0,1,0.0029166666666666685,0,0,0.28167776315914783,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,Off,-0.0,0,On,131.96151791598,0,84.45537146622264,51.666666666666686,46.10666666666668,0.0,51.66640254303516,0.0,0.0,131.96151791598,131.96151791597288,51.666402543035154,51.66640254303516,51.66640254303516,10.042356980382465,On,20418.48461878412,0.0,20.000000000000057,34.030807697973536,0.0,0.0,0.6,1,0.8346901450943245,20418.48461878412,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1312.8179323944928,20.05143664856164,-11.299507078722092,-13.021544214578443,-13.0,6.529479366362011,0,3.0,7770.468216028557,-3580.141556194898,-108.20224718675281,0.0 +2018-01-01 05:10:00,0.4412155397695138,0.2845944298258145,1.1648896947802596,0.07353592329491895,0.04743240497096908,0.1941482824633766,0.010000000000000002,0.0,0.0,0.37557035087886387,0.05564518889064987,0.005815838147277021,1.1590738566329826,0.0,1,0.0029166666666666685,0,0,0.28167776315914783,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,Off,-0.0,0,On,131.9342991971049,0,84.43791652055434,51.666666666666686,46.10666666666668,0.0,51.66640254303516,0.0,0.0,131.9342991971049,131.93424456336615,51.66640254303517,51.666402543035176,51.66640254303516,10.042356980382465,On,20381.463781396134,0.0,20.000000000000057,33.96910630232689,0.0,0.0,0.6,1,0.8331767650023236,20381.463781396134,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1312.5979704239485,20.057970747290195,-11.298995839509761,-12.876993818622893,-13.0,6.529479366362011,0,3.0,7737.260294307229,-3586.455857521081,-108.18967234035838,0.0 +2018-01-01 05:20:00,0.4412155397695138,0.2845944298258145,1.1650313447710254,0.07353592329491895,0.04743240497096908,0.1941718907951709,0.010000000000000002,0.0,0.0,0.37557035087886387,0.05564518889064987,0.005815835748953358,1.1592155090220722,0.0,1,0.0029166666666666685,0,0,0.28167776315914783,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,Off,-0.0,0,On,131.93424479030338,0,84.43791659590443,51.666666666666686,46.10666666666668,0.0,51.66640259751397,0.0,0.0,131.93424479030338,131.93424468110067,51.66640259751397,51.66640259751398,51.66640259751397,10.042356980382465,On,20383.954634779857,0.0,20.000000000000057,33.9732577246331,0.0,0.0,0.5999999999999999,1,0.8332785889530764,20383.954634779857,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1312.4971342314082,20.05797074729019,-11.302335759768077,-12.738022079713755,-13.0,6.529479366362011,0,3.0,7739.032108854046,-3574.3242317089234,-109.91499219071537,0.0 +2018-01-01 05:30:00,0.4412155397695138,0.2845944298258145,1.0987837107221927,0.07353592329491895,0.04743240497096908,0.18313061845369877,0.010000000000000002,0.0,0.0,0.37557035087886387,0.05564518889064987,0.005815835744159659,1.0929678749780332,0.0,1,0.0029166666666666685,0,0,0.28167776315914783,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,Off,-0.0,0,On,131.9342446815567,0,84.43791659605644,51.666666666666686,46.10666666666668,0.0,51.66640259762286,0.0,0.0,131.9342446815567,131.93424468133819,51.66640259762287,51.66640259762288,51.66640259762286,10.042356980382465,On,19219.038571713732,0.0,20.000000000000057,32.03173095285622,0.0,0.0,0.6,1,0.7856578190547628,19219.038571713732,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1335.1976714648908,20.05797074729019,-11.302195430197418,-12.6110193359312,-11.1,6.529479366362011,0,3.0,7718.574765215694,746.406486288482,-63.640039619184186,0.0 +2018-01-01 05:40:00,0.4412155397695138,0.2845944298258145,1.0984308542811467,0.07353592329491895,0.04743240497096908,0.18307180904685777,0.010000000000000002,0.0,0.0,0.37557035087886387,0.05564518889064987,0.005815835744149922,1.0926150185369967,0.0,1,0.0029166666666666685,0,0,0.28167776315914783,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,Off,-0.0,0,On,131.9342446813358,0,84.43791659605492,51.666666666666686,46.10666666666668,0.0,51.66640259762309,0.0,0.0,131.9342446813358,131.9342446813358,51.66640259762308,51.66640259762309,51.66640259762309,10.042356980382465,On,19212.833849959494,0.0,20.000000000000057,32.021389749932496,0.0,0.0,0.5999999999999999,1,0.7854041753491692,19212.833849959494,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1334.9749197929616,20.05797074729019,-9.451401817604076,-12.418906613560106,-11.1,6.529479366362011,0,3.0,7714.406409874545,-3048.383391348392,-68.99816536164059,0.0 +2018-01-01 05:50:00,0.4412155397695138,0.2845944298258145,1.0978712872498937,0.07353592329491895,0.04743240497096908,0.18297854787498227,0.010000000000000002,0.0,0.0,0.37557035087886387,0.05564518889064987,0.005815835744149922,1.0920554515057437,0.0,1,0.0029166666666666685,0,0,0.28167776315914783,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,Off,-0.0,0,On,131.9342446813358,0,84.43791659605492,51.666666666666686,46.10666666666668,0.0,51.66640259762309,0.0,0.0,131.9342446813358,131.9342446813358,51.66640259762308,51.66640259762309,51.66640259762309,10.042356980382465,On,19202.99427406407,0.0,20.000000000000057,32.00499045677345,0.0,0.0,0.6,1,0.7850019419226855,19202.99427406407,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1333.6005969371731,20.057970747290195,-9.494423569920354,-12.215005588428784,-11.1,6.529479366362011,0,3.0,7707.118645886989,-3000.975678207948,-72.71482015034346,0.0 +2018-01-01 06:00:00,0.5601321866583067,0.30955086744745547,1.1195492889296779,0.0933553644430511,0.051591811241242576,0.1865915481549463,0.010000000000000002,0.0,0.0,0.4445441576127007,0.10558802904560591,0.008362050035393215,1.091209144931022,0.019978093963262607,1,0.0029166666666666685,0,0,0.3066342007807888,0.0,Off,0.0,0.0,On,0.04407173219845146,0.0062798817201019696,0.019978093963262607,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.06726698000344689,0,On,0.03231868774440513,0.0,On,0.3393079649106797,0.2544809736830097,Off,-0.0,0,On,189.69599623181887,0,84.4373712479509,51.666666666666686,46.10666666666668,0.019945121787507042,51.66640259762309,57.87854375197094,-0.0,189.69599623181887,131.9333925749233,51.66640259762308,51.66640259762309,51.66640259762309,10.042356980382465,On,19188.11259357241,0.0,20.000000000000057,31.980187655954012,0.0,0.0,0.6,1,0.7843935915832384,19188.11259357241,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1333.6802286980244,20.057970747290195,-9.49700119896506,-11.999767848776054,-11.1,6.529479366362011,0,3.0,7853.428605533225,-3010.2723120840647,-77.51440546654803,0.0 +2018-01-01 06:10:00,0.9567777764443698,0.3660698029283732,1.320085903487245,0.1594629627407283,0.06101163382139553,0.22001431724787415,0.010000000000000002,0.0,0.0,0.8411897473987638,0.10558802904560591,0.03889341823283286,1.081411545621786,0.19978093963262605,1,0.0029166666666666685,0,0,0.36315313626170653,0.0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.06726698000344689,0,On,0.03231868774440513,0.0,On,0.3393079649106797,0.2544809736830097,Off,-0.0,0,On,882.3106400117443,0,84.37107727166324,51.666666666666686,46.10666666666668,0.25909776694098857,51.66628698631592,751.8710563696862,0.0,882.3106400117443,131.8298082369738,51.66628698631592,51.666286986315924,51.66628698631592,10.042356980382465,On,19015.828994625655,0.0,20.000000000000057,31.693048324376093,0.0,0.0,0.6,1,0.7773507857684551,19015.828994625655,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1333.7909889346874,20.080279618652707,-9.498997871825424,-11.787993966897428,-11.1,6.529479366362011,0,3.0,8462.539515902552,-3043.1103128051413,-82.72618829461797,0.0 +2018-01-01 06:20:00,1.0918962092945503,0.5240407555603226,1.309880549112443,0.1819827015490917,0.08734012592672043,0.21831342485207383,0.010000000000000002,0.0,0.0,0.9763081802489444,0.10558802904560591,0.0719909466753285,1.0381086628044884,0.19978093963262605,1,0.0029166666666666685,0,0,0.5211240888936559,0.0,On,0.13511843285018058,0.15797095263194932,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.06726698000344689,0,On,0.03231868774440513,0.0,On,0.3393079649106797,0.2544809736830097,Off,-0.0,0,On,1633.139516200708,0,84.07561189185407,51.666666666666686,46.10666666666668,0.5180530060325246,51.664900704179665,1503.2784455347967,0.0,1633.139516200708,131.36814358102197,51.66490070417966,51.664900704179665,51.664900704179665,10.042356980382465,On,18254.379555730873,0.0,20.000000000000057,30.423965926218123,0.0,0.0,0.6,1,0.7462233855475603,18254.379555730873,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1334.3154936291905,20.187516303588875,-9.51399416762525,-11.589497047476714,-11.1,6.529479366362011,0,3.0,7840.387521342998,-3164.121317334607,-87.56561491431724,0.0 +2018-01-01 06:30:00,1.294573858569821,0.7609971845082465,1.2105750368379598,0.21576230976163682,0.12683286408470773,0.20176250613965996,0.010000000000000002,0.0,0.0,1.178985829524215,0.10558802904560591,0.022559368548367105,0.9882347286569667,0.19978093963262605,1,0.0029166666666666685,0,0,0.7580805178415798,0.0,On,0.3377960821254514,0.3949273815798733,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.06726698000344689,0,On,0.03231868774440513,0.0,On,0.3393079649106797,0.2544809736830097,Off,-0.0,0,On,511.76707542171806,0,84.07032070734975,51.666666666666686,46.10666666666668,0.13032323895246078,51.6633979050867,378.15636682076047,-0.0,511.76707542171806,131.35987610523398,51.6633979050867,51.663397905086704,51.6633979050867,10.042356980382465,On,17377.38299796508,0.0,20.000000000000057,28.962304996608466,0.0,0.0,0.6,1,0.7103725181734297,17377.38299796508,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1351.7022030867706,20.192687407879816,-9.579455182412582,-11.408521841056864,-9.7,6.529479366362011,0,3.0,7815.275762892549,57.883687470649875,-44.112168013582156,0.0 +2018-01-01 06:40:00,1.294573858569821,0.7609971845082465,1.2193074016484446,0.21576230976163682,0.12683286408470773,0.20321790027474076,0.010000000000000002,0.0,0.0,1.178985829524215,0.10558802904560591,0.03692689621893651,0.9825995657968821,0.19978093963262605,1,0.0029166666666666685,0,0,0.7580805178415798,0.0,On,0.3377960821254514,0.3949273815798733,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.06726698000344689,0,On,0.03231868774440513,0.0,On,0.3393079649106797,0.2544809736830097,Off,-0.0,0,On,837.6994082014902,0,84.04960544556009,51.666666666666686,46.10666666666668,0.24364779456329622,51.665642354574885,707.0261150626097,-0.0,837.6994082014902,131.32750850868763,51.66564235457489,51.6656423545749,51.665642354574885,10.042356980382465,On,17278.292791523258,0.0,20.000000000000057,28.79715465253876,0.0,0.0,0.6,1,0.7063217954906964,17278.292791523258,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1352.0281973383894,20.200444064316237,-8.254990364927501,-11.172291644045474,-9.7,6.529479366362011,0,3.0,7735.450670917874,-2591.20414162002,-53.04961481708089,0.0 +2018-01-01 06:50:00,1.1256758175070953,0.5635334937183099,1.2246062679622813,0.18761263625118255,0.09392224895305164,0.2041010446603802,0.010000000000000002,0.0,0.0,1.0100877884614894,0.10558802904560591,0.044839444063793296,0.979985884265862,0.19978093963262605,1,0.0029166666666666685,0,0,0.5606168270516432,0.0,On,0.1688980410627257,0.19746369078993664,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.06726698000344689,0,On,0.03231868774440513,0.0,On,0.3393079649106797,0.2544809736830097,Off,-0.0,0,On,1017.1982918256011,0,84.04701461242796,51.666666666666686,46.10666666666668,0.30540967737120156,51.66498999445715,886.2351238510787,-0.0,1017.1982918256011,131.32346033191868,51.664989994457144,51.66498999445715,51.66498999445715,10.042356980382465,On,17232.333118500053,0.0,20.000000000000057,28.720555197500094,0.0,0.0,0.5999999999999999,1,0.7044430034617848,17232.333118500053,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1352.172949463227,20.200444064316237,-8.257475826249769,-10.944887217315083,-9.7,6.529479366362011,0,3.0,7655.688455565595,-2621.2776250667075,-59.77649555112551,0.0 +2018-01-01 07:00:00,1.0105395188266508,0.3891415397225377,1.274688016226807,0.16842325313777512,0.06485692328708961,0.21244800270446784,0.010000000000000002,0.0,0.0,0.8719520631243164,0.12858745570233435,0.09504420183224462,0.9798628747619363,0.19978093963262605,1,0.0029166666666666685,0,0,0.386224873055871,0.0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.3668510985044655,0.2751383238783491,Off,-0.0,0,On,2156.110580098663,0,84.05303586273382,51.666666666666686,46.10666666666668,0.6985620554463133,51.6646307238323,2027.0637502555453,0.0,2156.110580098663,131.33286853552158,51.6646307238323,51.66463072383231,51.6646307238323,10.042356980382465,On,17230.170086580492,0.0,20.000000000000057,28.716950144300824,0.0,0.0,0.5999999999999999,1,0.7043545805714239,17230.170086580492,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1352.5782174652852,20.193980183952554,-8.262494609802532,-10.7228761815735,-9.7,6.529479366362011,0,3.0,7665.7958536303195,-2620.664638922861,-66.45014471600155,0.0 +2018-01-01 07:10:00,1.0105395188266508,0.3891415397225377,1.2161031019559805,0.16842325313777512,0.06485692328708961,0.20268385032599673,0.010000000000000002,0.0,0.0,0.8719520631243164,0.12858745570233435,0.03943645255694515,0.9768857097664092,0.19978093963262605,1,0.0029166666666666685,0,0,0.386224873055871,0.0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.3668510985044655,0.2751383238783491,Off,-0.0,0,On,894.6295614083573,0,84.05945508717014,51.666666666666686,46.10666666666668,0.2621838636792217,51.66235116798668,760.7546026855473,0.0,894.6295614083573,131.34289857370334,51.66235116798668,51.662351167986685,51.66235116798668,10.042356980382465,On,17177.81882338848,0.0,20.000000000000057,28.6296980389808,0.0,0.0,0.6,1,0.7022145058163457,17177.81882338848,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1352.8355968622716,20.194863427033916,-8.263213066933845,-10.513802622418693,-9.7,6.529479366362011,0,3.0,7626.035070110899,-2631.7088493258416,-72.79317547604629,0.0 +2018-01-01 07:20:00,1.0105395188266508,0.3891415397225377,1.17983366399724,0.16842325313777512,0.06485692328708961,0.19663894399954,0.010000000000000002,0.0,0.0,0.8719520631243164,0.12858745570233435,0.0058579019473597,0.9741948224172543,0.19978093963262605,1,0.0029166666666666685,0,0,0.386224873055871,0.0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.3668510985044655,0.2751383238783491,Off,-0.0,0,On,132.88853104554,0,84.07011527740114,51.666666666666686,46.10666666666668,0.0,51.66487604761079,0.0,0.0,132.88853104554,131.3595551209393,51.66487604761079,51.66487604761079,51.66487604761079,10.042356980382465,On,17130.50154267098,0.0,20.000000000000057,28.550835904451635,0.0,0.0,0.6,1,0.7002802159488585,17130.50154267098,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1353.2147402508356,20.194863427033916,-8.267844612480223,-10.322445222152796,-9.7,6.529479366362011,0,3.0,7590.836536374987,-2631.1308422367147,-78.40664558280753,0.0 +2018-01-01 07:30:00,1.007161172244074,0.3891415397225377,1.1159216499510187,0.16786019537401234,0.06485692328708961,0.1859869416585031,0.010000000000000002,0.0,-0.003378346582576579,0.8719520631243164,0.12858745570233435,0.0057907826344624274,0.9103499276839303,0.19978093963262605,1,0.0029166666666666685,0,0,0.386224873055871,0.0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.3668510985044655,0.2751383238783491,On,-0.003378346582576579,0,On,131.36590622596194,0,84.07222399665795,51.666666666666686,46.10666666666668,0.0,51.66640068759974,0.0,0.0,131.36590622596194,131.36284999477806,51.66640068759974,51.66640068759975,51.66640068759974,10.042356980382465,On,16007.835888374948,0.0,20.000000000000057,26.679726480624915,0.0,0.0,0.6,1,0.6543866065369877,16007.835888374948,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1373.0640315483486,20.194863427033916,-8.2719664659874,-10.150218061817451,-7.7,6.529479366362011,0,3.0,7530.237481363697,1913.6484310744502,20.436912705668377,70.78716972415684 +2018-01-01 07:40:00,1.0080422187948719,0.3891415397225377,1.191146233224571,0.16800703646581197,0.06485692328708961,0.19852437220409516,0.010000000000000002,0.0,-0.0024973000317788374,0.8719520631243164,0.12858745570233435,0.08430757935855399,0.9070577142333909,0.19978093963262605,1,0.0029166666666666685,0,0,0.386224873055871,0.0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.3668510985044655,0.2751383238783491,On,-0.0024973000317788374,0,On,1912.546587095611,0,84.05541145764495,51.666666666666686,46.10666666666668,0.6150423833194516,51.66640373516393,1784.7852143684286,0.0,1912.546587095611,131.33658040257023,51.66640373516393,51.66640373516394,51.66640373516393,10.042356980382465,On,15949.944729137076,0.0,20.000000000000057,26.583241215228462,0.0,0.0,0.6,1,0.6520200655812752,15949.944729137076,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1373.3843468929783,20.194863427033916,-6.326856954826645,-9.83892045227611,-7.7,6.529479366362011,0,3.0,7487.119148096951,-2061.8669237522436,4.951227905920902,68.1455171707131 +2018-01-01 07:50:00,1.007006026718431,0.3891415397225377,1.1095354698587598,0.16783433778640516,0.06485692328708961,0.1849225783097933,0.010000000000000002,0.0,-0.003533492108219635,0.8719520631243164,0.12858745570233435,0.005947593704305223,0.9038069365218285,0.19978093963262605,1,0.0029166666666666685,0,0,0.386224873055871,0.0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.3668510985044655,0.2751383238783491,On,-0.003533492108219635,0,On,134.92321956277547,0,84.0672973889795,51.666666666666686,46.10666666666668,0.0,51.66283866621613,0.0,0.0,134.92321956277547,131.35515217028046,51.66283866621614,51.662838666216146,51.66283866621613,10.042356980382465,On,15892.782186982908,0.0,20.000000000000057,26.48797031163818,0.0,0.0,0.6,1,0.6496833098672528,15892.782186982908,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1373.5970010864905,20.194863427033916,-6.364473864738498,-9.534046504231338,-7.7,6.529479366362011,0,3.0,7444.244982136431,-2041.5776332545947,-6.921320874410327,67.09844844358628 +2018-01-01 08:00:00,0.9158412691866705,0.3569453582379973,1.115368698220047,0.15264021153111174,0.05949089303966621,0.1858947830366745,0.010000000000000002,0.0,-0.005749664591087505,0.8290238211449292,0.08256711263282876,0.005790961917039597,0.9097967966703814,0.19978093963262605,1,0.0029166666666666685,0,0,0.3540286915713306,0.0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.005749664591087505,0,On,131.36997331321197,0,84.07221836405023,51.666666666666686,46.10666666666668,0.0,51.66639661512976,0.0,0.0,131.36997331321197,131.36284119382847,51.66639661512976,51.66639661512977,51.66639661512976,10.042356980382465,On,15998.1094851311,0.0,20.000000000000057,26.663515808551836,0.0,0.0,0.6,1,0.65398899951147,15998.1094851311,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1374.1592006285657,20.194863427033916,-6.371148850107047,-9.228570706316216,-7.7,6.529479366362011,0,1.0,7313.704776767905,-2024.2640146991794,-19.438772436678683,66.15376229796048 +2018-01-01 08:10:00,0.9182475089599466,0.3569453582379973,1.116300974672315,0.15304125149332443,0.05949089303966621,0.1860501624453858,0.010000000000000002,0.0,-0.0033434248178114186,0.8290238211449292,0.08256711263282876,0.00579288284105823,0.9107271521986307,0.19978093963262605,1,0.0029166666666666685,0,0,0.3540286915713306,0.0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.0033434248178114186,0,On,131.41355013873417,0,84.10472806826886,51.666666666666686,46.10666666666668,0.0,51.66640372702358,0.0,0.0,131.41355013873417,131.41363760667008,51.66640372702357,51.66640372702358,51.66640372702358,10.042356980382465,On,16014.469104834641,0.0,20.000000000000057,26.690781841391072,0.0,0.0,0.5999999999999999,1,0.6546577667387634,16014.469104834641,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1374.7247821900457,20.182697399769634,-6.362855970843204,-8.937328021150787,-7.7,6.529479366362011,0,1.0,7338.4824479798845,-2044.7484055108798,-31.87056567023256,80.26510074074172 +2018-01-01 08:20:00,0.9181227900332075,0.3569453582379973,1.1126985202970798,0.15302046500553457,0.05949089303966621,0.18544975338284664,0.010000000000000002,0.0,-0.0034681437445505435,0.8290238211449292,0.08256711263282876,0.0057928866807445455,0.9071246939837093,0.19978093963262605,1,0.0029166666666666685,0,0,0.3540286915713306,0.0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.0034681437445505435,0,On,131.41363724334582,0,84.10472794763544,51.666666666666686,46.10666666666668,0.0,51.66640363980368,0.0,0.0,131.41363724334582,131.41363741818037,51.66640363980368,51.66640363980369,51.66640363980368,10.042356980382465,On,15951.122518927943,0.0,20.000000000000057,26.585204198213237,0.0,0.0,0.6,1,0.6520682126181285,15951.122518927943,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1374.9242045652984,20.182697399769634,-6.3616509296289205,-8.669883736708822,-7.7,6.529479366362011,0,1.0,7290.53680063303,-2063.152235632217,-43.24688271746175,77.07061169178169 +2018-01-01 08:30:00,0.5005382380854159,0.33182583135758936,1.0029671883395612,0.08342303968090264,0.055304305226264894,0.16716119805659352,0.010000000000000002,0.0,-0.24476576689853627,0.6527368923511234,0.08256711263282876,0.03936686844787083,0.8437317561121148,0.11986856377957562,1,0.0029166666666666685,0,0,0.3289091646909227,0.0,Off,0.0,0.0,On,0.2644303931907087,0.03767929032061181,0.11986856377957562,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.24476576689853627,0,On,893.0510218352995,0,84.09753707291057,51.666666666666686,46.10666666666668,0.2629932369098975,51.666403639629344,763.1773880444182,0.0,893.0510218352995,131.40240167642276,51.666403639629344,51.66640363962935,51.666403639629344,10.042356980382465,On,14836.404194610392,0.0,20.000000000000057,24.727340324350653,0.0,0.0,0.6,1,0.6064994832420048,14836.404194610392,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1390.5341974587861,20.182697399769634,-6.367153527532868,-8.4291435638544,-5.9,6.529479366362011,0,1.0,6860.2561189510225,2001.2054965213388,33.792570348989116,507.90002491197663 +2018-01-01 08:40:00,0.23072935692817897,0.29414654103697757,0.8619238401777298,0.03845489282136316,0.04902442350616293,0.14365397336295496,0.010000000000000002,0.0,-0.2501442548650645,0.38830649916041465,0.08256711263282876,0.005868748670027339,0.8560550915077025,0.0,1,0.0029166666666666685,0,0,0.2912298743703109,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.2501442548650645,0,On,133.1345926995099,0,84.22993864757858,51.666666666666686,46.10666666666668,0.0,51.664879207089484,0.0,0.0,133.1345926995099,131.60927913684154,51.664879207089484,51.664879207089484,51.664879207089484,10.042356980382465,On,15053.101010429178,0.0,20.000000000000057,25.08850168404863,0.0,0.0,0.6,1,0.6153578632841193,15053.101010429178,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1390.9234990914872,20.135036650909115,-4.627341698323834,-8.061185578138431,-5.9,6.529479366362011,0,1.0,6551.447574066,-1503.6749363212543,20.719778092463244,481.8806401273903 +2018-01-01 08:50:00,0.22714898246861742,0.29414654103697757,0.8846012596135342,0.037858163744769566,0.04902442350616293,0.14743354326892236,0.010000000000000002,0.0,-0.253724629324626,0.38830649916041465,0.08256711263282876,0.005814917830159965,0.8787863417833742,0.0,1,0.0029166666666666685,0,0,0.2912298743703109,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.253724629324626,0,On,131.91342148510486,0,84.42302101458203,51.666666666666686,46.10666666666668,0.0,51.66640019510238,0.0,0.0,131.91342148510486,131.91097033528442,51.66640019510239,51.6664001951024,51.66640019510238,10.042356980382465,On,15452.81337694333,0.0,20.000000000000057,25.754688961572217,0.0,0.0,0.6,1,0.6316977621272863,15452.81337694333,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1390.984342285123,20.063545527618334,-4.636306715505853,-7.631987194709029,-5.9,6.529479366362011,0,1.0,6902.68196259166,-1450.2881277106353,9.356908189038052,462.993666731704 +2018-01-01 09:00:00,0.22594315371055762,0.29414654103697757,0.879717776872861,0.037657192285092934,0.04902442350616293,0.14661962947881016,0.010000000000000002,0.0,-0.25604497131804194,0.38830649916041465,0.0836816258681849,0.005814810229059798,0.8739029666438012,0.0,1,0.0029166666666666685,0,0,0.2912298743703109,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.05328077624035396,0,On,0.02559896058962782,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.25604497131804194,0,On,131.91098051694448,0,84.42302439513811,51.666666666666686,46.10666666666668,0.0,51.66640263930113,0.0,0.0,131.91098051694448,131.9109756174033,51.66640263930113,51.66640263930114,51.66640263930113,10.042356980382465,On,15366.942806255705,0.0,20.000000000000057,25.61157134375951,0.0,0.0,0.6,1,0.6281874468201137,15366.942806255705,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1390.1588796656258,20.063545527618334,-4.603467688278218,-7.159658431215619,-5.9,6.529479366362011,0,1.0,6836.1758335242985,-1553.2754943494347,-6.320938991840784,448.20440533335153 +2018-01-01 09:10:00,0.22410733529148408,0.29414654103697757,0.8742875985524144,0.03735122254858068,0.04902442350616293,0.14571459975873574,0.010000000000000002,0.0,-0.2578807897371155,0.38830649916041465,0.0836816258681849,0.005814781005379784,0.8684728175470346,0.0,1,0.0029166666666666685,0,0,0.2912298743703109,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.05328077624035396,0,On,0.02559896058962782,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.2578807897371155,0,On,131.9103175676593,0,84.42260239167196,51.666666666666686,46.10666666666668,0.0,51.66640264418678,0.0,0.0,131.9103175676593,131.91031623698743,51.66640264418678,51.66640264418679,51.66640264418678,10.042356980382465,On,15271.457616498405,0.0,20.000000000000057,25.452429360830674,0.0,0.0,0.6,1,0.6242840941286236,15271.457616498405,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1390.5566113110228,20.06370350327284,-4.61131986772762,-6.690640568344731,-5.9,6.529479366362011,0,1.0,6762.257220980895,-1568.2515100417213,-22.795479849982467,435.8487944900778 +2018-01-01 09:20:00,0.22060464924439782,0.29414654103697757,0.868660214769567,0.03676744154073297,0.04902442350616293,0.1447767024615945,0.010000000000000002,0.0,-0.26138347578420174,0.38830649916041465,0.0836816258681849,0.005814780946965864,0.8628454338226011,0.0,1,0.0029166666666666685,0,0,0.2912298743703109,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.05328077624035396,0,On,0.02559896058962782,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.26138347578420174,0,On,131.9103162425193,0,84.42260239350523,51.666666666666686,46.10666666666668,0.0,51.666402645513685,0.0,0.0,131.9103162425193,131.9103162398519,51.666402645513685,51.666402645513685,51.666402645513685,10.042356980382465,On,15172.504200452306,0.0,20.000000000000057,25.287507000753845,0.0,0.0,0.6,1,0.620238963319988,15172.504200452306,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1390.9732310111124,20.063703503272844,-4.619799331114585,-6.251013875437641,-5.9,6.529479366362011,0,1.0,6685.8433824008725,-1577.4143320660182,-37.44959827426097,424.9718776335461 +2018-01-01 09:30:00,0.12753336680374877,0.29414654103697757,0.7790894381274385,0.02125556113395813,0.04902442350616293,0.1298482396879064,0.010000000000000002,0.0,-0.3544547582248508,0.38830649916041465,0.0836816258681849,0.039388762706300505,0.7397006754211379,0.0,1,0.0029166666666666685,0,0,0.2912298743703109,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.05328077624035396,0,On,0.02559896058962782,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.3544547582248508,0,On,893.5477006577169,0,84.4154115190266,51.666666666666686,46.10666666666668,0.2629932431910024,51.66640264551634,763.1773880444182,0.0,893.5477006577169,131.89908049847907,51.666402645516335,51.66640264551634,51.66640264551634,10.042356980382465,On,13007.093930118737,0.0,20.000000000000057,21.678489883531228,0.0,0.0,0.6,1,0.531718848018645,13007.093930118737,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1415.757614191942,20.06370350327284,-4.628379080711896,-5.850708887156009,-2.2,6.529479366362011,0,1.0,6505.939904170804,2671.115662538811,148.18345909243342,1455.3568359092296 +2018-01-01 09:40:00,0.116744338367538,0.29414654103697757,0.7337813957648742,0.019457389727922998,0.04902442350616293,0.1222968992941457,0.010000000000000002,0.0,-0.36524378666106155,0.38830649916041465,0.0836816258681849,0.005881891127187268,0.7278995046376869,0.0,1,0.0029166666666666685,0,0,0.2912298743703109,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.05328077624035396,0,On,0.02559896058962782,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.36524378666106155,0,On,133.43273388418766,0,84.42049396117852,51.666666666666686,46.10666666666668,0.0,51.66487821297684,0.0,0.0,133.43273388418766,131.90702181434145,51.66487821297684,51.66487821297684,51.66487821297684,10.042356980382465,On,12799.57899608366,0.0,20.000000000000057,21.33263166013943,0.0,0.0,0.6,1,0.523235815431612,12799.57899608366,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1416.170769357362,20.063703503272844,-2.8099569653880088,-5.152222767206275,-2.2,6.529479366362011,0,1.0,6331.654139601356,2610.101665688977,116.13905596592213,1412.9904241309735 +2018-01-01 09:50:00,0.10404857153295799,0.29414654103697757,0.7223591810203843,0.01734142858882633,0.04902442350616293,0.12039319683673072,0.010000000000000002,0.0,-0.37793955349564157,0.38830649916041465,0.0836816258681849,0.005814915091685334,0.716544265928699,0.0,1,0.0029166666666666685,0,0,0.2912298743703109,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.05328077624035396,0,On,0.02559896058962782,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.37793955349564157,0,On,131.91335936186104,0,84.4225981790181,51.666666666666686,46.10666666666668,0.0,51.66639959836682,0.0,0.0,131.91335936186104,131.91030965471577,51.666399598366816,51.66639959836682,51.66639959836682,10.042356980382465,On,12599.90545056116,0.0,20.000000000000057,20.999842417601933,0.0,0.0,0.6,1,0.5150733320840306,12599.90545056116,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1415.9548664881024,20.063703503272844,-1.2691591218796692,-4.341485264300301,-2.2,6.529479366362011,0,1.0,6174.0907459829905,-211.8615392139891,90.79640453592982,1369.0411545055674 +2018-01-01 10:00:00,0.08560607172411722,0.292939347737565,0.7109753835324529,0.014267678620686203,0.0488232246229275,0.11849589725540882,0.010000000000000002,0.0,-0.3917714925953773,0.3866969080945313,0.08068065622496325,0.0058147812149868874,0.705160602317466,0.0,1,0.0029166666666666685,0,0,0.29002268107089835,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.3917714925953773,0,On,131.91032232266886,0,84.42260238508368,51.666666666666686,46.10666666666668,0.0,51.66640263942547,0.0,0.0,131.91032232266886,131.91031622669325,51.66640263942548,51.666402639425485,51.66640263942547,10.042356980382465,On,12399.732073977608,0.0,20.000000000000057,20.666220123296014,0.0,0.0,0.6,1,0.5068904160712117,12399.732073977608,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1416.5330964767793,20.063703503272844,-1.1350806463637026,-3.4270210381546664,-2.2,6.529479366362011,0,1.0,6011.037223467581,-583.3281933210715,58.81916368539038,1324.2699424915259 +2018-01-01 10:10:00,0.07126021269044519,0.292939347737565,0.6994833817885223,0.011876702115074198,0.0488232246229275,0.11658056363142039,0.010000000000000002,0.0,-0.40611735162904933,0.3866969080945313,0.08068065622496325,0.005814900951257895,0.6936684808372644,0.0,1,0.0029166666666666685,0,0,0.29002268107089835,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.40611735162904933,0,On,131.9130385813755,0,84.42434818142338,51.666666666666686,46.10666666666668,0.0,51.666402645504164,0.0,0.0,131.9130385813755,131.91304403347402,51.666402645504164,51.66640264550417,51.666402645504164,10.042356980382465,On,12197.651545304014,0.0,20.000000000000057,20.32941924217336,0.0,0.0,0.5999999999999999,1,0.4986295373160798,12197.651545304014,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1417.0835104030632,20.06304998358141,-1.1535657140552893,-2.501027112820519,-2.2,6.529479366362011,0,1.0,5851.619182972729,-622.5900533508648,-395.8522793771956,1279.4999106024652 +2018-01-01 10:20:00,0.05690365957183623,0.292939347737565,0.6874962272047269,0.009483943261972706,0.0488232246229275,0.11458270453412114,0.010000000000000002,0.0,-0.4204739047476583,0.3866969080945313,0.08068065622496325,0.005814901190595156,0.6816813260141318,0.0,1,0.0029166666666666685,0,0,0.29002268107089835,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.4204739047476583,0,On,131.91304401082402,0,84.42434817390327,51.666666666666686,46.10666666666668,0.0,51.66640264006753,0.0,0.0,131.91304401082402,131.91304402172386,51.66640264006753,51.66640264006753,51.66640264006753,10.042356980382465,On,11986.86621831943,0.0,20.000000000000057,19.97811036386572,0.0,0.0,0.5999999999999999,1,0.4900128138691958,11986.86621831943,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1417.6292814926665,20.06304998358141,-1.1719298680098098,-2.1999985094370365,-2.2,6.529479366362011,0,1.0,5685.485092623114,-647.943424671611,25.114807837090627,1235.6061442324426 +2018-01-01 10:30:00,-0.04068841650155997,0.292939347737565,0.58785657332446,-0.006781402750259995,0.0488232246229275,0.09797609555407666,0.010000000000000002,0.0,-0.5180659808210545,0.3866969080945313,0.08068065622496325,0.005814901191073855,0.5820416721333861,0.0,1,0.0029166666666666685,0,0,0.29002268107089835,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.5180659808210545,0,On,131.91304402168348,0,84.4243481738911,51.666666666666686,46.10666666666668,0.0,51.66640264005666,0.0,0.0,131.91304402168348,131.91304402170485,51.66640264005666,51.66640264005666,51.66640264005666,10.042356980382465,On,10234.775973906033,0.0,20.000000000000057,17.057959956510054,0.0,0.0,0.6,1,0.41838886686078874,10234.775973906033,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1432.9955364574053,20.063049983581415,-1.190450966440004,-1.2383123258127735,1.4,6.529479366362011,0,1.0,5470.894644391405,2090.898885175389,149.50360820219163,1379.0288549837703 +2018-01-01 10:40:00,-0.0548267129133826,0.292939347737565,0.5748532044593988,-0.009137785485563765,0.0488232246229275,0.0958088674098998,0.010000000000000002,0.0,-0.5322042772328771,0.3866969080945313,0.08068065622496325,0.0058149011910747965,0.569038303268324,0.0,1,0.0029166666666666685,0,0,0.29002268107089835,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.5322042772328771,0,On,131.91304402170485,0,84.42434817388958,51.666666666666686,46.10666666666668,0.0,51.66640264005664,0.0,0.0,131.91304402170485,131.91304402170246,51.66640264005664,51.66640264005664,51.66640264005664,10.042356980382465,On,10006.121268217748,0.0,20.000000000000057,16.676868780362916,0.0,0.0,0.5999999999999999,1,0.4090416585331014,10006.121268217748,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1433.5091795974902,20.06304998358141,-0.025769001708382255,-0.16039411432939527,1.4,6.529479366362011,0,1.0,5288.540421481141,2032.572937180681,93.64329203342659,1335.6990761673949 +2018-01-01 10:50:00,-0.17024183941266535,0.2555803101502493,0.5666621020618551,-0.028373639902110892,0.04259671835837488,0.09444368367697584,0.010000000000000002,0.0,-0.5453030287882822,0.33688485797811024,0.02817633139750663,0.005814901191074588,0.5608472008707804,0.0,1,0.0029166666666666685,0,0,0.2526636434835826,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,-0.5453030287882822,0,On,131.9130440217001,0,84.42434817388958,51.666666666666686,46.10666666666668,0.0,51.66640264005664,0.0,0.0,131.9130440217001,131.91304402170246,51.66640264005664,51.666402640056646,51.66640264005664,10.042356980382465,On,9862.086739365368,0.0,20.000000000000057,16.436811232275616,0.0,0.0,0.5999999999999999,1,0.40315365048397395,9862.086739365368,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1432.7938652217952,20.06304998358141,0.9538245691701848,0.8413261535989001,1.4,6.529479366362011,0,0.0,5012.91422937131,1995.3658283343573,-240.18227401497455,1296.0839537246197 +2018-01-01 11:00:00,-0.1832652405252264,0.2555803101502493,0.5930743339485809,-0.0305442067542044,0.04259671835837488,0.09884572232476348,0.010000000000000002,0.0,-0.5571259576412925,0.33688485797811024,0.026975859137955853,0.03939145528983394,0.553682878658747,0.0,1,0.0029166666666666685,0,0,0.2526636434835826,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,-0.5571259576412925,0,On,893.6087828461336,0,84.45457908261575,51.666666666666686,46.10666666666668,0.26299324322549844,51.66640264005664,763.1773880444182,0.0,893.6087828461336,131.9602798165871,51.66640264005664,51.666402640056646,51.66640264005664,10.042356980382465,On,9736.10738710305,0.0,20.000000000000057,16.22684564517175,0.0,0.0,0.6,1,0.39800372257394745,9736.10738710305,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1433.2935817566522,20.04904148245477,1.7932101292400833,1.4000012031597586,1.4,6.529479366362011,0,0.0,4920.753420217946,1291.1075290428194,47.81120989603198,1260.970974746742 +2018-01-01 11:10:00,-0.19362432925426365,0.2555803101502493,0.6142596357778941,-0.03227072154237727,0.04259671835837488,0.10237660596298234,0.010000000000000002,0.0,-0.5674850463703297,0.33688485797811024,0.026975859137955853,0.07303258361735175,0.5412270521605423,0.0,1,0.0029166666666666685,0,0,0.2526636434835826,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,-0.5674850463703297,0,On,1656.7694103764934,0,84.44573417285181,51.666666666666686,46.10666666666668,0.526005752279395,51.66487809071961,1526.3547760888366,0.0,1656.7694103764934,131.94645964508095,51.664878090719604,51.66487809071961,51.66487809071961,10.042356980382465,On,9517.080812404887,0.0,20.000000000000057,15.861801354008145,0.0,0.0,0.6,1,0.38905010398630085,9517.080812404887,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1433.4483381743794,20.048871322617355,2.2279736446237606,2.423341870739477,1.4,6.529479366362011,0,0.0,4751.441658473112,341.3038114575611,8.819669998970923,1230.9328155363712 +2018-01-01 11:20:00,-0.20237172372621515,0.2555803101502493,0.5348109579344477,-0.033728620621035856,0.04259671835837488,0.08913515965574127,0.010000000000000002,0.0,-0.5762324408422812,0.33688485797811024,0.026975859137955853,0.005951864496359002,0.5288590934380887,0.0,1,0.0029166666666666685,0,0,0.2526636434835826,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,-0.5762324408422812,0,On,135.02010395714188,0,84.45800327270615,51.666666666666686,46.10666666666668,0.0,51.66335060937837,0.0,0.0,135.02010395714188,131.96563011360337,51.66335060937837,51.66335060937838,51.66335060937837,10.042356980382465,On,9299.599328106937,0.0,20.000000000000057,15.49933221351156,0.0,0.0,0.6000000000000001,1,0.38015964736950636,9299.599328106937,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1433.8224795126837,20.04887132261736,2.209975480888055,3.329396839263808,1.4,6.529479366362011,0,0.0,4584.287642444866,301.48034802807115,-37.325231739018875,1206.2524892322347 +2018-01-01 11:30:00,-0.37231618352791496,0.2555803101502493,0.5601946555403551,-0.06205269725465249,0.04259671835837488,0.09336577592339251,0.010000000000000002,0.0,-0.746176900643981,0.33688485797811024,0.026975859137955853,0.052359488712698146,0.507835166827657,0.0,1,0.0029166666666666685,0,0,0.2526636434835826,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,-0.746176900643981,0,On,1187.7931047415568,0,84.45224761225894,51.666666666666686,46.10666666666668,0.36457269851705054,51.666396421213705,1057.9496067070772,0.0,1187.7931047415568,131.9566368941546,51.666396421213705,51.666396421213705,51.666396421213705,10.042356980382465,On,8929.908996208675,0.0,20.000000000000057,14.883181660347791,0.0,0.0,0.6,1,0.36504702356155483,8929.908996208675,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1437.5930742610574,20.04887132261736,2.190359696213495,4.114869832207216,2.8,6.529479366362011,0,0.0,4397.602891912721,1804.1914943621396,-71.48838424825624,1346.5559913699665 +2018-01-01 11:40:00,-0.3773313454294036,0.2555803101502493,0.5009084331358699,-0.06288855757156726,0.04259671835837488,0.0834847388559783,0.010000000000000002,0.0,-0.7511920625454697,0.33688485797811024,0.026975859137955853,0.005910541571447653,0.4949978915644222,0.0,1,0.0029166666666666685,0,0,0.2526636434835826,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,-0.7511920625454697,0,On,134.082679118126,0,84.45930153461434,51.666666666666686,46.10666666666668,0.0,51.66428927488403,0.0,0.0,134.082679118126,131.9676586478349,51.66428927488403,51.664289274884034,51.66428927488403,10.042356980382465,On,8704.17492470655,0.0,20.000000000000057,14.506958207844253,0.0,0.0,0.5999999999999999,1,0.3558192082553443,8704.17492470655,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1437.9788045719467,20.04887132261736,2.825777736515194,4.826672087204179,2.8,6.529479366362011,0,0.0,4226.032334642526,1752.236285801404,-134.9566111646191,1330.1873217215552 +2018-01-01 11:50:00,-0.38054890635905303,0.2555803101502493,0.5221803308158633,-0.06342481772650883,0.04259671835837488,0.08703005513597722,0.010000000000000002,0.0,-0.7544096234751191,0.33688485797811024,0.026975859137955853,0.03939167770890776,0.48278865310695557,0.0,1,0.0029166666666666685,0,0,0.2526636434835826,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,-0.7544096234751191,0,On,893.6138284997247,0,84.45502763503319,51.666666666666686,46.10666666666668,0.26299327066315414,51.666398297488364,763.1773880444183,0.0,893.6138284997247,131.96098067973935,51.666398297488364,51.66639829748837,51.666398297488364,10.042356980382465,On,8489.484419873535,0.0,20.000000000000057,14.149140699789227,0.0,0.0,0.6,1,0.3470428444861845,8489.484419873535,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1437.8402905361838,20.04887132261736,3.3544247167463834,5.480073898853321,2.8,6.529479366362011,0,0.0,4063.6539700272915,1068.8987370210207,-192.6597321671813,1317.4086944123587 +2018-01-01 12:00:00,-0.37922581768463154,0.2579946967490744,0.5235062953859396,-0.06320430294743859,0.04299911612484573,0.08725104923098993,0.010000000000000002,0.0,-0.7557912288212284,0.34010404010987705,0.026461371026719804,0.05242633070693272,0.4710799646790069,0.0,1,0.0029166666666666685,0,0,0.2550780300824077,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,-0.7557912288212284,0,On,1189.3094384913884,0,84.4501476056593,51.666666666666686,46.10666666666668,0.3645859977001047,51.664878080620625,1057.9496067070775,0.0,1189.3094384913884,131.95335563384265,51.664878080620625,51.66487808062063,51.664878080620625,10.042356980382465,On,8283.595720239573,0.0,20.000000000000057,13.805992867065955,0.0,0.0,0.6,1,0.33862629096719044,8283.595720239573,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1438.0936579383888,20.04887132261736,3.5252750145028093,6.081613425590409,2.8,6.529479366362011,0,0.0,3910.7526923251194,660.194229727809,-249.67413409600368,1306.6738131783195 +2018-01-01 12:10:00,-0.3787553899299893,0.2579946967490744,0.5118537423080289,-0.06312589832166488,0.04299911612484573,0.08530895705133815,0.010000000000000002,0.0,-0.7553208010665862,0.34010404010987705,0.026461371026719804,0.052452314946217424,0.4594014273618115,0.0,1,0.0029166666666666685,0,0,0.2550780300824077,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,On,-0.7553208010665862,0,On,1189.898899943613,0,84.44830490290028,51.666666666666686,46.10666666666668,0.36459118191042944,51.66428623991153,1057.9496067070772,0.0,1189.898899943613,131.95047641078168,51.66428623991154,51.66428623991155,51.66428623991153,10.042356980382465,On,8078.237205777392,0.0,20.000000000000057,13.463728676295652,0.0,0.0,0.6,1,0.3302314109634559,8078.237205777392,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1438.3367203682715,20.049254696986168,3.507756679542072,6.615126160771969,2.8,6.529479366362011,0,0.0,3758.420381846222,633.2519299789307,-303.4967394823235,1312.3109985112292 +2018-01-01 12:20:00,-0.27220582433095286,0.29974891522901553,0.4829772414041532,-0.045367637388492144,0.04995815253816925,0.0804962069006922,0.010000000000000002,0.0,-0.7530038647600955,0.3957763314164653,0.07502170901267732,0.039484638481009936,0.4434926029231433,0.0,1,0.0029166666666666685,0,0,0.29683224856234885,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.04928471802232741,0,On,0.02367903854540573,0.0,On,0.3281735066493621,0.24613012998702152,On,-0.7530038647600955,0,On,895.722675756051,0,84.45108069881353,51.666666666666686,46.10666666666668,0.26300662341349623,51.66428506009259,763.1773880444184,0.0,895.722675756051,131.95481359189614,51.66428506009259,51.664285060092595,51.66428506009259,10.042356980382465,On,7798.492194494666,0.0,20.000000000000057,12.997486990824443,0.0,0.0,0.6,1,0.3187956747461765,7798.492194494666,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1438.5782824099128,20.049254696986168,3.4896154769462733,7.074576953447613,2.8,6.529479366362011,0,1.0,3713.8780246615243,599.7098666512362,-352.1070833673972,1323.898369682277 +2018-01-01 12:30:00,-0.1404631927005413,0.34106361561969417,0.5123847378196404,-0.023410532116756883,0.05684393593661569,0.0853974563032734,0.010000000000000002,0.0,-0.7251543374808066,0.45086259860403677,0.12382854617622857,0.07303008794246046,0.4393546498771799,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.7251543374808066,0,On,1656.7127951287052,0,84.40671214511006,51.666666666666686,46.10666666666668,0.5260058057487685,51.66487385972044,1526.3547760888368,0.0,1656.7127951287052,131.88548772673448,51.66487385972044,51.664873859720444,51.66487385972044,10.042356980382465,On,7725.7293246803,0.0,20.000000000000057,12.876215541133833,0.0,0.0,0.6,1,0.3158211910126011,7725.7293246803,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1441.059761613008,20.063476670009557,3.465447348557792,7.462753523528641,4.4,6.529479366362011,0,2.0,3586.6812140933944,1553.5346991111317,-363.90060268752035,1114.3309568083514 +2018-01-01 12:40:00,-0.135642934500104,0.34106361561969417,0.5672901315331913,-0.022607155750017333,0.05684393593661569,0.09454835525553187,0.010000000000000002,0.0,-0.7203340792803693,0.45086259860403677,0.12382854617622857,0.14272946245196694,0.4245606690812244,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.7203340792803693,0,On,3237.8672044366303,0,84.3518120824563,51.666666666666686,46.10666666666668,1.071532519735815,51.66335072269493,3109.2412105513336,0.0,3237.8672044366303,131.79970637883798,51.66335072269493,51.66335072269493,51.66335072269493,10.042356980382465,On,7465.588021302672,0.0,20.000000000000057,12.442646702171121,0.0,0.0,0.6,1,0.30518683756692266,7465.588021302672,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1441.6414267369635,20.077656331963613,3.8585538963324018,7.821750334322699,4.4,6.529479366362011,0,2.0,3385.0153794139214,1497.0556074888887,-419.52024350570963,1129.4496165539329 +2018-01-01 12:50:00,-0.12939508612153072,0.34106361561969417,0.49094136865461935,-0.021565847686921786,0.05684393593661569,0.08182356144243655,0.010000000000000002,0.0,-0.714086230901796,0.45086259860403677,0.12382854617622857,0.07572081924443923,0.4152205494101801,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.714086230901796,0,On,1717.752965034481,0,84.3618167391904,51.666666666666686,46.10666666666668,0.5455489461944566,51.66018601035168,1582.886434462497,0.0,1717.752965034481,131.815338654985,51.66018601035168,51.66018601035169,51.66018601035168,10.042356980382465,On,7301.348866308451,0.0,20.000000000000057,12.16891477718075,0.0,0.0,0.6,1,0.29847288172388325,7301.348866308451,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1442.1669626575754,20.077656331963613,4.175451560406509,8.067247931593247,4.4,6.529479366362011,0,2.0,3266.014966872954,1461.3673893751873,-459.4492554132129,1148.3323614079222 +2018-01-01 13:00:00,-0.12292229430698598,0.34106361561969417,0.44552484689850763,-0.02048704905116433,0.05684393593661569,0.07425414114975126,0.010000000000000002,0.0,-0.7064559463397978,0.45086259860403677,0.1226710534287751,0.039525933996334014,0.4059989129021736,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.7064559463397978,0,On,896.6594787991027,0,84.3737483864437,51.666666666666686,46.10666666666668,0.2630132996135691,51.6632285495675,763.1773880444184,0.0,896.6594787991027,131.83398185381827,51.6632285495675,51.663228549567506,51.6632285495675,10.042356980382465,On,7139.193150848596,0.0,20.000000000000057,11.898655251414326,0.0,0.0,0.6,1,0.2918440951027378,7139.193150848596,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1442.3985786003386,20.077656331963613,4.439300932768267,8.234811142157454,4.4,6.529479366362011,0,2.0,3148.1926922274306,1426.8879542321456,-487.17625823012804,1171.2235471162746 +2018-01-01 13:10:00,-0.1139681244666455,0.34106361561969417,0.4028437143807773,-0.01899468741110758,0.05684393593661569,0.06714061906346289,0.010000000000000002,0.0,-0.6975017764994573,0.45086259860403677,0.1226710534287751,0.005879633326325774,0.3969640810544515,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.6975017764994573,0,On,133.38151489101,0,84.38365056933038,51.666666666666686,46.10666666666668,0.0,51.66487198469031,0.0,0.0,133.38151489101,131.84945401457873,51.66487198469031,51.664871984690315,51.66487198469031,10.042356980382465,On,6980.322258349757,0.0,20.000000000000057,11.63387043058293,0.0,0.0,0.6,1,0.285349589227942,6980.322258349757,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1442.6557770414129,20.077492264217653,4.658956077396341,8.353481773937817,4.4,6.529479366362011,0,2.0,3035.0858716054872,1393.5177655632826,-507.0557014338845,1198.0978446090642 +2018-01-01 13:20:00,-0.10376374921276277,0.34106361561969417,0.4274088017843669,-0.017293958202127126,0.05684393593661569,0.07123480029739448,0.010000000000000002,0.0,-0.6872974012455746,0.45086259860403677,0.1226710534287751,0.03938636034900333,0.3880224414353636,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.6872974012455746,0,On,893.4932023518154,0,84.37857266878032,51.666666666666686,46.10666666666668,0.2629932617960852,51.666399700882664,763.1773880444183,0.0,893.4932023518154,131.84151979496926,51.66639970088266,51.666399700882664,51.666399700882664,10.042356980382465,On,6823.090082850484,0.0,20.000000000000057,11.371816804750805,0.0,0.0,0.6,1,0.2789220726991077,6823.090082850484,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1442.8980503874654,20.077492264217653,4.8411660872499125,8.440563799058275,4.4,6.529479366362011,0,2.0,2923.403481267914,1346.9207371140797,-521.9137420525088,1228.7168136450605 +2018-01-01 13:30:00,0.0916772057079569,0.34106361561969417,0.5503653079575068,0.015279534284659483,0.05684393593661569,0.09172755132625113,0.010000000000000002,0.0,-0.4918564463248549,0.45086259860403677,0.1226710534287751,0.12880631400563025,0.4215589939518766,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.4918564463248549,0,On,2922.0157680027005,0,84.35733084169216,51.666666666666686,46.10666666666668,0.9629523242176269,51.66487832205629,2794.279113898082,0.0,2922.0157680027005,131.808329440144,51.66487832205628,51.66487832205629,51.66487832205629,10.042356980382465,On,7412.80576538152,0.0,20.000000000000057,12.354676275635867,0.0,0.0,0.6,1,0.3030291441985959,7412.80576538152,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1441.7865373601203,20.077492264217653,4.985280781186754,8.505640552462937,3.3,6.529479366362011,0,3.0,2823.237575089399,-1405.1633481595734,-792.5046407398856,1298.9978916497867 +2018-01-01 13:40:00,0.10595597130479201,0.34106361561969417,0.4185751409125178,0.017659328550798666,0.05684393593661569,0.06976252348541963,0.010000000000000002,0.0,-0.4775776807280198,0.45086259860403677,0.1226710534287751,0.006058093612808186,0.4125170472997096,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.4775776807280198,0,On,137.42994819251018,0,84.37804379795898,51.666666666666686,46.10666666666668,0.0,51.66081819335268,0.0,0.0,137.42994819251018,131.8406934343109,51.66081819335268,51.66081819335268,51.66081819335268,10.042356980382465,On,7253.8097642640405,0.0,20.000000000000057,12.089682940440069,0.0,0.0,0.5999999999999999,1,0.296529523990734,7253.8097642640405,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1442.010058186499,20.077492264217653,3.935866256559174,8.193985805851977,3.3,6.529479366362011,0,3.0,2713.1465105360116,637.7575928913403,-740.0889144441992,1342.3770756617143 +2018-01-01 13:50:00,0.12080348221712472,0.34106361561969417,0.40947400062046896,0.02013391370285412,0.05684393593661569,0.06824566677007815,0.010000000000000002,0.0,-0.4627301698156871,0.45086259860403677,0.1226710534287751,0.005812735309290144,0.4036612653111788,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.4627301698156871,0,On,131.86391024456634,0,84.38575233602768,51.666666666666686,46.10666666666668,0.0,51.666391597862,0.0,0.0,131.86391024456634,131.85273802504324,51.66639159786201,51.66639159786202,51.666391597862,10.042356980382465,On,7098.087332235852,0.0,20.000000000000057,11.83014555372642,0.0,0.0,0.6,1,0.29016372448059435,7098.087332235852,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1441.9469152024258,20.077492264217653,3.9192085789631266,8.001228768828636,3.3,6.529479366362011,0,3.0,2605.7164798021145,650.6726936910012,-710.8144918722599,1387.9796890429438 +2018-01-01 14:00:00,0.132524022852972,0.3371079528163313,0.4007968402417984,0.022087337142161996,0.05618465880272189,0.06679947337363307,0.010000000000000002,0.0,-0.44770740552943905,0.4455883815328863,0.12464304684952465,0.005812244868802686,0.39498459537299574,0.0,1,0.0029166666666666685,0,0,0.33419128614966465,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.44770740552943905,0,On,131.85278443253856,0,84.38576774442681,51.666666666666686,46.10666666666668,0.0,51.66640273839887,0.0,0.0,131.85278443253856,131.8527621006669,51.66640273839887,51.66640273839887,51.66640273839887,10.042356980382465,On,6945.514454264191,0.0,20.000000000000057,11.575857423773652,0.0,0.0,0.6,1,0.2839266760399639,6945.514454264191,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1442.2723575863638,20.077492264217653,3.9066410495507284,7.858719138062258,3.3,6.529479366362011,0,3.0,2497.9341842446106,644.580260275524,-690.2553701916348,1434.8273430593317 +2018-01-01 14:10:00,0.14723539885181364,0.3371079528163313,0.42906440975025706,0.024539233141968937,0.05618465880272189,0.07151073495837618,0.010000000000000002,0.0,-0.4329960295305974,0.4455883815328863,0.12464304684952465,0.04240618394611584,0.3866582258041412,0.0,1,0.0029166666666666685,0,0,0.33419128614966465,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.4329960295305974,0,On,961.9989447563663,0,84.37904069317818,51.666666666666686,46.10666666666668,0.2866487192987795,51.66640276066741,831.8229732124347,0.0,961.9989447563663,131.8422510830909,51.66640276066741,51.66640276066742,51.66640276066741,10.042356980382465,On,6799.101351400234,0.0,20.000000000000057,11.331835585667058,0.0,0.0,0.6,1,0.2779414339245525,6799.101351400234,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1442.581071230724,20.07707652479417,3.8939519814520427,7.743533053394769,3.3,6.529479366362011,0,3.0,2398.0225879700347,635.5199772278415,-674.1333286680419,1481.9420866756038 +2018-01-01 14:20:00,0.16103325633492804,0.3371079528163313,0.4574311003359001,0.026838876055821338,0.05618465880272189,0.07623851672265002,0.010000000000000002,0.0,-0.419198172047483,0.4455883815328863,0.12464304684952465,0.07907319435916921,0.3783579059767309,0.0,1,0.0029166666666666685,0,0,0.33419128614966465,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.419198172047483,0,On,1793.8027535958763,0,84.36890493604791,51.666666666666686,46.10666666666668,0.5733203244750267,51.66474120643539,1663.6459464248694,0.0,1793.8027535958763,131.82641396257486,51.66474120643539,51.664741206435394,51.66474120643539,10.042356980382465,On,6653.14631413643,0.0,20.000000000000057,11.088577190227385,0.0,0.0,0.5999999999999999,1,0.27197491713814537,6653.14631413643,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1442.900457905903,20.07707652479417,3.8815377231036066,7.644926857116197,3.3,6.529479366362011,0,3.0,2297.9924836663768,624.4079592252259,-660.6987698616092,1528.3777414410597 +2018-01-01 14:30:00,0.19450739950375157,0.37666458084995974,0.35722277057879914,0.03241789991729192,0.06277743014165996,0.05953712842979986,0.010000000000000002,0.0,-0.4872730367537152,0.4983305522443909,0.17344988401307587,0.005958759682709112,0.35126401089609005,0.0,1,0.0029166666666666685,0,0,0.37374791418329306,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.11588568832276985,0,On,0.055677739282440505,0.0,On,0.4307277274772877,0.3230457956079657,On,-0.4872730367537152,0,On,135.17652364350488,0,84.38227760820888,51.666666666666686,46.10666666666668,0.0,51.66307633438652,0.0,0.0,135.17652364350488,131.84730876282637,51.663076334386524,51.66307633438653,51.66307633438652,10.042356980382465,On,6176.720037999754,0.0,20.000000000000057,10.294533396666257,0.0,0.0,0.6,1,0.2524990194415341,6176.720037999754,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1444.0525873654342,20.077076524794172,3.8691537535515237,7.556253841207949,3.9,6.529479366362011,0,3.0,2313.7370556860055,1238.8656635049476,-515.5828462134884,1209.7039919085726 +2018-01-01 14:40:00,0.2057788890477687,0.37666458084995974,0.34621834009971547,0.03429648150796145,0.06277743014165996,0.05770305668328591,0.010000000000000002,0.0,-0.47600154720969806,0.4983305522443909,0.17344988401307587,0.0058100660665360215,0.34040827403317947,0.0,1,0.0029166666666666685,0,0,0.37374791418329306,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.11588568832276985,0,On,0.055677739282440505,0.0,On,0.4307277274772877,0.3230457956079657,On,-0.47600154720969806,0,On,131.80335754979833,0,84.3498156092797,51.666666666666686,46.10666666666668,0.0,51.66639610813655,0.0,0.0,131.80335754979833,131.79658688949954,51.666396108136546,51.66639610813655,51.66639610813655,10.042356980382465,On,5985.829866139171,0.0,20.000000000000057,9.976383110231952,0.0,0.0,0.6,1,0.24469559287868275,5985.829866139171,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1444.3503777982967,20.090947183273112,4.125029489445806,7.647290183654765,3.9,6.529479366362011,0,3.0,2167.6756783212913,1197.709147249248,-536.8470143582067,1246.1390836847615 +2018-01-01 14:50:00,0.21594322483770173,0.37666458084995974,0.34037283024773335,0.035990537472950286,0.06277743014165996,0.05672880504128889,0.010000000000000002,0.0,-0.46583721141976503,0.4983305522443909,0.17344988401307587,0.005809768846638923,0.33456306140109443,0.0,1,0.0029166666666666685,0,0,0.37374791418329306,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.11588568832276985,0,On,0.055677739282440505,0.0,On,0.4307277274772877,0.3230457956079657,On,-0.46583721141976503,0,On,131.79661501366888,0,84.3498249471794,51.666666666666686,46.10666666666668,0.0,51.66640285959632,0.0,0.0,131.79661501366888,131.79660147996782,51.66640285959632,51.666402859596325,51.66640285959632,10.042356980382465,On,5883.046088493218,0.0,20.000000000000057,9.805076814155365,0.0,0.0,0.5999999999999999,1,0.24049388017186818,5883.046088493218,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1444.850171181639,20.090947183273116,4.328880461333276,7.635739540438434,3.9,6.529479366362011,0,3.0,2098.044471043711,956.6249334936455,-541.6155999166592,1283.792014823774 +2018-01-01 15:00:00,0.25375599798242143,0.3877638940498983,0.3345742739925718,0.04229266633040357,0.06462731567498305,0.05576237899876196,0.010000000000000002,0.0,-0.4582779675895178,0.5131296365109757,0.18890432906096352,0.0058097682525335,0.3287645057400383,0.0,1,0.0029166666666666685,0,0,0.3848472273832316,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.12620883871933844,0,On,0.060637537896680895,0.0,On,0.44713640280975586,0.3353523021073168,On,-0.4582779675895178,0,On,131.79660153618195,0,84.3498249658421,51.666666666666686,46.10666666666668,0.0,51.66640287309164,0.0,0.0,131.79660153618195,131.7966015091283,51.66640287309164,51.66640287309164,51.66640287309164,10.042356980382465,On,5781.082739467698,0.0,20.000000000000057,9.63513789911283,0.0,0.0,0.6,1,0.236325705883649,5781.082739467698,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1445.136422761138,20.090947183273112,4.404644342756868,7.572445614054169,3.9,6.529479366362011,0,3.0,2058.505354249606,772.7719648142346,-536.2646773770664,1323.4988677283297 +2018-01-01 15:10:00,0.2559384332971403,0.3877638940498983,0.3272463070458825,0.04265640554952338,0.06462731567498305,0.054541051174313744,0.010000000000000002,0.0,-0.45609553227479893,0.5131296365109757,0.18890432906096352,0.005809010707179534,0.32143729633870294,0.0,1,0.0029166666666666685,0,0,0.3848472273832316,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.12620883871933844,0,On,0.060637537896680895,0.0,On,0.44713640280975586,0.3353523021073168,On,-0.45609553227479893,0,On,131.77941635790592,0,84.33880439271148,51.666666666666686,46.10666666666668,0.0,51.666402873118614,0.0,0.0,131.77941635790592,131.7793818636117,51.666402873118614,51.66640287311862,51.666402873118614,10.042356980382465,On,5652.23913543211,0.0,20.000000000000057,9.420398559053517,0.0,0.0,0.6,1,0.2310586898168443,5652.23913543211,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1445.373613328278,20.095072633705612,4.39589798475112,7.494933890250169,3.9,6.529479366362011,0,3.0,1967.4733393001816,753.8315739863635,-526.8855308331396,1366.7618518692907 +2018-01-01 15:20:00,0.2600267924298929,0.3877638940498983,0.32157042267925645,0.04333779873831548,0.06462731567498305,0.05359507044654274,0.010000000000000002,0.0,-0.4520071731420463,0.5131296365109757,0.18890432906096352,0.005809009192941877,0.3157614134863146,0.0,1,0.0029166666666666685,0,0,0.3848472273832316,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.12620883871933844,0,On,0.060637537896680895,0.0,On,0.44713640280975586,0.3353523021073168,On,-0.4520071731420463,0,On,131.7793820069011,0,84.33880444028262,51.666666666666686,46.10666666666668,0.0,51.66640290751509,0.0,0.0,131.7793820069011,131.7793819379416,51.66640290751509,51.66640290751509,51.66640290751509,10.042356980382465,On,5552.432897786953,0.0,20.000000000000057,9.254054829644922,0.0,0.0,0.6,1,0.22697869639241966,5552.432897786953,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1445.6923426324754,20.09507263370561,4.384845853780374,7.423039215378088,3.9,6.529479366362011,0,3.0,1902.323015413347,747.230585784312,-517.1785785505591,1416.1866330859445 +2018-01-01 15:30:00,0.5429162591370364,0.3877638940498983,0.32711952631416685,0.09048604318950607,0.06462731567498305,0.05451992105236114,0.010000000000000002,0.0,-0.1691177064349027,0.5131296365109757,0.18890432906096352,0.005809009189914507,0.32131051712425235,0.0,1,0.0029166666666666685,0,0,0.3848472273832316,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.12620883871933844,0,On,0.060637537896680895,0.0,On,0.44713640280975586,0.3353523021073168,On,-0.1691177064349027,0,On,131.7793819382242,0,84.33880444037989,51.666666666666686,46.10666666666668,0.0,51.66640290758385,0.0,0.0,131.7793819382242,131.77938193809356,51.66640290758385,51.66640290758386,51.66640290758385,10.042356980382465,On,5650.00981591742,0.0,20.000000000000057,9.416683026529034,0.0,0.0,0.6,1,0.23096755714642733,5650.00981591742,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1442.9176886867454,20.09507263370561,4.376284531560242,7.364650272447841,2.2,6.529479366362011,0,3.0,1876.5664786329298,-3186.4465847403508,-644.7548436765335,1135.5678202713084 +2018-01-01 15:40:00,0.5398436538372067,0.3877638940498983,0.3245751548535201,0.08997394230620111,0.06462731567498305,0.05409585914225335,0.010000000000000002,0.0,-0.17219031173473254,0.5131296365109757,0.18890432906096352,0.005809009189908646,0.3187661456636115,0.0,1,0.0029166666666666685,0,0,0.3848472273832316,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.12620883871933844,0,On,0.060637537896680895,0.0,On,0.44713640280975586,0.3353523021073168,On,-0.17219031173473254,0,On,131.7793819380912,0,84.3388044403799,51.666666666666686,46.10666666666668,0.0,51.666402907583986,0.0,0.0,131.7793819380912,131.7793819380936,51.666402907583986,51.666402907583986,51.666402907583986,10.042356980382465,On,5605.2689096544555,0.0,20.000000000000057,9.342114849424092,0.0,0.0,0.6,1,0.2291385872577447,5605.2689096544555,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1443.1559101069004,20.095072633705612,2.6846546240221216,7.103359108874778,2.2,6.529479366362011,0,3.0,1846.5832789797091,165.71276473428645,-617.0733491413166,1159.9579805726314 +2018-01-01 15:50:00,0.556795919783669,0.3877638940498983,0.34189589983295765,0.09279931996394483,0.06462731567498305,0.056982649972159606,0.010000000000000002,0.0,-0.17528899073486012,0.5331805814575656,0.18890432906096352,0.005809009189908854,0.3160359456964588,0.020050944946589978,1,0.0029166666666666685,0,0,0.3848472273832316,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,On,0.020050944946589978,0,0.020050944946589978,On,0.00205795244494419,0.0,On,0.12620883871933844,0,On,0.060637537896680895,0.0,On,0.44713640280975586,0.3353523021073168,On,-0.17528899073486012,0,On,131.77938193809595,0,84.33880444037989,51.666666666666686,46.10666666666668,0.0,51.66640290758398,0.0,0.0,131.77938193809595,131.77938193809356,51.66640290758398,51.666402907583986,51.66640290758398,10.042356980382465,On,5557.260345378719,0.0,20.000000000000057,9.262100575631198,0.0,0.0,0.6,1,0.22717603831107996,5557.260345378719,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1442.8588513112275,20.09507263370561,2.6734528074114827,6.813947137891626,2.2,6.529479366362011,0,3.0,2202.8471404661914,213.56820480796807,-589.8118466725233,1182.438465164828 +2018-01-01 16:00:00,0.6640147736442692,0.403691980447487,0.3980146646379641,0.11066912894071153,0.06728199674124782,0.06633577743966068,0.010000000000000002,0.0,-0.178212459353192,0.6012035681963939,0.23102366480106737,0.03937289736203882,0.29180528412062534,0.06683648315529993,1,0.0029166666666666685,0,0,0.4007753137808203,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.06683648315529993,0,0.06683648315529993,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,-0.178212459353192,0,On,893.1877898376977,0,84.1847744473561,51.666666666666686,46.10666666666668,0.2629932415351802,51.666402907583986,763.1773880444184,0.0,893.1877898376977,131.5387100739939,51.666402907583986,51.666402907583986,51.666402907583986,10.042356980382465,On,5131.181930719508,0.0,20.000000000000057,8.551969884532514,0.0,0.0,0.6,1,0.2097583180251054,5131.181930719508,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1442.9283491780252,20.15004051020142,2.6707525143165696,6.5039398770761885,2.2,6.529479366362011,0,3.0,2815.0742098548944,147.20009708032296,-556.1811454992012,1200.685346432665 +2018-01-01 16:10:00,0.6638200064057106,0.403691980447487,0.30785675195823176,0.1106366677342851,0.06728199674124782,0.05130945865970529,0.010000000000000002,0.0,-0.17840722659175054,0.6012035681963939,0.23102366480106737,0.005840834746245065,0.23517943405668676,0.06683648315529993,1,0.0029166666666666685,0,0,0.4007753137808203,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.06683648315529993,0,0.06683648315529993,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,-0.17840722659175054,0,On,132.50135568726947,0,83.82367779910835,51.666666666666686,46.10666666666668,0.0,51.66487893334558,0.0,0.0,132.50135568726947,130.9744965611068,51.66487893334558,51.664878933345584,51.66487893334558,10.042356980382465,On,4135.457882968529,0.0,20.000000000000057,6.8924298049475485,0.0,0.0,0.6,1,0.16905397265333486,4135.457882968529,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1444.1714111131503,20.28711652958186,2.6349900503938697,6.211396344780612,2.2,6.529479366362011,0,3.0,1971.4091734282424,23.351757000578004,-522.0309871238268,1196.051418479992 +2018-01-01 16:20:00,0.6693828776668365,0.403691980447487,0.30698904919014236,0.11156381294447273,0.06728199674124782,0.05116484153169039,0.010000000000000002,0.0,-0.1728443553306247,0.6012035681963939,0.23102366480106737,0.005773808357019191,0.2343787576778232,0.06683648315529993,1,0.0029166666666666685,0,0,0.4007753137808203,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.06683648315529993,0,0.06683648315529993,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,-0.1728443553306247,0,On,130.98083887330543,0,83.82578359893151,51.666666666666686,46.10666666666668,0.0,51.666401462539,0.0,0.0,130.98083887330543,130.97778687333047,51.66640146253901,51.666401462539014,51.666401462539,10.042356980382465,On,4121.378576008891,0.0,20.000000000000057,6.868964293348152,0.0,0.0,0.6,1,0.16847842265594884,4121.378576008891,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1447.2185554715036,20.287116529581855,2.549686829078664,5.954079755468292,2.2,6.529479366362011,0,3.0,1942.0447572879948,191.5310313866288,-491.0200740639869,1091.8493723363301 +2018-01-01 16:30:00,0.829350422014591,0.403691980447487,0.37668874476254893,0.13822507033576514,0.06728199674124782,0.06278145746042482,0.010000000000000002,0.0,-0.012876810982870225,0.6012035681963939,0.23102366480106737,0.03934765613912196,0.27050460546812705,0.06683648315529993,1,0.0029166666666666685,0,0,0.4007753137808203,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.06683648315529993,0,0.06683648315529993,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,-0.012876810982870225,0,On,892.6151839686754,0,83.81859693368474,51.666666666666686,46.10666666666668,0.2629932314366405,51.66640450588399,763.1773880444184,0.0,892.6151839686754,130.96655770888242,51.66640450588398,51.66640450588399,51.66640450588399,10.042356980382465,On,4756.625117113005,0.0,20.000000000000057,7.927708528521674,0.0,0.0,0.6000000000000001,1,0.1944467566172786,4756.625117113005,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1438.5167514829686,20.28711652958186,2.548252104154945,5.7319019221490075,-0.6,6.529479366362011,0,3.0,2000.9424934554909,-6201.763946293608,-584.7310941058306,340.13573429046966 +2018-01-01 16:40:00,0.829350422014591,0.403691980447487,0.4483813153511291,0.13822507033576514,0.06728199674124782,0.07473021922518817,0.010000000000000002,0.0,-0.012876810982870225,0.6012035681963939,0.23102366480106737,0.10638508945543057,0.27515974274039856,0.06683648315529993,1,0.0029166666666666685,0,0,0.4007753137808203,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.06683648315529993,0,0.06683648315529993,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,-0.012876810982870225,0,On,2413.3825369427,0,83.80214480775845,51.666666666666686,46.10666666666668,0.7876170411778469,51.66488007942773,2285.494188535136,0.0,2413.3825369427,130.94085126212258,51.66488007942774,51.664880079427746,51.66488007942773,10.042356980382465,On,4838.482292278566,0.0,20.000000000000057,8.06413715379761,0.0,0.0,0.6,1,0.19779300775645947,4838.482292278566,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1439.1047183152043,20.28711652958186,-0.19704749555569734,5.32300556573834,-0.6,6.529479366362011,0,3.0,2061.3101391933455,-716.8715828049707,-556.5552896787692,324.98886733558896 +2018-01-01 16:50:00,0.8422272329974612,0.403691980447487,0.35377974347830327,0.14037120549957685,0.06728199674124782,0.058963290579717206,0.010000000000000002,0.0,0.0,0.6012035681963939,0.23102366480106737,0.005974783716865011,0.28096847660613833,0.06683648315529993,1,0.0029166666666666685,0,0,0.4007753137808203,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.06683648315529993,0,0.06683648315529993,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,Off,-0.0,0,On,135.54003439864152,0,83.81946946083345,51.666666666666686,46.10666666666668,0.0,51.66183623299197,0.0,0.0,135.54003439864152,130.96792103255225,51.66183623299197,51.66183623299197,51.66183623299197,10.042356980382465,On,4940.624617569431,0.0,20.000000000000057,8.23437436261572,0.0,0.0,0.6,1,0.2019684984409577,4940.624617569431,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1439.617911520262,20.28711652958186,-0.20270080591823056,4.816497474878676,-0.6,6.529479366362011,0,3.0,2122.2753554086585,-613.8968866830113,-524.1986502062298,245.5518457720278 +2018-01-01 17:00:00,1.1236563903410575,0.4889525639801818,0.35430135596358137,0.1872760650568429,0.08149209399669696,0.05905022599393023,0.010000000000000002,0.0,0.0,0.714884346239987,0.3987720441010707,0.005774076104218226,0.2816907967040632,0.06683648315529993,1,0.0029166666666666685,0,0,0.4860358973135151,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,On,0.06683648315529993,0,0.06683648315529993,On,0.006345353371911252,0.0,On,0.265071861795761,0,On,0.12735482893339842,0.0,On,0.5707874919222834,0.4280906189417124,Off,-0.0,0,On,130.98691281108916,0,83.82577518699338,51.666666666666686,46.10666666666668,0.0,51.66639538056246,0.0,0.0,130.98691281108916,130.97777372967715,51.66639538056246,51.66639538056247,51.66639538056246,10.042356980382465,On,4953.326086790035,0.0,20.000000000000057,8.255543477983393,0.0,0.0,0.6,1,0.20248772361288375,4953.326086790035,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1440.533501224374,20.28711652958186,-0.19162943778966918,4.243982439992058,-0.6,6.529479366362011,0,4.0,2466.939795827174,-599.2103969441607,-480.5547408887337,244.81948673765785 +2018-01-01 17:10:00,1.1236563903410575,0.4889525639801818,0.34495679582333805,0.1872760650568429,0.08149209399669696,0.057492799303889675,0.010000000000000002,0.0,0.0,0.714884346239987,0.3987720441010707,0.005766545256327586,0.2723537674117105,0.06683648315529993,1,0.0029166666666666685,0,0,0.4860358973135151,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,On,0.06683648315529993,0,0.06683648315529993,On,0.006345353371911252,0.0,On,0.265071861795761,0,On,0.12735482893339842,0.0,On,0.5707874919222834,0.4280906189417124,Off,-0.0,0,On,130.81607292289922,0,83.72206720702658,51.666666666666686,46.10666666666668,0.0,51.66640449372688,0.0,0.0,130.81607292289922,130.81573001097902,51.66640449372688,51.66640449372688,51.66640449372688,10.042356980382465,On,4789.141273838828,0.0,20.000000000000057,7.981902123064714,0.0,0.0,0.6,1,0.1957759892259717,4789.141273838828,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1441.4070549896064,20.325943378488002,-0.18936844282209755,3.675208128389293,-0.6,6.529479366362011,0,4.0,2315.2355153779663,-618.321069033386,-433.4047906710943,243.6947411756475 +2018-01-01 17:20:00,1.1236563903410575,0.4889525639801818,0.38485487037979227,0.1872760650568429,0.08149209399669696,0.06414247839663204,0.010000000000000002,0.0,0.0,0.714884346239987,0.3987720441010707,0.03934051196255799,0.2786778752619344,0.06683648315529993,1,0.0029166666666666685,0,0,0.4860358973135151,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,On,0.06683648315529993,0,0.06683648315529993,On,0.006345353371911252,0.0,On,0.265071861795761,0,On,0.12735482893339842,0.0,On,0.5707874919222834,0.4280906189417124,Off,-0.0,0,On,892.4531158532226,0,83.71487680547871,51.666666666666686,46.10666666666668,0.2629932293529765,51.66640483566635,763.1773880444182,0.0,892.4531158532226,130.80449500856048,51.66640483566635,51.666404835666356,51.66640483566635,10.042356980382465,On,4900.346072705925,0.0,20.000000000000057,8.167243454509874,0.0,0.0,0.6,1,0.20032194606040643,4900.346072705925,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1443.0646739900342,20.325943378488002,-0.2029655296643003,3.1523924178555496,-0.6,6.529479366362011,0,4.0,2398.615138922156,-558.306695677639,-388.57980303657723,242.20461326768793 +2018-01-01 17:30:00,1.0568199071857578,0.4889525639801818,0.4132158851839156,0.17613665119762628,0.08149209399669696,0.06886931419731926,0.010000000000000002,0.0,0.0,0.648047863084687,0.3987720441010707,0.03940762211280758,0.37380826307110804,0.0,1,0.0029166666666666685,0,0,0.4860358973135151,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.265071861795761,0,On,0.12735482893339842,0.0,On,0.5707874919222834,0.4280906189417124,Off,-0.0,0,On,893.9755328149703,0,83.7127683740962,51.666666666666686,46.10666666666668,0.26300286152382457,51.66488040381033,763.1773880444182,0.0,893.9755328149703,130.8012005845253,51.66488040381033,51.66488040381033,51.66488040381033,10.042356980382465,On,6573.144180045851,0.0,20.000000000000057,10.955240300076417,0.0,0.0,0.6,1,0.2687044984876599,6573.144180045851,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1436.2831936366395,20.325943378488002,-0.19329872877427068,2.6908727201050473,-2.2,6.529479366362011,0,4.0,1228.328642144169,-3964.9788061262825,-714.7778225401328,0.0 +2018-01-01 17:40:00,1.0568199071857578,0.4889525639801818,0.4611005276408974,0.17613665119762628,0.08149209399669696,0.07685008794014955,0.010000000000000002,0.0,0.0,0.648047863084687,0.3987720441010707,0.005867419789204735,0.45523310785169263,0.0,1,0.0029166666666666685,0,0,0.4860358973135151,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.265071861795761,0,On,0.12735482893339842,0.0,On,0.5707874919222834,0.4280906189417124,Off,-0.0,0,On,133.10444657858858,0,84.20941876255402,51.666666666666686,46.10666666666668,0.0,51.66487735666216,0.0,0.0,133.10444657858858,131.57721681649065,51.66487735666216,51.66487735666217,51.66487735666216,10.042356980382465,On,8004.940363959591,0.0,20.000000000000057,13.341567273265985,0.0,0.0,0.6,1,0.32723509891218966,8004.940363959591,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1437.209264372359,20.142717123501967,-1.6496433075834,1.7798222803330155,-2.2,6.529479366362011,0,4.0,2437.7100126949736,-774.6340197142201,-590.2393989616694,0.0 +2018-01-01 17:50:00,1.3212503003764664,0.5266318543007936,0.642951344297713,0.22020838339607773,0.08777197571679893,0.10715855738295216,0.010000000000000002,0.0,0.0,0.9124782562753957,0.3987720441010707,0.05716892367326817,0.4659138568448692,0.11986856377957562,1,0.0029166666666666685,0,0,0.5237151876341269,0.0,Off,0.0,0.0,On,0.2644303931907087,0.03767929032061181,0.11986856377957562,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.265071861795761,0,On,0.12735482893339842,0.0,On,0.5707874919222834,0.4280906189417124,Off,-0.0,0,On,1296.8967996842964,0,84.20052295968111,51.666666666666686,46.10666666666668,0.4023824616935494,51.66640025544046,1167.6694608230139,0.0,1296.8967996842964,131.56331712450174,51.66640025544046,51.666400255440465,51.66640025544046,10.042356980382465,On,8192.75350245534,0.0,20.000000000000057,13.6545891707589,0.0,0.0,0.6,1,0.3349127389892314,8192.75350245534,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1434.7547410697507,20.142717123501967,-1.533498704133669,1.1079145440142382,-2.2,6.529479366362011,0,4.0,3081.795884847238,-927.846136767597,-503.88242278708844,0.0 +2018-01-01 18:00:00,1.6036745226524052,0.5625166114760148,0.6870294373998362,0.26727908710873416,0.0937527685793358,0.11450490623330603,0.010000000000000002,0.0,0.0,1.103118825462286,0.49055569719011904,0.03923465362458337,0.44801384414262685,0.19978093963262605,1,0.0029166666666666685,0,0,0.5595999448093482,0.0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.3256787447691636,0,On,0.15647364660410004,0.0,On,0.581921950183601,0.4364414626377007,Off,-0.0,0,On,890.0516828557468,0,84.0101828603469,51.666666666666686,46.10666666666668,0.2612131006829757,51.664070901644806,757.9691476356411,-0.0,890.0516828557468,131.26591071929204,51.664070901644806,51.664070901644806,51.664070901644806,10.042356980382465,On,7877.994905762389,0.0,20.000000000000057,13.129991509603983,0.0,0.0,0.6,1,0.32204567741985185,7877.994905762389,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1435.134677371809,20.214208246792747,-1.515602443675252,0.5744543572258239,-2.2,6.529479366362011,0,4.0,3233.2205250658653,-1008.7897701977263,-436.50002252622744,0.0 +2018-01-01 18:10:00,1.9076909965653115,0.9179512548979009,0.655406217581748,0.3179484994275519,0.1529918758163168,0.109234369596958,0.010000000000000002,0.0,0.0,1.4071352993751924,0.49055569719011904,0.022768373420450065,0.43285690452867187,0.19978093963262605,1,0.0029166666666666685,0,0,0.9150345882312342,0.0,On,0.3040164739129063,0.355434643421886,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.3256787447691636,0,On,0.15647364660410004,0.0,On,0.581921950183601,0.4364414626377007,Off,-0.0,0,On,516.5084232083575,0,83.84761285862042,51.666666666666686,46.10666666666668,0.13258973006467747,51.66488521032676,384.7467475114996,-0.0,516.5084232083575,131.0118950915944,51.66488521032676,51.66488521032676,51.66488521032676,10.042356980382465,On,7611.471237740042,0.0,20.000000000000057,12.685785396233403,0.0,0.0,0.6,1,0.31115041837952195,7611.471237740042,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1436.8811325503443,20.27680285174775,-1.5419974898916442,0.14267177441535595,-2.2,6.529479366362011,0,4.0,3067.770873649465,-999.4863594359294,-382.15768830404016,0.0 +2018-01-01 18:20:00,1.5734528738703701,0.8743080783928252,0.6076919235157356,0.26224214564506165,0.14571801306547086,0.10128198725262261,0.010000000000000002,0.0,0.0,1.1872727950837247,0.3761800787866455,0.04587700326191422,0.44194635647424585,0.11986856377957562,1,0.0029166666666666685,0,0,0.8713914117261585,0.0,On,0.3377960821254514,0.3949273815798733,On,0.2644303931907087,0.03767929032061181,0.11986856377957562,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.24842161922065034,0,On,0.11935515374913971,0.0,On,0.5045667664733943,0.37842507485504556,Off,-0.0,0,On,1040.7356809710825,0,83.81260876092558,51.666666666666686,46.10666666666668,0.31388083245718196,51.665632864671956,910.8307151537239,0.0,1040.7356809710825,130.95720118894621,51.665632864671956,51.665632864671956,51.665632864671956,10.042356980382465,On,7771.302584604866,0.0,20.000000000000057,12.952170974341444,0.0,0.0,0.6,1,0.31768418680533794,7771.302584604866,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1438.5513913994064,20.288437836402377,-1.564801146538824,-0.20855854379759248,-2.2,6.529479366362011,0,3.0,2603.3548526588893,-914.6910956254865,-337.98924477614685,0.0 +2018-01-01 18:30:00,1.5007532827933419,0.8946451758548685,0.5468536871381716,0.2501255471322236,0.14910752930914473,0.09114228118969527,0.010000000000000002,0.0,0.0,1.0001975856032228,0.49055569719011904,0.007559536711909692,0.5392941504262619,0.0,1,0.0029166666666666685,0,0,0.8917285091882018,0.0,On,0.3377960821254514,0.3949273815798733,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.3256787447691636,0,On,0.15647364660410004,0.0,On,0.581921950183601,0.4364414626377007,Off,-0.0,0,On,171.49070401960165,0,84.01379129179465,51.666666666666686,46.10666666666668,0.013258973006467748,51.66458361327466,38.474395963460246,-0.0,171.49070401960165,131.27154889342913,51.66458361327466,51.66458361327466,51.66458361327466,10.042356980382465,On,9483.092152868838,0.0,20.000000000000057,15.805153588114731,0.0,0.0,0.6,1,0.3876606767252,9483.092152868838,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1421.4899040991872,20.215660681996155,-1.5510807572957743,-0.49510486727304864,-5.0,6.529479366362011,0,4.0,2865.6841014997335,-7121.145954581927,-633.8985686210118,0.0 +2018-01-01 18:40:00,1.1629572006678905,0.4997177942749952,0.5854479205248848,0.19382620011131507,0.08328629904583253,0.09757465342081413,0.010000000000000002,0.0,0.0,0.6624015034777715,0.49055569719011904,0.01870996126895519,0.5667379592559296,0.0,1,0.0029166666666666685,0,0,0.4968011276083285,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.3256787447691636,0,On,0.15647364660410004,0.0,On,0.581921950183601,0.4364414626377007,Off,-0.0,0,On,424.4419403556347,0,84.13422498797048,51.666666666666686,46.10666666666668,0.10113771639980634,51.666323424574344,293.4899406312022,-0.0,424.4419403556347,131.45972654370388,51.66632342457434,51.666323424574344,51.666323424574344,10.042356980382465,On,9965.671405678735,0.0,20.000000000000057,16.609452342797894,0.0,0.0,0.5999999999999999,1,0.4073881028328574,9965.671405678735,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1420.5815214302074,20.170578740323812,-4.204085549205308,-1.198976448880373,-5.0,6.529479366362011,0,4.0,3171.1059265237664,-1743.0790777459083,-543.7218937933217,0.0 +2018-01-01 18:50:00,2.0866513021191158,0.6313370752360776,0.6369987663945587,0.3477752170198526,0.1052228458726796,0.10616646106575978,0.010000000000000002,0.0,0.0,1.586095604928997,0.49055569719011904,0.05516217894913359,0.5818365874454251,0.0,1,0.0029166666666666685,0,0,0.628420408569411,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.9236941014512254,0.1316192809610824,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.3256787447691636,0,On,0.15647364660410004,0.0,On,0.581921950183601,0.4364414626377007,Off,-0.0,0,On,1251.3731017852856,0,84.16025742697718,51.666666666666686,46.10666666666668,0.38648894742789,51.665817137588604,1121.5325259096403,-0.0,1251.3731017852856,131.50040222965185,51.665817137588604,51.66581713758861,51.665817137588604,10.042356980382465,On,10231.169710063674,0.0,20.000000000000057,17.05194951677279,0.0,0.0,0.6,1,0.41824144588680234,10231.169710063674,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1419.8305940007865,20.157650979596454,-4.174803201703891,-1.7427669544807336,-5.0,6.529479366362011,0,4.0,3656.399279951501,-1682.4433395808867,-479.4575033243294,0.0 +2018-01-01 19:00:00,2.0602606828882952,0.6043096756385503,0.6544097956283254,0.34337678048138254,0.10071827927309171,0.10906829927138756,0.010000000000000002,0.0,0.0,1.550059072132294,0.5002016107560014,0.07808342789505215,0.5763263677332732,0.0,1,0.0029166666666666685,0,0,0.6013930089718836,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.9236941014512254,0.1316192809610824,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,Off,-0.0,0,On,1771.3495591456112,0,84.04814605269814,51.666666666666686,46.10666666666668,0.565547466571071,51.66416201824151,1641.0680340512408,0.0,1771.3495591456112,131.32522820734084,51.66416201824151,51.66416201824152,51.66416201824151,10.042356980382465,On,10134.27653725327,0.0,20.000000000000057,16.89046089542212,0.0,0.0,0.5999999999999999,1,0.4142805360552587,10134.27653725327,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1419.6360443159126,20.196929431106476,-4.149633108583046,-2.1979295709873163,-5.0,6.529479366362011,0,4.0,3528.746771118721,-1721.1837809728675,-426.2388214504031,0.0 +2018-01-01 19:10:00,2.0602606828882952,0.6043096756385503,0.6316070162886996,0.34337678048138254,0.10071827927309171,0.1052678360481166,0.010000000000000002,0.0,0.0,1.550059072132294,0.5002016107560014,0.04453928550270812,0.5870677307859915,0.0,1,0.0029166666666666685,0,0,0.6013930089718836,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.9236941014512254,0.1316192809610824,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,Off,-0.0,0,On,1010.3890910875571,0,84.06302400153669,51.666666666666686,46.10666666666668,0.3024175538816908,51.66312127490669,877.5132069147699,-0.0,1010.3890910875571,131.34847500240107,51.66312127490669,51.66312127490669,51.66312127490669,10.042356980382465,On,10323.155529535752,0.0,20.000000000000057,17.20525921589292,0.0,0.0,0.6,1,0.4220017473212749,10323.155529535752,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1420.79431064379,20.193514333597044,-4.156745288589977,-2.5811336860234957,-5.0,6.529479366362011,0,4.0,3672.3374762186613,-1652.6822428362543,-381.1954120511316,0.0 +2018-01-01 19:20:00,1.321305401727315,0.4990142508696844,0.6776359996059805,0.22021756695455247,0.08316904181161405,0.11293933326766342,0.010000000000000002,0.0,0.0,0.8111037909713136,0.5002016107560014,0.08123533744186054,0.59640066216412,0.0,1,0.0029166666666666685,0,0,0.4960975842030177,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.1847388202902451,0.026323856192216482,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,Off,-0.0,0,On,1842.851716987732,0,84.0572566396989,51.666666666666686,46.10666666666668,0.5903930615999231,51.6646443525845,1713.1831826654338,0.0,1842.851716987732,131.33946349952953,51.664644352584496,51.6646443525845,51.6646443525845,10.042356980382465,On,10487.268283670464,0.0,20.000000000000057,17.47878047278411,0.0,0.0,0.5999999999999999,1,0.4287105360055494,10487.268283670464,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1421.1772854524095,20.193514333597044,-4.140191766191659,-2.901500624608113,-5.0,6.529479366362011,0,4.0,3573.029732081657,-1641.6033546210647,-343.33261022222007,0.0 +2018-01-01 19:30:00,1.13656658143707,0.4726903946774679,0.6530641997880435,0.189427763572845,0.07878173244624465,0.10884403329800725,0.010000000000000002,0.0,0.0,0.6263649706810684,0.5002016107560014,0.028803650043835866,0.6242605497442076,0.0,1,0.0029166666666666685,0,0,0.4697737280108012,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,Off,-0.0,0,On,653.4207601068466,0,84.1501404889251,51.666666666666686,46.10666666666668,0.17905279786512002,51.66297816190005,519.5487252102101,-0.0,653.4207601068466,131.48459451394547,51.66297816190004,51.66297816190005,51.66297816190005,10.042356980382465,On,10977.16397618208,0.0,20.000000000000057,18.2952732936368,0.0,0.0,0.6,1,0.44873705189534396,10977.16397618208,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1417.136096269455,20.162091572389023,-4.125844224086495,-3.167965239087527,-5.6,6.529479366362011,0,4.0,3830.665302568289,-2962.9759987867697,-361.74451851635536,0.0 +2018-01-01 19:40:00,1.13656658143707,0.4726903946774679,0.6672251948765572,0.189427763572845,0.07878173244624465,0.11120419914609286,0.010000000000000002,0.0,0.0,0.6263649706810684,0.5002016107560014,0.03068713425846807,0.6365380606180892,0.0,1,0.0029166666666666685,0,0,0.4697737280108012,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,Off,-0.0,0,On,696.1482507304733,0,84.17399303053601,51.666666666666686,46.10666666666668,0.19460640016952552,51.66535883187669,564.7121497626872,-0.0,696.1482507304733,131.5218641102125,51.66535883187669,51.66535883187669,51.66535883187669,10.042356980382465,On,11193.05500139131,0.0,20.000000000000057,18.65509166898552,0.0,0.0,0.5999999999999999,1,0.45756249190819764,11193.05500139131,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1416.6602679211198,20.154235882087022,-4.683693595101676,-3.461332554591478,-5.6,6.529479366362011,0,4.0,3997.8987095790217,-1803.7143894617288,-329.09885723000525,0.0 +2018-01-01 19:50:00,1.13656658143707,0.4726903946774679,0.7910719221044189,0.189427763572845,0.07878173244624465,0.13184532035073648,0.010000000000000002,0.0,0.0,0.6263649706810684,0.5002016107560014,0.14562955370932085,0.645442368395098,0.0,1,0.0029166666666666685,0,0,0.4697737280108012,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,Off,-0.0,0,On,3303.656777316299,0,84.14925719065039,51.666666666666686,46.10666666666668,1.0949739331678678,51.66527331194506,3177.407386002617,0.0,3303.656777316299,131.48321436039123,51.665273311945064,51.66527331194507,51.66527331194506,10.042356980382465,On,11349.63072382431,0.0,20.000000000000057,18.91605120637385,0.0,0.0,0.6,1,0.46396317319850344,11349.63072382431,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1416.318653095848,20.154235882087022,-4.667696266006046,-3.7079634952393667,-5.6,6.529479366362011,0,4.0,4114.552438079577,-1785.279202838356,-302.5548407528446,0.0 +2018-01-01 20:00:00,1.0236817872349857,0.44643067029009065,0.876623059577089,0.17061363120583095,0.0744051117150151,0.14610384326284814,0.010000000000000002,0.0,0.0,0.5913520048312322,0.42232978240375363,0.22261990465100728,0.6540031549260817,0.0,1,0.0029166666666666685,0,0,0.44351400362342397,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.2747290024893251,0,On,0.13199464054026844,0.0,On,0.5157012247347119,0.3867759185510338,Off,-0.0,0,On,5050.209507843436,0,84.12559827148624,51.666666666666686,46.10666666666668,1.6964875580540415,51.6600543311987,4922.26896257364,0.0,5050.209507843436,131.44624729919724,51.6600543311987,51.66005433119871,51.6600543311987,10.042356980382465,On,11500.165877061536,0.0,20.000000000000057,19.166943128435893,0.0,0.0,0.6,1,0.4701169211990668,11500.165877061536,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1416.154409531832,20.154235882087022,-4.65368297552668,-3.920626529863608,-5.6,6.529479366362011,0,4.0,4115.944531259603,-1772.1306634156244,-279.61094567082625,0.0 +2018-01-01 20:10:00,1.0236817872349857,0.44643067029009065,0.6964923049077452,0.17061363120583095,0.0744051117150151,0.11608205081795753,0.010000000000000002,0.0,0.0,0.5913520048312322,0.42232978240375363,0.028153078611713043,0.6683392262960322,0.0,1,0.0029166666666666685,0,0,0.44351400362342397,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.2747290024893251,0,On,0.13199464054026844,0.0,On,0.5157012247347119,0.3867759185510338,Off,-0.0,0,On,638.662322234058,0,84.20430621866387,51.666666666666686,46.10666666666668,0.1717350043937488,51.65655857078979,498.2381822316249,-0.0,638.662322234058,131.5692284666623,51.65655857078979,51.6565585707898,51.65655857078979,10.042356980382465,On,11752.255178983109,0.0,20.000000000000057,19.58709196497185,0.0,0.0,0.5999999999999999,1,0.4804221157287368,11752.255178983109,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1415.9634395945238,20.13856656180053,-4.640478514198869,-4.103247983103276,-5.6,6.529479366362011,0,4.0,4316.582691027729,-1740.3721934015266,-259.747650654731,0.0 +2018-01-01 20:20:00,1.0236817872349857,0.44643067029009065,0.7115461284666253,0.17061363120583095,0.0744051117150151,0.11859102141110422,0.010000000000000002,0.0,0.0,0.5913520048312322,0.42232978240375363,0.03521323703449867,0.6763328914321267,0.0,1,0.0029166666666666685,0,0,0.44351400362342397,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.2747290024893251,0,On,0.13199464054026844,0.0,On,0.5157012247347119,0.3867759185510338,Off,-0.0,0,On,798.8244571048294,0,84.21492325639608,51.666666666666686,46.10666666666668,0.230048847889996,51.665388371186836,667.5601189152004,-0.0,798.8244571048294,131.58581758811886,51.66538837118684,51.66538837118685,51.665388371186836,10.042356980382465,On,11892.817918380233,0.0,20.000000000000057,19.82136319730039,0.0,0.0,0.6,1,0.4861682000015288,11892.817918380233,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1415.508764983304,20.13856656180053,-4.618716498036421,-4.259191889212198,-5.6,6.529479366362011,0,4.0,4421.095566600168,-1749.4664490992645,-242.66897296829694,0.0 +2018-01-01 20:30:00,1.0236817872349857,0.44643067029009065,0.7276034246156465,0.17061363120583095,0.0744051117150151,0.12126723743594109,0.010000000000000002,0.0,0.0,0.5913520048312322,0.42232978240375363,0.0682302789867855,0.6593731456288611,0.0,1,0.0029166666666666685,0,0,0.44351400362342397,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.2747290024893251,0,On,0.13199464054026844,0.0,On,0.5157012247347119,0.3867759185510338,Off,-0.0,0,On,1547.827469435201,0,84.20741131479124,51.666666666666686,46.10666666666668,0.4885789616712406,51.66506780345345,1417.7567972746508,0.0,1547.827469435201,131.57408017936132,51.66506780345345,51.665067803453454,51.66506780345345,10.042356980382465,On,11594.59322557673,0.0,20.000000000000057,19.32432204262788,0.0,0.0,0.6000000000000001,1,0.47397703024753707,11594.59322557673,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1411.387268566488,20.13856656180053,-4.60652922217008,-4.3920823741917125,-6.1,6.529479366362011,0,4.0,4525.473596063616,-2993.898991246711,-188.6476124946631,0.0 +2018-01-01 20:40:00,1.0236817872349857,0.44643067029009065,0.6885977509842763,0.17061363120583095,0.0744051117150151,0.11476629183071271,0.010000000000000002,0.0,0.0,0.5913520048312322,0.42232978240375363,0.022016151720898988,0.6665815992633773,0.0,1,0.0029166666666666685,0,0,0.44351400362342397,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.2747290024893251,0,On,0.13199464054026844,0.0,On,0.5157012247347119,0.3867759185510338,Off,-0.0,0,On,499.4440138733776,0,84.21525013376402,51.666666666666686,46.10666666666668,0.12604829860458666,51.66356865886372,365.75335742862603,-0.0,499.4440138733776,131.58632833400628,51.66356865886371,51.66356865886372,51.66356865886372,10.042356980382465,On,11721.348596540365,0.0,20.000000000000057,19.535580994233943,0.0,0.0,0.6,1,0.4791586811367411,11721.348596540365,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1411.251277842655,20.13856656180053,-5.132047748871995,-4.455215755099869,-6.1,6.529479366362011,0,4.0,4619.923315097543,-1918.514418632275,-185.9516391374091,0.0 +2018-01-01 20:50:00,1.0236817872349857,0.44643067029009065,0.7377509542314041,0.17061363120583095,0.0744051117150151,0.12295849237190068,0.010000000000000002,0.0,0.0,0.5913520048312322,0.42232978240375363,0.06431403814264877,0.6734369160887553,0.0,1,0.0029166666666666685,0,0,0.44351400362342397,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.2747290024893251,0,On,0.13199464054026844,0.0,On,0.5157012247347119,0.3867759185510338,Off,-0.0,0,On,1458.9861918456293,0,84.20907321678649,51.666666666666686,46.10666666666668,0.4581011490161305,51.66566701943036,1329.3355197547967,-0.0,1458.9861918456293,131.5766769012289,51.66566701943036,51.66566701943036,51.66566701943036,10.042356980382465,On,11841.894315682299,0.0,20.000000000000057,19.736490526137164,0.0,0.0,0.6,1,0.4840864867834205,11841.894315682299,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1410.6092355497112,20.13856656180053,-5.123567698979528,-4.537926270302905,-6.1,6.529479366362011,0,4.0,4709.757866687089,-1894.2675455916483,-182.19374575660132,0.0 +2018-01-01 21:00:00,0.9032045805367332,0.42896130768796414,0.7341423142983912,0.1505340967561222,0.07149355128132735,0.12235705238306518,0.010000000000000002,0.0,0.0,0.5680595213617301,0.32514505917500325,0.054175145035051823,0.6799671692633393,0.0,1,0.0029166666666666685,0,0,0.42604464102129747,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,Off,-0.0,0,On,1228.98189617735,0,84.20860658317731,51.666666666666686,46.10666666666668,0.3780344506821809,51.66374647646718,1096.9442809521822,0.0,1228.98189617735,131.57594778621456,51.66374647646718,51.66374647646718,51.66374647646718,10.042356980382465,On,11956.724028905031,0.0,20.000000000000057,19.927873381508384,0.0,0.0,0.6,1,0.488780627008834,11956.724028905031,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1410.378787035309,20.13856656180053,-5.11271869338627,-4.630555703640529,-6.1,6.529479366362011,0,4.0,4676.388027915406,-1882.932948936722,-177.37282248777518,0.0 +2018-01-01 21:10:00,0.9032045805367332,0.42896130768796414,0.7123153910366529,0.1505340967561222,0.07149355128132735,0.11871923183944214,0.010000000000000002,0.0,0.0,0.5680595213617301,0.32514505917500325,0.019498489844652314,0.6928169011920006,0.0,1,0.0029166666666666685,0,0,0.42604464102129747,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,Off,-0.0,0,On,442.3299837290909,0,84.26171062477034,51.666666666666686,46.10666666666668,0.10651968896162253,51.664206834689764,309.09208352570016,-0.0,442.3299837290909,131.65892285120367,51.664206834689764,51.66420683468977,51.664206834689764,10.042356980382465,On,12182.677141733791,0.0,20.000000000000057,20.304461902889653,0.0,0.0,0.6,1,0.49801739653667876,12182.677141733791,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1410.1911291462511,20.121704770350423,-5.10260162322184,-4.724308035009299,-6.1,6.529479366362011,0,4.0,4858.28265059186,-1850.8518032548814,-172.11709050311947,0.0 +2018-01-01 21:20:00,0.9032045805367332,0.42896130768796414,0.741319605092307,0.1505340967561222,0.07149355128132735,0.1235532675153845,0.010000000000000002,0.0,0.0,0.5680595213617301,0.32514505917500325,0.042435116910658835,0.6988844881816482,0.0,1,0.0029166666666666685,0,0,0.42604464102129747,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,Off,-0.0,0,On,962.6552990605971,0,84.25896089266404,51.666666666666686,46.10666666666668,0.28672953732644285,51.66578133431011,832.0450760107699,-0.0,962.6552990605971,131.65462639478756,51.66578133431011,51.66578133431012,51.66578133431011,10.042356980382465,On,12289.37120938295,0.0,20.000000000000057,20.482285348971587,0.0,0.0,0.5999999999999999,1,0.5023789585462733,12289.37120938295,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.6816397499804,20.121704770350423,-5.083100086503325,-4.8141330329331735,-6.1,6.529479366362011,0,4.0,4937.776942282066,-1862.6406628740642,-166.88558683920022,0.0 +2018-01-01 21:30:00,0.9032045805367332,0.42896130768796414,0.8272837592635007,0.1505340967561222,0.07149355128132735,0.13788062654391678,0.010000000000000002,0.0,0.0,0.5680595213617301,0.32514505917500325,0.11905716504614636,0.7082265942173543,0.0,1,0.0029166666666666685,0,0,0.42604464102129747,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,Off,-0.0,0,On,2700.852953088411,0,84.24111939332361,51.666666666666686,46.10666666666668,0.8866008576397935,51.664739892729045,2572.7151356538743,0.0,2700.852953088411,131.62674905206813,51.664739892729045,51.66473989272905,51.664739892729045,10.042356980382465,On,12453.645293143085,0.0,20.000000000000057,20.75607548857181,0.0,0.0,0.6,1,0.5090943422473165,12453.645293143085,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.4747030318904,20.121704770350426,-5.073856991823774,-4.897714996472075,-6.1,6.529479366362011,0,4.0,5012.651082818035,-1843.1921425291293,-172.2164731150062,0.0 +2018-01-01 21:40:00,0.9032045805367332,0.42896130768796414,0.7475317993686884,0.1505340967561222,0.07149355128132735,0.12458863322811473,0.010000000000000002,0.0,0.0,0.5680595213617301,0.32514505917500325,0.033945038110008166,0.7135867612586803,0.0,1,0.0029166666666666685,0,0,0.42604464102129747,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,Off,-0.0,0,On,770.0549260229653,0,84.25456967634382,51.666666666666686,46.10666666666668,0.2186885424008984,51.66126085517375,634.5316394587527,-0.0,770.0549260229653,131.64776511928721,51.66126085517375,51.66126085517376,51.66126085517375,10.042356980382465,On,12547.899899775637,0.0,20.000000000000057,20.913166499626062,0.0,0.0,0.6,1,0.5129473897557275,12547.899899775637,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.2756589220978,20.121704770350426,-5.059671268974473,-4.988288350414741,-6.1,6.529479366362011,0,4.0,5083.289991974205,-1848.0205867527293,-166.0297566296283,0.0 +2018-01-01 21:50:00,0.9032045805367332,0.42896130768796414,0.7817729758441609,0.1505340967561222,0.07149355128132735,0.13029549597402681,0.010000000000000002,0.0,0.0,0.5680595213617301,0.32514505917500325,0.0630838120011244,0.7186891638430366,0.0,1,0.0029166666666666685,0,0,0.42604464102129747,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,Off,-0.0,0,On,1431.0780864744422,0,84.25363730323676,51.666666666666686,46.10666666666668,0.44825911204266916,51.66512538624839,1300.7585919708401,0.0,1431.0780864744422,131.64630828630743,51.66512538624839,51.6651253862484,51.66512538624839,10.042356980382465,On,12637.621907459648,0.0,20.000000000000057,21.062703179099415,0.0,0.0,0.6,1,0.51661514850522,12637.621907459648,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.5077915742818,20.121704770350426,-5.051543686010764,-5.066745738907255,-6.1,6.529479366362011,0,4.0,5149.846533839906,-1841.925379003355,-160.69005948764988,0.0 +2018-01-01 22:00:00,0.8005933265073657,0.38523222069846036,0.7765946767236753,0.13343222108456093,0.06420537011641006,0.12943244612061255,0.010000000000000002,0.0,0.0,0.5097540720423918,0.2808392544649739,0.053133321890620595,0.7234613548330547,0.0,1,0.0029166666666666685,0,0,0.3823155540317937,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.1791566101081902,0,On,0.08607650498262355,0.0,On,0.4389320651435218,0.32919904885764123,Off,-0.0,0,On,1205.34777793556,0,84.2539510707032,51.666666666666686,46.10666666666668,0.3698675852196744,51.66380233510124,1073.2478907479401,0.0,1205.34777793556,131.64679854797373,51.66380233510124,51.663802335101245,51.66380233510124,10.042356980382465,On,12721.537386412392,0.0,20.000000000000057,21.20256231068732,0.0,0.0,0.6,1,0.5200455413385004,12721.537386412392,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.3111694864806,20.121704770350426,-5.043803627779618,-5.135530022287457,-6.1,6.529479366362011,0,4.0,5113.71117862185,-1836.3095161611554,-156.0064677521912,0.0 +2018-01-01 22:10:00,0.8005933265073657,0.38523222069846036,0.844925637514212,0.13343222108456093,0.06420537011641006,0.140820939585702,0.010000000000000002,0.0,0.0,0.5097540720423918,0.2808392544649739,0.11147280858042613,0.7334528289337859,0.0,1,0.0029166666666666685,0,0,0.3823155540317937,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.1791566101081902,0,On,0.08607650498262355,0.0,On,0.4389320651435218,0.32919904885764123,Off,-0.0,0,On,2528.7992043721874,0,84.27947074173514,51.666666666666686,46.10666666666668,0.8270103582498968,51.66425413885264,2399.768979248656,0.0,2528.7992043721874,131.68667303396114,51.66425413885265,51.664254138852655,51.66425413885264,10.042356980382465,On,12897.23013139274,0.0,20.000000000000057,21.495383552321236,0.0,0.0,0.5999999999999999,1,0.52722771012025,12897.23013139274,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.1223226121192,20.107706803092437,-5.036565187913886,-5.196349912162519,-6.1,6.529479366362011,0,4.0,5255.953108621999,-1811.443362659989,-151.8700055301931,0.0 +2018-01-01 22:20:00,0.8005933265073657,0.38523222069846036,0.8147189283584039,0.13343222108456093,0.06420537011641006,0.13578648805973398,0.010000000000000002,0.0,0.0,0.5097540720423918,0.2808392544649739,0.07691207608627695,0.737806852272127,0.0,1,0.0029166666666666685,0,0,0.3823155540317937,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.1791566101081902,0,On,0.08607650498262355,0.0,On,0.4389320651435218,0.32919904885764123,Off,-0.0,0,On,1744.7770383686407,0,84.28323423878115,51.666666666666686,46.10666666666668,0.555395518399505,51.66160522421137,1611.5107859776288,0.0,1744.7770383686407,131.69255349809555,51.66160522421138,51.661605224211385,51.66160522421137,10.042356980382465,On,12973.79243884702,0.0,20.000000000000057,21.62298739807837,0.0,0.0,0.6,1,0.5303575116070351,12973.79243884702,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1408.6700699291553,20.107706803092437,-5.021456478925371,-5.2504985132491555,-6.1,6.529479366362011,0,4.0,5312.9611654141145,-1822.169036742369,-148.18818948537603,0.0 +2018-01-01 22:30:00,0.5970863029412694,0.3228206520231799,0.8051201418664792,0.0995143838235449,0.05380344200386331,0.13418669031107985,0.010000000000000002,0.0,0.0,0.4265386471420178,0.16054765579925162,0.04121531963644499,0.7639048222300342,0.0,1,0.0029166666666666685,0,0,0.3199039853565132,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.0979034263416504,0,On,0.04703809008344111,0.0,On,0.3557166402431478,0.26678748018236076,Off,-0.0,0,On,934.9837761501302,0,84.29303537285611,51.666666666666686,46.10666666666668,0.27627261442461226,51.66317446034133,801.6504814272066,0.0,934.9837761501302,131.70786777008766,51.66317446034134,51.663174460341345,51.66317446034133,10.042356980382465,On,13432.706102045518,0.0,20.000000000000057,22.387843503409197,0.0,0.0,0.6,1,0.5491175087014587,13432.706102045518,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1408.4929363423946,20.107706803092437,-5.014825955149812,-5.298981460885021,-6.1,6.529479366362011,0,3.0,5168.425164089406,-1739.7556887120322,-167.25774514291703,0.0 +2018-01-01 22:40:00,0.5970863029412694,0.3228206520231799,0.8681447586227969,0.0995143838235449,0.05380344200386331,0.14469079310379948,0.010000000000000002,0.0,0.0,0.4265386471420178,0.16054765579925162,0.08945012546850384,0.7786946331542931,0.0,1,0.0029166666666666685,0,0,0.3199039853565132,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.0979034263416504,0,On,0.04703809008344111,0.0,On,0.3557166402431478,0.26678748018236076,Off,-0.0,0,On,2029.2070236352174,0,84.35978423503578,51.666666666666686,46.10666666666668,0.6546301694498313,51.66479527783856,1899.5911990704371,0.0,2029.2070236352174,131.8121628672434,51.66479527783856,51.664795277838564,51.66479527783856,10.042356980382465,On,13692.774081287265,0.0,20.000000000000057,22.821290135478776,0.0,0.0,0.6,1,0.559748864719328,13692.774081287265,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1408.323227312985,20.079686557599686,-4.9754148264390965,-5.373498860261032,-6.1,6.529479366362011,0,3.0,5384.955097480041,-1762.385089852216,-160.31999096755314,0.0 +2018-01-01 22:50:00,0.5970863029412694,0.3228206520231799,0.7884910475719339,0.0995143838235449,0.05380344200386331,0.13141517459532231,0.010000000000000002,0.0,0.0,0.4265386471420178,0.16054765579925162,0.005979022594487213,0.7825120249774467,0.0,1,0.0029166666666666685,0,0,0.3199039853565132,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.0979034263416504,0,On,0.04703809008344111,0.0,On,0.3557166402431478,0.26678748018236076,Off,-0.0,0,On,135.6361948030932,0,84.3746535976717,51.666666666666686,46.10666666666668,0.0,51.66260516800665,0.0,0.0,135.6361948030932,131.83539624636202,51.66260516800666,51.662605168006664,51.66260516800665,10.042356980382465,On,13759.900117076751,0.0,20.000000000000057,22.933166861794586,0.0,0.0,0.6,1,0.562492919510798,13759.900117076751,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1408.137717126799,20.079686557599686,-4.9529690970164495,-5.433559161869613,-6.1,6.529479366362011,0,3.0,5434.8387415088955,-1790.4228833355724,-154.85114177121307,0.0 +2018-01-01 23:00:00,0.4942879867996266,0.30293690282222835,0.7918278702620153,0.08238133113327109,0.05048948380370472,0.13197131171033588,0.010000000000000002,0.0,0.0,0.400026981540749,0.08426100525887753,0.005812174324684953,0.7860156959373303,0.0,1,0.0029166666666666685,0,0,0.30002023615556167,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.04961772287382962,0,On,0.023839032049090905,0.0,On,0.33403374783952927,0.25052531087964686,Off,-0.0,0,On,131.85118411483714,0,84.37989554881767,51.666666666666686,46.10666666666668,0.0,51.66639518809548,0.0,0.0,131.85118411483714,131.84358679502762,51.66639518809548,51.666395188095485,51.66639518809548,10.042356980382465,On,13821.509601547601,0.0,20.000000000000057,23.03584933591267,0.0,0.0,0.6,1,0.5650114624140677,13821.509601547601,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1407.6052721754318,20.079686557599686,-4.947093499449318,-5.484128486267473,-6.1,6.529479366362011,0,3.0,5379.546932813562,-1786.657414775958,-150.24953878295415,0.0 +2018-01-01 23:10:00,0.4942879867996266,0.30293690282222835,0.8007233326455222,0.08238133113327109,0.05048948380370472,0.13345388877425368,0.010000000000000002,0.0,0.0,0.400026981540749,0.08426100525887753,0.005814476949490359,0.7949088556960319,0.0,1,0.0029166666666666685,0,0,0.30002023615556167,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.04961772287382962,0,On,0.023839032049090905,0.0,On,0.33403374783952927,0.25052531087964686,Off,-0.0,0,On,131.90341995468034,0,84.41825587398287,51.666666666666686,46.10666666666668,0.0,51.66640276387048,0.0,0.0,131.90341995468034,131.90352480309824,51.66640276387049,51.666402763870494,51.66640276387048,10.042356980382465,On,13977.889294253877,0.0,20.000000000000057,23.296482157089798,0.0,0.0,0.5999999999999999,1,0.5714041301772145,13977.889294253877,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1407.1271297832477,20.06533064424778,-4.941771489677112,-5.5275328840512765,-6.1,6.529479366362011,0,3.0,5507.758647905886,-1762.647620033389,-146.2442994187781,0.0 +2018-01-01 23:20:00,0.5494111587478652,0.32579184346388035,0.7992049380325574,0.09156852645797753,0.05429864057731339,0.13320082300542624,0.010000000000000002,0.0,0.0,0.4305002357296183,0.10891092301824684,0.005814481552148635,0.7933904564804088,0.0,1,0.0029166666666666685,0,0,0.32287517679721367,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.06626796544894024,0,On,0.031838707233349604,0.0,On,0.3645070020283986,0.27338025152129886,Off,-0.0,0,On,131.9035243675747,0,84.41825572938,51.666666666666686,46.10666666666668,0.0,51.6664026593194,0.0,0.0,131.9035243675747,131.90352457715625,51.666402659319395,51.6664026593194,51.6664026593194,10.042356980382465,On,13951.189357539906,0.0,20.000000000000057,23.25198226256651,0.0,0.0,0.6,1,0.5703126596559746,13951.189357539906,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1406.3912942260197,20.06533064424778,-4.928348175334378,-5.565163375740781,-6.1,6.529479366362011,0,4.0,5602.304201300372,-1791.2876546684583,-142.7791382302832,0.0 +2018-01-01 23:30:00,0.4394113140289816,0.2800819621805764,0.8880036056551327,0.07323521900483027,0.046680327030096065,0.1480006009425221,0.010000000000000002,0.0,0.0,0.3695537273518797,0.05985758667710192,0.005813102334193766,0.882190503320939,0.0,1,0.0029166666666666685,0,0,0.2771652955139097,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.03313398272447012,0,On,0.015919353616674802,0.0,On,0.30356049365065996,0.2276703702379949,Off,-0.0,0,On,131.87223633140385,0,84.39819105898967,51.666666666666686,46.10666666666668,0.0,51.66640265911041,0.0,0.0,131.87223633140385,131.87217352967136,51.66640265911041,51.66640265911042,51.66640265911041,10.042356980382465,On,15512.673061196278,0.0,20.000000000000057,25.854455101993796,0.0,0.0,0.6,1,0.634144774697868,15512.673061196278,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1414.3481613536371,20.07284166936813,-4.930595654889263,-5.598106179593272,-5.0,6.529479366362011,0,4.0,5478.688526590386,1093.1594729800634,2.9015471227350815,0.0 +2018-01-01 23:40:00,0.4394113140289816,0.2800819621805764,0.8964021896684169,0.07323521900483027,0.046680327030096065,0.14940036494473613,0.010000000000000002,0.0,0.0,0.3695537273518797,0.05985758667710192,0.005815851615728888,0.890586338052688,0.0,1,0.0029166666666666685,0,0,0.2771652955139097,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.03313398272447012,0,On,0.015919353616674802,0.0,On,0.30356049365065996,0.2276703702379949,Off,-0.0,0,On,131.93460473359224,0,84.43822714893895,51.666666666666686,46.10666666666668,0.0,51.66640272173405,0.0,0.0,131.93460473359224,131.9347299202171,51.666402721734045,51.66640272173405,51.66640272173405,10.042356980382465,On,15660.307658008616,0.0,20.000000000000057,26.100512763347695,0.0,0.0,0.6,1,0.6401799504386214,15660.307658008616,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1414.0892820241622,20.057854558926866,-3.6966380274883366,-5.426258591840214,-5.0,6.529479366362011,0,4.0,5601.580704652081,-1328.3188566344047,-26.395262644701234,0.0 +2018-01-01 23:50:00,0.4394113140289816,0.2800819621805764,0.8988659612995983,0.07323521900483027,0.046680327030096065,0.14981099354993305,0.010000000000000002,0.0,0.0,0.3695537273518797,0.05985758667710192,0.0058158571111981295,0.8930501041884001,0.0,1,0.0029166666666666685,0,0,0.2771652955139097,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.03313398272447012,0,On,0.015919353616674802,0.0,On,0.30356049365065996,0.2276703702379949,Off,-0.0,0,On,131.93472940021203,0,84.43822697628197,51.666666666666686,46.10666666666668,0.0,51.66640259690244,0.0,0.0,131.93472940021203,131.93472965044057,51.66640259690244,51.66640259690244,51.66640259690244,10.042356980382465,On,15703.63117874328,0.0,20.000000000000057,26.1727186312388,0.0,0.0,0.6,1,0.6419509788221258,15703.63117874328,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1411.6537993717116,20.057854558926866,-3.6783514262774504,-5.312581868296397,-5.0,6.529479366362011,0,4.0,5633.794459288412,-1381.2572881413098,-43.90328789206234,0.0 +2018-01-02 00:00:00,0.41647602138479306,0.27667717843485107,0.9009985075586721,0.06941267023079883,0.046112863072475176,0.15016641792644533,0.010000000000000002,0.0,0.0,0.3650140156909127,0.04146200569388039,0.0058158571221827784,0.8951826504364893,0.0,1,0.0029166666666666685,0,0,0.2737605117681844,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.022677630387300654,0,On,0.010895557600960339,0.0,On,0.3006303730555763,0.22547277979168218,Off,-0.0,0,On,131.9347296494026,0,84.43822697593842,51.666666666666686,46.10666666666668,0.0,51.666402596652915,0.0,0.0,131.9347296494026,131.93472964990377,51.666402596652915,51.666402596652915,51.666402596652915,10.042356980382465,On,15741.13044064868,0.0,20.000000000000057,26.235217401081133,0.0,0.0,0.6,1,0.6434839164982132,15741.13044064868,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1411.098307137637,20.057854558926866,-3.6755741636516364,-5.223881487200418,-5.0,6.529479366362011,0,4.0,5639.002491901606,-1389.284365087693,-57.419815465157086,0.0 +2018-01-02 00:10:00,0.469945207909033,0.27667717843485107,0.9575597907972438,0.07832420131817217,0.046112863072475176,0.1595932984662073,0.010000000000000002,0.0,0.0,0.4184832022151526,0.04146200569388039,0.005816448744420054,0.8982741555285838,0.053469186524239945,1,0.0029166666666666685,0,0,0.2737605117681844,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,On,0.053469186524239945,0,0.053469186524239945,On,0.007888817705619396,0.0,On,0.022677630387300654,0,On,0.010895557600960339,0.0,On,0.3006303730555763,0.22547277979168218,Off,-0.0,0,On,131.9481508044086,0,84.44683375584722,51.666666666666686,46.10666666666668,0.0,51.66640259665241,0.0,0.0,131.9481508044086,131.94817774351128,51.66640259665241,51.66640259665242,51.66640259665241,10.042356980382465,On,15795.492290589427,0.0,20.000000000000057,26.325820484315713,0.0,0.0,0.6,1,0.6457061823157704,15795.492290589427,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1410.5704263113007,20.054632689852063,-3.672864961238676,-5.153285592943549,-5.0,6.529479366362011,0,4.0,6716.301746429863,-1387.3419236365644,-68.3389121959296,0.0 +2018-01-02 00:20:00,0.483312504540093,0.27667717843485107,0.9151879514026287,0.08055208409001549,0.046112863072475176,0.15253132523377144,0.010000000000000002,0.0,0.0,0.4318504988462126,0.04146200569388039,0.005789533694140603,0.8425619345531881,0.06683648315529993,1,0.0029166666666666685,0,0,0.2737605117681844,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,On,0.06683648315529993,0,0.06683648315529993,On,0.007888817705619396,0.0,On,0.022677630387300654,0,On,0.010895557600960339,0.0,On,0.3006303730555763,0.22547277979168218,Off,-0.0,0,On,131.3375735829402,0,84.05526273591465,51.666666666666686,46.10666666666668,0.0,51.6664025697897,0.0,0.0,131.3375735829402,131.33634802486665,51.6664025697897,51.66640256978971,51.6664025697897,10.042356980382465,On,14815.833740365808,0.0,20.000000000000057,24.693056233943015,0.0,0.0,0.6,1,0.6056585807089013,14815.833740365808,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.9995600517602,20.20121369384089,-3.668346386471635,-5.097941900718483,-5.0,6.529479366362011,0,4.0,6122.944229423676,-1593.1658691937332,-77.026181991259,0.0 +2018-01-02 00:30:00,0.483312504540093,0.27667717843485107,0.9008174993673589,0.08055208409001549,0.046112863072475176,0.15013624989455981,0.010000000000000002,0.0,0.0,0.4318504988462126,0.04146200569388039,0.005782750836115235,0.8281982653759438,0.06683648315529993,1,0.0029166666666666685,0,0,0.2737605117681844,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,On,0.06683648315529993,0,0.06683648315529993,On,0.007888817705619396,0.0,On,0.022677630387300654,0,On,0.010895557600960339,0.0,On,0.3006303730555763,0.22547277979168218,Off,-0.0,0,On,131.18370210346148,0,83.95737168047785,51.666666666666686,46.10666666666668,0.0,51.666403791872284,0.0,0.0,131.18370210346148,131.18339325074663,51.66640379187229,51.6664037918723,51.666403791872284,9.980991816508038,On,14563.259151241364,0.0,20.000000000000057,24.272098585402272,0.0,0.0,0.6,1,0.5953335480544469,14563.259151241364,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1412.51971820257,20.2378589448381,-3.752416646443547,-5.055295862633647,-5.0,6.529479366362011,0,4.0,5904.965235213182,-1476.3916597661591,-83.72452817544173,0.0 +2018-01-02 00:40:00,0.483312504540093,0.27667717843485107,0.9006946485890138,0.08055208409001549,0.046112863072475176,0.15011577476483562,0.010000000000000002,0.0,0.0,0.4318504988462126,0.04146200569388039,0.005782737278032408,0.8280754281556815,0.06683648315529993,1,0.0029166666666666685,0,0,0.2737605117681844,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,On,0.06683648315529993,0,0.06683648315529993,On,0.007888817705619396,0.0,On,0.022677630387300654,0,On,0.010895557600960339,0.0,On,0.3006303730555763,0.22547277979168218,Off,-0.0,0,On,131.18339453366485,0,83.95737210643496,51.666666666666686,46.10666666666668,0.0,51.666404099849146,0.0,0.0,131.18339453366485,131.18339391630462,51.666404099849146,51.66640409984915,51.666404099849146,9.980991816508038,On,14561.099148803678,0.0,20.000000000000057,24.268498581339465,0.0,0.0,0.6,1,0.5952452490067077,14561.099148803678,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1413.1643554464702,20.2378589448381,-3.774514979779523,-5.022777613729067,-5.0,6.529479366362011,0,4.0,5903.1844350290985,-1430.0592422454765,-88.90610803200187,0.0 +2018-01-02 00:50:00,0.469945207909033,0.27667717843485107,0.8873113272872101,0.07832420131817217,0.046112863072475176,0.147885221214535,0.010000000000000002,0.0,0.0,0.4184832022151526,0.04146200569388039,0.005782737250931642,0.8280594035120384,0.053469186524239945,1,0.0029166666666666685,0,0,0.2737605117681844,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,On,0.053469186524239945,0,0.053469186524239945,On,0.007888817705619396,0.0,On,0.022677630387300654,0,On,0.010895557600960339,0.0,On,0.3006303730555763,0.22547277979168218,Off,-0.0,0,On,131.1833939188746,0,83.95737210728775,51.666666666666686,46.10666666666668,0.0,51.66640410046475,0.0,0.0,131.1833939188746,131.18339391763712,51.66640410046475,51.66640410046476,51.66640410046475,9.980991816508038,On,14560.817367196621,0.0,20.000000000000057,24.268028945327703,0.0,0.0,0.6,1,0.5952337300162014,14560.817367196621,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1413.1417831484464,20.2378589448381,-3.774694607804274,-4.998289879874585,-5.0,6.529479366362011,0,4.0,5644.702681644289,-1427.2906267997705,-92.77038006586993,0.0 +2018-01-02 01:00:00,0.4034790336434356,0.27151432233207573,0.9155387428834345,0.06724650560723927,0.045252387055345955,0.15258979048057242,0.010000000000000002,0.0,0.0,0.3581302075538788,0.035348826089556806,0.07307247125195536,0.8424662716314791,0.0,1,0.0029166666666666685,0,0,0.26859765566540905,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.018548370228673224,0,On,0.008911638155264185,0.0,On,0.2953561559844259,0.22151711698831936,Off,-0.0,0,On,1657.6742751586269,0,84.04085418085567,51.666666666666686,46.10666666666668,0.5262684178417096,51.66640410046598,1529.4244316916229,0.0,1657.6742751586269,131.313834657587,51.66640410046599,51.666404100465996,51.66640410046598,9.980991816508038,On,14814.151578040366,0.0,20.000000000000057,24.690252630067278,0.0,0.0,0.6,1,0.6055898153552667,14814.151578040366,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1413.0861823019966,20.20121369384089,-3.774666577646817,-4.979901448439587,-5.0,6.529479366362011,0,4.0,4816.881683421304,-1374.6292925656958,-95.696408251859,0.0 +2018-01-02 01:10:00,0.4034790336434356,0.27151432233207573,0.9398439811503654,0.06724650560723927,0.045252387055345955,0.1566406635250609,0.010000000000000002,0.0,0.0,0.3581302075538788,0.035348826089556806,0.038951926908942586,0.9008920542414228,0.0,1,0.0029166666666666685,0,0,0.26859765566540905,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.018548370228673224,0,On,0.008911638155264185,0.0,On,0.2953561559844259,0.22151711698831936,Off,-0.0,0,On,883.6379295586693,0,84.44032348763845,51.666666666666686,46.10666666666668,0.2581410490127197,51.66334879827332,750.1462688773199,0.0,883.6379295586693,131.93800544943508,51.66334879827332,51.66334879827332,51.66334879827332,9.980991816508038,On,15841.52611966231,0.0,20.000000000000057,26.40254353277052,0.0,0.0,0.6,1,0.647588005780414,15841.52611966231,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1412.293107907662,20.052842775000265,-3.7528804842644097,-4.966219760169966,-5.0,6.529479366362011,0,4.0,5705.792357923698,-1210.6730775058277,-97.85609168000653,0.0 +2018-01-02 01:20:00,0.4034790336434356,0.27151432233207573,0.9636983468791309,0.06724650560723927,0.045252387055345955,0.16061639114652182,0.010000000000000002,0.0,0.0,0.3581302075538788,0.035348826089556806,0.06106219621820687,0.9026361506609241,0.0,1,0.0029166666666666685,0,0,0.26859765566540905,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.018548370228673224,0,On,0.008911638155264185,0.0,On,0.2953561559844259,0.22151711698831936,Off,-0.0,0,On,1385.217033465271,0,84.43771605936068,51.666666666666686,46.10666666666668,0.4316113861040829,51.66489804758295,1254.289877842336,0.0,1385.217033465271,131.93393134275107,51.664898047582945,51.66489804758295,51.66489804758295,9.980991816508038,On,15872.1947761952,0.0,20.000000000000057,26.453657960325334,0.0,0.0,0.6,1,0.6488417141652044,15872.1947761952,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.127423036533,20.052842775000265,-3.664645504445261,-4.956092181747526,-5.0,6.529479366362011,0,4.0,5728.130793189948,-1378.4629308952171,-99.45801182507198,0.0 +2018-01-02 01:30:00,0.4034790336434356,0.27151432233207573,0.874729304579985,0.06724650560723927,0.045252387055345955,0.14578821742999748,0.010000000000000002,0.0,0.0,0.3581302075538788,0.035348826089556806,0.005927207926721978,0.868802096653263,0.0,1,0.0029166666666666685,0,0,0.26859765566540905,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.018548370228673224,0,On,0.008911638155264185,0.0,On,0.2953561559844259,0.22151711698831936,Off,-0.0,0,On,134.46076114991666,0,84.44814581956754,51.666666666666686,46.10666666666668,0.0,51.66389412692099,0.0,0.0,134.46076114991666,131.9502278430743,51.66389412692099,51.663894126920994,51.66389412692099,9.980991816508038,On,15277.247748110085,0.0,20.000000000000057,25.462079580183477,0.0,0.0,0.6,1,0.6245207897446451,15277.247748110085,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1404.09303380092,20.052842775000265,-3.661535600476058,-4.948679521244679,-5.6,6.529479366362011,0,4.0,5751.197169023703,-2902.793707243316,-183.25755156927914,0.0 +2018-01-02 01:40:00,0.4034790336434356,0.27151432233207573,0.8756973187256992,0.06724650560723927,0.045252387055345955,0.14594955312094987,0.010000000000000002,0.0,0.0,0.3581302075538788,0.035348826089556806,0.005816999997447218,0.869880318728252,0.0,1,0.0029166666666666685,0,0,0.26859765566540905,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.018548370228673224,0,On,0.008911638155264185,0.0,On,0.2953561559844259,0.22151711698831936,Off,-0.0,0,On,131.96065616992556,0,84.45160827429979,51.666666666666686,46.10666666666668,0.0,51.66639754074958,0.0,0.0,131.96065616992556,131.9556379285934,51.66639754074957,51.66639754074958,51.66639754074958,9.980991816508038,On,15296.207492602578,0.0,20.000000000000057,25.49367915433763,0.0,0.0,0.6,1,0.6252958478440513,15296.207492602578,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1403.5744054296906,20.052842775000265,-4.312628701012712,-5.0596697102832575,-5.6,6.529479366362011,0,4.0,5765.496382617998,-1603.1654323668836,-167.34865552382274,0.0 +2018-01-02 01:50:00,0.4034790336434356,0.27151432233207573,0.9343539999617012,0.06724650560723927,0.045252387055345955,0.15572566666028353,0.010000000000000002,0.0,0.0,0.3581302075538788,0.035348826089556806,0.06348792679949639,0.8708660731622048,0.0,1,0.0029166666666666685,0,0,0.26859765566540905,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.018548370228673224,0,On,0.008911638155264185,0.0,On,0.2953561559844259,0.22151711698831936,Off,-0.0,0,On,1440.2455703982084,0,84.43926319062841,51.666666666666686,46.10666666666668,0.4510872321275391,51.66640254475996,1310.9352271642479,0.0,1440.2455703982084,131.9363487353569,51.66640254475996,51.66640254475997,51.66640254475996,9.980991816508038,On,15313.541261437053,0.0,20.000000000000057,25.522568769061756,0.0,0.0,0.6,1,0.6260044374526146,15313.541261437053,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1403.379686109293,20.052842775000265,-4.314014737322984,-5.13892370285412,-5.6,6.529479366362011,0,4.0,5778.323734636812,-1580.3799432948654,-156.94334498382165,0.0 +2018-01-02 02:00:00,0.39588273218030684,0.2681095385863505,0.9934250196724939,0.06598045536338447,0.04468492309772508,0.1655708366120823,0.010000000000000002,0.0,0.0,0.35359049589291186,0.03229223628739501,0.12163034558095141,0.8717946740915424,0.0,1,0.0029166666666666685,0,0,0.2651928719196838,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2924260353893423,0.21931952654200668,Off,-0.0,0,On,2759.226443197672,0,84.42321322837263,51.666666666666686,46.10666666666668,0.905015803852827,51.663783986197835,2629.9626470887692,0.0,2759.226443197672,131.91127066933223,51.663783986197835,51.66378398619784,51.663783986197835,9.980991816508038,On,15329.870027805442,0.0,20.000000000000057,25.549783379675738,0.0,0.0,0.6,1,0.6266719434220196,15329.870027805442,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1402.8159744038237,20.052842775000265,-4.31196321758137,-5.203383081434309,-5.6,6.529479366362011,0,4.0,5783.155789425552,-1572.7488895638585,-148.4811351699682,0.0 +2018-01-02 02:10:00,0.39588273218030684,0.2681095385863505,0.8907271416531904,0.06598045536338447,0.04468492309772508,0.14845452360886507,0.010000000000000002,0.0,0.0,0.35359049589291186,0.03229223628739501,0.017618297334400228,0.8731088443187902,0.0,1,0.0029166666666666685,0,0,0.2651928719196838,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2924260353893423,0.21931952654200668,Off,-0.0,0,On,399.67716655743385,0,84.44466281273584,51.666666666666686,46.10666666666668,0.09050731263791016,51.661144019459556,262.9962647088769,0.0,399.67716655743385,131.94478564489975,51.661144019459556,51.661144019459556,51.661144019459556,9.980991816508038,On,15352.97874752676,0.0,20.000000000000057,25.5882979125446,0.0,0.0,0.6,1,0.6276166080715885,15352.97874752676,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1402.2787256164374,20.051795117136624,-4.310279110185153,-5.256582215548831,-5.6,6.529479366362011,0,4.0,5801.38238750042,-1566.3004385562422,-141.3570280447587,0.0 +2018-01-02 02:20:00,0.39588273218030684,0.2681095385863505,0.8798473167322068,0.06598045536338447,0.04468492309772508,0.1466412194553678,0.010000000000000002,0.0,0.0,0.35359049589291186,0.03229223628739501,0.005840561397742073,0.8740067553344648,0.0,1,0.0029166666666666685,0,0,0.2651928719196838,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2924260353893423,0.21931952654200668,Off,-0.0,0,On,132.49515468196884,0,84.45367275248542,51.666666666666686,46.10666666666668,0.0,51.66586670478132,0.0,0.0,132.49515468196884,131.95886367575847,51.66586670478132,51.66586670478132,51.66586670478132,9.980991816508038,On,15368.76785426932,0.0,20.000000000000057,25.614613090448866,0.0,0.0,0.6,1,0.6282620532181755,15368.76785426932,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1401.7090129486069,20.051795117136624,-4.308185052524692,-5.30006913120061,-5.6,6.529479366362011,0,4.0,5813.3445817023785,-1563.5230099344312,-135.42626522540746,0.0 +2018-01-02 02:30:00,0.39588273218030684,0.2681095385863505,0.8627923139640954,0.06598045536338447,0.04468492309772508,0.1437987189940159,0.010000000000000002,0.0,0.0,0.35359049589291186,0.03229223628739501,0.00581701918018935,0.856975294783906,0.0,1,0.0029166666666666685,0,0,0.2651928719196838,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2924260353893423,0.21931952654200668,Off,-0.0,0,On,131.96109133706324,0,84.45441238949087,51.666666666666686,46.10666666666668,0.0,51.66640147495045,0.0,0.0,131.96109133706324,131.96001935857947,51.66640147495044,51.66640147495045,51.66640147495045,9.980991816508038,On,15069.282110225482,0.0,20.000000000000057,25.115470183709135,0.0,0.0,0.6,1,0.6160193327706618,15069.282110225482,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1405.6686698395654,20.051795117136624,-4.306779696787476,-5.335285489979686,-5.0,6.529479366362011,0,4.0,5818.750603870986,-224.2336860509772,-46.86685461170459,0.0 +2018-01-02 02:40:00,0.39588273218030684,0.2681095385863505,0.8635932047781026,0.06598045536338447,0.04468492309772508,0.14393220079635044,0.010000000000000002,0.0,0.0,0.35359049589291186,0.03229223628739501,0.005816972122248202,0.8577762326558545,0.0,1,0.0029166666666666685,0,0,0.2651928719196838,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2924260353893423,0.21931952654200668,Off,-0.0,0,On,131.960023811398,0,84.45441386793347,51.666666666666686,46.10666666666668,0.0,51.666402543888964,0.0,0.0,131.960023811398,131.96002166864605,51.666402543888964,51.66640254388897,51.666402543888964,9.980991816508038,On,15083.366015349256,0.0,20.000000000000057,25.138943358915427,0.0,0.0,0.6,1,0.6165950707370554,15083.366015349256,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1405.1356351278325,20.051795117136624,-3.732408612506641,-5.2463939747368995,-5.0,6.529479366362011,0,4.0,5829.551035902783,-1361.1525300567437,-59.525600486984324,0.0 +2018-01-02 02:50:00,0.39588273218030684,0.2681095385863505,0.8643306067450549,0.06598045536338447,0.04468492309772508,0.1440551011241758,0.010000000000000002,0.0,0.0,0.35359049589291186,0.03229223628739501,0.005816972028185184,0.8585136347168697,0.0,1,0.0029166666666666685,0,0,0.2651928719196838,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2924260353893423,0.21931952654200668,Off,-0.0,0,On,131.96002167754597,0,84.45441387088862,51.666666666666686,46.10666666666668,0.0,51.666402546025644,0.0,0.0,131.96002167754597,131.96002167326347,51.66640254602564,51.666402546025644,51.666402546025644,9.980991816508038,On,15096.332689830697,0.0,20.000000000000057,25.16055448305116,0.0,0.0,0.6,1,0.6171251372726664,15096.332689830697,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1404.17797361864,20.051795117136624,-3.7285684606162586,-5.187114138306995,-5.0,6.529479366362011,0,4.0,5839.444394648541,-1377.0437902515687,-67.09455234795854,0.0 +2018-01-02 03:00:00,0.3913430205193398,0.26470475484062517,0.8649780822294943,0.0652238367532233,0.04411745914010419,0.14416301370491572,0.010000000000000002,0.0,0.0,0.3490507842319448,0.03229223628739501,0.005816972027997141,0.8591611102014972,0.0,1,0.0029166666666666685,0,0,0.2617880881739585,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2894959147942587,0.21712193609569394,Off,-0.0,0,On,131.96002167328012,0,84.45441387089168,51.666666666666686,46.10666666666668,0.0,51.66640254602991,0.0,0.0,131.96002167328012,131.96002167326824,51.66640254602991,51.666402546029914,51.66640254602991,9.980991816508038,On,15107.718071412515,0.0,20.000000000000057,25.17953011902086,0.0,0.0,0.6,1,0.617590561910288,15107.718071412515,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1403.6058883803971,20.051795117136624,-3.7279396687824367,-5.1407411834121595,-5.0,6.529479366362011,0,4.0,5843.703863922876,-1379.5167057380627,-72.91037174580414,0.0 +2018-01-02 03:10:00,0.3913430205193398,0.26470475484062517,0.9000130991122433,0.0652238367532233,0.04411745914010419,0.15000218318537387,0.010000000000000002,0.0,0.0,0.3490507842319448,0.03229223628739501,0.04006377837041871,0.8599493207418245,0.0,1,0.0029166666666666685,0,0,0.2617880881739585,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2894959147942587,0.21712193609569394,Off,-0.0,0,On,908.8606643849143,0,84.44872021170697,51.666666666666686,46.10666666666668,0.2678678501811558,51.666402546029914,778.4689435382755,0.0,908.8606643849143,131.95112533079214,51.66640254602992,51.66640254602993,51.666402546029914,9.980991816508038,On,15121.578175743107,0.0,20.000000000000057,25.20263029290518,0.0,0.0,0.6,1,0.6181571510921356,15121.578175743107,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1403.0601109283075,20.051180712786028,-3.727136017811654,-5.103395936671465,-5.0,6.529479366362011,0,4.0,5854.59487765007,-1379.106597262512,-77.6324044124292,0.0 +2018-01-02 03:20:00,0.3913430205193398,0.26470475484062517,0.9005379650663162,0.0652238367532233,0.04411745914010419,0.15008966084438602,0.010000000000000002,0.0,0.0,0.3490507842319448,0.03229223628739501,0.04013223344274627,0.8604057316235699,0.0,1,0.0029166666666666685,0,0,0.2617880881739585,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2894959147942587,0.21712193609569394,Off,-0.0,0,On,910.4135913690075,0,84.44656952626443,51.666666666666686,46.10666666666668,0.26787784277294036,51.66484756377203,778.4689435382757,0.0,910.4135913690075,131.94776488478817,51.66484756377202,51.66484756377203,51.66484756377203,9.980991816508038,On,15129.603826397288,0.0,20.000000000000057,25.216006377328814,0.0,0.0,0.6,1,0.6184852328099558,15129.603826397288,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1402.4906570716983,20.05118071278603,-3.7260177138898007,-5.073494730936809,-5.0,6.529479366362011,0,4.0,5860.668633139063,-1379.2553827062202,-81.52797690157072,0.0 +2018-01-02 03:30:00,0.3913430205193398,0.26470475484062517,0.9018546637595182,0.0652238367532233,0.04411745914010419,0.15030911062658636,0.010000000000000002,0.0,0.0,0.3490507842319448,0.03229223628739501,0.005885676754671199,0.895968987004847,0.0,1,0.0029166666666666685,0,0,0.2617880881739585,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2894959147942587,0.21712193609569394,Off,-0.0,0,On,133.51861215254138,0,84.45390018318487,51.666666666666686,46.10666666666668,0.0,51.66484445555744,0.0,0.0,133.51861215254138,131.95921903622636,51.66484445555744,51.66484445555745,51.66484445555744,9.980991816508038,On,15754.957592556431,0.0,20.000000000000057,26.25826265426072,0.0,0.0,0.6,1,0.6440491586132675,15754.957592556431,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1388.6808372545402,20.05118071278603,-3.725335781094185,-5.04991352466934,-6.7,6.529479366362011,0,4.0,5883.544254311703,-5217.659722471926,-311.07029303790074,0.0 +2018-01-02 03:40:00,0.3913430205193398,0.26470475484062517,0.9022622362678103,0.0652238367532233,0.04411745914010419,0.15037703937796837,0.010000000000000002,0.0,0.0,0.3490507842319448,0.03229223628739501,0.005817222181371362,0.896445014086439,0.0,1,0.0029166666666666685,0,0,0.2617880881739585,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2894959147942587,0.21712193609569394,Off,-0.0,0,On,131.96569648906487,0,84.45605085294399,51.666666666666686,46.10666666666668,0.0,51.666399426479735,0.0,0.0,131.96569648906487,131.96257945772498,51.666399426479735,51.66639942647974,51.666399426479735,9.980991816508038,On,15763.3281796997,0.0,20.000000000000057,26.272213632832834,0.0,0.0,0.6,1,0.6443913410390245,15763.3281796997,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1388.177774520267,20.051180712786028,-5.371688532017357,-5.34978789639329,-6.7,6.529479366362011,0,4.0,5889.410953744309,-1939.656019454861,-269.81051408244366,0.0 +2018-01-02 03:50:00,0.3913430205193398,0.26470475484062517,1.0850297724495712,0.0652238367532233,0.04411745914010419,0.18083829540826185,0.010000000000000002,0.0,0.0,0.3490507842319448,0.03229223628739501,0.18808638974474362,0.8969433827048277,0.0,1,0.0029166666666666685,0,0,0.2617880881739585,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2894959147942587,0.21712193609569394,Off,-0.0,0,On,4266.804782231554,0,84.41701671731425,51.666666666666686,46.10666666666668,1.425658412995024,51.66640253467167,4143.202693259846,0.0,4266.804782231554,131.90158862080352,51.66640253467167,51.66640253467167,51.66640253467167,9.980991816508038,On,15772.091626383746,0.0,20.000000000000057,26.286819377306244,0.0,0.0,0.6,1,0.6447495832259841,15772.091626383746,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1387.6867462578296,20.051180712786028,-5.378438292885806,-5.563830645734908,-6.7,6.529479366362011,0,4.0,5896.183491646307,-1884.4433708025786,-243.0688477950105,0.0 +2018-01-02 04:00:00,0.39335374774580234,0.26569515198752536,1.005936787287886,0.06555895795763372,0.04428252533125422,0.16765613121464765,0.010000000000000002,0.0,0.0,0.350371313761145,0.03298243398465735,0.1083519075512933,0.8975848797365926,0.0,1,0.0029166666666666685,0,0,0.2627784853208587,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016949946941462603,0,On,0.00814366933757535,0.0,On,0.2924260353893423,0.21931952654200668,Off,-0.0,0,On,2458.0004854747317,0,84.422725850149,51.666666666666686,46.10666666666668,0.7993070577004129,51.65812657110039,2322.45932219839,0.0,2458.0004854747317,131.9105091408578,51.65812657110039,51.6581265711004,51.65812657110039,9.980991816508038,On,15783.371881256176,0.0,20.000000000000057,26.305619802093627,0.0,0.0,0.6,1,0.6452107103738581,15783.371881256176,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1387.1833391711189,20.051180712786028,-5.376315199787225,-5.737409095348816,-6.7,6.529479366362011,0,4.0,5906.749565600243,-1867.1603870462163,-221.5326733835622,0.0 +2018-01-02 04:10:00,0.39335374774580234,0.26569515198752536,0.9043268720863901,0.06555895795763372,0.04428252533125422,0.15072114534773168,0.010000000000000002,0.0,0.0,0.350371313761145,0.03298243398465735,0.00602199233373266,0.8983048797526574,0.0,1,0.0029166666666666685,0,0,0.2627784853208587,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016949946941462603,0,On,0.00814366933757535,0.0,On,0.2924260353893423,0.21931952654200668,Off,-0.0,0,On,136.6109781946641,0,84.44893231832414,51.666666666666686,46.10666666666668,0.0,51.661746929270834,0.0,0.0,136.6109781946641,131.95145674738146,51.66174692927083,51.661746929270834,51.661746929270834,9.980991816508038,On,15796.032553538664,0.0,20.000000000000057,26.32672092256444,0.0,0.0,0.6,1,0.6457282678019318,15796.032553538664,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1386.7390313088638,20.05143664856164,-5.374646852899463,-5.88044855444379,-6.7,6.529479366362011,0,4.0,5916.101548615782,-1857.1012200159462,-203.48558063658214,0.0 +2018-01-02 04:20:00,0.39335374774580234,0.26569515198752536,0.9050567749716565,0.06555895795763372,0.04428252533125422,0.1508427958286094,0.010000000000000002,0.0,0.0,0.350371313761145,0.03298243398465735,0.005817447662400272,0.8992393273092563,0.0,1,0.0029166666666666685,0,0,0.2627784853208587,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016949946941462603,0,On,0.00814366933757535,0.0,On,0.2924260353893423,0.21931952654200668,Off,-0.0,0,On,131.97081160416573,0,84.45535859517719,51.666666666666686,46.10666666666668,0.0,51.66639323704692,0.0,0.0,131.97081160416573,131.96149780496435,51.666393237046925,51.66639323704693,51.66639323704692,9.980991816508038,On,15812.464128559912,0.0,20.000000000000057,26.354106880933188,0.0,0.0,0.6,1,0.6463999765009211,15812.464128559912,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1386.2872283289014,20.051436648561644,-5.373277204315178,-5.997267745531649,-6.7,6.529479366362011,0,4.0,5928.769945864517,-1849.3366233343577,-188.50295449109151,0.0 +2018-01-02 04:30:00,0.3727387300019716,0.25075153695259905,0.8199926187431728,0.06212312166699527,0.041791922825433175,0.13666543645719545,0.010000000000000002,0.0,0.0,0.3304464937145766,0.03229223628739501,0.005817038803246264,0.8141755799399265,0.0,1,0.0029166666666666685,0,0,0.24783487028593237,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.96153649289403,0,84.45537144049588,51.666666666666686,46.10666666666668,0.0,51.66640252443366,0.0,0.0,131.96153649289403,131.9615178757748,51.66640252443365,51.66640252443366,51.66640252443366,9.980991816508038,On,14316.680511151653,0.0,20.000000000000057,23.861134185252755,0.0,0.0,0.6,1,0.5852536246558074,14316.680511151653,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1394.6832386340047,20.05143664856164,-5.371751757893188,-6.091783655618217,-5.6,6.529479366362011,0,3.0,5911.992601807785,418.39319822475636,-61.27179014018833,0.0 +2018-01-02 04:40:00,0.3727387300019716,0.25075153695259905,0.8904190423048256,0.06212312166699527,0.041791922825433175,0.14840317371747092,0.010000000000000002,0.0,0.0,0.3304464937145766,0.03229223628739501,0.07416852740057969,0.8162505149042459,0.0,1,0.0029166666666666685,0,0,0.24783487028593237,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,1682.5386878515994,0,84.44800980869535,51.666666666666686,46.10666666666668,0.5346219047663479,51.66640254299797,1553.7010099724423,0.0,1682.5386878515994,131.9500153260865,51.66640254299798,51.666402542997986,51.66640254299797,9.980991816508038,On,14353.166720880237,0.0,20.000000000000057,23.921944534800396,0.0,0.0,0.6,1,0.5867451496274636,14353.166720880237,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1394.2323197741425,20.048712287584777,-4.400001316028956,-6.004819289869984,-5.6,6.529479366362011,0,3.0,5941.964192276274,-1502.777250400583,-67.54799504893198,0.0 +2018-01-02 04:50:00,0.3727387300019716,0.25075153695259905,1.0051312815961138,0.06212312166699527,0.041791922825433175,0.16752188026601894,0.010000000000000002,0.0,0.0,0.3304464937145766,0.03229223628739501,0.18786747396903114,0.8172638076270826,0.0,1,0.0029166666666666685,0,0,0.24783487028593237,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,4261.838602169383,0,84.41939458850072,51.666666666666686,46.10666666666668,1.4229798655839698,51.66329903165135,4135.1105004995725,0.0,4261.838602169383,131.9053040445324,51.66329903165135,51.663299031651356,51.66329903165135,9.980991816508038,On,14370.98473032999,0.0,20.000000000000057,23.95164121721665,0.0,0.0,0.6,1,0.5874735345772079,14370.98473032999,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1395.7775546402813,20.048712287584777,-4.392429007128897,-5.935712917027096,-5.6,6.529479366362011,0,3.0,5955.478087218576,-1532.9278192163083,-71.02949773161853,0.0 +2018-01-02 05:00:00,0.40657236453167506,0.26789274243383804,0.8196614435862403,0.06776206075527917,0.04464879040563967,0.1366102405977067,0.010000000000000002,0.0,0.0,0.35330143435622857,0.04327093017544647,0.006181434248354259,0.813480009337886,0.0,1,0.0029166666666666685,0,0,0.26497607576717136,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.024942063377515696,0,On,0.011983513426019521,0.0,On,0.2953561559844259,0.22151711698831936,Off,-0.0,0,On,140.22797315489942,0,84.45121652873442,51.666666666666686,46.10666666666668,0.0,51.65813651100964,0.0,0.0,140.22797315489942,131.95502582614753,51.65813651100964,51.658136511009644,51.65813651100964,9.980991816508038,On,14304.449412199878,0.0,20.000000000000057,23.84074902033313,0.0,0.0,0.6,1,0.5847536278171915,14304.449412199878,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1395.3417626312505,20.048712287584777,-4.391686112467371,-5.870704887036704,-5.6,6.529479366362011,0,4.0,5999.606569279162,-1554.292101094692,-74.50808662845454,0.0 +2018-01-02 05:10:00,0.40657236453167506,0.26789274243383804,0.8182623012683123,0.06776206075527917,0.04464879040563967,0.13637705021138538,0.010000000000000002,0.0,0.0,0.35330143435622857,0.04327093017544647,0.005817427650641547,0.8124448736176708,0.0,1,0.0029166666666666685,0,0,0.26497607576717136,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.024942063377515696,0,On,0.011983513426019521,0.0,On,0.2953561559844259,0.22151711698831936,Off,-0.0,0,On,131.9703576305,0,84.45042101983911,51.666666666666686,46.10666666666668,0.0,51.66638599755878,0.0,0.0,131.9703576305,131.9537828434986,51.666385997558784,51.66638599755879,51.66638599755878,9.980991816508038,On,14286.247309659422,0.0,20.000000000000057,23.810412182765706,0.0,0.0,0.5999999999999999,1,0.5840095414712079,14286.247309659422,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1394.9595008815068,20.0532812363448,-4.397760237753454,-5.810905089849089,-5.6,6.529479366362011,0,4.0,5982.4554213342635,-1547.6062352659433,-78.06036210026055,0.0 +2018-01-02 05:20:00,0.40657236453167506,0.26789274243383804,0.8601507831070627,0.06776206075527917,0.04464879040563967,0.14335846385117712,0.010000000000000002,0.0,0.0,0.35330143435622857,0.04327093017544647,0.0471120893241905,0.8130386937828722,0.0,1,0.0029166666666666685,0,0,0.26497607576717136,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.024942063377515696,0,On,0.011983513426019521,0.0,On,0.2953561559844259,0.22151711698831936,Off,-0.0,0,On,1068.7540353248442,0,84.44159923397486,51.666666666666686,46.10666666666668,0.32300073426647413,51.66640252534229,938.6943601916839,0.0,1068.7540353248442,131.9399988030857,51.66640252534229,51.66640252534229,51.66640252534229,9.980991816508038,On,14296.689201796367,0.0,20.000000000000057,23.82781533632728,0.0,0.0,0.6,1,0.5844363970692392,14296.689201796367,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1394.741263131361,20.053281236344798,-4.399468657133924,-5.75816716944917,-5.6,6.529479366362011,0,4.0,5990.217563076251,-1541.7221135585219,-81.42942617264855,0.0 +2018-01-02 05:30:00,0.4412155397695138,0.2845944298258145,0.84607585740446,0.07353592329491895,0.04743240497096908,0.14101264290074333,0.010000000000000002,0.0,0.0,0.37557035087886387,0.05564518889064987,0.02658253701069274,0.8194933203937672,0.0,1,0.0029166666666666685,0,0,0.28167776315914783,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,Off,-0.0,0,On,603.0340430001306,0,84.44342064407047,51.666666666666686,46.10666666666668,0.1617860931091179,51.66452753397505,470.1563993718692,0.0,603.0340430001306,131.9428447563601,51.66452753397505,51.66452753397505,51.66452753397505,9.980991816508038,On,14410.18907735611,0.0,20.000000000000057,24.016981795593516,0.0,0.0,0.6,1,0.5890761746711478,14410.18907735611,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1390.5245821613794,20.0532812363448,-4.39861141697938,-5.713122268129043,-6.1,6.529479366362011,0,4.0,6034.9446211095665,-2685.1518719035353,-116.18867563824001,0.0 +2018-01-02 05:40:00,0.4412155397695138,0.2845944298258145,0.8239315664091356,0.07353592329491895,0.04743240497096908,0.1373219277348559,0.010000000000000002,0.0,0.0,0.37557035087886387,0.05564518889064987,0.005857345776442898,0.8180742206326926,0.0,1,0.0029166666666666685,0,0,0.28167776315914783,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,Off,-0.0,0,On,132.87591411599624,0,84.43661245570424,51.666666666666686,46.10666666666668,0.0,51.665459681904125,0.0,0.0,132.87591411599624,131.93220696203787,51.665459681904125,51.66545968190413,51.665459681904125,9.980991816508038,On,14385.235248730769,0.0,20.000000000000057,23.97539208121795,0.0,0.0,0.5999999999999999,1,0.5880560835515168,14385.235248730769,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1390.2329716819213,20.057970747290195,-4.888883679295207,-5.720608955782098,-6.1,6.529479366362011,0,4.0,6012.7570107491765,-1713.3338478916658,-115.72540543371352,0.0 +2018-01-02 05:50:00,0.4412155397695138,0.2845944298258145,0.8578876273294516,0.07353592329491895,0.04743240497096908,0.14298127122157525,0.010000000000000002,0.0,0.0,0.37557035087886387,0.05564518889064987,0.03945742118893264,0.8184302061405189,0.0,1,0.0029166666666666685,0,0,0.28167776315914783,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,Off,-0.0,0,On,895.1052420748983,0,84.43070865317947,51.666666666666686,46.10666666666668,0.2631342303047622,51.66640071285278,764.7122158458116,0.0,895.1052420748983,131.9229822705929,51.66640071285277,51.66640071285278,51.66640071285278,9.980991816508038,On,14391.494992829856,0.0,20.000000000000057,23.98582498804976,0.0,0.0,0.6,1,0.5883119765233935,14391.494992829856,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1388.034014968801,20.057970747290195,-4.893238928522292,-5.7279964097779485,-6.1,6.529479366362011,0,4.0,6017.374185521885,-1690.1435412373212,-115.66849204886688,0.0 +2018-01-02 06:00:00,0.6582959523714311,0.35337604790328286,0.8246574393738116,0.10971599206190519,0.05889600798388048,0.13744290656230193,0.010000000000000002,0.0,0.0,0.4672791749821551,0.18101677738927596,0.0058830810557799805,0.8187743583180317,0.0,1,0.0029166666666666685,0,0,0.3504593812366162,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.11821672228328535,0,On,0.056797693808236724,0.0,On,0.40611471447858555,0.30458603585893906,Off,-0.0,0,On,133.45972782573116,0,84.43580391823791,51.666666666666686,46.10666666666668,0.0,51.66487509552637,0.0,0.0,133.45972782573116,131.93094362224673,51.66487509552637,51.66487509552637,51.66487509552637,9.980991816508038,On,14397.546656493156,0.0,20.000000000000057,23.99591109415526,0.0,0.0,0.6,1,0.5885593633454564,14397.546656493156,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1387.7592216942962,20.057970747290195,-4.892258794831387,-5.7378648364121165,-6.1,6.529479366362011,0,4.0,6232.897257819867,-1683.824374584738,-115.45175779243613,0.0 +2018-01-02 06:10:00,0.711765138895671,0.35337604790328286,0.8666248404826626,0.11862752314927849,0.05889600798388048,0.1444374734137771,0.010000000000000002,0.0,0.0,0.520748361506395,0.18101677738927596,0.005810481205608636,0.807345172752814,0.053469186524239945,1,0.0029166666666666685,0,0,0.3504593812366162,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,On,0.053469186524239945,0,0.053469186524239945,On,0.006002361297753889,0.0,On,0.11821672228328535,0,On,0.056797693808236724,0.0,On,0.40611471447858555,0.30458603585893906,Off,-0.0,0,On,131.81277512319494,0,84.35806037732041,51.666666666666686,46.10666666666668,0.0,51.6663995443379,0.0,0.0,131.81277512319494,131.80946933956315,51.6663995443379,51.66639954433791,51.6663995443379,9.980991816508038,On,14196.572809731551,0.0,20.000000000000057,23.66095468288592,0.0,0.0,0.6,1,0.580343724798055,14196.572809731551,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1387.4964809137796,20.08786260910662,-4.891550907547937,-5.749107961851404,-6.1,6.529479366362011,0,4.0,7093.868112536257,-1720.7979640627418,-114.88071137898277,0.0 +2018-01-02 06:20:00,0.725132435526731,0.35337604790328286,0.8224759424642557,0.12085540592112183,0.05889600798388048,0.1370793237440426,0.010000000000000002,0.0,0.0,0.534115658137455,0.18101677738927596,0.0057834198547525965,0.7498560394542032,0.06683648315529993,1,0.0029166666666666685,0,0,0.3504593812366162,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,On,0.06683648315529993,0,0.06683648315529993,On,0.006002361297753889,0.0,On,0.11821672228328535,0,On,0.056797693808236724,0.0,On,0.40611471447858555,0.30458603585893906,Off,-0.0,0,On,131.19887902256323,0,83.96649395378775,51.666666666666686,46.10666666666668,0.0,51.666402840746855,0.0,0.0,131.19887902256323,131.19764680279334,51.666402840746855,51.666402840746855,51.666402840746855,9.980991816508038,On,13185.668559373233,0.0,20.000000000000057,21.976114265622055,0.0,0.0,0.6,1,0.5390188257586912,13185.668559373233,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1387.7600963222667,20.234443613095443,-4.908714595823046,-5.760298581834039,-6.1,6.529479366362011,0,4.0,6480.893825437697,-1885.1414470459422,-114.19666623542312,0.0 +2018-01-02 06:30:00,0.725132435526731,0.35337604790328286,0.7604784604631089,0.12085540592112183,0.05889600798388048,0.1267464100771848,0.010000000000000002,0.0,0.0,0.534115658137455,0.18101677738927596,0.005776636704290326,0.6878653406035186,0.06683648315529993,1,0.0029166666666666685,0,0,0.3504593812366162,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,On,0.06683648315529993,0,0.06683648315529993,On,0.006002361297753889,0.0,On,0.11821672228328535,0,On,0.056797693808236724,0.0,On,0.40611471447858555,0.30458603585893906,Off,-0.0,0,On,131.04500090905225,0,83.86860290752949,51.666666666666686,46.10666666666668,0.0,51.66640406947224,0.0,0.0,131.04500090905225,131.04469204301483,51.66640406947224,51.66640406947224,51.66640406947224,9.980991816508038,On,12095.607579929765,0.0,20.000000000000057,20.159345966549612,0.0,0.0,0.5999999999999999,1,0.4944580675006423,12095.607579929765,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1403.1211353030296,20.27108886409265,-4.9954337621301494,-5.770730204275913,-4.4,6.529479366362011,0,4.0,6229.460521467407,2098.4793012162563,-4.1884515197270815,0.0 +2018-01-02 06:40:00,0.6783468973180211,0.35337604790328286,0.7124017407624232,0.11305781621967018,0.05889600798388048,0.11873362346040386,0.010000000000000002,0.0,0.0,0.4873301199287451,0.18101677738927596,0.0057766231456229476,0.6865741726702104,0.020050944946589978,1,0.0029166666666666685,0,0,0.3504593812366162,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,On,0.020050944946589978,0,0.020050944946589978,On,0.006002361297753889,0.0,On,0.11821672228328535,0,On,0.056797693808236724,0.0,On,0.40611471447858555,0.30458603585893906,Off,-0.0,0,On,131.04469332599484,0,83.86860333351248,51.666666666666686,46.10666666666668,0.0,51.666404377462385,0.0,0.0,131.04469332599484,131.04469270861324,51.66640437746238,51.666404377462385,51.666404377462385,9.980991816508038,On,12072.903338679025,0.0,20.000000000000057,20.121505564465043,0.0,0.0,0.6,1,0.49352993758416447,12072.903338679025,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1404.0055332680797,20.271088864092654,-3.3624456708986945,-5.620930609825394,-4.4,6.529479366362011,0,4.0,5308.616730529323,-1212.0942518680768,-13.359616076004883,0.0 +2018-01-02 06:50:00,0.6582959523714311,0.35337604790328286,0.7755501470778445,0.10971599206190519,0.05889600798388048,0.1292583578463074,0.010000000000000002,0.0,0.0,0.4672791749821551,0.18101677738927596,0.03944167729370335,0.7361084697841411,0.0,1,0.0029166666666666685,0,0,0.3504593812366162,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.11821672228328535,0,On,0.056797693808236724,0.0,On,0.40611471447858555,0.30458603585893906,Off,-0.0,0,On,894.74808636817,0,84.20402260822767,51.666666666666686,46.10666666666668,0.2631342071684619,51.66640437807801,764.7122158458114,0.0,894.74808636817,131.56878532535575,51.66640437807801,51.66640437807801,51.66640437807801,9.980991816508038,On,12943.92762827628,0.0,20.000000000000057,21.573212713793804,0.0,0.0,0.5999999999999999,1,0.5291366637559869,12943.92762827628,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1404.2708938712049,20.142830485602428,-3.3837046922517624,-5.479613436468624,-4.4,6.529479366362011,0,4.0,5671.159682052441,-1030.2502851560002,-20.070692668436024,0.0 +2018-01-02 07:00:00,0.6660039618822122,0.36150416966252097,0.7685793451936321,0.11100066031370204,0.06025069494375349,0.128096557532272,0.010000000000000002,0.0,0.0,0.4781166706611393,0.17788729122107294,0.005877560632218833,0.7627017845614134,0.0,1,0.0029166666666666685,0,0,0.3585875029958543,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.11621869317427207,0,On,0.05583773278612568,0.0,On,0.4137330280258029,0.3102997710193521,Off,-0.0,0,On,133.33449510856,0,84.35595291119482,51.666666666666686,46.10666666666668,0.0,51.6648758103807,0.0,0.0,133.33449510856,131.8061764237419,51.6648758103807,51.6648758103807,51.6648758103807,9.980991816508038,On,13411.551566870445,0.0,20.000000000000057,22.352585944784074,0.0,0.0,0.6,1,0.5482527294406883,13411.551566870445,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1401.8644025037845,20.087862609106615,-3.31040321496426,-5.337984513390425,-4.4,6.529479366362011,0,3.0,6007.784837066076,-1096.244871301491,-27.546968324166563,0.0 +2018-01-02 07:10:00,0.6660039618822122,0.36150416966252097,0.7683999899796436,0.11100066031370204,0.06025069494375349,0.12806666499660727,0.010000000000000002,0.0,0.0,0.4781166706611393,0.17788729122107294,0.005810283426855827,0.7625897065527878,0.0,1,0.0029166666666666685,0,0,0.3585875029958543,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.11621869317427207,0,On,0.05583773278612568,0.0,On,0.4137330280258029,0.3102997710193521,Off,-0.0,0,On,131.80828844380545,0,84.35534401477855,51.666666666666686,46.10666666666668,0.0,51.6663997949937,0.0,0.0,131.80828844380545,131.80522502309148,51.6663997949937,51.66639979499371,51.6663997949937,9.980991816508038,On,13409.580757279302,0.0,20.000000000000057,22.349301262132172,0.0,0.0,0.5999999999999999,1,0.5481721644343082,13409.580757279302,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1400.5971245280666,20.088879584272664,-3.270553560529558,-5.203849293388748,-4.4,6.529479366362011,0,3.0,6005.395457022099,-1183.5765948014014,-35.341578530823384,0.0 +2018-01-02 07:20:00,0.6660039618822122,0.36150416966252097,0.8019535788352065,0.11100066031370204,0.06025069494375349,0.13365892980586774,0.010000000000000002,0.0,0.0,0.4781166706611393,0.17788729122107294,0.03945165141958808,0.7625019274156184,0.0,1,0.0029166666666666685,0,0,0.3585875029958543,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.11621869317427207,0,On,0.05583773278612568,0.0,On,0.4137330280258029,0.3102997710193521,Off,-0.0,0,On,894.9743528624191,0,84.34814290369556,51.666666666666686,46.10666666666668,0.26313421681599597,51.666402849727035,764.7122158458114,0.0,894.9743528624191,131.7939732870243,51.666402849727035,51.66640284972704,51.666402849727035,9.980991816508038,On,13408.037225523547,0.0,20.000000000000057,22.346728709205912,0.0,0.0,0.6,1,0.5481090661795051,13408.037225523547,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1400.2707368141753,20.088879584272664,-3.2708259233032684,-5.082839032277835,-4.4,6.529479366362011,0,3.0,6003.838750620559,-1187.6768992254256,-42.77786579157285,0.0 +2018-01-02 07:30:00,0.6492719314818146,0.36150416966252097,0.7137789204695951,0.10821198858030243,0.06025069494375349,0.11896315341159919,0.010000000000000002,0.0,-0.016732030400397595,0.4781166706611393,0.17788729122107294,0.005877393825127852,0.7079015266444673,0.0,1,0.0029166666666666685,0,0,0.3585875029958543,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.11621869317427207,0,On,0.05583773278612568,0.0,On,0.4137330280258029,0.3102997710193521,On,-0.016732030400397595,0,On,133.33071103202755,0,84.35323557560059,51.666666666666686,46.10666666666668,0.0,51.66487535750375,0.0,0.0,133.33071103202755,131.80193058687593,51.66487535750375,51.66487535750376,51.66487535750375,9.980991816508038,On,12447.929218256753,0.0,20.000000000000057,20.74654869709459,0.0,0.0,0.6,1,0.5088606740067335,12447.929218256753,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.944575067474,20.088879584272664,-3.2711051407652763,-4.9770004395294976,-2.8,6.529479366362011,0,3.0,5968.535051903989,2397.9206422331335,9.631884457247253,224.39034722607457 +2018-01-02 07:40:00,0.6578220368962726,0.36150416966252097,0.7113890366251249,0.10963700614937877,0.06025069494375349,0.1185648394375208,0.010000000000000002,0.0,-0.008181924985939669,0.4781166706611393,0.17788729122107294,0.00581028309342927,0.7055787535316956,0.0,1,0.0029166666666666685,0,0,0.3585875029958543,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.11621869317427207,0,On,0.05583773278612568,0.0,On,0.4137330280258029,0.3102997710193521,On,-0.008181924985939669,0,On,131.80828087990875,0,84.3553440252553,51.666666666666686,46.10666666666668,0.0,51.66639980256761,0.0,0.0,131.80828087990875,131.80522503946142,51.66639980256761,51.66639980256762,51.66639980256761,9.980991816508038,On,12407.084956435612,0.0,20.000000000000057,20.67847492739269,0.0,0.0,0.6,1,0.5071909956019809,12407.084956435612,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.586967079905,20.088879584272664,-1.732223721429302,-4.788118471809278,-2.8,6.529479366362011,0,3.0,5939.607627020999,-724.0521799357743,3.1382475860903867,228.28922410399903 +2018-01-02 07:50:00,0.6576655126512815,0.36150416966252097,0.7092638199280512,0.10961091877521358,0.06025069494375349,0.1182106366546752,0.010000000000000002,0.0,-0.008338449230930753,0.4781166706611393,0.17788729122107294,0.0058101489474900155,0.7034536709805612,0.0,1,0.0029166666666666685,0,0,0.3585875029958543,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.11621869317427207,0,On,0.05583773278612568,0.0,On,0.4137330280258029,0.3102997710193521,On,-0.008338449230930753,0,On,131.8052377328958,0,84.35534823978047,51.666666666666686,46.10666666666668,0.0,51.66640284974217,0.0,0.0,131.8052377328958,131.80523162465698,51.66640284974218,51.666402849742184,51.66640284974217,9.980991816508038,On,12369.716938167783,0.0,20.000000000000057,20.616194896946308,0.0,0.0,0.5999999999999999,1,0.5056634230532734,12369.716938167783,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.7423124996221,20.088879584272664,-1.7499545424295537,-4.571280520710631,-2.8,6.529479366362011,0,3.0,5911.708249553145,-735.0206773626942,-2.3064728141149686,228.75965394517996 +2018-01-02 08:00:00,0.6757692964838137,0.3688646162116091,0.8002225498235277,0.11262821608063561,0.06147743603526818,0.13337042497058793,0.010000000000000002,0.0,-0.01023006355237242,0.48793059939325667,0.18806876064292938,0.09908076928797475,0.701141780535553,0.0,1,0.0029166666666666685,0,0,0.3659479495449424,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.12321179505581853,0,On,0.059197596363514335,0.0,On,0.42193736569203694,0.3164530242690276,On,-0.01023006355237242,0,On,2247.681508475159,0,84.33537154927588,51.666666666666686,46.10666666666668,0.7295361354041532,51.6664028558331,2120.154503191562,0.0,2247.681508475159,131.77401804574356,51.66640285583309,51.6664028558331,51.6664028558331,9.980991816508038,On,12329.06404007864,0.0,20.000000000000057,20.548440066797735,0.0,0.0,0.6,1,0.5040015674338159,12329.06404007864,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.4783907761798,20.088879584272668,-1.7545117131051313,-4.329668843889406,-2.8,6.529479366362011,0,3.0,5900.530882261634,-752.1086972130602,-10.338038580552698,227.99263426856982 +2018-01-02 08:10:00,0.6756153197981618,0.3688646162116091,0.7384269070338879,0.11260255329969363,0.06147743603526818,0.12307115117231465,0.010000000000000002,0.0,-0.010384040238024342,0.48793059939325667,0.18806876064292938,0.040919162980870546,0.6975077440530174,0.0,1,0.0029166666666666685,0,0,0.3659479495449424,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.12321179505581853,0,On,0.059197596363514335,0.0,On,0.42193736569203694,0.3164530242690276,On,-0.010384040238024342,0,On,928.265360022256,0,84.3346572725835,51.666666666666686,46.10666666666668,0.27318613136555575,51.66216788693228,793.8441097827946,0.0,928.265360022256,131.77290198841172,51.66216788693228,51.66216788693228,51.66216788693228,9.980991816508038,On,12265.162173493341,0.0,20.000000000000057,20.441936955822236,0.0,0.0,0.6,1,0.5013893139151189,12265.162173493341,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.224387073495,20.091632409470503,-1.7586026239462007,-4.0854050059861295,-2.8,6.529479366362011,0,3.0,5850.121788441402,-766.5195220217302,-19.75708402586377,225.44455942397337 +2018-01-02 08:20:00,0.6757596236108206,0.3688646162116091,0.7006137618677171,0.11262660393513677,0.06147743603526818,0.11676896031128617,0.010000000000000002,0.0,-0.010239736425365511,0.48793059939325667,0.18806876064292938,0.005879821703669612,0.6947339401640474,0.0,1,0.0029166666666666685,0,0,0.3659479495449424,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.12321179505581853,0,On,0.059197596363514335,0.0,On,0.42193736569203694,0.3164530242690276,On,-0.010239736425365511,0,On,133.3857882961864,0,84.34578962274506,51.666666666666686,46.10666666666668,0.0,51.66480872488353,0.0,0.0,133.3857882961864,131.79029628553914,51.66480872488353,51.664808724883535,51.66480872488353,9.980991816508038,On,12216.386866228655,0.0,20.000000000000057,20.36064477704776,0.0,0.0,0.6,1,0.49939542117244545,12216.386866228655,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1409.0418535486097,20.091632409470503,-1.7643040338758698,-3.8543275344600976,-2.8,6.529479366362011,0,3.0,5812.944838219362,-770.8892974616956,-29.29847508946726,221.8273337833345 +2018-01-02 08:30:00,0.3811894892703711,0.33150557862429336,0.6726245305114064,0.06353158154506185,0.05525092977071556,0.11210408841856773,0.010000000000000002,0.0,-0.20224699664434367,0.4381185492768357,0.13531793663787908,0.005809782453367977,0.6668147480580384,0.0,1,0.0029166666666666685,0,0,0.3285889119576267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.08758027594508183,0,On,0.04207829146920073,0.0,On,0.37212531557561596,0.27909398668171187,On,-0.20224699664434367,0,On,131.796923687022,0,84.34799007905659,51.666666666666686,46.10666666666668,0.0,51.666399692329364,0.0,0.0,131.796923687022,131.7937344985259,51.666399692329364,51.666399692329364,51.666399692329364,9.980991816508038,On,11725.448347118696,0.0,20.000000000000057,19.542413911864497,0.0,0.0,0.5999999999999999,1,0.4793262754253951,11725.448347118696,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1414.696442911444,20.091632409470503,-1.768566701263593,-3.644879013827432,-1.7,6.529479366362011,0,2.0,5644.145052175466,1737.275407668547,30.696374106359528,529.7610374400655 +2018-01-02 08:40:00,0.39154209574014837,0.33150557862429336,0.6722799473747114,0.0652570159566914,0.05525092977071556,0.11204665789578523,0.010000000000000002,0.0,-0.1918943901745664,0.4381185492768357,0.13531793663787908,0.005812221208886294,0.6664677261658252,0.0,1,0.0029166666666666685,0,0,0.3285889119576267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.08758027594508183,0,On,0.04207829146920073,0.0,On,0.37212531557561596,0.27909398668171187,On,-0.1918943901745664,0,On,131.8522476991548,0,84.3855095975605,51.666666666666686,46.10666666666668,0.0,51.66640287247382,0.0,0.0,131.8522476991548,131.8523587461883,51.66640287247382,51.666402872473824,51.66640287247382,9.980991816508038,On,11719.346221626849,0.0,20.000000000000057,19.532243702711416,0.0,0.0,0.6,1,0.4790768257670454,11719.346221626849,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1414.471164695975,20.07758896854442,-0.6941977190634518,-3.337574286040754,-1.7,6.529479366362011,0,2.0,5656.466310333853,-445.8731703031867,19.057781874582332,557.8895332841824 +2018-01-02 08:50:00,0.3914210978705369,0.33150557862429336,0.7682966275088242,0.06523684964508948,0.05525092977071556,0.12804943791813736,0.010000000000000002,0.0,-0.19201538804417784,0.4381185492768357,0.13531793663787908,0.1065587361303744,0.6617378913784498,0.0,1,0.0029166666666666685,0,0,0.3285889119576267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.08758027594508183,0,On,0.04207829146920073,0.0,On,0.37212531557561596,0.27909398668171187,On,-0.19201538804417784,0,On,2417.321771802141,0,84.3639315596869,51.666666666666686,46.10666666666668,0.7880104075778224,51.66640276174169,2290.0905511572973,0.0,2417.321771802141,131.81864306201078,51.6664027617417,51.66640276174171,51.66640276174169,9.980991816508038,On,11636.175545436365,0.0,20.000000000000057,19.393625909060606,0.0,0.0,0.6,1,0.47567687983211726,11636.175545436365,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1415.2723287780389,20.07758896854442,-0.706248502842773,-2.984099344947559,-1.7,6.529479366362011,0,2.0,5590.95817645708,-469.87999309216,8.791339744977066,540.6419575055172 +2018-01-02 09:00:00,0.3944280440302609,0.33150557862429336,0.6919688839538272,0.06573800733837681,0.05525092977071556,0.11532814732563786,0.010000000000000002,0.0,-0.1916019501853722,0.4381185492768357,0.13791144493879737,0.03965510820773749,0.6523137757460896,0.0,1,0.0029166666666666685,0,0,0.3285889119576267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.08991130990559731,0,On,0.04319824599499695,0.0,On,0.37212531557561596,0.27909398668171187,On,-0.1916019501853722,0,On,899.5898404467758,0,84.37197726838465,51.666666666666686,46.10666666666668,0.2631630959817915,51.661828348534186,764.7122158458113,0.0,899.5898404467758,131.83121448185102,51.66182834853419,51.6618283485342,51.661828348534186,9.980991816508038,On,11470.45938305944,0.0,20.000000000000057,19.11743230509907,0.0,0.0,0.6,1,0.4689025451936094,11470.45938305944,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1415.103283106172,20.07758896854442,-0.7142979072775759,-2.595904255573424,-1.7,6.529479366362011,0,3.0,5528.368918306039,-503.28201117585104,-5.4480278457293565,525.2669217115457 +2018-01-02 09:10:00,0.39443950253851057,0.33150557862429336,0.6531925063253202,0.06573991708975176,0.05525092977071556,0.1088654177208867,0.010000000000000002,0.0,-0.19159049167712247,0.4381185492768357,0.13791144493879737,0.005879806267906471,0.6473127000574137,0.0,1,0.0029166666666666685,0,0,0.3285889119576267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.08991130990559731,0,On,0.04319824599499695,0.0,On,0.37212531557561596,0.27909398668171187,On,-0.19159049167712247,0,On,133.38543813056265,0,84.38240209351703,51.666666666666686,46.10666666666668,0.0,51.66486611951255,0.0,0.0,133.38543813056265,131.84750327112036,51.66486611951255,51.66486611951256,51.66486611951255,9.980991816508038,On,11382.519134529579,0.0,20.000000000000057,18.970865224215967,0.0,0.0,0.6,1,0.4653076232307183,11382.519134529579,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1414.977659210199,20.07795658299556,-0.7289373828478254,-2.210481919724708,-1.7,6.529479366362011,0,3.0,5459.558330542602,-501.5292068309154,-21.107931925564518,510.93079089643726 +2018-01-02 09:20:00,0.3917998501981129,0.33150557862429336,0.6481729302933372,0.06529997503301882,0.05525092977071556,0.1080288217155562,0.010000000000000002,0.0,-0.19423014401752015,0.4381185492768357,0.13791144493879737,0.005812293673766789,0.6423606366195704,0.0,1,0.0029166666666666685,0,0,0.3285889119576267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.08991130990559731,0,On,0.04319824599499695,0.0,On,0.37212531557561596,0.27909398668171187,On,-0.19423014401752015,0,On,131.85389159002352,0,84.38452316867583,51.666666666666686,46.10666666666668,0.0,51.666399693030215,0.0,0.0,131.85389159002352,131.85081745105597,51.66639969303022,51.66639969303023,51.666399693030215,9.980991816508038,On,11295.440730488293,0.0,20.000000000000057,18.825734550813824,0.0,0.0,0.6,1,0.46174793273160375,11295.440730488293,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1414.9159976532055,20.07795658299556,-0.7366715805724605,-1.8506116091671423,-1.7,6.529479366362011,0,3.0,5391.808990937487,-509.94601394366646,-122.06252901256886,497.15263193120256 +2018-01-02 09:30:00,0.11187183797151984,0.29414654103697757,0.5448884018953318,0.018645306328586637,0.04902442350616293,0.09081473364922196,0.010000000000000002,0.0,-0.3701162870570797,0.38830649916041465,0.0836816258681849,0.005812158724555284,0.5390762431707765,0.0,1,0.0029166666666666685,0,0,0.2912298743703109,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.05328077624035396,0,On,0.02559896058962782,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.3701162870570797,0,On,131.85083022050185,0,84.38452740843826,51.666666666666686,46.10666666666668,0.0,51.66640275845141,0.0,0.0,131.85083022050185,131.85082407568478,51.66640275845141,51.66640275845142,51.66640275845141,9.980991816508038,On,9479.260413579781,0.0,20.000000000000057,15.798767355966302,0.0,0.0,0.6,1,0.3875040385082677,9479.260413579781,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1429.0764385528018,20.07795658299556,-0.7441842353393869,-1.6426572358274572,2.2,6.529479366362011,0,2.0,5135.48244507134,1926.4303081558405,183.47599518540238,1260.2678360969528 +2018-01-02 09:40:00,0.10375566799958269,0.29414654103697757,0.5412049415429137,0.01729261133326378,0.04902442350616293,0.0902008235904856,0.010000000000000002,0.0,-0.37823245702901687,0.38830649916041465,0.0836816258681849,0.005814775705355274,0.5353901658375584,0.0,1,0.0029166666666666685,0,0,0.2912298743703109,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.05328077624035396,0,On,0.02559896058962782,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.37823245702901687,0,On,131.91019733477077,0,84.42260255818302,51.666666666666686,46.10666666666668,0.0,51.666402764578805,0.0,0.0,131.91019733477077,131.91031649716095,51.666402764578805,51.666402764578805,51.666402764578805,9.980991816508038,On,9414.44344679852,0.0,20.000000000000057,15.690739077997529,0.0,0.0,0.6000000000000001,1,0.38485437647813575,9414.44344679852,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1429.0106895273925,20.06370350327284,0.2980509490238734,-0.9499232873364407,2.2,6.529479366362011,0,2.0,5080.235677931423,1902.0655630040237,146.845680816092,1226.4754248036961 +2018-01-02 09:50:00,0.09423329302130329,0.29414654103697757,0.5320979984659109,0.01570554883688388,0.04902442350616293,0.08868299974431848,0.010000000000000002,0.0,-0.38775483200729627,0.38830649916041465,0.0836816258681849,0.005814780936371127,0.5262832175295398,0.0,1,0.0029166666666666685,0,0,0.2912298743703109,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.05328077624035396,0,On,0.02559896058962782,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.38775483200729627,0,On,131.910316002174,0,84.42260239383813,51.666666666666686,46.10666666666668,0.0,51.66640264575434,0.0,0.0,131.910316002174,131.91031624037208,51.66640264575434,51.666402645754346,51.66640264575434,9.980991816508038,On,9254.30443923077,0.0,20.000000000000057,15.423840732051284,0.0,0.0,0.5999999999999999,1,0.3783080311465621,9254.30443923077,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1429.168696922491,20.06370350327284,1.1885665492712842,-0.18852926548532128,2.2,6.529479366362011,0,2.0,4953.919654868261,1862.2587622420751,117.84723259820966,1191.305881937518 +2018-01-02 10:00:00,0.07926909504116281,0.292939347737565,0.5228979387526864,0.0132115158401938,0.0488232246229275,0.08714965645878106,0.010000000000000002,0.0,-0.3981084692783317,0.3866969080945313,0.08068065622496325,0.005814780946827656,0.5170831578058588,0.0,1,0.0029166666666666685,0,0,0.29002268107089835,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.3981084692783317,0,On,131.910316239384,0,84.42260239350828,51.666666666666686,46.10666666666668,0.0,51.66640264551682,0.0,0.0,131.910316239384,131.91031623985668,51.66640264551682,51.666402645516825,51.66640264551682,9.980991816508038,On,9092.528135700302,0.0,20.000000000000057,15.154213559500507,0.0,0.0,0.5999999999999999,1,0.37169475455979495,9092.528135700302,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1429.2135994492992,20.06370350327284,1.95112014142865,0.6415710600168906,2.2,6.529479366362011,0,2.0,4821.264348226816,1824.2189556721635,82.49252421524899,1155.3884100015057 +2018-01-02 10:10:00,0.06854604767308403,0.292939347737565,0.5136263828272781,0.011424341278847339,0.0488232246229275,0.08560439713787968,0.010000000000000002,0.0,-0.4088315166464105,0.3866969080945313,0.08068065622496325,0.0058149009507214,0.5078114818765568,0.0,1,0.0029166666666666685,0,0,0.29002268107089835,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.4088315166464105,0,On,131.91303856920493,0,84.4243481814401,51.666666666666686,46.10666666666668,0.0,51.66640264551635,0.0,0.0,131.91303856920493,131.91304403350014,51.66640264551635,51.66640264551636,51.66640264551635,9.980991816508038,On,8929.492513712543,0.0,20.000000000000057,14.882487522854237,0.0,0.0,0.6,1,0.365029998114191,8929.492513712543,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1429.2198568667523,20.063049983581415,2.605639509222807,1.4608166686334787,2.2,6.529479366362011,0,2.0,4692.693655406636,1317.2399053829204,30.858474933946642,1119.3799504936908 +2018-01-02 10:20:00,0.05782559712979917,0.292939347737565,0.503870019136233,0.009637599521633195,0.0488232246229275,0.08397833652270549,0.010000000000000002,0.0,-0.41955196718969534,0.3866969080945313,0.08068065622496325,0.005814901190594003,0.49805511794563895,0.0,1,0.0029166666666666685,0,0,0.29002268107089835,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.41955196718969534,0,On,131.91304401079788,0,84.42434817390479,51.666666666666686,46.10666666666668,0.0,51.66640264006755,0.0,0.0,131.91304401079788,131.91304402172622,51.66640264006755,51.66640264006756,51.66640264006755,9.980991816508038,On,8757.934008654236,0.0,20.000000000000057,14.596556681090393,0.0,0.0,0.6,1,0.35801683351589625,8757.934008654236,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1429.2106827923278,20.063049983581415,2.9654401429886397,2.2000011086026032,2.2,6.529479366362011,0,2.0,4557.498614119309,530.7167164420828,16.42413844564438,1083.9652632543407 +2018-01-02 10:30:00,0.5453990877774448,0.35874898821810625,0.4359803951825623,0.09089984796290747,0.05979149803635104,0.07266339919709372,0.010000000000000002,0.0,-0.3938255272676624,0.848543958820144,0.08068065622496325,0.020984350585495283,0.414996044597067,0.0,1,0.0029166666666666685,0,0,0.35583232155143957,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.4618470507256127,0.0658096404805412,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.3938255272676624,0,On,476.0372483714867,0,84.42109918164013,51.666666666666686,46.10666666666668,0.11865109798225178,51.66640264005666,344.82001121738773,-0.0,476.0372483714867,131.9079674713127,51.66640264005666,51.66640264005666,51.66640264005666,9.980991816508038,On,7297.401113806719,0.0,20.000000000000057,12.162335189677867,0.0,0.0,0.5999999999999999,1,0.29831150098628256,7297.401113806719,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1433.1926716348014,20.063049983581415,2.95125059114356,2.8973542572350475,5.6,6.529479366362011,0,2.0,4494.951624233374,1461.1374849935864,179.23922732193,1544.581885696285 +2018-01-02 10:40:00,0.9882312363635953,0.42455862869864747,0.4182359118617917,0.1647052060605992,0.07075977144977458,0.06970598531029862,0.010000000000000002,0.0,-0.41284042940712473,1.3103910095457567,0.08068065622496325,0.023696633706715934,0.3945392781550758,0.0,1,0.0029166666666666685,0,0,0.4216419620319808,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.9236941014512254,0.1316192809610824,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.41284042940712473,0,On,537.5663287483067,0,84.36710786235894,51.666666666666686,46.10666666666668,0.13965914774968288,51.66571386854216,405.86622463700684,-0.0,537.5663287483067,131.82360603493584,51.66571386854216,51.66571386854217,51.66571386854216,9.980991816508038,On,6937.683877553028,0.0,20.000000000000057,11.56280646258838,0.0,0.0,0.6,1,0.28360656877768453,6937.683877553028,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1433.1969955358222,20.082689209336422,3.3508593561496953,3.8368056328840345,5.6,6.529479366362011,0,2.0,4336.288523117562,1385.3594663023282,128.18338668961627,1489.2291761797544 +2018-01-02 10:50:00,0.9705346951917059,0.42455862869864747,0.42850905433426967,0.16175578253195097,0.07075977144977458,0.07141817572237827,0.010000000000000002,0.0,-0.4305369705790142,1.3103910095457567,0.08068065622496325,0.054275805211571854,0.37423324912269784,0.0,1,0.0029166666666666685,0,0,0.4216419620319808,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.9236941014512254,0.1316192809610824,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.4305369705790142,0,On,1231.2654070849646,0,84.30792498549796,51.666666666666686,46.10666666666668,0.3788315611417252,51.66559071685059,1100.92667558036,0.0,1231.2654070849646,131.73113278984056,51.665590716850595,51.6655907168506,51.66559071685059,9.980991816508038,On,6580.617248106619,0.0,20.000000000000057,10.967695413511032,0.0,0.0,0.5999999999999999,1,0.2690099911028271,6580.617248106619,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1433.8877779567206,20.102328435091433,3.6720440666188416,4.7994048722060265,5.6,6.529479366362011,0,2.0,4046.855201110622,1311.3374568893278,-48.391909321482004,1438.8677451145354 +2018-01-02 11:00:00,0.7801779699317152,0.4268270628902639,0.3629570460965372,0.13002966165528584,0.07113784381504398,0.060492841016089524,0.010000000000000002,0.0,-0.44657112325903847,1.0889550704169773,0.12779402277377633,0.005904555877651152,0.357052490218886,0.0,1,0.0029166666666666685,0,0,0.4239103962235972,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.6465858710158577,0.09213349667275768,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.44657112325903847,0,On,133.94689158479866,0,84.31637787038433,51.666666666666686,46.10666666666668,0.0,51.66420226419677,0.0,0.0,133.94689158479866,131.74434042247552,51.66420226419677,51.664202264196774,51.66420226419677,9.980991816508038,On,6278.506202006284,0.0,20.000000000000057,10.464177003343806,0.0,0.0,0.6,1,0.2566599505580894,6278.506202006284,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1434.7716119634908,20.102328435091433,3.9280485492923347,5.600000874565095,5.6,6.529479366362011,0,3.0,3889.9494301956506,1249.0982672872476,60.93220973744895,1394.602521502643 +2018-01-02 11:10:00,0.11949425636090683,0.33469356621750623,0.36847600449931783,0.01991570939348447,0.05578226103625104,0.06141266741655297,0.010000000000000002,0.0,-0.460668965813989,0.4423691994011195,0.12779402277377633,0.024835468437239525,0.3436405360620783,0.0,1,0.0029166666666666685,0,0,0.33177689955083955,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.460668965813989,0,On,563.4011883623592,0,84.30937409128059,51.666666666666686,46.10666666666668,0.14883167652137816,51.66639856926984,432.5297972684163,-0.0,563.4011883623592,131.73339701762592,51.66639856926984,51.666398569269845,51.66639856926984,9.980991816508038,On,6042.666823591868,0.0,20.000000000000057,10.071111372653114,0.0,0.0,0.6,1,0.24701903896925442,6042.666823591868,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1435.3392190817278,20.10456177302497,4.1320286916753775,6.60422568007558,5.6,6.529479366362011,0,3.0,3511.025493615097,1200.5861185965234,11.612075199660161,1357.2465145283197 +2018-01-02 11:20:00,0.10754837663954736,0.33469356621750623,0.36956853791243854,0.01792472943992456,0.05578226103625104,0.06159475631873976,0.010000000000000002,0.0,-0.47261484553534844,0.4423691994011195,0.12779402277377633,0.02737463103622983,0.3421939068762087,0.0,1,0.0029166666666666685,0,0,0.33177689955083955,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.47261484553534844,0,On,621.0029698359606,0,84.38109947094759,51.666666666666686,46.10666666666668,0.1683602861643423,51.66553900785961,489.27312091378803,-0.0,621.0029698359606,131.8454679233556,51.66553900785961,51.66553900785961,51.66553900785961,9.980991816508038,On,6017.228910219755,0.0,20.000000000000057,10.028714850366258,0.0,0.0,0.6,1,0.2459791588802133,6017.228910219755,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1435.8539812150912,20.077066856967953,4.295780226320716,7.505223820326219,5.6,6.529479366362011,0,3.0,3504.683256642609,1194.4478304243073,-42.491630504166096,1327.2190538214804 +2018-01-02 11:30:00,-0.126837007921355,0.33469356621750623,0.2833868538351652,-0.02113950132022583,0.05578226103625104,0.04723114230586087,0.010000000000000002,0.0,-0.7070002300962508,0.4423691994011195,0.12779402277377633,0.00585542251139295,0.2775314313237723,0.0,1,0.0029166666666666685,0,0,0.33177689955083955,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.7070002300962508,0,On,132.83228418336924,0,84.38555008312055,51.666666666666686,46.10666666666668,0.0,51.66542371673575,0.0,0.0,132.83228418336924,131.85242200487585,51.66542371673575,51.66542371673576,51.66542371673575,9.980991816508038,On,4880.186696778898,0.0,20.000000000000057,8.133644494631499,0.0,0.0,0.5999999999999999,1,0.1994978480564801,4880.186696778898,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1431.8260801636834,20.077066856967956,4.441790522290791,8.292001849584263,8.9,6.529479366362011,0,3.0,3320.2400805712014,966.0402786154943,-149.68854235358754,1090.3273333464092 +2018-01-02 11:40:00,-0.13052928734824054,0.33469356621750623,0.2728054153314184,-0.021754881224706757,0.05578226103625104,0.045467569221903065,0.010000000000000002,0.0,-0.7106925095231363,0.4423691994011195,0.12779402277377633,0.005812408311433075,0.2669930070199853,0.0,1,0.0029166666666666685,0,0,0.33177689955083955,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.7106925095231363,0,On,131.8564921851192,0,84.38690148062324,51.666666666666686,46.10666666666668,0.0,51.66640080017896,0.0,0.0,131.8564921851192,131.8545335634738,51.66640080017897,51.66640080017898,51.66640080017896,9.980991816508038,On,4694.876233574627,0.0,20.000000000000057,7.824793722624379,0.0,0.0,0.6,1,0.1919225151996444,4694.876233574627,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1431.9640584139997,20.077066856967956,4.47622686189384,8.90000064979387,8.9,6.529479366362011,0,3.0,3177.79798714835,929.0908906081639,66.8329229042034,1077.0456052585537 +2018-01-02 11:50:00,-0.13291022638586525,0.33469356621750623,0.2620964677111327,-0.022151704397644207,0.05578226103625104,0.04368274461852212,0.010000000000000002,0.0,-0.713073448560761,0.4423691994011195,0.12779402277377633,0.005812322331440274,0.2562841453796924,0.0,1,0.0029166666666666685,0,0,0.33177689955083955,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.713073448560761,0,On,131.85454169925492,0,84.38690418189618,51.666666666666686,46.10666666666668,0.0,51.66640275324627,0.0,0.0,131.85454169925492,131.8545377842128,51.66640275324627,51.666402753246274,51.66640275324627,9.980991816508038,On,4506.568754795279,0.0,20.000000000000057,7.5109479246588,0.0,0.0,0.5999999999999999,1,0.18422466691563988,4506.568754795279,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1431.9407851245674,20.077066856967956,4.496770914651111,9.79882253869357,8.9,6.529479366362011,0,3.0,3035.1276970110757,891.4182938903474,24.27969307615473,1066.3194719107687 +2018-01-02 12:00:00,-0.1294381654658192,0.34106361561969417,0.2516096229692328,-0.021573027577636534,0.05684393593661569,0.041934937161538795,0.010000000000000002,0.0,-0.7141293102460845,0.45086259860403677,0.12382854617622857,0.005812322159577047,0.24579730080965573,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.7141293102460845,0,On,131.85453780047823,0,84.3869041872957,51.666666666666686,46.10666666666668,0.0,51.66640275715021,0.0,0.0,131.85453780047823,131.85453779264952,51.66640275715021,51.66640275715021,51.66640275715021,9.980991816508038,On,4322.165283383869,0.0,20.000000000000057,7.2036088056397825,0.0,0.0,0.5999999999999999,1,0.1766864111056721,4322.165283383869,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1431.880120773463,20.077066856967956,4.50370941010667,10.555721270968544,8.9,6.529479366362011,0,3.0,2899.809714910445,854.5398166810013,-18.141554202169907,1057.119334949126 +2018-01-02 12:10:00,-0.1291629900061364,0.34106361561969417,0.24100725134376136,-0.02152716500102273,0.05684393593661569,0.040167875223960224,0.010000000000000002,0.0,-0.7138541347864017,0.45086259860403677,0.12382854617622857,0.005812213915697168,0.2351950374280642,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.7138541347864017,0,On,131.85208225063784,0,84.38532948596468,51.666666666666686,46.10666666666668,0.0,51.66640275715801,0.0,0.0,131.85208225063784,131.8520773218198,51.66640275715801,51.66640275715802,51.66640275715801,9.980991816508038,On,4135.732256811728,0.0,20.000000000000057,6.892887094686214,0.0,0.0,0.5999999999999999,1,0.16906518882080593,4135.732256811728,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1431.8590130180057,20.077656331963613,4.498392622364517,11.190736527503518,8.9,6.529479366362011,0,3.0,2761.0949464294536,817.3064553533055,-57.97905706372927,1061.1077377721144 +2018-01-02 12:20:00,-0.12755832691412028,0.34106361561969417,0.2309115730870336,-0.02125972115235338,0.05684393593661569,0.038485262181172264,0.010000000000000002,0.0,-0.7122494716943856,0.45086259860403677,0.12382854617622857,0.00581221369933058,0.22509935938770304,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.7122494716943856,0,On,131.85207734228698,0,84.38532949276423,51.666666666666686,46.10666666666668,0.0,51.66640276207285,0.0,0.0,131.85207734228698,131.8520773324441,51.666402762072856,51.66640276207286,51.66640276207285,9.980991816508038,On,3958.2071619692074,0.0,20.000000000000057,6.5970119366153455,0.0,0.0,0.6,1,0.16180811514768578,3958.2071619692074,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1431.814480383146,20.07765633196361,4.481781295091649,11.722053527666073,8.9,6.529479366362011,0,3.0,2630.5127370445616,781.9201933675067,-94.10788537872827,1070.8182644776955 +2018-01-02 12:30:00,0.11906705403092266,0.34106361561969417,0.2171497913392302,0.019844509005153776,0.05684393593661569,0.0361916318898717,0.010000000000000002,0.0,-0.46562409074934263,0.45086259860403677,0.12382854617622857,0.005812213698898683,0.21133757764033154,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.46562409074934263,0,On,131.85207733248924,0,84.38532949277943,51.666666666666686,46.10666666666668,0.0,51.66640276208267,0.0,0.0,131.85207733248924,131.85207733246787,51.66640276208267,51.666402762082676,51.66640276208267,9.980991816508038,On,3716.216321914961,0.0,20.000000000000057,6.193693869858269,0.0,0.0,0.6,1,0.15191573708107076,3716.216321914961,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1430.5492374586668,20.07765633196361,4.455948275226879,12.166016691130588,9.4,6.529479366362011,0,3.0,2504.065766151436,733.6374447390721,-112.24882050461842,1013.4333479264408 +2018-01-02 12:40:00,0.1242589078621798,0.34106361561969417,0.20819950414158,0.020709817977029966,0.05684393593661569,0.034699917356929996,0.010000000000000002,0.0,-0.4604322369180855,0.45086259860403677,0.12382854617622857,0.005812213698897742,0.20238729044268228,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.4604322369180855,0,On,131.85207733246787,0,84.38532949278097,51.666666666666686,46.10666666666668,0.0,51.66640276208269,0.0,0.0,131.85207733246787,131.85207733247026,51.66640276208269,51.6664027620827,51.66640276208269,9.980991816508038,On,3558.8320850882433,0.0,20.000000000000057,5.931386808480406,0.0,0.0,0.6,1,0.14548200441554274,3558.8320850882433,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1430.5316731810597,20.077656331963613,4.416510003476642,12.554304724918019,9.4,6.529479366362011,0,3.0,2389.38775625626,702.4968073555826,-142.93512002975012,1027.978766058701 +2018-01-02 12:50:00,0.13097668087272824,0.34106361561969417,0.1993669964993508,0.021829446812121373,0.05684393593661569,0.0332278327498918,0.010000000000000002,0.0,-0.45371446390753706,0.45086259860403677,0.12382854617622857,0.005812213698897742,0.19355478280045305,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.45371446390753706,0,On,131.85207733246787,0,84.38532949278097,51.666666666666686,46.10666666666668,0.0,51.66640276208269,0.0,0.0,131.85207733246787,131.85207733247026,51.66640276208269,51.6664027620827,51.66640276208269,9.980991816508038,On,3403.518915371914,0.0,20.000000000000057,5.672531525619856,0.0,0.0,0.6,1,0.13913293519782416,3403.518915371914,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1430.5642563643166,20.077656331963613,4.372692203912904,12.868966601971517,9.4,6.529479366362011,0,3.0,2277.336869703857,671.6200068840218,-169.04578806439156,1046.9540648020516 +2018-01-02 13:00:00,0.137982660401321,0.34106361561969417,0.190681681766472,0.022997110066886834,0.05684393593661569,0.031780280294411996,0.010000000000000002,0.0,-0.4455509916314908,0.45086259860403677,0.1226710534287751,0.005812213698897742,0.18486946806757423,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.4455509916314908,0,On,131.85207733246787,0,84.38532949278097,51.666666666666686,46.10666666666668,0.0,51.66640276208269,0.0,0.0,131.85207733246787,131.85207733247026,51.66640276208269,51.6664027620827,51.66640276208269,9.980991816508038,On,3250.7940250250435,0.0,20.000000000000057,5.417990041708406,0.0,0.0,0.6,1,0.13288967262162546,3250.7940250250435,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1430.596047830348,20.077656331963613,4.325068088018788,13.123926830339846,9.4,6.529479366362011,0,3.0,2166.7269713313176,641.4463905251051,-190.91934574322096,1070.6220895037632 +2018-01-02 13:10:00,0.1474863915483985,0.34106361561969417,0.18216151124305408,0.024581065258066415,0.05684393593661569,0.030360251873842344,0.010000000000000002,0.0,-0.43604726048441333,0.45086259860403677,0.1226710534287751,0.005812243826168677,0.1763492674168854,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.43604726048441333,0,On,131.85276078002556,0,84.38576777718879,51.666666666666686,46.10666666666668,0.0,51.66640276208269,0.0,0.0,131.85276078002556,131.8527621518575,51.66640276208269,51.6664027620827,51.66640276208269,9.980991816508038,On,3100.9725447298238,0.0,20.000000000000057,5.168287574549707,0.0,0.0,0.5999999999999999,1,0.12676509895905214,3100.9725447298238,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1430.6270566378448,20.077492264217653,4.274395834608168,13.331192677791616,9.4,6.529479366362011,0,3.0,2060.4304319209314,611.6816034592224,-209.2694715185252,1098.9008054950016 +2018-01-02 13:20:00,0.15819539093370355,0.34106361561969417,0.20729086199136953,0.02636589848895059,0.05684393593661569,0.03454847699856159,0.010000000000000002,0.0,-0.4253382610991083,0.45086259860403677,0.1226710534287751,0.039453746357821395,0.16783711563354814,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.4253382610991083,0,On,895.0218772605668,0,84.37856243923103,51.666666666666686,46.10666666666668,0.2631342173778755,51.666402760714746,764.7122158458114,0.0,895.0218772605668,131.84150381129848,51.66640276071475,51.66640276071476,51.666402760714746,9.980991816508038,On,2951.2925978644794,0.0,20.000000000000057,4.918820996440799,0.0,0.0,0.6,1,0.12064631106174613,2951.2925978644794,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1430.6535121105376,20.077492264217653,4.221168214296052,13.499605425506482,9.4,6.529479366362011,0,3.0,1954.938242975033,582.1540913157776,-224.70816076487426,1131.4279256462694 +2018-01-02 13:30:00,-0.15060522241282637,0.34106361561969417,0.2067652712404029,-0.025100870402137727,0.05684393593661569,0.034460878540067144,0.010000000000000002,0.0,-0.7341388744456382,0.45086259860403677,0.1226710534287751,0.03952099150371856,0.16724427973668432,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.7341388744456382,0,On,896.5473566452542,0,84.37644976661912,51.666666666666686,46.10666666666668,0.26314385988344163,51.664875262382715,764.7122158458113,0.0,896.5473566452542,131.83820276034237,51.664875262382715,51.66487526238272,51.664875262382715,9.980991816508038,On,2940.868013364454,0.0,20.000000000000057,4.901446688940757,0.0,0.0,0.6,1,0.12022016298507303,2940.868013364454,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1430.682987550048,20.077492264217653,4.165781182832472,13.635526216043198,9.4,6.529479366362011,0,2.0,1861.68205729372,580.2881962810837,-237.24256528053365,986.880930441088 +2018-01-02 13:40:00,-0.141693554246751,0.34106361561969417,0.16625862087152599,-0.0236155923744585,0.05684393593661569,0.02770977014525433,0.010000000000000002,0.0,-0.7252272062795628,0.45086259860403677,0.1226710534287751,0.005879623446902535,0.16037899742462344,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.7252272062795628,0,On,133.381290772878,0,84.38365087971617,51.666666666666686,46.10666666666668,0.0,51.664872209105056,0.0,0.0,133.381290772878,131.84945449955651,51.664872209105056,51.66487220910506,51.664872209105056,9.980991816508038,On,2820.147058447226,0.0,20.000000000000057,4.700245097412043,0.0,0.0,0.6,1,0.11528519385014087,2820.147058447226,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1430.7117068178975,20.077492264217653,4.120049086091276,13.741676214393458,9.4,6.529479366362011,0,2.0,1775.756144567059,556.4747867298157,-248.70520121506985,1010.285504860008 +2018-01-02 13:50:00,-0.13141191529511798,0.34106361561969417,0.1928906343746411,-0.02190198588251966,0.05684393593661569,0.03214843906244018,0.010000000000000002,0.0,-0.7149455673279298,0.45086259860403677,0.1226710534287751,0.03945388104123566,0.15343675333340545,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.7149455673279298,0,On,895.0249326003861,0,84.37855820781573,51.666666666666686,46.10666666666668,0.2631342366898728,51.66639970133124,764.7122158458114,0.0,895.0249326003861,131.84149719971208,51.66639970133124,51.666399701331244,51.66639970133124,9.980991816508038,On,2698.0727870821574,0.0,20.000000000000057,4.4967879784702625,0.0,0.0,0.6,1,0.11029490229910899,2698.0727870821574,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1430.374532250851,20.077492264217653,4.072458326206672,13.814563359293153,9.4,6.529479366362011,0,2.0,1689.4609948403222,532.3122309466953,-257.4819036449369,1035.9716840803935 +2018-01-02 14:00:00,-0.1385202048748655,0.3371079528163313,0.15321922869974303,-0.02308670081247758,0.05618465880272189,0.025536538116623837,0.010000000000000002,0.0,-0.7187516332572765,0.4455883815328863,0.12464304684952465,0.005879489301501974,0.14733973939824105,0.0,1,0.0029166666666666685,0,0,0.33419128614966465,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.7187516332572765,0,On,133.3782476380855,0,84.38365509422763,51.666666666666686,46.10666666666668,0.0,51.66487525626739,0.0,0.0,133.3782476380855,131.84946108473068,51.66487525626739,51.6648752562674,51.66487525626739,9.980991816508038,On,2590.8612681758436,0.0,20.000000000000057,4.318102113626407,0.0,0.0,0.5999999999999999,1,0.10591218732576721,2590.8612681758436,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1430.442087431782,20.077492264217653,4.023008722583215,13.862285145015985,9.4,6.529479366362011,0,2.0,1604.7501237025451,511.1579543196009,-263.91255468662325,1026.3649725459113 +2018-01-02 14:10:00,-0.1224092259503422,0.3371079528163313,0.14689418796382323,-0.020401537658390367,0.05618465880272189,0.024482364660637204,0.010000000000000002,0.0,-0.7026406543327532,0.4455883815328863,0.12464304684952465,0.005812454642655074,0.14108173332116816,0.0,1,0.0029166666666666685,0,0,0.33419128614966465,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.7026406543327532,0,On,131.85754322490928,0,84.38687414297092,51.666666666666686,46.10666666666668,0.0,51.66639970742213,0.0,0.0,131.85754322490928,131.85449084839206,51.66639970742214,51.666399707422144,51.66639970742213,9.980991816508038,On,2480.8188205149736,0.0,20.000000000000057,4.134698034191623,0.0,0.0,0.5999999999999999,1,0.10141374641208221,2480.8188205149736,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1430.507567869447,20.07707652479417,3.9732836829400577,13.892857240445512,9.4,6.529479366362011,0,2.0,1529.2845567741017,489.4519552102295,-268.4876521550279,1060.1526280563353 +2018-01-02 14:20:00,-0.10348141436680947,0.3371079528163313,0.14050555035510853,-0.017246902394468244,0.05618465880272189,0.023417591725851422,0.010000000000000002,0.0,-0.6837128427492205,0.4455883815328863,0.12464304684952465,0.005812320648776353,0.13469322970633218,0.0,1,0.0029166666666666685,0,0,0.33419128614966465,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.6837128427492205,0,On,131.8545035274421,0,84.38687835271978,51.666666666666686,46.10666666666668,0.0,51.66640275114259,0.0,0.0,131.8545035274421,131.85449742612465,51.66640275114259,51.6664027511426,51.66640275114259,9.980991816508038,On,2368.4816693507337,0.0,20.000000000000057,3.94746944891789,0.0,0.0,0.5999999999999999,1,0.09682149998658103,2368.4816693507337,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1430.5994934684356,20.07707652479417,3.9230519955866843,13.911066128834904,9.4,6.529479366362011,0,2.0,1453.1419753501816,467.27789574906086,-271.77198180388945,1098.9577330581826 +2018-01-02 14:30:00,0.13262018379380636,0.3371079528163313,0.12588706489123902,0.022103363965634393,0.05618465880272189,0.02098117748187317,0.010000000000000002,0.0,-0.4476112445886047,0.4455883815328863,0.12464304684952465,0.0058123203809396055,0.12007474451029941,0.0,1,0.0029166666666666685,0,0,0.33419128614966465,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.4476112445886047,0,On,131.8544974514729,0,84.38687836113525,51.666666666666686,46.10666666666668,0.0,51.66640275722661,0.0,0.0,131.8544974514729,131.8544974392738,51.66640275722661,51.666402757226614,51.66640275722661,9.980991816508038,On,2111.4263274009745,0.0,20.000000000000057,3.5190438790016243,0.0,0.0,0.6,1,0.08631329799827439,2111.4263274009745,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1428.9857215369448,20.07707652479417,3.8722503804512014,13.920675758347432,10.0,6.529479366362011,0,2.0,1364.776889998751,416.0773167208872,-253.45909078885674,1268.0842981344513 +2018-01-02 14:40:00,0.14411962865550387,0.3371079528163313,0.11885809310899025,0.024019938109250644,0.05618465880272189,0.019809682184831708,0.010000000000000002,0.0,-0.43611179972690717,0.4455883815328863,0.12464304684952465,0.005812320380403634,0.11304577272858661,0.0,1,0.0029166666666666685,0,0,0.33419128614966465,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.43611179972690717,0,On,131.8544974393142,0,84.38687836114741,51.666666666666686,46.10666666666668,0.0,51.66640275723877,0.0,0.0,131.8544974393142,131.85449743929283,51.66640275723877,51.66640275723878,51.66640275723877,9.980991816508038,On,1987.8270131988616,0.0,20.000000000000057,3.3130450219981027,0.0,0.0,0.6,1,0.08126066400358453,1987.8270131988616,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1429.0448016463915,20.07707652479417,3.8088389610993056,13.954288489519934,10.0,6.529479366362011,0,2.0,1280.2128803286223,391.8846437581263,-257.42974919061805,1306.88442693335 +2018-01-02 14:50:00,0.15393148446215615,0.3371079528163313,0.11208113785628293,0.025655247410359357,0.05618465880272189,0.01868018964271382,0.010000000000000002,0.0,-0.4262999439202549,0.4455883815328863,0.12464304684952465,0.005812320380402796,0.10626881747588013,0.0,1,0.0029166666666666685,0,0,0.33419128614966465,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.4262999439202549,0,On,131.8544974392952,0,84.3868783611474,51.666666666666686,46.10666666666668,0.0,51.66640275723879,0.0,0.0,131.8544974392952,131.8544974392928,51.66640275723879,51.6664027572388,51.66640275723879,9.980991816508038,On,1868.6592248472034,0.0,20.000000000000057,3.1144320414120057,0.0,0.0,0.6,1,0.07638918698622015,1868.6592248472034,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1429.4610279830727,20.077076524794172,3.746918251693532,13.97994428976896,10.0,6.529479366362011,0,2.0,1198.7791170070616,368.3931448506418,-260.596923309067,1346.3231825121923 +2018-01-02 15:00:00,0.18165554155208202,0.344251603212907,0.10531007852790683,0.03027592359201367,0.057375267202151164,0.017551679754651137,0.010000000000000002,0.0,-0.4181322171665896,0.45511324872832054,0.13467450999035108,0.005812320380402796,0.09949775814750403,0.0,1,0.0029166666666666685,0,0,0.3413349365462403,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.0895783050540951,0,On,0.043038252491311775,0.0,On,0.3891200150271008,0.2918400112703255,On,-0.4181322171665896,0,On,131.8544974392952,0,84.3868783611474,51.666666666666686,46.10666666666668,0.0,51.66640275723879,0.0,0.0,131.8544974392952,131.8544974392928,51.66640275723879,51.6664027572388,51.66640275723879,9.980991816508038,On,1749.5951120012169,0.0,20.000000000000057,2.915991853335362,0.0,0.0,0.5999999999999999,1,0.0715219481346397,1749.5951120012169,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1429.8269466521742,20.077076524794172,3.6865335762747904,13.998540211944597,10.0,6.529479366362011,0,2.0,1136.3525102878011,344.92124118625776,-263.2687932090577,1387.0462341155912 +2018-01-02 15:10:00,0.1831662794804229,0.344251603212907,0.09735394263633758,0.03052771324673715,0.057375267202151164,0.016225657106056262,0.010000000000000002,0.0,-0.4166214792382487,0.45511324872832054,0.13467450999035108,0.005811831653964452,0.09154211098237312,0.0,1,0.0029166666666666685,0,0,0.3413349365462403,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.0895783050540951,0,On,0.043038252491311775,0.0,On,0.3891200150271008,0.2918400112703255,On,-0.4166214792382487,0,On,131.84341051106415,0,84.37976848463484,51.666666666666686,46.10666666666668,0.0,51.66640275723879,0.0,0.0,131.84341051106415,131.84338825724194,51.66640275723879,51.6664027572388,51.66640275723879,9.980991816508038,On,1609.7008907436445,0.0,20.000000000000057,2.682834817906074,0.0,0.0,0.6,1,0.0658031923102276,1609.7008907436445,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1430.219723863146,20.079738041820008,3.627300292898468,14.012538158406633,10.0,6.529479366362011,0,2.0,1038.3695404918412,317.2823614237877,-265.2747647046218,1430.291536775482 +2018-01-02 15:20:00,0.1862718339004349,0.344251603212907,0.09027920145550802,0.03104530565007248,0.057375267202151164,0.015046533575918003,0.010000000000000002,0.0,-0.41351592481823674,0.45511324872832054,0.13467450999035108,0.005811830677061598,0.08446737077844642,0.0,1,0.0029166666666666685,0,0,0.3413349365462403,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.0895783050540951,0,On,0.043038252491311775,0.0,On,0.3891200150271008,0.2918400112703255,On,-0.41351592481823674,0,On,131.84338834968517,0,84.37976851533246,51.666666666666686,46.10666666666668,0.0,51.666402779429504,0.0,0.0,131.84338834968517,131.84338830520696,51.66640277942951,51.66640277942952,51.666402779429504,9.980991816508038,On,1485.2967724004095,0.0,20.000000000000057,2.4754946206673494,0.0,0.0,0.6,1,0.060717658612260667,1485.2967724004095,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1430.624872560329,20.079738041820008,3.5671144498215104,14.02580276428226,10.0,6.529479366362011,0,2.0,954.5057085249364,292.75834156124444,-266.907203022831,1478.2542851318183 +2018-01-02 15:30:00,0.5482826091091584,0.3877638940498983,0.1575950860369442,0.09138043485152639,0.06462731567498305,0.02626584767282403,0.010000000000000002,0.0,-0.16375135646278088,0.5131296365109757,0.18890432906096352,0.039453333146540745,0.11814175289040345,0.0,1,0.0029166666666666685,0,0,0.3848472273832316,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.12620883871933844,0,On,0.060637537896680895,0.0,On,0.44713640280975586,0.3353523021073168,On,-0.16375135646278088,0,On,895.0125034197973,0,84.37256317932653,51.666666666666686,46.10666666666668,0.2631342172594608,51.66640277947386,764.7122158458114,0.0,895.0125034197973,131.8321299676977,51.66640277947386,51.66640277947387,51.66640277947386,9.980991816508038,On,2077.4360872922916,0.0,20.000000000000057,3.4623934788204864,0.0,0.0,0.5999999999999999,1,0.08492380612471943,2077.4360872922916,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1435.9228240621799,20.079738041820004,3.507335409125944,14.04093175515005,7.8,6.529479366362011,0,3.0,1039.5900860102709,411.53940282503106,-470.5053491413826,886.9685166491155 +2018-01-02 15:40:00,0.5986979069965656,0.3877638940498983,0.16917641242622458,0.09978298449942759,0.06462731567498305,0.028196068737704097,0.010000000000000002,0.0,-0.16680524509961345,0.5665988230352156,0.18890432906096352,0.005876259975481015,0.10983096592650361,0.053469186524239945,1,0.0029166666666666685,0,0,0.3848472273832316,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,On,0.053469186524239945,0,0.053469186524239945,On,0.00205795244494419,0.0,On,0.12620883871933844,0,On,0.060637537896680895,0.0,On,0.44713640280975586,0.3353523021073168,On,-0.16680524509961345,0,On,133.30498926076052,0,84.33669159058846,51.666666666666686,46.10666666666668,0.0,51.664875281144646,0.0,0.0,133.30498926076052,131.77608061029446,51.66487528114465,51.66487528114466,51.664875281144646,9.980991816508038,On,1931.29699310922,0.0,20.000000000000057,3.2188283218487004,0.0,0.0,0.5999999999999999,1,0.07894976524925681,1931.29699310922,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1436.3185207625004,20.09507263370561,3.5081302771018423,13.736613170074726,7.8,6.529479366362011,0,3.0,1957.8518190619852,382.04496610132776,-452.511111316995,907.5070463076922 +2018-01-02 15:50:00,0.6089821533069651,0.3877638940498983,0.12045924824566474,0.10149702555116086,0.06462731567498305,0.020076541374277456,0.010000000000000002,0.0,-0.16988829542027398,0.5799661196662755,0.18890432906096352,0.005782227382939846,0.04784053770742497,0.06683648315529993,1,0.0029166666666666685,0,0,0.3848472273832316,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,On,0.06683648315529993,0,0.06683648315529993,On,0.00205795244494419,0.0,On,0.12620883871933844,0,On,0.060637537896680895,0.0,On,0.44713640280975586,0.3353523021073168,On,-0.16988829542027398,0,On,131.17182738719384,0,83.94722923428031,51.666666666666686,46.10666666666668,0.0,51.666399854050255,0.0,0.0,131.17182738719384,131.167545678563,51.66639985405025,51.666399854050255,51.666399854050255,9.980991816508038,On,841.2407725240828,0.0,20.000000000000057,1.4020679542068046,0.0,0.0,0.6,1,0.034389201529256355,841.2407725240828,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1436.889977785632,20.24165363769444,3.494282486629391,13.36293016056498,7.8,6.529479366362011,0,3.0,1310.4182826285,164.15363174401625,-433.995351067275,926.9530029919611 +2018-01-02 16:00:00,0.6693816252285406,0.403691980447487,0.10185773386580985,0.11156360420475676,0.06728199674124782,0.016976288977634972,0.010000000000000002,0.0,-0.17284560776892055,0.6012035681963939,0.23102366480106737,0.005775310365362124,0.02924594034514779,0.06683648315529993,1,0.0029166666666666685,0,0,0.4007753137808203,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.06683648315529993,0,0.06683648315529993,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,-0.17284560776892055,0,On,131.01491245188427,0,83.84934239379123,51.666666666666686,46.10666666666668,0.0,51.66640412361663,0.0,0.0,131.01491245188427,131.0145974902988,51.66640412361662,51.66640412361663,51.66640412361663,9.980991816508038,On,514.2684139465041,0.0,20.000000000000057,0.8571140232441736,0.0,0.0,0.5999999999999999,1,0.021022851845701605,514.2684139465041,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1440.286160294701,20.278298888691648,3.387549015224871,12.938547942135546,7.8,6.529479366362011,0,3.0,1108.2430872390578,99.93737760440561,-405.08054768445544,943.2090388509918 +2018-01-02 16:10:00,0.6828217063825983,0.403691980447487,0.09417500439847334,0.11380361773043304,0.06728199674124782,0.01569583406641222,0.010000000000000002,0.0,-0.15940552661486287,0.6012035681963939,0.23102366480106737,0.005773677381996668,0.021564843861176745,0.06683648315529993,1,0.0029166666666666685,0,0,0.4007753137808203,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.06683648315529993,0,0.06683648315529993,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,-0.15940552661486287,0,On,130.97786765963488,0,83.82578771383761,51.666666666666686,46.10666666666668,0.0,51.66640443768503,0.0,0.0,130.97786765963488,130.97779330287128,51.66640443768503,51.66640443768503,51.66640443768503,9.980991816508038,On,379.20196507996155,0.0,20.000000000000057,0.6320032751332693,0.0,0.0,0.6,1,0.015501451217465224,379.20196507996155,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1441.7766728196789,20.28711652958186,3.2678284584365938,12.529022342361621,7.8,6.529479366362011,0,3.0,1014.4694593466297,73.89121430552468,-373.3285379371373,1009.5163577794124 +2018-01-02 16:20:00,0.6908949460398652,0.403691980447487,0.07797056629481444,0.11514915767331087,0.06728199674124782,0.012995094382469072,0.010000000000000002,0.0,-0.13796499032653606,0.5878362715653339,0.23102366480106737,0.0057736741178676275,0.018727705652706865,0.053469186524239945,1,0.0029166666666666685,0,0,0.4007753137808203,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.053469186524239945,0,0.053469186524239945,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,-0.13796499032653606,0,On,130.97779361173903,0,83.82578781639052,51.666666666666686,46.10666666666668,0.0,51.666404511830926,0.0,0.0,130.97779361173903,130.97779346311017,51.666404511830926,51.66640451183093,51.666404511830926,9.980991816508038,On,329.31297025203827,0.0,20.000000000000057,0.5488549504200638,0.0,0.0,0.6,1,0.013462031882044975,329.31297025203827,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1442.7537177393842,20.28711652958186,3.153172879714622,12.165312322757194,7.8,6.529479366362011,0,3.0,722.8870352972474,64.7718535314521,-343.5836009464334,1029.360103320703 +2018-01-02 16:30:00,0.7501922313387386,0.403691980447487,0.06573598745002263,0.12503203855645642,0.06728199674124782,0.010955997908337104,0.010000000000000002,0.0,-0.02519851850342268,0.534367085041094,0.23102366480106737,0.005780403169557472,0.05995558428046516,0.0,1,0.0029166666666666685,0,0,0.4007753137808203,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,-0.02519851850342268,0,On,131.1304444758929,0,83.92368056228932,51.666666666666686,46.10666666666668,0.0,51.66640451197914,0.0,0.0,131.1304444758929,131.13075087857706,51.66640451197914,51.66640451197914,51.66640451197914,9.980991816508038,On,1054.2749821435075,0.0,20.000000000000057,1.7571249702391794,0.0,0.0,0.5999999999999999,1,0.043097857370136335,1054.2749821435075,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1444.7749677847141,20.25047127858465,3.0502670563111067,11.856556156662213,6.7,6.529479366362011,0,3.0,-62.274759734905956,210.44518667408883,-380.2528804008356,334.59421139011135 +2018-01-02 16:40:00,0.7501922313387386,0.403691980447487,0.1291875647759374,0.12503203855645642,0.06728199674124782,0.021531260795989566,0.010000000000000002,0.0,-0.02519851850342268,0.534367085041094,0.23102366480106737,0.005807332852945979,0.12338023192299143,0.0,1,0.0029166666666666685,0,0,0.4007753137808203,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,-0.02519851850342268,0,On,131.7413536544996,0,84.31525112248276,51.666666666666686,46.10666666666668,0.0,51.66640420644536,0.0,0.0,131.7413536544996,131.74257987887933,51.66640420644536,51.666404206445364,51.66640420644536,9.980991816508038,On,2169.550899529061,0.0,20.000000000000057,3.6159181658817685,0.0,0.0,0.6,1,0.0886893806728185,2169.550899529061,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1444.784347317271,20.103890274595823,3.0229430567664095,11.478542867552223,6.7,6.529479366362011,0,3.0,863.5324593210435,433.425428128515,-357.73005959407124,323.33332382909276 +2018-01-02 16:50:00,0.7753907498421613,0.403691980447487,0.13607475030764454,0.1292317916403602,0.06728199674124782,0.02267912505127409,0.010000000000000002,0.0,0.0,0.534367085041094,0.23102366480106737,0.005807386682007066,0.13026736362563748,0.0,1,0.0029166666666666685,0,0,0.4007753137808203,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,Off,-0.0,0,On,131.74257478536174,0,84.31524943131241,51.666666666666686,46.10666666666668,0.0,51.666402983698354,0.0,0.0,131.74257478536174,131.74257723642563,51.666402983698354,51.66640298369836,51.666402983698354,9.980991816508038,On,2290.6560599568434,0.0,20.000000000000057,3.8177600999280723,0.0,0.0,0.6,1,0.09364005579961722,2290.6560599568434,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1441.4692876718384,20.103890274595823,3.091060879542188,11.04855555603648,6.7,6.529479366362011,0,3.0,933.7898649212229,456.66355823317315,-335.0370555560857,222.38367747704808 +2018-01-02 17:00:00,0.8902041516505932,0.43313376664383935,0.17520128891264264,0.1483673586084322,0.07218896110730655,0.029200214818773773,0.010000000000000002,0.0,0.0,0.5736227999695638,0.3065813516810294,0.03944888926103576,0.13575239965160688,0.0,1,0.0029166666666666685,0,0,0.43021709997717267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,Off,-0.0,0,On,894.9116923406435,0,84.30804409186501,51.666666666666686,46.10666666666668,0.26313421598574604,51.666402981254244,764.7122158458114,0.0,894.9116923406435,131.73131889353908,51.666402981254244,51.66640298125425,51.666402981254244,9.980991816508038,On,2387.1063961137625,0.0,20.000000000000057,3.9785106601896043,0.0,0.0,0.6,1,0.09758286284843969,2387.1063961137625,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1441.6569304466555,20.103890274595823,3.1559967756654457,10.583139332404437,6.7,6.529479366362011,0,3.0,1118.0596883517392,475.3462329597222,-307.2522021027754,221.7504313924473 +2018-01-02 17:10:00,0.9436733381748331,0.43313376664383935,0.22945767701674855,0.1572788896958055,0.07218896110730655,0.038242946169458086,0.010000000000000002,0.0,0.0,0.6270919864938037,0.3065813516810294,0.04100838371847134,0.13498010677403727,0.053469186524239945,1,0.0029166666666666685,0,0,0.43021709997717267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,On,0.053469186524239945,0,0.053469186524239945,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,Off,-0.0,0,On,930.2893633028013,0,84.26300694927566,51.666666666666686,46.10666666666668,0.27483914109083374,51.66487548292005,798.6994254389585,0.0,930.2893633028013,131.66094835824322,51.66487548292005,51.66487548292005,51.66487548292005,9.980991816508038,On,2373.526192209811,0.0,20.000000000000057,3.955876987016352,0.0,0.0,0.6,1,0.09702771575605598,2373.526192209811,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1441.8758741135807,20.11983877817695,3.2178366650506285,10.11695425467837,6.7,6.529479366362011,0,3.0,2130.6004531921444,472.12521688702174,-277.526143706897,220.76601388935984 +2018-01-02 17:20:00,0.9570406348058931,0.43313376664383935,0.17779360222792798,0.15950677246764883,0.07218896110730655,0.029632267037987995,0.010000000000000002,0.0,0.0,0.6404592831248637,0.3065813516810294,0.029272357933168885,0.08168476113945916,0.06683648315529993,1,0.0029166666666666685,0,0,0.43021709997717267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,On,0.06683648315529993,0,0.06683648315529993,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,Off,-0.0,0,On,664.0535606321258,0,83.87384655529284,51.666666666666686,46.10666666666668,0.1832264053103565,51.66480467380026,532.4662836259723,0.0,664.0535606321258,131.05288524264506,51.664804673800255,51.66480467380026,51.66480467380026,9.980991816508038,On,1436.3666224792205,0.0,20.000000000000057,2.393944370798701,0.0,0.0,0.6,1,0.05871743603454636,1436.3666224792205,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1442.3404759942641,20.26641978216578,3.268692699593937,9.678028074965022,6.7,6.529479366362011,0,3.0,1591.3634541552653,284.3358698068019,-248.43010704955663,219.45459353797452 +2018-01-02 17:30:00,0.9570406348058931,0.43313376664383935,0.18596408869557035,0.15950677246764883,0.07218896110730655,0.03099401478259506,0.010000000000000002,0.0,0.0,0.6404592831248637,0.3065813516810294,0.005817716458063884,0.11330988908220653,0.06683648315529993,1,0.0029166666666666685,0,0,0.43021709997717267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,On,0.06683648315529993,0,0.06683648315529993,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,Off,-0.0,0,On,131.9769093267309,0,83.78170787603125,51.666666666666686,46.10666666666668,0.0,51.66533755011264,0.0,0.0,131.9769093267309,130.90891855629883,51.66533755011263,51.66533755011264,51.66533755011264,9.980991816508038,On,1992.471305591942,0.0,20.000000000000057,3.320785509319903,0.0,0.0,0.6,1,0.08145051869475366,1992.471305591942,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1445.88336658076,20.303065033162984,3.231747778756703,9.281413905645916,5.0,6.529479366362011,0,3.0,1465.1498794791646,396.21083900027975,-413.7518084210306,0.0 +2018-01-02 17:40:00,0.9570406348058931,0.43313376664383935,0.1923858796831282,0.15950677246764883,0.07218896110730655,0.03206431328052137,0.010000000000000002,0.0,0.0,0.6404592831248637,0.3065813516810294,0.005770833570283549,0.11977856295754474,0.06683648315529993,1,0.0029166666666666685,0,0,0.43021709997717267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,On,0.06683648315529993,0,0.06683648315529993,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,Off,-0.0,0,On,130.91335480767484,0,83.78318081793195,51.666666666666686,46.10666666666668,0.0,51.66640251222894,0.0,0.0,130.91335480767484,130.91122002801868,51.66640251222894,51.66640251222894,51.66640251222894,9.980991816508038,On,2106.2181919955888,0.0,20.000000000000057,3.5103636533259817,0.0,0.0,0.5999999999999999,1,0.08610039388818225,2106.2181919955888,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1447.2602973778196,20.303065033162984,3.248074795821801,8.656622675155779,5.0,6.529479366362011,0,3.0,1549.6465219089373,418.72897413865974,-358.1610416086344,0.0 +2018-01-02 17:50:00,0.9570406348058931,0.43313376664383935,0.29296422021952284,0.15950677246764883,0.07218896110730655,0.04882737003658714,0.010000000000000002,0.0,0.0,0.6404592831248637,0.3065813516810294,0.0997533499361893,0.12637438712803364,0.06683648315529993,1,0.0029166666666666685,0,0,0.43021709997717267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,On,0.06683648315529993,0,0.06683648315529993,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,Off,-0.0,0,On,2262.939233024674,0,83.76305456934293,51.666666666666686,46.10666666666668,0.7351050820571241,51.666404640954696,2136.3388887121087,0.0,2262.939233024674,130.87977276459833,51.66640464095469,51.666404640954696,51.666404640954696,9.980991816508038,On,2222.200923095911,0.0,20.000000000000057,3.703668205159852,0.0,0.0,0.5999999999999999,1,0.09084166849587294,2222.200923095911,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1448.0153687888285,20.303065033162984,3.2701325166698245,8.13043442614323,5.0,6.529479366362011,0,3.0,1636.0495723632848,441.7421184958691,-315.4338982161907,0.0 +2018-01-02 18:00:00,1.03806288170951,0.44170140649234,0.2248679612003281,0.17301048028491833,0.07361690108205667,0.037477993533388015,0.010000000000000002,0.0,0.0,0.6518828029228646,0.3761800787866455,0.029489851118061926,0.12854162692696625,0.06683648315529993,1,0.0029166666666666685,0,0,0.43878473982567334,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,On,0.06683648315529993,0,0.06683648315529993,On,0.008403305816855444,0.0,On,0.24842161922065034,0,On,0.11935515374913971,0.0,On,0.5045667664733943,0.37842507485504556,Off,-0.0,0,On,668.9874687296964,0,83.772241775644,51.666666666666686,46.10666666666668,0.18407356282954512,51.6621373482898,534.8939414540544,0.0,668.9874687296964,130.89412777444375,51.6621373482898,51.662137348289804,51.6621373482898,9.980991816508038,On,2260.310245650955,0.0,20.000000000000057,3.767183742751592,0.0,0.0,0.6,1,0.09239954492827247,2260.310245650955,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1448.7410250058124,20.303065033162984,3.2976944623671485,7.6690585641488305,5.0,6.529479366362011,0,4.0,1806.4122158787845,449.1196445865258,-278.3436551479817,0.0 +2018-01-02 18:10:00,1.03806288170951,0.44170140649234,0.20370756314850685,0.17301048028491833,0.07361690108205667,0.03395126052475114,0.010000000000000002,0.0,0.0,0.6518828029228646,0.3761800787866455,0.00581605729713505,0.13105502269607186,0.06683648315529993,1,0.0029166666666666685,0,0,0.43878473982567334,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,On,0.06683648315529993,0,0.06683648315529993,On,0.008403305816855444,0.0,On,0.24842161922065034,0,On,0.11935515374913971,0.0,On,0.5045667664733943,0.37842507485504556,Off,-0.0,0,On,131.93927068740538,0,83.75123261919504,51.666666666666686,46.10666666666668,0.0,51.66532767479638,0.0,0.0,131.93927068740538,130.86130096749224,51.66532767479638,51.66532767479639,51.66532767479638,9.980991816508038,On,2304.50646709378,0.0,20.000000000000057,3.840844111822967,0.0,0.0,0.5999999999999999,1,0.09420624856850222,2304.50646709378,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1449.4751994562812,20.314468052964052,3.3239126909054226,7.267974657311244,5.0,6.529479366362011,0,4.0,1831.449172274054,457.7458141328475,-246.0608295455119,0.0 +2018-01-02 18:20:00,1.03806288170951,0.44170140649234,0.2444156012329427,0.17301048028491833,0.07361690108205667,0.04073593353882378,0.010000000000000002,0.0,0.0,0.6518828029228646,0.3761800787866455,0.03941023882272294,0.13816887925491983,0.06683648315529993,1,0.0029166666666666685,0,0,0.43878473982567334,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,On,0.06683648315529993,0,0.06683648315529993,On,0.008403305816855444,0.0,On,0.24842161922065034,0,On,0.11935515374913971,0.0,On,0.5045667664733943,0.37842507485504556,Off,-0.0,0,On,894.0348937841273,0,83.74551398770528,51.666666666666686,46.10666666666668,0.26313421847087265,51.66640258756343,764.7122158458114,0.0,894.0348937841273,130.8523656057895,51.66640258756343,51.66640258756344,51.66640258756343,9.980991816508038,On,2429.5984178529784,0.0,20.000000000000057,4.049330696421631,0.0,0.0,0.6,1,0.09931990026590938,2429.5984178529784,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1450.440411483445,20.314468052964052,3.3500998406223546,6.923449077688117,5.0,6.529479366362011,0,4.0,1924.681994555437,482.54744697750544,-218.38380719880763,0.0 +2018-01-02 18:30:00,1.03806288170951,0.44170140649234,0.2989670258250938,0.17301048028491833,0.07361690108205667,0.04982783763751564,0.010000000000000002,0.0,0.0,0.6518828029228646,0.3761800787866455,0.0058358869084298645,0.22629465576136407,0.06683648315529993,1,0.0029166666666666685,0,0,0.43878473982567334,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,On,0.06683648315529993,0,0.06683648315529993,On,0.008403305816855444,0.0,On,0.24842161922065034,0,On,0.11935515374913971,0.0,On,0.5045667664733943,0.37842507485504556,Off,-0.0,0,On,132.38911227571663,0,83.75060962289996,51.666666666666686,46.10666666666668,0.0,51.66487723784999,0.0,0.0,132.38911227571663,130.86032753578118,51.66487723784999,51.66487723785,51.66487723784999,9.980991816508038,On,3979.2255721493625,0.0,20.000000000000057,6.632042620248938,0.0,0.0,0.6,1,0.16266732973537296,3979.2255721493625,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1444.236774230643,20.314468052964052,3.383628212408266,6.629691138220185,1.1,6.529479366362011,0,4.0,2059.2231133322857,-4113.492630555237,-549.363837976333,0.0 +2018-01-02 18:40:00,1.03806288170951,0.44170140649234,0.30595035070747656,0.17301048028491833,0.07361690108205667,0.05099172511791276,0.010000000000000002,0.0,0.0,0.6518828029228646,0.3761800787866455,0.0057687759881975414,0.23334509156397906,0.06683648315529993,1,0.0029166666666666685,0,0,0.43878473982567334,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,On,0.06683648315529993,0,0.06683648315529993,On,0.008403305816855444,0.0,On,0.24842161922065034,0,On,0.11935515374913971,0.0,On,0.5045667664733943,0.37842507485504556,Off,-0.0,0,On,130.86667784664473,0,83.75271807847561,51.666666666666686,46.10666666666668,0.0,51.666401687196455,0.0,0.0,130.86667784664473,130.86362199761814,51.666401687196455,51.66640168719646,51.666401687196455,9.980991816508038,On,4103.202315418758,0.0,20.000000000000057,6.838670525697931,0.0,0.0,0.5999999999999999,1,0.16773539270673835,4103.202315418758,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1445.0223630602047,20.314468052964052,1.4413357031940155,5.871715975202628,1.1,6.529479366362011,0,4.0,2156.1566125136787,-221.9540053034782,-475.70538314087236,0.0 +2018-01-02 18:50:00,0.8463320795958298,0.38368501870968497,0.4142529130004008,0.14105534659930496,0.06394750311828082,0.06904215216673346,0.010000000000000002,0.0,0.0,0.5745276192126578,0.2618044603831719,0.10651515188860375,0.2409012779564971,0.06683648315529993,1,0.0029166666666666685,0,0,0.3807683520430183,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,On,0.06683648315529993,0,0.06683648315529993,On,0.008403305816855444,0.0,On,0.1711644936721371,0,On,0.08223666089417937,0.0,On,0.42721158276318744,0.3204086870723905,Off,-0.0,0,On,2416.3330482083215,0,83.73114440829436,51.666666666666686,46.10666666666668,0.7880103702875794,51.66640473437957,2290.090551157298,0.0,2416.3330482083215,130.82991313795992,51.666404734379576,51.66640473437958,51.66640473437957,9.980991816508038,On,4236.072311927834,0.0,20.000000000000057,7.060120519879724,0.0,0.0,0.5999999999999999,1,0.1731670042457658,4236.072311927834,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1446.532084691697,20.314468052964052,1.4444330882140302,5.23879061561147,1.1,6.529479366362011,0,4.0,2068.8986033334722,-155.704272732145,-421.84200381785854,0.0 +2018-01-02 19:00:00,0.8328991472111653,0.36896412561150876,0.39930290362529797,0.13881652453519422,0.061494020935251456,0.06655048393754966,0.010000000000000002,0.0,0.0,0.5548997617484228,0.26799938546274255,0.07325787559881729,0.2592085448711807,0.06683648315529993,1,0.0029166666666666685,0,0,0.3660474589448421,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,On,0.06683648315529993,0,0.06683648315529993,On,0.011147242410114364,0.0,On,0.1734955276326526,0,On,0.08335661541997559,0.0,On,0.4108029074307193,0.3081021805730394,Off,-0.0,0,On,1661.880236870745,0,83.80253328448002,51.666666666666686,46.10666666666668,0.5263261669743232,51.661830327484346,1529.4244316916229,0.0,1661.880236870745,130.94145825700002,51.661830327484346,51.66183032748435,51.661830327484346,9.980991816508038,On,4557.992175293474,0.0,20.000000000000057,7.596653625489124,0.0,0.0,0.6,1,0.1863268122568959,4557.992175293474,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1447.2270937610092,20.28805887134562,1.4574557218416095,4.67329626362677,1.1,6.529479366362011,0,4.0,2316.0595716533962,-96.73871577018315,-374.2079640936021,0.0 +2018-01-02 19:10:00,0.8061645539490454,0.36896412561150876,0.3141577305110964,0.13436075899150757,0.061494020935251456,0.0523596217518494,0.010000000000000002,0.0,0.0,0.5281651684863029,0.26799938546274255,0.00590871326708688,0.2681471273508296,0.040101889893179955,1,0.0029166666666666685,0,0,0.3660474589448421,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,On,0.040101889893179955,0,0.040101889893179955,On,0.011147242410114364,0.0,On,0.1734955276326526,0,On,0.08335661541997559,0.0,On,0.4108029074307193,0.3081021805730394,Off,-0.0,0,On,134.0412034015656,0,83.82368395732419,51.666666666666686,46.10666666666668,0.0,51.66334037995638,0.0,0.0,134.0412034015656,130.97450618331905,51.66334037995638,51.66334037995638,51.66334037995638,9.980991816508038,On,4715.170593237614,0.0,20.000000000000057,7.858617655396024,0.0,0.0,0.6,1,0.1927521312229663,4715.170593237614,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1447.4456974061459,20.28631764096981,1.4859239220347977,4.174562380724094,1.1,6.529479366362011,0,4.0,1917.474192489542,-112.09618062650429,-331.9344728478809,0.0 +2018-01-02 19:20:00,0.7660626640558654,0.36896412561150876,0.34506341338151986,0.12767711067597756,0.061494020935251456,0.057510568896919974,0.010000000000000002,0.0,0.0,0.48806327859312293,0.26799938546274255,0.03942905132306755,0.3056343620584523,0.0,1,0.0029166666666666685,0,0,0.3660474589448421,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.1734955276326526,0,On,0.08335661541997559,0.0,On,0.4108029074307193,0.3081021805730394,Off,-0.0,0,On,894.4616618588672,0,84.01649361251869,51.666666666666686,46.10666666666668,0.2631342450274471,51.66639838050284,764.7122158458116,0.0,894.4616618588672,131.27577126956044,51.66639838050285,51.666398380502855,51.66639838050284,9.980991816508038,On,5374.356124932375,0.0,20.000000000000057,8.957260208220625,0.0,0.0,0.6,1,0.21969907059515675,5374.356124932375,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1448.0738703909506,20.21302713897539,1.4998463057156706,3.7429729026281104,1.1,6.529479366362011,0,4.0,1687.1183684389862,-3.432550930272555,-295.31948034124383,0.0 +2018-01-02 19:30:00,0.7660626640558654,0.36896412561150876,0.3886662609573243,0.12767711067597756,0.061494020935251456,0.06477771015955405,0.010000000000000002,0.0,0.0,0.48806327859312293,0.26799938546274255,0.005874738979579871,0.38279152197774446,0.0,1,0.0029166666666666685,0,0,0.3660474589448421,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.1734955276326526,0,On,0.08335661541997559,0.0,On,0.4108029074307193,0.3081021805730394,Off,-0.0,0,On,133.2704849428587,0,84.31527212213439,51.666666666666686,46.10666666666668,0.0,51.6648763836651,0.0,0.0,133.2704849428587,131.742612690835,51.66487638366511,51.66487638366512,51.6648763836651,9.980991816508038,On,6731.108200195854,0.0,20.000000000000057,11.21851366699309,0.0,0.0,0.6,1,0.2751619321983571,6731.108200195854,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1443.312124311417,20.103091385983774,1.5565335205697015,3.374109919027157,0.0,6.529479366362011,0,4.0,2470.3059330886945,-2406.7627315725435,-359.71937246087623,0.0 +2018-01-02 19:40:00,0.7660626640558654,0.36896412561150876,0.4314267463723195,0.12767711067597756,0.061494020935251456,0.07190445772871991,0.010000000000000002,0.0,0.0,0.48806327859312293,0.26799938546274255,0.038915178484648434,0.39251156788767105,0.0,1,0.0029166666666666685,0,0,0.3660474589448421,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.1734955276326526,0,On,0.08335661541997559,0.0,On,0.4108029074307193,0.3081021805730394,Off,-0.0,0,On,882.8042788477879,0,84.31028835358622,51.666666666666686,46.10666666666668,0.2589575013964214,51.66639992311133,752.5739267054017,0.0,882.8042788477879,131.73482555247847,51.666399923111335,51.66639992311134,51.66639992311133,9.980991816508038,On,6902.028079488245,0.0,20.000000000000057,11.503380132480409,0.0,0.0,0.6,1,0.2821489903228775,6902.028079488245,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1441.4751525024262,20.10309138598377,0.573223090220788,2.9239204593770634,0.0,6.529479366362011,0,4.0,2597.5857162824177,-416.55484051569374,-319.86531144991415,0.0 +2018-01-02 19:50:00,0.7660626640558654,0.36896412561150876,0.4848504819354675,0.12767711067597756,0.061494020935251456,0.08080841365591124,0.010000000000000002,0.0,0.0,0.48806327859312293,0.26799938546274255,0.08312456933919242,0.40172591259627505,0.0,1,0.0029166666666666685,0,0,0.3660474589448421,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.1734955276326526,0,On,0.08335661541997559,0.0,On,0.4108029074307193,0.3081021805730394,Off,-0.0,0,On,1885.709595780662,0,84.29875880661828,51.666666666666686,46.10666666666668,0.6042559163579043,51.664899716151595,1756.0058289792703,0.0,1885.709595780662,131.71681063534106,51.6648997161516,51.66489971615161,51.664899716151595,9.980991816508038,On,7064.055574002927,0.0,20.000000000000057,11.773425956671545,0.0,0.0,0.6,1,0.2887725353817166,7064.055574002927,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1441.1991579836072,20.10309138598377,0.5832572402341109,2.5441801845743535,0.0,6.529479366362011,0,4.0,2718.1780907027173,-380.67491440592653,-288.3104527898346,0.0 +2018-01-02 20:00:00,0.7115844311410067,0.35545042581274516,0.41653647591326237,0.11859740519016777,0.05924173763545752,0.06942274598554372,0.010000000000000002,0.0,0.0,0.47004501219477146,0.23153941894623523,0.0059620808419506835,0.4105743950713117,0.0,1,0.0029166666666666685,0,0,0.3525337591460785,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.14585612495796896,0,On,0.07007715461410616,0.0,On,0.39439423209825125,0.29579567407368834,Off,-0.0,0,On,135.25186528919082,0,84.3125280614644,51.666666666666686,46.10666666666668,0.0,51.66289238099388,0.0,0.0,135.25186528919082,131.73832509603812,51.66289238099388,51.66289238099388,51.66289238099388,9.980991816508038,On,7219.649649439299,0.0,20.000000000000057,12.032749415732164,0.0,0.0,0.6,1,0.2951330877844314,7219.649649439299,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1441.3248349371543,20.103091385983774,0.598014501638244,2.214122995510083,0.0,6.529479366362011,0,4.0,2780.7118294778093,-368.3994239787444,-261.1281655914536,0.0 +2018-01-02 20:10:00,0.7115844311410067,0.35545042581274516,0.4279137283924501,0.11859740519016777,0.05924173763545752,0.07131895473207502,0.010000000000000002,0.0,0.0,0.47004501219477146,0.23153941894623523,0.005809230767166944,0.4221044976252832,0.0,1,0.0029166666666666685,0,0,0.3525337591460785,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.14585612495796896,0,On,0.07007715461410616,0.0,On,0.39439423209825125,0.29579567407368834,Off,-0.0,0,On,131.78440849480606,0,84.33756708676465,51.666666666666686,46.10666666666668,0.0,51.666395957338736,0.0,0.0,131.78440849480606,131.77744857306976,51.666395957338736,51.66639595733874,51.666395957338736,9.980991816508038,On,7422.398047442347,0.0,20.000000000000057,12.370663412403912,0.0,0.0,0.6,1,0.30342126846514267,7422.398047442347,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1441.4457763145656,20.09553222719762,0.6118468806650543,1.9283561028526184,0.0,6.529479366362011,0,4.0,2937.350646291636,-350.41534371910075,-237.58497132371372,0.0 +2018-01-02 20:20:00,0.7115844311410067,0.35545042581274516,0.5711154927988007,0.11859740519016777,0.05924173763545752,0.09518591546646678,0.010000000000000002,0.0,0.0,0.47004501219477146,0.23153941894623523,0.14073092985990546,0.4303845629388952,0.0,1,0.0029166666666666685,0,0,0.3525337591460785,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.14585612495796896,0,On,0.07007715461410616,0.0,On,0.39439423209825125,0.29579567407368834,Off,-0.0,0,On,3192.529801593042,0,84.30867909449182,51.666666666666686,46.10666666666668,1.055321355120796,51.66640289752323,3066.941056143519,0.0,3192.529801593042,131.73231108514346,51.66640289752323,51.666402897523234,51.66640289752323,9.980991816508038,On,7567.996923934318,0.0,20.000000000000057,12.613328206557197,0.0,0.0,0.6,1,0.30937322570455755,7567.996923934318,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1441.4298852558993,20.09553222719762,0.6294196937560927,1.6825598891438613,0.0,6.529479366362011,0,4.0,3045.5697807870456,-353.6928983516518,-217.34885943740417,0.0 +2018-01-02 20:30:00,0.7115844311410067,0.35545042581274516,0.6480283564959081,0.11859740519016777,0.05924173763545752,0.10800472608265134,0.010000000000000002,0.0,0.0,0.47004501219477146,0.23153941894623523,0.16342828973543266,0.4846000667604754,0.0,1,0.0029166666666666685,0,0,0.3525337591460785,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.14585612495796896,0,On,0.07007715461410616,0.0,On,0.39439423209825125,0.29579567407368834,Off,-0.0,0,On,3707.4272579818908,0,84.29540250955527,51.666666666666686,46.10666666666668,1.230925064514758,51.66027675407509,3576.749200040727,0.0,3707.4272579818908,131.71156642118012,51.66027675407509,51.6602767540751,51.66027675407509,9.980991816508038,On,8521.33680060067,0.0,20.000000000000057,14.202228001001117,0.0,0.0,0.5999999999999999,1,0.34834494250115045,8521.33680060067,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1433.9636153836543,20.09553222719762,0.6420304201918455,1.4718700315925526,-1.7,6.529479366362011,0,4.0,3166.8856509226807,-4149.902314959385,-370.0965868096739,0.0 +2018-01-02 20:40:00,0.7115844311410067,0.35545042581274516,0.49838944678437985,0.11859740519016777,0.05924173763545752,0.08306490779739664,0.010000000000000002,0.0,0.0,0.47004501219477146,0.23153941894623523,0.006123985977074261,0.4922654608073056,0.0,1,0.0029166666666666685,0,0,0.3525337591460785,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.14585612495796896,0,On,0.07007715461410616,0.0,On,0.39439423209825125,0.29579567407368834,Off,-0.0,0,On,138.92473925817202,0,84.32767827320907,51.666666666666686,46.10666666666668,0.0,51.659246176462844,0.0,0.0,138.92473925817202,131.76199730188918,51.659246176462844,51.65924617646285,51.659246176462844,9.980991816508038,On,8656.127133625212,0.0,20.000000000000057,14.42687855604202,0.0,0.0,0.6,1,0.3538550557504983,8656.127133625212,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1434.069289729754,20.09553222719762,-0.9761282429768129,1.0481523340785637,-1.7,6.529479366362011,0,4.0,3267.2930243277187,-903.4759142738351,-329.6825841101272,0.0 +2018-01-02 20:50:00,0.7115844311410067,0.35545042581274516,0.5054911702782854,0.11859740519016777,0.05924173763545752,0.08424852837971422,0.010000000000000002,0.0,0.0,0.47004501219477146,0.23153941894623523,0.0058095543952341715,0.4996816158830512,0.0,1,0.0029166666666666685,0,0,0.3525337591460785,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.14585612495796896,0,On,0.07007715461410616,0.0,On,0.39439423209825125,0.29579567407368834,Off,-0.0,0,On,131.7917501094055,0,84.33755691919026,51.666666666666686,46.10666666666668,0.0,51.66638860600763,0.0,0.0,131.7917501094055,131.7774326862348,51.66638860600763,51.66638860600764,51.66638860600763,9.980991816508038,On,8786.534782118477,0.0,20.000000000000057,14.644224636864127,0.0,0.0,0.6,1,0.35918600861377376,8786.534782118477,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1434.0659543727031,20.09553222719762,-0.9720688130685629,0.6939465272390352,-1.7,6.529479366362011,0,4.0,3364.49166696421,-846.729515210948,-299.0055382883491,0.0 +2018-01-02 21:00:00,0.5253704621244262,0.30457768842666577,0.5463700085772879,0.08756174368740435,0.05076294807111096,0.09106166809621465,0.010000000000000002,0.0,0.0,0.4022146956799989,0.1131557664444272,0.03945042835735441,0.5069195802199334,0.0,1,0.0029166666666666685,0,0,0.3016610217599991,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.06426993633992698,0,On,0.030878746211238556,0.0,On,0.3281735066493621,0.24613012998702152,Off,-0.0,0,On,894.9466072727747,0,84.330371329302,51.666666666666686,46.10666666666668,0.2631342166070448,51.666402882828834,764.7122158458113,0.0,894.9466072727747,131.76620520203437,51.66640288282884,51.66640288282885,51.666402882828834,9.980991816508038,On,8913.809077142036,0.0,20.000000000000057,14.856348461903394,0.0,0.0,0.5999999999999999,1,0.3643888726736394,8913.809077142036,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1434.0279620995625,20.09553222719762,-0.9595071466921598,0.3804697580547539,-1.7,6.529479366362011,0,4.0,3277.8274337542125,-828.3451707791905,-271.87139006276044,0.0 +2018-01-02 21:10:00,0.5253704621244262,0.30457768842666577,0.5300696911204897,0.08756174368740435,0.05076294807111096,0.08834494852008162,0.010000000000000002,0.0,0.0,0.4022146956799989,0.1131557664444272,0.00588089590889445,0.5241887952115953,0.0,1,0.0029166666666666685,0,0,0.3016610217599991,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.06426993633992698,0,On,0.030878746211238556,0.0,On,0.3281735066493621,0.24613012998702152,Off,-0.0,0,On,133.41015701311835,0,84.40421870348953,51.666666666666686,46.10666666666668,0.0,51.66487541303711,0.0,0.0,133.41015701311835,131.8815917242024,51.66487541303711,51.664875413037116,51.66487541303711,9.980991816508038,On,9217.475558679416,0.0,20.000000000000057,15.362459264465695,0.0,0.0,0.6,1,0.3768024980854655,9217.475558679416,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1434.026035020475,20.06979454696865,-0.9478363152779785,0.10544111134999423,-1.7,6.529479366362011,0,4.0,3523.798892019383,-781.7003863611735,-247.73261242310716,0.0 +2018-01-02 21:20:00,0.5253704621244262,0.30457768842666577,0.5371253514520434,0.08756174368740435,0.05076294807111096,0.0895208919086739,0.010000000000000002,0.0,0.0,0.4022146956799989,0.1131557664444272,0.005813794622170174,0.5313115568298733,0.0,1,0.0029166666666666685,0,0,0.3016610217599991,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.06426993633992698,0,On,0.030878746211238556,0.0,On,0.3281735066493621,0.24613012998702152,Off,-0.0,0,On,131.88794112350726,0,84.40632685640472,51.666666666666686,46.10666666666668,0.0,51.66639964355488,0.0,0.0,131.88794112350726,131.88488571313238,51.66639964355488,51.66639964355488,51.66639964355488,9.980991816508038,On,9342.724098378314,0.0,20.000000000000057,15.571206830630524,0.0,0.0,0.6,1,0.38192255100447353,9342.724098378314,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1433.5619787309356,20.06979454696865,-0.9215286923333391,-0.13236399544483748,-1.7,6.529479366362011,0,4.0,3617.128955238276,-803.4969101390247,-226.65117431301104,0.0 +2018-01-02 21:30:00,0.5253704621244262,0.30457768842666577,0.5118178359286595,0.08756174368740435,0.05076294807111096,0.08530297265477657,0.010000000000000002,0.0,0.0,0.4022146956799989,0.1131557664444272,0.005813660495110448,0.506004175433549,0.0,1,0.0029166666666666685,0,0,0.3016610217599991,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.06426993633992698,0,On,0.030878746211238556,0.0,On,0.3281735066493621,0.24613012998702152,Off,-0.0,0,On,131.88489840478294,0,84.40633107033702,51.666666666666686,46.10666666666668,0.0,51.666402690300586,0.0,0.0,131.88489840478294,131.8848922974016,51.66640269030059,51.6664026903006,51.666402690300586,9.980991816508038,On,8897.712355270309,0.0,20.000000000000057,14.829520592117182,0.0,0.0,0.6,1,0.36373085248431086,8897.712355270309,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1436.420429858777,20.06979454696865,-0.910578262617866,-0.33605212004351304,-1.1,6.529479366362011,0,4.0,3700.3440980739674,487.761043510965,-130.01471438862166,0.0 +2018-01-02 21:40:00,0.5253704621244262,0.30457768842666577,0.5183095482832926,0.08756174368740435,0.05076294807111096,0.0863849247138821,0.010000000000000002,0.0,0.0,0.4022146956799989,0.1131557664444272,0.005813660227007234,0.5124958880562853,0.0,1,0.0029166666666666685,0,0,0.3016610217599991,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.06426993633992698,0,On,0.030878746211238556,0.0,On,0.3281735066493621,0.24613012998702152,Off,-0.0,0,On,131.88489232276885,0,84.40633107876009,51.666666666666686,46.10666666666668,0.0,51.666402696390655,0.0,0.0,131.88489232276885,131.88489231056263,51.666402696390655,51.66640269639066,51.666402696390655,9.980991816508038,On,9011.864361151871,0.0,20.000000000000057,15.019773935253118,0.0,0.0,0.6,1,0.3683972886146608,9011.864361151871,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1436.4163858400211,20.069794546968648,-0.34870270118514146,-0.3985967426464081,-1.1,6.529479366362011,0,4.0,3785.4218571137535,-604.5304342880738,-126.33938006865533,0.0 +2018-01-02 21:50:00,0.5253704621244262,0.30457768842666577,0.6590230768204894,0.08756174368740435,0.05076294807111096,0.10983717947008156,0.010000000000000002,0.0,0.0,0.4022146956799989,0.1131557664444272,0.1403796701121985,0.5186434067082909,0.0,1,0.0029166666666666685,0,0,0.3016610217599991,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.06426993633992698,0,On,0.030878746211238556,0.0,On,0.3281735066493621,0.24613012998702152,Off,-0.0,0,On,3184.5613527682476,0,84.3775097345194,51.666666666666686,46.10666666666668,1.0525368711353476,51.66640269640283,3058.8488633832458,0.0,3184.5613527682476,131.83985896018658,51.66640269640283,51.666402696402834,51.66640269640283,9.980991816508038,On,9119.963968467044,0.0,20.000000000000057,15.199939947445074,0.0,0.0,0.6,1,0.37281630788073966,9119.963968467044,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1435.8192853800172,20.06979454696865,-0.3363243918878197,-0.45933779246855416,-1.1,6.529479366362011,0,4.0,3865.966209223525,-618.523629171463,-121.7785466488487,0.0 +2018-01-02 22:00:00,0.49533279115822143,0.29161486768553974,0.5305215991548291,0.0825554651930369,0.048602477947589956,0.08842026652580484,0.010000000000000002,0.0,0.0,0.3849309346918309,0.10040185646639052,0.0060826408095780715,0.524438958345251,0.0,1,0.0029166666666666685,0,0,0.28869820101887306,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.057276834458380506,0,On,0.027518882633849905,0.0,On,0.3141089277929609,0.2355816958447206,Off,-0.0,0,On,137.98680983842868,0,84.39788038835596,51.666666666666686,46.10666666666668,0.0,51.66029270308564,0.0,0.0,137.98680983842868,131.87168810680618,51.66029270308564,51.660292703085645,51.66029270308564,9.980991816508038,On,9221.874493931786,0.0,20.000000000000057,15.369790823219645,0.0,0.0,0.5999999999999999,1,0.3769823227870833,9221.874493931786,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1435.6327325394436,20.069794546968648,-0.3275096395436217,-0.5107039853902986,-1.1,6.529479366362011,0,4.0,3912.4510520782374,-619.7863460521689,-117.89175051019858,0.0 +2018-01-02 22:10:00,0.49533279115822143,0.29161486768553974,0.5372480644872342,0.0825554651930369,0.048602477947589956,0.08954134408120569,0.010000000000000002,0.0,0.0,0.3849309346918309,0.10040185646639052,0.0058149540815868,0.5314331104056473,0.0,1,0.0029166666666666685,0,0,0.28869820101887306,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.057276834458380506,0,On,0.027518882633849905,0.0,On,0.3141089277929609,0.2355816958447206,Off,-0.0,0,On,131.91424386125652,0,84.41731515677567,51.666666666666686,46.10666666666668,0.0,51.66639048329222,0.0,0.0,131.91424386125652,131.902054932462,51.666390483292226,51.66639048329223,51.66639048329222,9.980991816508038,On,9344.861528869013,0.0,20.000000000000057,15.574769214781687,0.0,0.0,0.6,1,0.3820099273303723,9344.861528869013,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1435.4875506818773,20.06567643485331,-0.3189324184949679,-0.5547494688157821,-1.1,6.529479366362011,0,4.0,4007.539112739468,-613.8069171253662,-114.72995221400821,0.0 +2018-01-02 22:20:00,0.49533279115822143,0.29161486768553974,0.5759738536206301,0.0825554651930369,0.048602477947589956,0.09599564227010501,0.010000000000000002,0.0,0.0,0.3849309346918309,0.10040185646639052,0.03945592148080936,0.5365179321398208,0.0,1,0.0029166666666666685,0,0,0.28869820101887306,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.057276834458380506,0,On,0.027518882633849905,0.0,On,0.3141089277929609,0.2355816958447206,Off,-0.0,0,On,895.0712206775978,0,84.41012663132824,51.666666666666686,46.10666666666668,0.2631342181546747,51.66640263765513,764.7122158458113,0.0,895.0712206775978,131.89082286145037,51.66640263765513,51.66640263765514,51.66640263765513,9.980991816508038,On,9434.27439019518,0.0,20.000000000000057,15.7237906503253,0.0,0.0,0.6,1,0.3856650484418077,9434.27439019518,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1435.2568201438903,20.06567643485331,-0.3084332629623454,-0.5940829430877436,-1.1,6.529479366362011,0,4.0,4073.7807198543887,-617.3711749957852,-111.9950835939016,0.0 +2018-01-02 22:30:00,0.3933327801975796,0.2604090833478995,0.5055611571352882,0.06555546336626326,0.04340151389131658,0.08426019285588135,0.010000000000000002,0.0,0.0,0.34332322224164386,0.04000955795593573,0.00588166308561247,0.4996794940496757,0.0,1,0.0029166666666666685,0,0,0.2574924166812328,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,133.427560682218,0,84.41521932838839,51.666666666666686,46.10666666666668,0.0,51.66487516362088,0.0,0.0,133.427560682218,131.89878020060686,51.66487516362087,51.66487516362088,51.66487516362088,9.980991816508038,On,8786.49747123458,0.0,20.000000000000057,14.644162452057632,0.0,0.0,0.6,1,0.3591844833768291,8786.49747123458,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1441.9588653700218,20.06567643485331,-0.30077989704293995,-0.6303117380368721,0.6,6.529479366362011,0,4.0,4018.3695398944906,1780.7098944413744,-59.519885539035,0.0 +2018-01-02 22:40:00,0.3933327801975796,0.2604090833478995,0.5152888632186109,0.06555546336626326,0.04340151389131658,0.08588147720310181,0.010000000000000002,0.0,0.0,0.34332322224164386,0.04000955795593573,0.005817131405285319,0.5094717318133256,0.0,1,0.0029166666666666685,0,0,0.2574924166812328,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.96363720216712,0,84.45484723010195,51.666666666666686,46.10666666666668,0.0,51.666399608721086,0.0,0.0,131.96363720216712,131.9606987970343,51.666399608721086,51.66639960872109,51.666399608721086,9.980991816508038,On,8958.686791334003,0.0,20.000000000000057,14.931144652223336,0.0,0.0,0.6000000000000001,1,0.36622343515316513,8958.686791334003,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1441.7938019671928,20.051631372307494,0.7345818621926491,-0.5857622911011237,0.6,6.529479366362011,0,4.0,4157.551664296606,1175.1662695919922,-58.41875771999247,0.0 +2018-01-02 22:50:00,0.3933327801975796,0.2604090833478995,0.5192529458697055,0.06555546336626326,0.04340151389131658,0.0865421576449509,0.010000000000000002,0.0,0.0,0.34332322224164386,0.04000955795593573,0.005817002414546863,0.5134359434551586,0.0,1,0.0029166666666666685,0,0,0.2574924166812328,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.9607110026667,0,84.45485128266274,51.666666666666686,46.10666666666668,0.0,51.66640253879336,0.0,0.0,131.9607110026667,131.96070512916054,51.66640253879336,51.66640253879337,51.66640253879336,9.980991816508038,On,9028.394545967098,0.0,20.000000000000057,15.047324243278497,0.0,0.0,0.6,1,0.3690730283974831,9028.394545967098,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1442.5461060315254,20.051631372307494,1.3632180039148523,-0.520070060333169,0.6,6.529479366362011,0,4.0,4209.258759607164,-85.33203129890398,-56.702777697748,0.0 +2018-01-02 23:00:00,0.38370211796172626,0.25678750344966184,0.5227004904636406,0.06395035299362103,0.042797917241610306,0.08711674841060676,0.010000000000000002,0.0,0.0,0.3384944490439936,0.03520766891773262,0.005817002156710353,0.5168834883069303,0.0,1,0.0029166666666666685,0,0,0.25387083678299516,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.96070515355632,0,84.45485129076353,51.666666666666686,46.10666666666668,0.0,51.66640254465021,0.0,0.0,131.96070515355632,131.960705141818,51.66640254465022,51.666402544650225,51.66640254465021,9.980991816508038,On,9089.017093985945,0.0,20.000000000000057,15.14836182330991,0.0,0.0,0.5999999999999999,1,0.37155122618476105,9089.017093985945,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1442.2936469925576,20.051631372307494,1.3712409229022169,-0.43487347248224895,0.6,6.529479366362011,0,4.0,4244.7018686577285,-114.45782753267872,-56.7876253674787,0.0 +2018-01-02 23:10:00,0.38370211796172626,0.25678750344966184,0.5262213878296441,0.06395035299362103,0.042797917241610306,0.08770356463827401,0.010000000000000002,0.0,0.0,0.3384944490439936,0.03520766891773262,0.005817252823487121,0.520404135006157,0.0,1,0.0029166666666666685,0,0,0.25387083678299516,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.96639161605535,0,84.45849793919777,51.666666666666686,46.10666666666668,0.0,51.66640254466192,0.0,0.0,131.96639161605535,131.9664030299965,51.66640254466192,51.66640254466193,51.66640254466192,9.980991816508038,On,9150.925084384267,0.0,20.000000000000057,15.251541807307113,0.0,0.0,0.6,1,0.3740819717544169,9150.925084384267,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1442.0843239347148,20.050266282937734,1.3755349778681019,-0.34379963794827406,0.6,6.529479366362011,0,4.0,4291.737811587143,-122.89660902085848,-58.10863534986275,0.0 +2018-01-02 23:20:00,0.38370211796172626,0.25678750344966184,0.5288011683809483,0.06395035299362103,0.042797917241610306,0.08813352806349137,0.010000000000000002,0.0,0.0,0.3384944490439936,0.03520766891773262,0.005817253324538545,0.5229839150564097,0.0,1,0.0029166666666666685,0,0,0.25387083678299516,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.96640298258015,0,84.4584979234522,51.666666666666686,46.10666666666668,0.0,51.66640253328035,0.0,0.0,131.96640298258015,131.96640300539406,51.66640253328035,51.666402533280355,51.66640253328035,9.980991816508038,On,9196.288624729257,0.0,20.000000000000057,15.327147707882098,0.0,0.0,0.5999999999999999,1,0.3759363943905472,9196.288624729257,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1441.8164366398214,20.050266282937734,1.3804074793214998,-0.25629276485982344,0.6,6.529479366362011,0,4.0,4325.384840066567,-130.20572687265644,-59.93988919921817,0.0 +2018-01-02 23:30:00,0.38370211796172626,0.25678750344966184,0.5499930549323542,0.06395035299362103,0.042797917241610306,0.09166550915539236,0.010000000000000002,0.0,0.0,0.3384944490439936,0.03520766891773262,0.005817253325540339,0.5441758016068138,0.0,1,0.0029166666666666685,0,0,0.25387083678299516,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.9664030053062,0,84.45849792342334,51.666666666666686,46.10666666666668,0.0,51.6664025332576,0.0,0.0,131.9664030053062,131.96640300534895,51.6664025332576,51.6664025332576,51.6664025332576,9.980991816508038,On,9568.932409001309,0.0,20.000000000000057,15.94822068166885,0.0,0.0,0.5999999999999999,1,0.39116975279934857,9568.932409001309,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1439.3864548750796,20.050266282937734,1.3841739119030922,-0.17706476343186126,0.0,6.529479366362011,0,4.0,4360.732271221783,-1466.2565524306601,-68.07692949696371,0.0 +2018-01-02 23:40:00,0.38370211796172626,0.25678750344966184,0.5519866145909363,0.06395035299362103,0.042797917241610306,0.09199776909848939,0.010000000000000002,0.0,0.0,0.3384944490439936,0.03520766891773262,0.005817253325542224,0.5461693612653942,0.0,1,0.0029166666666666685,0,0,0.25387083678299516,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.96640300534895,0,84.45849792342334,51.666666666666686,46.10666666666668,0.0,51.66640253325756,0.0,0.0,131.96640300534895,131.96640300534895,51.66640253325756,51.66640253325756,51.66640253325756,9.980991816508038,On,9603.987693653697,0.0,20.000000000000057,16.006646156089495,0.0,0.0,0.6,1,0.39260278278071686,9603.987693653697,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1439.1635930538134,20.050266282937734,0.8160902191807584,-0.12133393411910667,0.0,6.529479366362011,0,4.0,4386.569273756042,-332.42865343129165,-72.19982149940992,0.0 +2018-01-02 23:50:00,0.38370211796172626,0.25678750344966184,0.5537626854208727,0.06395035299362103,0.042797917241610306,0.09229378090347878,0.010000000000000002,0.0,0.0,0.3384944490439936,0.03520766891773262,0.005817253325542224,0.5479454320953305,0.0,1,0.0029166666666666685,0,0,0.25387083678299516,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.96640300534895,0,84.45849792342334,51.666666666666686,46.10666666666668,0.0,51.66640253325756,0.0,0.0,131.96640300534895,131.96640300534895,51.66640253325756,51.66640253325756,51.66640253325756,9.980991816508038,On,9635.218596746185,0.0,20.000000000000057,16.05869766124364,0.0,0.0,0.6,1,0.3938794753228125,9635.218596746185,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1437.7393332600404,20.050266282937734,0.8164318691399313,-0.09398228643640838,0.0,6.529479366362011,0,4.0,4409.839458031443,-315.89032297663607,-75.40479413595607,0.0 +2018-01-03 00:00:00,0.3791770942655053,0.2555803101502493,0.5890494754552719,0.0631961823775842,0.04259671835837488,0.09817491257587864,0.010000000000000002,0.0,0.0,0.33688485797811024,0.03229223628739501,0.03945875579697418,0.5495907196582976,0.0,1,0.0029166666666666685,0,0,0.2526636434835826,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,895.1355181197614,0,84.45129258735979,51.666666666666686,46.10666666666668,0.26313421881367205,51.66640253325756,764.7122158458114,0.0,895.1355181197614,131.95514466774966,51.66640253325756,51.66640253325756,51.66640253325756,9.980991816508038,On,9664.14977199675,0.0,20.000000000000057,16.10691628666125,0.0,0.0,0.6,1,0.3950621569624395,9664.14977199675,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1437.4977725647461,20.050266282937734,0.8196228262027707,-0.08974073214852696,0.0,6.529479366362011,0,4.0,4426.947942959321,-312.6073230065956,-76.4754100237548,0.0 +2018-01-03 00:10:00,0.3791770942655053,0.2555803101502493,0.5572857412207434,0.0631961823775842,0.04259671835837488,0.09288095687012389,0.010000000000000002,0.0,0.0,0.33688485797811024,0.03229223628739501,0.005884616248831333,0.5514011249719121,0.0,1,0.0029166666666666685,0,0,0.2526636434835826,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,133.4945542108941,0,84.45809865017802,51.666666666666686,46.10666666666668,0.0,51.66487503492826,0.0,0.0,133.4945542108941,131.96577914090315,51.66487503492825,51.66487503492826,51.66487503492826,9.980991816508038,On,9695.984421806095,0.0,20.000000000000057,16.159974036343492,0.0,0.0,0.6,1,0.39636353015268816,9695.984421806095,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1437.2991136795545,20.049624887611603,0.8223106095155621,-0.09837673892464455,0.0,6.529479366362011,0,4.0,4451.223753943228,-310.43244145340327,-76.66611990199584,0.0 +2018-01-03 00:20:00,0.3791770942655053,0.2555803101502493,0.5586835323765402,0.0631961823775842,0.04259671835837488,0.0931139220627567,0.010000000000000002,0.0,0.0,0.33688485797811024,0.03229223628739501,0.0058175057530924145,0.5528660266234479,0.0,1,0.0029166666666666685,0,0,0.2526636434835826,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97212941160186,0,84.46020709241904,51.666666666666686,46.10666666666668,0.0,51.6663994746322,0.0,0.0,131.97212941160186,131.96907358190475,51.66639947463219,51.6663994746322,51.6663994746322,9.980991816508038,On,9721.74364308714,0.0,20.000000000000057,16.202906071811903,0.0,0.0,0.5999999999999999,1,0.3974165450335678,9721.74364308714,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1437.0933579819393,20.049624887611603,0.8251196924004542,-0.11361976385876121,0.0,6.529479366362011,0,4.0,4470.806022023907,-310.7605741028574,-76.16107401371325,0.0 +2018-01-03 00:30:00,0.3791770942655053,0.2555803101502493,0.5823846524043119,0.0631961823775842,0.04259671835837488,0.09706410873405198,0.010000000000000002,0.0,0.0,0.33688485797811024,0.03229223628739501,0.0058173716076251585,0.5765672807966867,0.0,1,0.0029166666666666685,0,0,0.2526636434835826,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.96908627529635,0,84.4602113069305,51.666666666666686,46.10666666666668,0.0,51.666402521796044,0.0,0.0,131.96908627529635,131.9690801670789,51.66640252179604,51.666402521796044,51.666402521796044,9.920878641202478,On,10138.512816803819,0.0,20.000000000000057,16.8975213613397,0.0,0.0,0.6,1,0.4144537115312416,10138.512816803819,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1434.432268546849,20.049624887611603,0.8273898717935878,-0.13142504089008558,-0.6,6.529479366362011,0,4.0,4495.730481429673,-1631.0767227701106,-114.61990752008816,0.0 +2018-01-03 00:40:00,0.3791770942655053,0.2555803101502493,0.5837602792691835,0.0631961823775842,0.04259671835837488,0.09729337987819725,0.010000000000000002,0.0,0.0,0.33688485797811024,0.03229223628739501,0.005817371339485088,0.5779429079296984,0.0,1,0.0029166666666666685,0,0,0.2526636434835826,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.96908019244614,0,84.46021131535356,51.666666666666686,46.10666666666668,0.0,51.66640252788694,0.0,0.0,131.96908019244614,131.96908018023993,51.66640252788694,51.666402527886945,51.66640252788694,9.920878641202478,On,10162.702211144599,0.0,20.000000000000057,16.93783701857433,0.0,0.0,0.6,1,0.41544255323272,10162.702211144599,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1434.2548016845585,20.0496248876116,0.26317112346540805,-0.20683702338256837,-0.6,6.529479366362011,0,4.0,4514.059604017035,-504.6110867491084,-109.61007893217989,0.0 +2018-01-03 00:50:00,0.3791770942655053,0.2555803101502493,0.5851593063138227,0.0631961823775842,0.04259671835837488,0.09752655105230379,0.010000000000000002,0.0,0.0,0.33688485797811024,0.03229223628739501,0.005817371338949326,0.5793419349748734,0.0,1,0.0029166666666666685,0,0,0.2526636434835826,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.9690801802922,0,84.46021131537029,51.666666666666686,46.10666666666668,0.0,51.66640252789911,0.0,0.0,131.9690801802922,131.96908018026608,51.66640252789911,51.666402527899116,51.66640252789911,9.920878641202478,On,10187.303075780836,0.0,20.000000000000057,16.978838459634726,0.0,0.0,0.6,1,0.41644821548709593,10187.303075780836,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1434.0128789194619,20.049624887611603,0.26262876572182425,-0.2773397502555892,-0.6,6.529479366362011,0,4.0,4532.011376911503,-485.93698424827267,-105.56019167182808,0.0 +2018-01-03 01:00:00,0.37756750319962185,0.2543731168508367,0.5864928568681632,0.06292791719993697,0.04239551947513945,0.0977488094780272,0.010000000000000002,0.0,0.0,0.3352752669122268,0.03229223628739501,0.005817371338948383,0.5806754855292149,0.0,1,0.0029166666666666685,0,0,0.25145645018417,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.96908018027082,0,84.46021131536877,51.666666666666686,46.10666666666668,0.0,51.66640252789914,0.0,0.0,131.96908018027082,131.9690801802637,51.66640252789914,51.66640252789914,51.66640252789914,9.920878641202478,On,10210.752584341855,0.0,20.000000000000057,17.017920973903095,0.0,0.0,0.5999999999999999,1,0.41740681129225093,10210.752584341855,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1433.7796126628864,20.049624887611603,0.26525638185737577,-0.3458805250828037,-0.6,6.529479366362011,0,4.0,4548.346774935286,-481.22110640755,-101.30525854786133,0.0 +2018-01-03 01:10:00,0.37756750319962185,0.2543731168508367,0.5879675439424573,0.06292791719993697,0.04239551947513945,0.09799459065707622,0.010000000000000002,0.0,0.0,0.3352752669122268,0.03229223628739501,0.005817413233453779,0.5821501307090036,0.0,1,0.0029166666666666685,0,0,0.25145645018417,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97003057161075,0,84.46082078671999,51.666666666666686,46.10666666666668,0.0,51.666402527899145,0.0,0.0,131.97003057161075,131.97003247925,51.666402527899145,51.666402527899145,51.666402527899145,9.920878641202478,On,10236.683138421975,0.0,20.000000000000057,17.061138564036625,0.0,0.0,0.6,1,0.4184668301110618,10236.683138421975,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1433.5190103455845,20.049396737604898,0.2674782261616617,-0.4096722906646328,-0.6,6.529479366362011,0,4.0,4567.67455859398,-478.07829403084156,-97.07275995139726,0.0 +2018-01-03 01:20:00,0.37756750319962185,0.2543731168508367,0.5893000456961778,0.06292791719993697,0.04239551947513945,0.09821667428269629,0.010000000000000002,0.0,0.0,0.3352752669122268,0.03229223628739501,0.005817413317195854,0.5834826323789819,0.0,1,0.0029166666666666685,0,0,0.25145645018417,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97003247132866,0,84.4608207840932,51.666666666666686,46.10666666666668,0.0,51.666402525996915,0.0,0.0,131.97003247132866,131.97003247514562,51.666402525996915,51.666402525996915,51.666402525996915,9.920878641202478,On,10260.114203120653,0.0,20.000000000000057,17.10019033853442,0.0,0.0,0.6,1,0.4194246719469374,10260.114203120653,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1433.2976311556076,20.049396737604894,0.26979042431049016,-0.4669174848652582,-0.6,6.529479366362011,0,4.0,4585.593951396435,-476.8848000493899,-93.09010243288539,0.0 +2018-01-03 01:30:00,0.37756750319962185,0.2543731168508367,0.6132611030835109,0.06292791719993697,0.04239551947513945,0.1022101838472518,0.010000000000000002,0.0,0.0,0.3352752669122268,0.03229223628739501,0.005817413317363377,0.6074436897661475,0.0,1,0.0029166666666666685,0,0,0.25145645018417,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.970032475129,0,84.4608207840856,51.666666666666686,46.10666666666668,0.0,51.66640252599311,0.0,0.0,131.970032475129,131.97003247513373,51.66640252599311,51.66640252599311,51.66640252599311,9.920878641202478,On,10681.451825831875,0.0,20.000000000000057,17.802419709719793,0.0,0.0,0.6,1,0.43664859272267365,10681.451825831875,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1433.0536609353096,20.049396737604898,0.2718343064158124,-0.5170987360795242,-0.6,6.529479366362011,0,4.0,4603.237498946752,-396.1301694138074,-92.00162813988362,0.0 +2018-01-03 01:40:00,0.37756750319962185,0.2543731168508367,0.6145430719070042,0.06292791719993697,0.04239551947513945,0.10242384531783402,0.010000000000000002,0.0,0.0,0.3352752669122268,0.03229223628739501,0.005817413317363797,0.6087256585896403,0.0,1,0.0029166666666666685,0,0,0.25145645018417,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.9700324751385,0,84.46082078408561,51.666666666666686,46.10666666666668,0.0,51.66640252599309,0.0,0.0,131.9700324751385,131.97003247513376,51.6664025259931,51.66640252599311,51.66640252599309,9.920878641202478,On,10703.994307482528,0.0,20.000000000000057,17.83999051247088,0.0,0.0,0.6,1,0.4375701100453872,10703.994307482528,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1432.8537528452046,20.049396737604898,0.3080023846297311,-0.5639334088458848,-0.6,6.529479366362011,0,4.0,4620.479056491932,-463.39150733225733,-85.90349312888841,0.0 +2018-01-03 01:50:00,0.37756750319962185,0.2543731168508367,0.6158314340298107,0.06292791719993697,0.04239551947513945,0.10263857233830177,0.010000000000000002,0.0,0.0,0.3352752669122268,0.03229223628739501,0.005817413317363377,0.6100140207124473,0.0,1,0.0029166666666666685,0,0,0.25145645018417,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06277405156945293,0.04708053867708968,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.970032475129,0,84.4608207840856,51.666666666666686,46.10666666666668,0.0,51.66640252599311,0.0,0.0,131.970032475129,131.97003247513373,51.66640252599311,51.66640252599311,51.66640252599311,9.920878641202478,On,10726.649210613195,0.0,20.000000000000057,17.87774868435533,0.0,0.0,0.5999999999999999,1,0.43849622306181735,10726.649210613195,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1432.5644767266679,20.049396737604894,0.3100618848799024,-0.5999986980776182,-0.6,6.529479366362011,0,4.0,4637.17601606831,-463.47827789975054,-60.21648250831764,0.0 +2018-01-03 02:00:00,0.3759579121337384,0.25316592355142414,0.6170272066720796,0.06265965202228974,0.04219432059190402,0.10283786777867993,0.010000000000000002,0.0,0.0,0.33366567584634343,0.03229223628739501,0.005817413317363797,0.6112097933547157,0.0,1,0.0029166666666666685,0,0,0.25024925688475746,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.9700324751385,0,84.46082078408561,51.666666666666686,46.10666666666668,0.0,51.66640252599309,0.0,0.0,131.9700324751385,131.97003247513376,51.6664025259931,51.66640252599311,51.66640252599309,9.920878641202478,On,10747.67599562755,0.0,20.000000000000057,17.912793326045918,0.0,0.0,0.5999999999999999,1,0.43935578000554626,10747.67599562755,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1432.3213449582274,20.049396737604898,0.3120483023176984,-0.5999986954298661,-0.6,6.529479366362011,0,4.0,4651.650783366625,-463.6053664961896,-56.02032094729692,0.0 +2018-01-03 02:10:00,0.3759579121337384,0.25316592355142414,0.618305306226681,0.06265965202228974,0.04219432059190402,0.1030508843711135,0.010000000000000002,0.0,0.0,0.33366567584634343,0.03229223628739501,0.0058174552118691915,0.6124878510148118,0.0,1,0.0029166666666666685,0,0,0.25024925688475746,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.9709828664784,0,84.4614302554353,51.666666666666686,46.10666666666668,0.0,51.66640252599311,0.0,0.0,131.9709828664784,131.97098477411765,51.66640252599311,51.66640252599311,51.66640252599311,9.920878641202478,On,10770.149702338056,0.0,20.000000000000057,17.95024950389676,0.0,0.0,0.6,1,0.440274485867672,10770.149702338056,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1432.0522322952345,20.04916858759819,0.3138413074639601,-0.5999986932075451,-0.6,6.529479366362011,0,4.0,4668.404148741467,-462.98983327473616,-52.7958834383981,0.0 +2018-01-03 02:20:00,0.3759579121337384,0.25316592355142414,0.6193990789394309,0.06265965202228974,0.04219432059190402,0.10323317982323849,0.010000000000000002,0.0,0.0,0.33366567584634343,0.03229223628739501,0.005817455295610847,0.6135816236438201,0.0,1,0.0029166666666666685,0,0,0.25024925688475746,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97098476618683,0,84.46143025280242,51.666666666666686,46.10666666666668,0.0,51.66640252409087,0.0,0.0,131.97098476618683,131.97098477000378,51.66640252409088,51.666402524090884,51.66640252409087,9.920878641202478,On,10789.382891919238,0.0,20.000000000000057,17.982304819865398,0.0,0.0,0.6,1,0.44106072216786124,10789.382891919238,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1431.8239723174977,20.04916858759819,0.31575393680682307,-0.59999869058097,-0.6,6.529479366362011,0,4.0,4683.120621225371,-463.2105665787544,-50.23485190730535,0.0 +2018-01-03 02:30:00,0.3759579121337384,0.25316592355142414,0.6329242651850739,0.06265965202228974,0.04219432059190402,0.10548737753084565,0.010000000000000002,0.0,0.0,0.33366567584634343,0.03229223628739501,0.005817455295778162,0.6271068098892958,0.0,1,0.0029166666666666685,0,0,0.25024925688475746,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97098476998244,0,84.46143025279636,51.666666666666686,46.10666666666668,0.0,51.666402524087076,0.0,0.0,131.97098476998244,131.97098476999432,51.66640252408707,51.666402524087076,51.666402524087076,9.920878641202478,On,11027.213373576014,0.0,20.000000000000057,18.378688955960026,0.0,0.0,0.5999999999999999,1,0.45078302835013895,11027.213373576014,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1429.3572770467106,20.049168587598192,0.31740042571861715,-0.5999986883331245,-1.1,6.529479366362011,0,4.0,4702.352985444174,-1584.793832972357,-133.74830273405678,0.0 +2018-01-03 02:40:00,0.3759579121337384,0.25316592355142414,0.633954332287373,0.06265965202228974,0.04219432059190402,0.10565905538122883,0.010000000000000002,0.0,0.0,0.33366567584634343,0.03229223628739501,0.00581745529577879,0.6281368769915942,0.0,1,0.0029166666666666685,0,0,0.25024925688475746,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97098476999668,0,84.46143025279635,51.666666666666686,46.10666666666668,0.0,51.66640252408706,0.0,0.0,131.97098476999668,131.9709847699943,51.66640252408706,51.66640252408706,51.66640252408706,9.920878641202478,On,11045.326348187391,0.0,20.000000000000057,18.408877246978985,0.0,0.0,0.6,1,0.4515234712227971,11045.326348187391,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1429.1176132922712,20.049168587598192,-0.16219517775421344,-0.7193225091834197,-1.1,6.529479366362011,0,4.0,4716.11729417523,-627.4825750056593,-121.18744937963942,0.0 +2018-01-03 02:50:00,0.3759579121337384,0.25316592355142414,0.6350007784246632,0.06265965202228974,0.04219432059190402,0.10583346307077719,0.010000000000000002,0.0,0.0,0.33366567584634343,0.03229223628739501,0.00581745529577879,0.6291833231288844,0.0,1,0.0029166666666666685,0,0,0.25024925688475746,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97098476999668,0,84.46143025279635,51.666666666666686,46.10666666666668,0.0,51.66640252408706,0.0,0.0,131.97098476999668,131.9709847699943,51.66640252408706,51.66640252408706,51.66640252408706,9.920878641202478,On,11063.727336117805,0.0,20.000000000000057,18.439545560196343,0.0,0.0,0.5999999999999999,1,0.45227568783300465,11063.727336117805,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1429.3130010589543,20.049168587598192,-0.16286441519455597,-0.8089753738129675,-1.1,6.529479366362011,0,4.0,4729.600954796248,-611.3790007603129,-112.47433685180451,0.0 +2018-01-03 03:00:00,0.374348321067855,0.2519587302520116,0.6360026947133691,0.062391386844642495,0.0419931217086686,0.10600044911889485,0.010000000000000002,0.0,0.0,0.33205608478046,0.03229223628739501,0.00581745529577879,0.6301852394175903,0.0,1,0.0029166666666666685,0,0,0.24904206358534492,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97098476999668,0,84.46143025279635,51.666666666666686,46.10666666666668,0.0,51.66640252408706,0.0,0.0,131.97098476999668,131.9709847699943,51.66640252408706,51.66640252408706,51.66640252408706,9.920878641202478,On,11081.345299316086,0.0,20.000000000000057,18.468908832193478,0.0,0.0,0.6,1,0.45299589506350163,11081.345299316086,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1429.0812223106566,20.04916858759819,-0.16085298979570012,-0.8825845989675117,-1.1,6.529479366362011,0,4.0,4741.510036151381,-607.0488815414874,-105.33643997856608,0.0 +2018-01-03 03:10:00,0.374348321067855,0.2519587302520116,0.6371215055447234,0.062391386844642495,0.0419931217086686,0.10618691759078722,0.010000000000000002,0.0,0.0,0.33205608478046,0.03229223628739501,0.00581749719028471,0.6313040083544387,0.0,1,0.0029166666666666685,0,0,0.24904206358534492,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97193516134848,0,84.46203972414911,51.666666666666686,46.10666666666668,0.0,51.66640252408706,0.0,0.0,131.97193516134848,131.97193706898298,51.66640252408706,51.66640252408706,51.66640252408706,9.920878641202478,On,11101.01803064001,0.0,20.000000000000057,18.501696717733353,0.0,0.0,0.6,1,0.45380009945328587,11101.01803064001,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1428.8581927135576,20.048940437591483,-0.15917223550891946,-0.9439567278752933,-1.1,6.529479366362011,0,4.0,4756.485245377377,-604.0313710014211,-99.28835751717983,0.0 +2018-01-03 03:20:00,0.374348321067855,0.2519587302520116,0.638164999269208,0.062391386844642495,0.0419931217086686,0.10636083321153467,0.010000000000000002,0.0,0.0,0.33205608478046,0.03229223628739501,0.0058174972740266786,0.6323475019951813,0.0,1,0.0029166666666666685,0,0,0.24904206358534492,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.971937061064,0,84.46203972152078,51.666666666666686,46.10666666666668,0.0,51.66640252218483,0.0,0.0,131.971937061064,131.97193706487622,51.66640252218483,51.66640252218484,51.66640252218483,9.920878641202478,On,11119.367101083799,0.0,20.000000000000057,18.532278501806335,0.0,0.0,0.5999999999999999,1,0.45455019372115246,11119.367101083799,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1428.6387332330817,20.048940437591483,-0.1574030862912021,-0.99504542707506,-1.1,6.529479366362011,0,4.0,4770.075358857859,-602.570047605609,-94.16512849264414,0.0 +2018-01-03 03:30:00,0.374348321067855,0.2519587302520116,0.6645104288392452,0.062391386844642495,0.0419931217086686,0.11075173813987418,0.010000000000000002,0.0,0.0,0.33205608478046,0.03229223628739501,0.005817497274193785,0.6586929315650514,0.0,1,0.0029166666666666685,0,0,0.24904206358534492,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97193706485487,0,84.46203972151015,51.666666666666686,46.10666666666668,0.0,51.66640252218103,0.0,0.0,131.97193706485487,131.97193706485962,51.66640252218103,51.66640252218104,51.66640252218103,9.920878641202478,On,11582.63216008828,0.0,20.000000000000057,19.30438693348047,0.0,0.0,0.5999999999999999,1,0.4734880721453843,11582.63216008828,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.5487770342968,20.048940437591483,-0.15580744258897958,-1.0374493004746628,-1.7,6.529479366362011,0,4.0,4789.825217972295,-1910.977532734771,-156.8975176165181,0.0 +2018-01-03 03:40:00,0.374348321067855,0.2519587302520116,0.6655474857282234,0.062391386844642495,0.0419931217086686,0.1109245809547039,0.010000000000000002,0.0,0.0,0.33205608478046,0.03229223628739501,0.005817497274194099,0.6597299884540293,0.0,1,0.0029166666666666685,0,0,0.24904206358534492,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.971937064862,0,84.46203972151169,51.666666666666686,46.10666666666668,0.0,51.66640252218102,0.0,0.0,131.971937064862,131.971937064862,51.66640252218102,51.66640252218103,51.66640252218102,9.920878641202478,On,11600.868044972573,0.0,20.000000000000057,19.33478007495429,0.0,0.0,0.6,1,0.47423353948462016,11600.868044972573,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.3515216926073,20.048940437591483,-0.7160515184246283,-1.167530090397733,-1.7,6.529479366362011,0,4.0,4803.661679500592,-792.3223572863394,-142.27390851738087,0.0 +2018-01-03 03:50:00,0.374348321067855,0.2519587302520116,0.6666317829484842,0.062391386844642495,0.0419931217086686,0.11110529715808071,0.010000000000000002,0.0,0.0,0.33205608478046,0.03229223628739501,0.005817497274194099,0.6608142856742901,0.0,1,0.0029166666666666685,0,0,0.24904206358534492,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.05955486943768611,0.04466615207826457,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.971937064862,0,84.46203972151169,51.666666666666686,46.10666666666668,0.0,51.66640252218102,0.0,0.0,131.971937064862,131.971937064862,51.66640252218102,51.66640252218103,51.66640252218102,9.920878641202478,On,11619.934616439565,0.0,20.000000000000057,19.366557694065943,0.0,0.0,0.6,1,0.47501296457915404,11619.934616439565,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.903564774675,20.048940437591487,-0.7170770109671333,-1.269838246963507,-1.7,6.529479366362011,0,4.0,4817.6579399910715,-772.7008250333224,-131.63005700491522,0.0 +2018-01-03 04:00:00,0.3727387300019716,0.25075153695259905,0.6677015470993813,0.06212312166699527,0.041791922825433175,0.11128359118323022,0.010000000000000002,0.0,0.0,0.3304464937145766,0.03229223628739501,0.005817497274194099,0.6618840498251872,0.0,1,0.0029166666666666685,0,0,0.24783487028593237,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.971937064862,0,84.46203972151169,51.666666666666686,46.10666666666668,0.0,51.66640252218102,0.0,0.0,131.971937064862,131.971937064862,51.66640252218102,51.66640252218103,51.66640252218102,9.920878641202478,On,11638.74563453938,0.0,20.000000000000057,19.397909390898967,0.0,0.0,0.6,1,0.4757819428711406,11638.74563453938,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.6703314492634,20.048940437591483,-0.7149363378620506,-1.3566831704079985,-1.7,6.529479366362011,0,4.0,4830.4946190464825,-766.8255627823728,-122.53549406048921,0.0 +2018-01-03 04:10:00,0.3727387300019716,0.25075153695259905,0.6689308640802579,0.06212312166699527,0.041791922825433175,0.11148847734670965,0.010000000000000002,0.0,0.0,0.3304464937145766,0.03229223628739501,0.0058175391686998085,0.6631133249115582,0.0,1,0.0029166666666666685,0,0,0.24783487028593237,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97288745620904,0,84.46264919285987,51.666666666666686,46.10666666666668,0.0,51.66640252218102,0.0,0.0,131.97288745620904,131.97288936384354,51.66640252218102,51.66640252218103,51.66640252218102,9.920878641202478,On,11660.361535464817,0.0,20.000000000000057,19.43393589244136,0.0,0.0,0.6,1,0.4766655823682265,11660.361535464817,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.411430888777,20.048712287584777,-0.7131209530735523,-1.4303616165143964,-1.7,6.529479366362011,0,4.0,4846.710757176433,-762.6260441994432,-114.64438719520764,0.0 +2018-01-03 04:20:00,0.3727387300019716,0.25075153695259905,0.670053852898674,0.06212312166699527,0.041791922825433175,0.111675642149779,0.010000000000000002,0.0,0.0,0.3304464937145766,0.03229223628739501,0.0058175392524414645,0.6642363136462326,0.0,1,0.0029166666666666685,0,0,0.24783487028593237,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97288935591746,0,84.46264919023002,51.666666666666686,46.10666666666668,0.0,51.6664025202788,0.0,0.0,131.97288935591746,131.9728893597344,51.6664025202788,51.66640252027881,51.6664025202788,9.920878641202478,On,11680.108468838993,0.0,20.000000000000057,19.46684744806499,0.0,0.0,0.6,1,0.47747282007420666,11680.108468838993,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.1577987614523,20.048712287584777,-0.7111857262972342,-1.4921134965544183,-1.7,6.529479366362011,0,4.0,4861.850588174554,-760.3005251133691,-107.91200419038286,0.0 +2018-01-03 04:30:00,0.3727387300019716,0.25075153695259905,0.6838070010498728,0.06212312166699527,0.041791922825433175,0.11396783350831213,0.010000000000000002,0.0,0.0,0.3304464937145766,0.03229223628739501,0.005817539252608988,0.6779894617972638,0.0,1,0.0029166666666666685,0,0,0.24783487028593237,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.97288935971778,0,84.46264919022698,51.666666666666686,46.10666666666668,0.0,51.666402520275,0.0,0.0,131.97288935971778,131.97288935972966,51.66640252027499,51.666402520275,51.666402520275,9.920878641202478,On,11921.947493432901,0.0,20.000000000000057,19.869912489054837,0.0,0.0,0.5999999999999999,1,0.4873589920549645,11921.947493432901,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.9193520472447,20.048712287584777,-0.7094529818796256,-1.5434289370564285,-1.7,6.529479366362011,0,4.0,4877.003157450828,-713.7901233836756,-103.8200276608997,0.0 +2018-01-03 04:40:00,0.3727387300019716,0.25075153695259905,0.7526920037016144,0.06212312166699527,0.041791922825433175,0.12544866728360238,0.010000000000000002,0.0,0.0,0.3304464937145766,0.03229223628739501,0.07358952513051693,0.6791024785710974,0.0,1,0.0029166666666666685,0,0,0.24783487028593237,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,1669.4038211651823,0,84.44813378817373,51.666666666666686,46.10666666666668,0.5293297776730349,51.666402520274985,1540.539562315204,0.0,1669.4038211651823,131.95020904402145,51.666402520274985,51.666402520274985,51.666402520274985,9.920878641202478,On,11941.519077188465,0.0,20.000000000000057,19.902531795314108,0.0,0.0,0.6,1,0.4881590616188747,11941.519077188465,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.6908743111978,20.048712287584777,-0.6886988912151104,-1.5880518157888626,-1.7,6.529479366362011,0,4.0,4892.002939793265,-749.903537557565,-98.35181750722332,0.0 +2018-01-03 04:50:00,0.3727387300019716,0.25075153695259905,0.8210152688327366,0.06212312166699527,0.041791922825433175,0.13683587813878942,0.010000000000000002,0.0,0.0,0.3304464937145766,0.03229223628739501,0.14078358938653188,0.6802316794462047,0.0,1,0.0029166666666666685,0,0,0.24783487028593237,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.007888817705619396,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,3193.7244011615944,0,84.4295151268135,51.666666666666686,46.10666666666668,1.0531652952035089,51.66332532135114,3064.8629187113006,0.0,3193.7244011615944,131.92111738564608,51.66332532135114,51.66332532135114,51.66332532135114,9.920878641202478,On,11961.375246496584,0.0,20.000000000000057,19.93562541082764,0.0,0.0,0.6,1,0.48897076479617924,11961.375246496584,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.0713871567214,20.048712287584777,-0.6869512471959214,-1.6239189070916829,-1.7,6.529479366362011,0,4.0,4906.67601588158,-748.6288447027246,-93.94024747572918,0.0 +2018-01-03 05:00:00,0.40657236453167506,0.26789274243383804,0.6873766094046982,0.06776206075527917,0.04464879040563967,0.11456276823411637,0.010000000000000002,0.0,0.0,0.35330143435622857,0.04327093017544647,0.006087319466019824,0.6812892899386784,0.0,1,0.0029166666666666685,0,0,0.26497607576717136,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.024942063377515696,0,On,0.011983513426019521,0.0,On,0.2953561559844259,0.22151711698831936,Off,-0.0,0,On,138.09294677745538,0,84.45417337744098,51.666666666666686,46.10666666666668,0.0,51.66027436306003,0.0,0.0,138.09294677745538,131.95964590225154,51.66027436306003,51.66027436306004,51.66027436306003,9.920878641202478,On,11979.972551425706,0.0,20.000000000000057,19.966620919042846,0.0,0.0,0.5999999999999999,1,0.4897310066769784,11979.972551425706,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.8050287488845,20.048712287584774,-0.6852247706415959,-1.6530884207217442,-1.7,6.529479366362011,0,4.0,4953.160470393494,-747.5528414653295,-90.33271714075222,0.0 +2018-01-03 05:10:00,0.40657236453167506,0.26789274243383804,0.6863384517516962,0.06776206075527917,0.04464879040563967,0.11438974195861602,0.010000000000000002,0.0,0.0,0.35330143435622857,0.04327093017544647,0.005817239526991142,0.6805212122247051,0.0,1,0.0029166666666666685,0,0,0.26497607576717136,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.024942063377515696,0,On,0.011983513426019521,0.0,On,0.2953561559844259,0.22151711698831936,Off,-0.0,0,On,131.9660899804468,0,84.45042693020598,51.666666666666686,46.10666666666668,0.0,51.666390270857,0.0,0.0,131.9660899804468,131.95379207844684,51.666390270857,51.66639027085701,51.666390270857,9.920878641202478,On,11966.466468082477,0.0,20.000000000000057,19.94411078013746,0.0,0.0,0.6,1,0.4891788895695685,11966.466468082477,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.549469037804,20.053281236344798,-0.6836372513790379,-1.6770459972686347,-1.7,6.529479366362011,0,4.0,4939.720974348352,-752.632397012218,-87.35271696725032,0.0 +2018-01-03 05:20:00,0.40657236453167506,0.26789274243383804,0.6873129467563617,0.06776206075527917,0.04464879040563967,0.11455215779272694,0.010000000000000002,0.0,0.0,0.35330143435622857,0.04327093017544647,0.005816699671052937,0.6814962470853088,0.0,1,0.0029166666666666685,0,0,0.26497607576717136,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.024942063377515696,0,On,0.011983513426019521,0.0,On,0.2953561559844259,0.22151711698831936,Off,-0.0,0,On,131.95384316183345,0,84.45044389111939,51.666666666666686,46.10666666666668,0.0,51.66640253388408,0.0,0.0,131.95384316183345,131.95381857987405,51.66640253388408,51.66640253388409,51.66640253388408,9.920878641202478,On,11983.611741080627,0.0,20.000000000000057,19.97268623513438,0.0,0.0,0.6,1,0.48987977362995283,11983.611741080627,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.40762082556,20.053281236344798,-0.68480698698247,-1.6969078930339507,-1.7,6.529479366362011,0,4.0,4952.3177871250455,-746.100562631575,-74.91085611108039,0.0 +2018-01-03 05:30:00,0.4412155397695138,0.2845944298258145,0.7587839170876082,0.07353592329491895,0.04743240497096908,0.12646398618126803,0.010000000000000002,0.0,0.0,0.37557035087886387,0.05564518889064987,0.06788156986961125,0.6909023472179969,0.0,1,0.0029166666666666685,0,0,0.28167776315914783,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,Off,-0.0,0,On,1539.9168825459208,0,84.43715087261619,51.666666666666686,46.10666666666668,0.48475463805789865,51.66640255839633,1410.8099149623445,0.0,1539.9168825459208,131.9330482384628,51.666402558396335,51.66640255839634,51.66640255839633,9.920878641202478,On,12149.011114107185,0.0,20.000000000000057,20.248351856845307,0.0,0.0,0.6,1,0.49664115819142224,12149.011114107185,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1428.0580368141884,20.0532812363448,-0.6833503425734047,-1.699998544520931,-1.1,6.529479366362011,0,4.0,4991.18947169859,683.5744436885495,-1.2178614382261514,0.0 +2018-01-03 05:40:00,0.4412155397695138,0.2845944298258145,0.6957997301523939,0.07353592329491895,0.04743240497096908,0.11596662169206565,0.010000000000000002,0.0,0.0,0.37557035087886387,0.05564518889064987,0.005939897365433321,0.6898598327869606,0.0,1,0.0029166666666666685,0,0,0.28167776315914783,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.03330048515022123,0,On,0.01599935036851739,0.0,On,0.3176250725070612,0.2382188043802958,Off,-0.0,0,On,134.74862545445708,0,84.43401889332291,51.666666666666686,46.10666666666668,0.0,51.66358449206244,0.0,0.0,134.74862545445708,131.92815452081706,51.66358449206244,51.66358449206244,51.66358449206244,9.920878641202478,On,12130.679262347992,0.0,20.000000000000057,20.21779877057999,0.0,0.0,0.5999999999999999,1,0.4958917678086192,12130.679262347992,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1427.834945082139,20.05797074729019,-0.06916662301271082,-1.6005678175361444,-1.1,6.529479366362011,0,4.0,4974.189302468139,-541.1284865909934,-14.674512674973613,0.0 +2018-01-03 05:50:00,0.40657236453167506,0.26789274243383804,0.7010539669361031,0.06776206075527917,0.04464879040563967,0.11684232782268385,0.010000000000000002,0.0,0.0,0.35330143435622857,0.04327093017544647,0.005816083727777154,0.6952378832083259,0.0,1,0.0029166666666666685,0,0,0.26497607576717136,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.0579452783718027,0.043458958778852017,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.024942063377515696,0,On,0.011983513426019521,0.0,On,0.2953561559844259,0.22151711698831936,Off,-0.0,0,On,131.9398702756599,0,84.43790880503433,51.666666666666686,46.10666666666668,0.0,51.66639696458338,0.0,0.0,131.9398702756599,131.93423250786614,51.66639696458338,51.666396964583384,51.66639696458338,9.920878641202478,On,12225.24833510406,0.0,20.000000000000057,20.3754138918401,0.0,0.0,0.6,1,0.49975767042254676,12225.24833510406,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.7952979528684,20.057970747290195,-0.06790263432206248,-1.5240967699066161,-1.1,6.529479366362011,0,3.0,4950.23015493207,-538.5871069043105,-23.75335774770719,0.0 +2018-01-03 06:00:00,0.4451892046816609,0.2782184546393889,0.7034869930987087,0.07419820078027681,0.046369742439898144,0.1172478321831181,0.010000000000000002,0.0,0.0,0.3670690506302964,0.06812015405136454,0.005816697360755249,0.6976702957379534,0.0,1,0.0029166666666666685,0,0,0.2753017879727222,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.04195861128927875,0,On,0.020159181464331908,0.0,On,0.3059045901267268,0.22942844259504505,Off,-0.0,0,On,131.9537907519316,0,84.45044396369978,51.666666666666686,46.10666666666668,0.0,51.66640258636335,0.0,0.0,131.9537907519316,131.9538186932809,51.66640258636335,51.666402586363354,51.66640258636335,9.920878641202478,On,12268.020525668371,0.0,20.000000000000057,20.44670087611395,0.0,0.0,0.6,1,0.5015061609013791,12268.020525668371,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.5299963644586,20.053281236344798,-0.0603227997961088,-1.4571232165692203,-1.1,6.529479366362011,0,3.0,5023.673277651786,-551.0876198951933,-31.867446114547533,0.0 +2018-01-03 06:10:00,0.4451892046816609,0.2782184546393889,0.7375280666333177,0.07419820078027681,0.046369742439898144,0.12292134443888628,0.010000000000000002,0.0,0.0,0.3670690506302964,0.06812015405136454,0.04148517893693606,0.6960428876963817,0.0,1,0.0029166666666666685,0,0,0.2753017879727222,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.04195861128927875,0,On,0.020159181464331908,0.0,On,0.3059045901267268,0.22942844259504505,Off,-0.0,0,On,941.1056276856274,0,84.42846157210654,51.666666666666686,46.10666666666668,0.2785946195728049,51.66640255850123,810.8102959553706,0.0,941.1056276856274,131.91947120641646,51.66640255850124,51.66640255850125,51.66640255850123,9.920878641202478,On,12239.403748689896,0.0,20.000000000000057,20.399006247816494,0.0,0.0,0.6,1,0.5003363315935605,12239.403748689896,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.0564695084265,20.058650282402493,-0.05686742599231284,-1.3996682643328515,-1.1,6.529479366362011,0,3.0,4998.380592617527,-566.7111944709327,-39.11006940649511,0.0 +2018-01-03 06:20:00,0.4451892046816609,0.2782184546393889,0.7739710612588314,0.07419820078027681,0.046369742439898144,0.12899517687647188,0.010000000000000002,0.0,0.0,0.3670690506302964,0.06812015405136454,0.07758263667386509,0.6963884245849663,0.0,1,0.0029166666666666685,0,0,0.2753017879727222,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.04195861128927875,0,On,0.020159181464331908,0.0,On,0.3059045901267268,0.22942844259504505,Off,-0.0,0,On,1759.9889371444106,0,84.41850552389734,51.666666666666686,46.10666666666668,0.5599969106370744,51.66478302482961,1629.7286948702947,0.0,1759.9889371444106,131.90391488108958,51.66478302482961,51.66478302482962,51.66478302482961,9.920878641202478,On,12245.479761481938,0.0,20.000000000000057,20.409132935803232,0.0,0.0,0.6,1,0.5005847137871303,12245.479761481938,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.7876687915523,20.058650282402496,-0.05940362584757672,-1.352110654823755,-1.1,6.529479366362011,0,3.0,5002.849294194856,-562.1580171141177,-45.255130843274124,0.0 +2018-01-03 06:30:00,0.5160604544598552,0.3032709857273535,0.6675705835416733,0.08601007574330918,0.05054516428789225,0.11126176392361221,0.010000000000000002,0.0,0.0,0.40047242541424927,0.10558802904560591,0.005959163800736992,0.6616114197409363,0.0,1,0.0029166666666666685,0,0,0.3003543190606868,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.06726698000344689,0,On,0.03231868774440513,0.0,On,0.3393079649106797,0.2544809736830097,Off,-0.0,0,On,135.18569120069117,0,84.43159438574314,51.666666666666686,46.10666666666668,0.0,51.663144013420066,0.0,0.0,135.18569120069117,131.92436622772365,51.66314401342006,51.663144013420066,51.663144013420066,9.920878641202478,On,11633.951634436557,0.0,20.000000000000057,19.389919390727595,0.0,0.0,0.6,1,0.47558596825715155,11633.951634436557,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.4526360444618,20.058650282402496,-0.05894516079032544,-1.313724305133555,-1.1,6.529479366362011,0,3.0,5074.71384873417,-686.3580878619919,-56.37580016783893,0.0 +2018-01-03 06:40:00,0.5160604544598552,0.3032709857273535,0.6637586180893845,0.08601007574330918,0.05054516428789225,0.11062643634823074,0.010000000000000002,0.0,0.0,0.40047242541424927,0.10558802904560591,0.005814213677725534,0.657944404411659,0.0,1,0.0029166666666666685,0,0,0.3003543190606868,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.06726698000344689,0,On,0.03231868774440513,0.0,On,0.3393079649106797,0.2544809736830097,Off,-0.0,0,On,131.89744754366907,0,84.4101422980693,51.666666666666686,46.10666666666668,0.0,51.6663960897875,0.0,0.0,131.89744754366907,131.89084734073327,51.6663960897875,51.666396089787504,51.6663960897875,9.920878641202478,On,11569.46985901579,0.0,20.000000000000057,19.282449765026318,0.0,0.0,0.6,1,0.47295000856245484,11569.46985901579,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.0971652750159,20.068364431437576,-0.11141376452751961,-1.2892521961398828,-1.1,6.529479366362011,0,3.0,5019.244334498713,-595.6138630062355,-58.22407318065589,0.0 +2018-01-03 06:50:00,0.4451892046816609,0.2782184546393889,0.7105169069665052,0.07419820078027681,0.046369742439898144,0.11841948449441753,0.010000000000000002,0.0,0.0,0.3670690506302964,0.06812015405136454,0.05254092473010676,0.6579759822363984,0.0,1,0.0029166666666666685,0,0,0.2753017879727222,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06116446050356953,0.045873345377677135,Off,0.0,0,0.0,On,0.006002361297753889,0.0,On,0.04195861128927875,0,On,0.020159181464331908,0.0,On,0.3059045901267268,0.22942844259504505,Off,-0.0,0,On,1191.9090435279768,0,84.4001434131492,51.666666666666686,46.10666666666668,0.36495895065446815,51.666402671273296,1062.1614877015354,0.0,1191.9090435279768,131.87522408304562,51.666402671273296,51.6664026712733,51.666402671273296,9.920878641202478,On,11570.025131906761,0.0,20.000000000000057,19.2833752198446,0.0,0.0,0.6,1,0.4729727076421655,11570.025131906761,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.4484415888721,20.068364431437573,-0.11712540143307537,-1.2589876445651198,-1.1,6.529479366362011,0,3.0,4951.045218565497,-583.9053744001667,-60.55403276651083,0.0 +2018-01-03 07:00:00,0.47364043180206017,0.29118127538051486,0.702711920417207,0.07894007196701003,0.04853021256341914,0.11711865340286783,0.010000000000000002,0.0,0.0,0.3843528116184644,0.07928762018359574,0.040900854950813054,0.6618110654663939,0.0,1,0.0029166666666666685,0,0,0.2882646087138482,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.04961772287382962,0,On,0.023839032049090905,0.0,On,0.31996916898312805,0.23997687673734597,Off,-0.0,0,On,927.8500360304001,0,84.425672463745,51.666666666666686,46.10666666666668,0.27331521177312385,51.664281036749784,795.4049003322186,0.0,927.8500360304001,131.91511322460155,51.66428103674978,51.664281036749784,51.664281036749784,9.920878641202478,On,11637.462258111862,0.0,20.000000000000057,19.395770430186438,0.0,0.0,0.6,1,0.47572947954310746,11637.462258111862,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1425.2339077118995,20.058650282402496,-0.11715704933596979,-1.2261911236752263,-1.1,6.529479366362011,0,3.0,5036.244636751395,-570.2775875619468,-63.428761435308566,0.0 +2018-01-03 07:10:00,0.47364043180206017,0.29118127538051486,0.6661775794112353,0.07894007196701003,0.04853021256341914,0.11102959656853922,0.010000000000000002,0.0,0.0,0.3843528116184644,0.07928762018359574,0.005885126613274242,0.6602924527979611,0.0,1,0.0029166666666666685,0,0,0.2882646087138482,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.04961772287382962,0,On,0.023839032049090905,0.0,On,0.31996916898312805,0.23997687673734597,Off,-0.0,0,On,133.50613200474,0,84.42349772343026,51.666666666666686,46.10666666666668,0.0,51.66480955616285,0.0,0.0,133.50613200474,131.9117151928598,51.664809556162844,51.66480955616285,51.66480955616285,9.920878641202478,On,11610.758567986763,0.0,20.000000000000057,19.351264279977936,0.0,0.0,0.6,1,0.47463785558563865,11610.758567986763,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.8828771874307,20.062543525492572,-0.11135802471955752,-1.1948254672547156,-1.1,6.529479366362011,0,3.0,5013.733077983761,-587.2424432301145,-66.50676500007286,0.0 +2018-01-03 07:20:00,0.47364043180206017,0.29118127538051486,0.6660710406101048,0.07894007196701003,0.04853021256341914,0.11101184010168413,0.010000000000000002,0.0,0.0,0.3843528116184644,0.07928762018359574,0.005815134562278515,0.6602559060478262,0.0,1,0.0029166666666666685,0,0,0.2882646087138482,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.04961772287382962,0,On,0.023839032049090905,0.0,On,0.31996916898312805,0.23997687673734597,Off,-0.0,0,On,131.9183381281493,0,84.42569669685733,51.666666666666686,46.10666666666668,0.0,51.666399451459,0.0,0.0,131.9183381281493,131.91515108883956,51.66639945145901,51.666399451459014,51.666399451459,9.920878641202478,On,11610.115920186592,0.0,20.000000000000057,19.350193200310986,0.0,0.0,0.6,1,0.4746115846945523,11610.115920186592,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1424.7344565422363,20.062543525492572,-0.11360040869750018,-1.1670880585857715,-1.1,6.529479366362011,0,3.0,5013.249704589509,-583.1870445633067,-69.34677028599609,0.0 +2018-01-03 07:30:00,0.4572717511379033,0.29118127538051486,0.6788362086359135,0.07621195852298387,0.04853021256341914,0.11313936810598559,0.010000000000000002,0.0,-0.016368680664156858,0.3843528116184644,0.07928762018359574,0.0058149946569435946,0.67302121397897,0.0,1,0.0029166666666666685,0,0,0.2882646087138482,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.04961772287382962,0,On,0.023839032049090905,0.0,On,0.31996916898312805,0.23997687673734597,On,-0.016368680664156858,0,On,131.91516432725433,0,84.42570109233026,51.666666666666686,46.10666666666668,0.0,51.66640262946037,0.0,0.0,131.91516432725433,131.91515795676602,51.66640262946037,51.66640262946038,51.66640262946037,9.920878641202478,On,11834.584498929935,0.0,20.000000000000057,19.72430749821656,0.0,0.0,0.5999999999999999,1,0.48378766774177473,11834.584498929935,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.7543860657613,20.062543525492572,-0.11364436067915545,-1.143532860241573,-0.6,6.529479366362011,0,2.0,5000.346309480709,626.8918661759371,-6.264151141182296,111.4162656400562 +2018-01-03 07:40:00,0.4596044964901577,0.29118127538051486,0.6780425522056462,0.07660074941502629,0.04853021256341914,0.11300709203427436,0.010000000000000002,0.0,-0.014035935311902462,0.3843528116184644,0.07928762018359574,0.005814994377290757,0.6722275578283555,0.0,1,0.0029166666666666685,0,0,0.2882646087138482,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.04961772287382962,0,On,0.023839032049090905,0.0,On,0.31996916898312805,0.23997687673734597,On,-0.014035935311902462,0,On,131.91515798323303,0,84.42570110111664,51.666666666666686,46.10666666666668,0.0,51.666402635812794,0.0,0.0,131.91515798323303,131.91515797049476,51.666402635812794,51.6664026358128,51.666402635812794,9.920878641202478,On,11820.628637535892,0.0,20.000000000000057,19.701047729226488,0.0,0.0,0.6,1,0.4832171640932722,11820.628637535892,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.572634184342,20.062543525492572,0.405604289440861,-1.0276272006770149,-0.6,6.529479366362011,0,2.0,4989.147371081713,-409.9041364367554,-20.291821264395217,104.66090329211899 +2018-01-03 07:50:00,0.45787636265956877,0.29118127538051486,0.677362383118367,0.07631272710992812,0.04853021256341914,0.11289373051972784,0.010000000000000002,0.0,-0.015764069142491413,0.3843528116184644,0.07928762018359574,0.005814994376731436,0.6715473887416357,0.0,1,0.0029166666666666685,0,0,0.2882646087138482,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.005830865260675206,0.0,On,0.04961772287382962,0,On,0.023839032049090905,0.0,On,0.31996916898312805,0.23997687673734597,On,-0.015764069142491413,0,On,131.91515797054464,0,84.42570110113489,51.666666666666686,46.10666666666668,0.0,51.6664026358255,0.0,0.0,131.91515797054464,131.91515797052327,51.6664026358255,51.666402635825506,51.6664026358255,9.920878641202478,On,11808.668362936587,0.0,20.000000000000057,19.681113938227647,0.0,0.0,0.6,1,0.4827282383219895,11808.668362936587,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.746825306969,20.06254352549257,0.4068075852008627,-0.9262863526481503,-0.6,6.529479366362011,0,2.0,4979.732148349249,-428.12200973200925,-31.17982609588882,101.63135695171938 +2018-01-03 08:00:00,0.5642042709584058,0.33150557862429336,0.6766447769659989,0.09403404515973429,0.05525092977071556,0.11277412949433314,0.010000000000000002,0.0,-0.01923221495630899,0.4381185492768357,0.13531793663787908,0.005814994376730493,0.6708297825892684,0.0,1,0.0029166666666666685,0,0,0.3285889119576267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.08758027594508183,0,On,0.04207829146920073,0.0,On,0.37212531557561596,0.27909398668171187,On,-0.01923221495630899,0,On,131.91515797052327,0,84.42570110113337,51.666666666666686,46.10666666666668,0.0,51.66640263582552,0.0,0.0,131.91515797052327,131.91515797052088,51.66640263582552,51.66640263582553,51.66640263582552,9.920878641202478,On,11796.049784991721,0.0,20.000000000000057,19.660082974986203,0.0,0.0,0.6,1,0.4822124016743475,11796.049784991721,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.5002456501622,20.062543525492572,0.40531418422413934,-0.8308724026258066,-0.6,6.529479366362011,0,2.0,5075.994894803664,-434.1170166327461,-41.89697014976162,99.02159033964692 +2018-01-03 08:10:00,0.6166322844892999,0.33150557862429336,0.7233737769747545,0.1027720474148833,0.05525092977071556,0.12056229616245907,0.010000000000000002,0.0,-0.020273387949654994,0.4915877358010756,0.13531793663787908,0.005812231626867684,0.6640923588236468,0.053469186524239945,1,0.0029166666666666685,0,0,0.3285889119576267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,On,0.053469186524239945,0,0.053469186524239945,On,0.005659369223596524,0.0,On,0.08758027594508183,0,On,0.04207829146920073,0.0,On,0.37212531557561596,0.27909398668171187,On,-0.020273387949654994,0,On,131.85248403466463,0,84.38550927025713,51.666666666666686,46.10666666666668,0.0,51.66640263582552,0.0,0.0,131.85248403466463,131.85235823477677,51.66640263582553,51.666402635825534,51.66640263582552,9.920878641202478,On,11677.577128850693,0.0,20.000000000000057,19.46262854808449,0.0,0.0,0.6,1,0.47736934106577067,11677.577128850693,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.2642823938286,20.07758896854442,0.4040431759039744,-0.7453351404528566,-0.6,6.529479366362011,0,2.0,6009.686988271892,-458.91353091560904,-51.971433948990644,96.27327790463424 +2018-01-03 08:20:00,0.613938328770304,0.33150557862429336,0.657301023877138,0.10232305479505066,0.05525092977071556,0.10955017064618966,0.010000000000000002,0.0,-0.016283695353120832,0.48490408748554564,0.13531793663787908,0.005785309871619412,0.6047301757968087,0.04678553820870995,1,0.0029166666666666685,0,0,0.3285889119576267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,On,0.04678553820870995,0,0.04678553820870995,On,0.005659369223596524,0.0,On,0.08758027594508183,0,On,0.04207829146920073,0.0,On,0.37212531557561596,0.27909398668171187,On,-0.016283695353120832,0,On,131.2417547086603,0,83.99393846098037,51.666666666666686,46.10666666666668,0.0,51.66640276126867,0.0,0.0,131.2417547086603,131.24052884528183,51.66640276126867,51.66640276126867,51.66640276126867,9.920878641202478,On,10633.736672591298,0.0,20.000000000000057,17.72289445431883,0.0,0.0,0.6,1,0.4346980381675655,10633.736672591298,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1426.3050535346795,20.224169972533247,0.39380203697536176,-0.6720161547097245,-0.6,6.529479366362011,0,2.0,4992.945736353422,-649.7173330398509,-60.89904340840608,113.16585731725642 +2018-01-03 08:30:00,0.32869226563610543,0.29414654103697757,0.4820246633868456,0.05478204427268424,0.04902442350616293,0.08033744389780759,0.010000000000000002,0.0,-0.15218134615713805,0.38830649916041465,0.08256711263282876,0.005788620587513433,0.4762360427993321,0.0,1,0.0029166666666666685,0,0,0.2912298743703109,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.15218134615713805,0,On,131.31685944339625,0,84.04288652450194,51.666666666666686,46.10666666666668,0.0,51.666403983655684,0.0,0.0,131.31685944339625,131.31701019453428,51.66640398365569,51.6664039836557,51.666403983655684,9.920878641202478,On,8374.261572861536,0.0,20.000000000000057,13.957102621435896,0.0,0.0,0.5999999999999999,1,0.3423326332885254,8374.261572861536,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1440.54819375711,20.20584734703464,0.30417818655598,-0.6106376005912963,3.3,6.529479366362011,0,1.0,3995.84490146501,1694.5012628667523,310.7979289354275,577.7851739280491 +2018-01-03 08:40:00,0.3281921974069303,0.29414654103697757,0.5342773201593922,0.05469869956782171,0.04902442350616293,0.08904622002656537,0.010000000000000002,0.0,-0.15268141438631314,0.38830649916041465,0.08256711263282876,0.005814757664168363,0.5284625624952238,0.0,1,0.0029166666666666685,0,0,0.2912298743703109,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.15268141438631314,0,On,131.90978806420796,0,84.42302604659037,51.666666666666686,46.10666666666668,0.0,51.666403833332055,0.0,0.0,131.90978806420796,131.91097819779745,51.66640383333206,51.66640383333207,51.666403833332055,9.920878641202478,On,9292.626622266016,0.0,20.000000000000057,15.487711037110026,0.0,0.0,0.6,1,0.3798746091328929,9292.626622266016,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1440.3705929711646,20.063545527618334,1.2346869895720416,0.002270706489485186,3.3,6.529479366362011,0,1.0,4772.189630564937,1867.7639135731304,253.37848270741983,559.8065328740462 +2018-01-03 08:50:00,0.32828321733927424,0.29414654103697757,0.5310220020114708,0.054713869556545704,0.04902442350616293,0.08850366700191178,0.010000000000000002,0.0,-0.1525903944539692,0.38830649916041465,0.08256711263282876,0.005814809908907944,0.5252071921025628,0.0,1,0.0029166666666666685,0,0,0.2912298743703109,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.005659369223596524,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.1525903944539692,0,On,131.91097325418897,0,84.42302440519686,51.666666666666686,46.10666666666668,0.0,51.6664026465735,0.0,0.0,131.91097325418897,131.91097563312007,51.6664026465735,51.66640264657351,51.6664026465735,9.920878641202478,On,9235.383321182693,0.0,20.000000000000057,15.392305535304489,0.0,0.0,0.6,1,0.37753455206308656,9235.383321182693,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1438.305738383575,20.063545527618338,2.1107153494837085,0.5788195617623789,3.3,6.529479366362011,0,1.0,4725.670539176485,1848.4585145298336,208.03262364345937,544.0351459510395 +2018-01-03 09:00:00,0.43392546926897557,0.33150557862429336,0.5561656296505222,0.07232091154482925,0.05525092977071556,0.09269427160842036,0.010000000000000002,0.0,-0.15210452494665747,0.4381185492768357,0.13791144493879737,0.039522455621034534,0.5166431740294877,0.0,1,0.0029166666666666685,0,0,0.3285889119576267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.08991130990559731,0,On,0.04319824599499695,0.0,On,0.37212531557561596,0.27909398668171187,On,-0.15210452494665747,0,On,896.5805706527858,0,84.41580489931454,51.666666666666686,46.10666666666668,0.2632719149558253,51.66640264420131,766.215729677825,0.0,896.5805706527858,131.89969515517896,51.66640264420132,51.66640264420133,51.66640264420131,9.920878641202478,On,9084.791343647586,0.0,20.000000000000057,15.141318906079311,0.0,0.0,0.6,1,0.37137848113394506,9084.791343647586,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1438.0386962655955,20.063545527618338,2.8657930666310008,1.1467542885791653,3.3,6.529479366362011,0,2.0,4773.3672940856195,1812.6276440231068,160.45176675222837,529.3575506320162 +2018-01-03 09:10:00,0.43377219510555687,0.33150557862429336,0.5123013190967944,0.07229536585092614,0.05525092977071556,0.08538355318279907,0.010000000000000002,0.0,-0.15225779911007623,0.4381185492768357,0.13791144493879737,0.0058795411120161605,0.5064217779847783,0.0,1,0.0029166666666666685,0,0,0.3285889119576267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.08991130990559731,0,On,0.04319824599499695,0.0,On,0.37212531557561596,0.27909398668171187,On,-0.15225779911007623,0,On,133.37942297751331,0,84.38241042404583,51.666666666666686,46.10666666666668,0.0,51.66487214262655,0.0,0.0,133.37942297751331,131.8475162875716,51.66487214262656,51.664872142626564,51.66487214262655,9.920878641202478,On,8905.055589891806,0.0,20.000000000000057,14.84175931648634,0.0,0.0,0.6000000000000001,1,0.36403103761979544,8905.055589891806,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1437.7811488002342,20.07795658299556,3.512300612771054,1.6697632688484176,3.3,6.529479366362011,0,2.0,4625.870910021841,1772.2459264417525,114.5048495996007,515.1484715329693 +2018-01-03 09:20:00,0.4314609512046292,0.33150557862429336,0.5071645146071181,0.07191015853410486,0.05525092977071556,0.08452741910118634,0.010000000000000002,0.0,-0.15456904301100388,0.4381185492768357,0.13791144493879737,0.005812293143753825,0.5013522214633642,0.0,1,0.0029166666666666685,0,0,0.3285889119576267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.08991130990559731,0,On,0.04319824599499695,0.0,On,0.37212531557561596,0.27909398668171187,On,-0.15456904301100388,0,On,131.8538795664962,0,84.38452318532588,51.666666666666686,46.10666666666668,0.0,51.666399705069665,0.0,0.0,131.8538795664962,131.85081747707167,51.666399705069665,51.666399705069665,51.666399705069665,9.920878641202478,On,8815.911156137521,0.0,20.000000000000057,14.693185260229201,0.0,0.0,0.6,1,0.36038688959735776,8815.911156137521,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1437.8718735118864,20.077956582995558,4.063563125522086,2.1289450904289433,3.3,6.529479366362011,0,2.0,4556.471582639172,622.2566018886425,73.30720502926467,501.059915163653 +2018-01-03 09:30:00,0.23286096555377067,0.33150557862429336,0.48972990104869796,0.038810160925628445,0.05525092977071556,0.08162165017478298,0.010000000000000002,0.0,-0.3531690286618624,0.4381185492768357,0.13791144493879737,0.039519804331191635,0.45021009671750634,0.0,1,0.0029166666666666685,0,0,0.3285889119576267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.08991130990559731,0,On,0.04319824599499695,0.0,On,0.37212531557561596,0.27909398668171187,On,-0.3531690286618624,0,On,896.5204252260161,0,84.37730790586976,51.666666666666686,46.10666666666668,0.26327191423514495,51.666402758475485,766.2157296778252,0.0,896.5204252260161,131.83954360292148,51.666402758475485,51.666402758475485,51.666402758475485,9.920878641202478,On,7916.6143967064245,0.0,20.000000000000057,13.19435732784404,0.0,0.0,0.6,1,0.32362440909859214,7916.6143967064245,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1439.525114260419,20.07795658299556,4.056223837833543,2.5212327407372976,5.6,6.529479366362011,0,2.0,4431.158958495568,1573.2021984420187,291.88447339482985,953.8270747179089 +2018-01-03 09:40:00,0.22462553668659996,0.33150557862429336,0.48130117911220366,0.03743758944776666,0.05525092977071556,0.08021686318536728,0.010000000000000002,0.0,-0.3614044575290331,0.4381185492768357,0.13791144493879737,0.039587181420116455,0.4417139976920872,0.0,1,0.0029166666666666685,0,0,0.3285889119576267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.08991130990559731,0,On,0.04319824599499695,0.0,On,0.37212531557561596,0.27909398668171187,On,-0.3614044575290331,0,On,898.0488977839051,0,84.37519108794433,51.666666666666686,46.10666666666668,0.2632815667967778,51.66487226300883,766.2157296778252,0.0,898.0488977839051,131.83623607491302,51.66487226300883,51.66487226300884,51.66487226300883,9.920878641202478,On,7767.216725817046,0.0,20.000000000000057,12.945361209695077,0.0,0.0,0.5999999999999999,1,0.3175171604011697,7767.216725817046,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1439.337946298103,20.07795658299556,4.470821495252213,3.2377078345637793,5.6,6.529479366362011,0,2.0,4313.300653867667,1539.642899285813,220.45266590713138,926.2679469548935 +2018-01-03 09:50:00,0.2160540493558174,0.33150557862429336,0.4395385942245094,0.036009008225969565,0.05525092977071556,0.07325643237075156,0.010000000000000002,0.0,-0.36997594485981566,0.4381185492768357,0.13791144493879737,0.005879670490773873,0.43365892373373555,0.0,1,0.0029166666666666685,0,0,0.3285889119576267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.004801889038203111,0.0,On,0.08991130990559731,0,On,0.04319824599499695,0.0,On,0.37212531557561596,0.27909398668171187,On,-0.36997594485981566,0,On,133.3823579793647,0,84.38240635928899,51.666666666666686,46.10666666666668,0.0,51.66486920374028,0.0,0.0,133.3823579793647,131.84750993638906,51.66486920374028,51.66486920374028,51.66486920374028,9.920878641202478,On,7625.574157313668,0.0,20.000000000000057,12.709290262189448,0.0,0.0,0.6,1,0.31172693364032317,7625.574157313668,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1440.0617441426407,20.077956582995558,4.82189333394355,3.9056755633285225,5.6,6.529479366362011,0,2.0,4202.620231784427,1508.5573790425126,161.86404755435223,898.9721191881234 +2018-01-03 10:00:00,0.09872261021269968,0.292939347737565,0.46982719581441323,0.01645376836878328,0.0488232246229275,0.07830453263573553,0.010000000000000002,0.0,-0.37865495410679484,0.3866969080945313,0.08068065622496325,0.03951993901006118,0.43030725680435206,0.0,1,0.0029166666666666685,0,0,0.29002268107089835,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.37865495410679484,0,On,896.5234804627369,0,84.3773036745988,51.666666666666686,46.10666666666668,0.2632719335287734,51.66639969919521,766.2157296778252,0.0,896.5234804627369,131.83953699156064,51.66639969919521,51.66639969919521,51.66639969919521,9.920878641202478,On,7566.637552249541,0.0,20.000000000000057,12.61106258708257,0.0,0.0,0.5999999999999999,1,0.3093176557555634,7566.637552249541,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1439.9870751938877,20.07795658299556,5.12087986435816,4.547581781550174,5.6,6.529479366362011,0,1.0,3986.475435561433,1494.6509458187177,103.56368084294586,872.029388642631 +2018-01-03 10:10:00,0.0901360184800758,0.292939347737565,0.46769468492837174,0.015022669746679299,0.0488232246229275,0.07794911415472862,0.010000000000000002,0.0,-0.3872415458394187,0.3866969080945313,0.08068065622496325,0.03958991894374151,0.4281047659846302,0.0,1,0.0029166666666666685,0,0,0.29002268107089835,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.3872415458394187,0,On,898.1109994538382,0,84.41501200869126,51.666666666666686,46.10666666666668,0.2632815668353461,51.66487225689372,766.2157296778252,0.0,898.1109994538382,131.8984562635801,51.66487225689372,51.66487225689372,51.66487225689372,9.920878641202478,On,7527.908366344667,0.0,20.000000000000057,12.54651394390778,0.0,0.0,0.6,1,0.30773443984087284,7527.908366344667,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1439.9152681370215,20.063049983581415,5.381832189028017,5.133459750754829,5.6,6.529479366362011,0,1.0,3962.551796691128,1485.1256999269083,11.572258140345522,845.6540794816774 +2018-01-03 10:20:00,0.18437602455117624,0.33029838532488076,0.42118706627530655,0.03072933742519604,0.05504973088748012,0.07019784437921775,0.010000000000000002,0.0,-0.39556441388978963,0.4365089582109523,0.13343148023001358,0.005882413217160182,0.4153046530581464,0.0,1,0.0029166666666666685,0,0,0.3273817186582141,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.08758027594508183,0,On,0.04207829146920073,0.0,On,0.37212531557561596,0.27909398668171187,On,-0.39556441388978963,0,On,133.44457767573581,0,84.42222711658023,51.666666666666686,46.10666666666668,0.0,51.664869079442525,0.0,0.0,133.44457767573581,131.90972986965662,51.66486907944253,51.66486907944254,51.664869079442525,9.920878641202478,On,7302.8277672819295,0.0,20.000000000000057,12.17137961213655,0.0,0.0,0.6,1,0.29853333792771913,7302.8277672819295,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1439.4929080427369,20.06304998358141,5.6109903402112336,5.60000094479491,5.6,6.529479366362011,0,2.0,3950.094422609982,1438.56806724323,6.148019040124459,820.1495936379164 +2018-01-03 10:30:00,0.12596526944303416,0.292939347737565,0.3635423859984893,0.020994211573839024,0.0488232246229275,0.060590397666414886,0.010000000000000002,0.0,-0.35141229487646036,0.3866969080945313,0.08068065622496325,0.005812457383951748,0.35772992861453756,0.0,1,0.0029166666666666685,0,0,0.29002268107089835,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.35141229487646036,0,On,131.85760541217215,0,84.38682881409082,51.666666666666686,46.10666666666668,0.0,51.666399574661234,0.0,0.0,131.85760541217215,131.8544200220169,51.666399574661234,51.66639957466124,51.666399574661234,9.920878641202478,On,6290.418459405659,0.0,20.000000000000057,10.4840307656761,0.0,0.0,0.5999999999999999,1,0.2571469134274072,6290.418459405659,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1439.226803662923,20.077093424507495,5.7960134255033084,6.0682262279603565,6.1,6.529479366362011,0,1.0,3620.285105728346,1234.9177872637388,-331.14536351394986,1300.274840446224 +2018-01-03 10:40:00,0.11093503179277531,0.292939347737565,0.35798130825021807,0.01848917196546255,0.0488232246229275,0.059663551375036344,0.010000000000000002,0.0,-0.3664425325267192,0.3866969080945313,0.08068065622496325,0.005814896306210934,0.3521664119440071,0.0,1,0.0029166666666666685,0,0,0.29002268107089835,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.3664425325267192,0,On,131.91293320687916,0,84.42434832736093,51.666666666666686,46.10666666666668,0.0,51.666402751018126,0.0,0.0,131.91293320687916,131.91304426150145,51.66640275101812,51.666402751018126,51.666402751018126,9.920878641202478,On,6192.588098666606,0.0,20.000000000000057,10.320980164444345,0.0,0.0,0.5999999999999999,1,0.2531476921568538,6192.588098666606,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1439.4152154923029,20.063049983581415,5.8757249773828715,6.1000008001654455,6.1,6.529479366362011,0,1.0,3548.6169207380703,1215.1402497739812,21.546867168972643,1254.7824616394441 +2018-01-03 10:50:00,0.09694634394119872,0.292939347737565,0.3479320777944162,0.016157723990199786,0.0488232246229275,0.0579886796324027,0.010000000000000002,0.0,-0.3804312203782958,0.3866969080945313,0.08068065622496325,0.005814901181310559,0.34211717661310564,0.0,1,0.0029166666666666685,0,0,0.29002268107089835,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.003772912815731015,0.0,On,0.05194875683434511,0,On,0.024958986574887123,0.0,On,0.3223132654591949,0.2417349490943961,On,-0.3804312203782958,0,On,131.91304380019974,0,84.42434817419513,51.666666666666686,46.10666666666668,0.0,51.666402640278434,0.0,0.0,131.91304380019974,131.9130440221799,51.666402640278434,51.666402640278434,51.666402640278434,9.920878641202478,On,6015.879664811947,0.0,20.000000000000057,10.026466108019912,0.0,0.0,0.6,1,0.24592400288473973,6015.879664811947,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1440.657583362353,20.06304998358141,5.945049641222654,6.792615456557726,6.1,6.529479366362011,0,1.0,3408.9325480668267,1179.4199671106885,7.645728050056775,1213.2200279045205 +2018-01-03 11:00:00,0.187052493267636,0.33469356621750623,0.3335300205302151,0.031175415544606,0.05578226103625104,0.05558833675503584,0.010000000000000002,0.0,-0.3931107289072598,0.4423691994011195,0.12779402277377633,0.005814901191055009,0.3277151193391601,0.0,1,0.0029166666666666685,0,0,0.33177689955083955,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,Off,0.0,0,0.0,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.3931107289072598,0,On,131.91304402125596,0,84.42434817389112,51.666666666666686,46.10666666666668,0.0,51.66640264005708,0.0,0.0,131.91304402125596,131.91304402170488,51.66640264005708,51.666402640057086,51.66640264005708,9.920878641202478,On,5762.630049158282,0.0,20.000000000000057,9.604383415263804,0.0,0.0,0.6,1,0.23557137572451578,5762.630049158282,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1440.9326022414743,20.06304998358141,5.997150782200713,7.483671194080241,6.1,6.529479366362011,0,2.0,3373.310818353574,1128.472713967311,-16.480125627315026,1176.4708053240308 +2018-01-03 11:10:00,0.2293643260630569,0.33469356621750623,0.3718075439138979,0.03822738767717615,0.05578226103625104,0.06196792398564965,0.010000000000000002,0.0,-0.40426808263607894,0.49583838592535945,0.12779402277377633,0.00581232731439401,0.31252603007526397,0.053469186524239945,1,0.0029166666666666685,0,0,0.33177689955083955,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,On,0.053469186524239945,0,0.053469186524239945,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.40426808263607894,0,On,131.85465473928326,0,84.38690402534353,51.666666666666686,46.10666666666668,0.0,51.66640264005663,0.0,0.0,131.85465473928326,131.85453753959925,51.66640264005663,51.66640264005664,51.66640264005663,9.920878641202478,On,5495.541053118129,0.0,20.000000000000057,9.159235088530215,0.0,0.0,0.6,1,0.22465300655951118,5495.541053118129,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1441.2363897971222,20.077066856967956,6.026611050735682,8.135471564718623,6.1,6.529479366362011,0,2.0,4192.64641853142,1074.9282077730813,-46.719538603158064,1145.190591309225 +2018-01-03 11:20:00,0.23326405042776438,0.33469356621750623,0.31664937502142876,0.03887734173796073,0.05578226103625104,0.05277489583690479,0.010000000000000002,0.0,-0.4137356549024314,0.5092056825564194,0.12779402277377633,0.005785405936679776,0.2440274859294491,0.06683648315529993,1,0.0029166666666666685,0,0,0.33177689955083955,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,On,0.06683648315529993,0,0.06683648315529993,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.4137356549024314,0,On,131.24393397776913,0,83.99533320420363,51.666666666666686,46.10666666666668,0.0,51.66640275692396,0.0,0.0,131.24393397776913,131.24270813156818,51.66640275692396,51.66640275692396,51.66640275692396,9.920878641202478,On,4291.0443865796815,0.0,20.000000000000057,7.151740644299469,0.0,0.0,0.6,1,0.17541421552632652,4291.0443865796815,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1441.8262738872656,20.223647860956785,6.03445430385698,8.727769707641562,6.1,6.529479366362011,0,2.0,3448.8601575707726,834.0854828619853,-79.22561479241931,1119.7274844467697 +2018-01-03 11:30:00,0.13216827794846653,0.33469356621750623,0.3484643915217934,0.02202804632474442,0.05578226103625104,0.05807739858696557,0.010000000000000002,0.0,-0.5148314273817293,0.5092056825564194,0.12779402277377633,0.005778623066005722,0.2758492853004878,0.06683648315529993,1,0.0029166666666666685,0,0,0.33177689955083955,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,On,0.06683648315529993,0,0.06683648315529993,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.5148314273817293,0,On,131.09006221135058,0,83.897442149159,51.666666666666686,46.10666666666668,0.0,51.66640397929385,0.0,0.0,131.09006221135058,131.08975335806093,51.66640397929385,51.666403979293854,51.66640397929385,9.920878641202478,On,4850.607392533191,0.0,20.000000000000057,8.084345654221986,0.0,0.0,0.6,1,0.1982886714592156,4850.607392533191,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1445.003764059408,20.260293111953988,5.942487372000106,9.25408922214688,6.7,6.529479366362011,0,2.0,3064.5894230861104,947.1316901769072,-339.53054755420834,1386.8936549566463 +2018-01-03 11:40:00,0.12438132680188085,0.33469356621750623,0.33629402744842046,0.02073022113364681,0.05578226103625104,0.056049004574736744,0.010000000000000002,0.0,-0.5226183785283149,0.5092056825564194,0.12779402277377633,0.005778609507897663,0.26367893478522286,0.06683648315529993,1,0.0029166666666666685,0,0,0.33177689955083955,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,On,0.06683648315529993,0,0.06683648315529993,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.5226183785283149,0,On,131.08975464098157,0,83.89744257512223,51.666666666666686,46.10666666666668,0.0,51.66640428727128,0.0,0.0,131.08975464098157,131.08975402362847,51.66640428727128,51.666404287271284,51.66640428727128,9.920878641202478,On,4636.600703645969,0.0,20.000000000000057,7.727667839409948,0.0,0.0,0.6,1,0.18954026149963907,4636.600703645969,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1446.5714898628355,20.260293111953988,5.9163161402202435,9.429471387923492,6.7,6.529479366362011,0,2.0,2902.316381340632,904.3445202551096,-356.2004193146827,1369.747288052186 +2018-01-03 11:50:00,0.1059229715029475,0.33469356621750623,0.3118591638283591,0.017653828583824582,0.05578226103625104,0.051976527304726516,0.010000000000000002,0.0,-0.5277094371961883,0.49583838592535945,0.12779402277377633,0.005778609480797106,0.25261136782332205,0.053469186524239945,1,0.0029166666666666685,0,0,0.33177689955083955,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06438364263533634,0.04828773197650224,On,0.053469186524239945,0,0.053469186524239945,On,0.0025724405561802378,0.0,On,0.08458323228156192,0,On,0.040638349936034164,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.5277094371961883,0,On,131.08975402619606,0,83.89744257597502,51.666666666666686,46.10666666666668,0.0,51.66640428788688,0.0,0.0,131.08975402619606,131.08975402496097,51.666404287886884,51.66640428788689,51.66640428788688,9.920878641202478,On,4441.985654836715,0.0,20.000000000000057,7.403309424727858,0.0,0.0,0.6,1,0.18158456516071025,4441.985654836715,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1446.15018644206,20.260293111953988,5.879320393251824,9.708775685175453,6.7,6.529479366362011,0,2.0,2496.734593701493,865.659374370453,-388.2154285651797,1358.1803406696463 +2018-01-03 12:00:00,0.05464606660846482,0.34106361561969417,0.29637111576657194,0.00910767776807747,0.05684393593661569,0.04939518596109532,0.010000000000000002,0.0,-0.5300450781718005,0.45086259860403677,0.12382854617622857,0.039492984146653094,0.25687813161991885,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.5300450781718005,0,On,895.9120000666799,0,83.98811581906818,51.666666666666686,46.10666666666668,0.26327190458976657,51.66640428788811,766.2157296778252,0.0,895.9120000666799,131.23143096729405,51.66640428788811,51.66640428788812,51.66640428788811,9.920878641202478,On,4517.013567239753,0.0,20.000000000000057,7.528355945399587,0.0,0.0,0.6,1,0.18465164189333927,4517.013567239753,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1446.5606853146735,20.22364786095678,5.834658165692945,10.030216959137732,6.7,6.529479366362011,0,2.0,1547.3936979961481,880.9850024440748,-430.9603154243653,1350.0065692608464 +2018-01-03 12:10:00,0.0550924977406324,0.34106361561969417,0.4123162320106731,0.009182082956772065,0.05684393593661569,0.06871937200177884,0.010000000000000002,0.0,-0.5295986470396329,0.45086259860403677,0.12382854617622857,0.10682412682826609,0.305492105182407,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.5295986470396329,0,On,2423.342251542652,0,84.36159404478647,51.666666666666686,46.10666666666668,0.7884516532263091,51.664873480784024,2294.5931375536984,0.0,2423.342251542652,131.81499069497886,51.664873480784024,51.66487348078403,51.664873480784024,9.920878641202478,On,5371.854642088827,0.0,20.000000000000057,8.953091070148046,0.0,0.0,0.5999999999999999,1,0.21959681212119975,5371.854642088827,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1446.1666829341457,20.077656331963613,5.8059496516852,10.34140676949081,6.7,6.529479366362011,0,2.0,2290.9603337293793,1052.0598066524208,-475.42546160907074,1352.674742868741 +2018-01-03 12:20:00,0.05831585684150364,0.34106361561969417,0.4384744270819746,0.009719309473583938,0.05684393593661569,0.0730790711803291,0.010000000000000002,0.0,-0.5263752879387616,0.45086259860403677,0.12382854617622857,0.14084470628007822,0.29762972080189637,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.5263752879387616,0,On,3195.11085902286,0,84.35010797551979,51.666666666666686,46.10666666666668,1.0532033693500626,51.661816298422934,3064.8629187113006,0.0,3195.11085902286,131.79704371174967,51.661816298422934,51.66181629842294,51.661816298422934,9.920878641202478,On,5233.600378506094,0.0,20.000000000000057,8.722667297510156,0.0,0.0,0.6,1,0.21394509636049056,5233.600378506094,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1443.320607653498,20.07765633196361,5.857173166322079,10.6186090960118,6.7,6.529479366362011,0,2.0,2188.037057284688,1023.6501663915815,-516.7633552295615,1361.7224703461434 +2018-01-03 12:30:00,0.10334293560970481,0.34106361561969417,0.4589580395207289,0.017223822601617467,0.05684393593661569,0.07649300658678815,0.010000000000000002,0.0,-0.4813482091705605,0.45086259860403677,0.12382854617622857,0.10702671621426035,0.35193132330646854,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.4813482091705605,0,On,2427.938061809215,0,84.35522919806156,51.666666666666686,46.10666666666668,0.7885385823761695,51.66027158803675,2294.5931375536984,0.0,2427.938061809215,131.8050456219712,51.66027158803675,51.66027158803675,51.66027158803675,9.920878641202478,On,6188.454237373825,0.0,20.000000000000057,10.314090395623042,0.0,0.0,0.6,1,0.2529787034514384,6188.454237373825,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1443.5267728024157,20.07765633196361,5.891379807326745,10.854860576204194,5.6,6.529479366362011,0,2.0,2101.5075663643506,1214.2961132298303,-883.1660154459469,1299.1043669516275 +2018-01-03 12:40:00,0.11172379769241686,0.34106361561969417,0.35061909307368666,0.018620632948736143,0.05684393593661569,0.05843651551228111,0.010000000000000002,0.0,-0.47296734708784843,0.45086259860403677,0.12382854617622857,0.006014528800078471,0.3446045642736082,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.47296734708784843,0,On,136.44166535320196,0,84.37897326339018,51.666666666666686,46.10666666666668,0.0,51.66180709981628,0.0,0.0,136.44166535320196,131.84214572404716,51.66180709981628,51.661807099816286,51.66180709981628,9.920878641202478,On,6059.6185527376,0.0,20.000000000000057,10.099364254562667,0.0,0.0,0.6,1,0.24771201112288985,6059.6185527376,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1443.360103030453,20.077656331963613,6.005578278400876,10.590214903424956,5.6,6.529479366362011,0,2.0,2008.8316918003675,1187.3360952549026,-831.4407888553658,1316.628726585562 +2018-01-03 12:50:00,0.12259026427230568,0.34106361561969417,0.3431148515937533,0.020431710712050945,0.05684393593661569,0.05718580859895889,0.010000000000000002,0.0,-0.4621008805079596,0.45086259860403677,0.12382854617622857,0.0058126181014206335,0.3373022334923327,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.08225219832104642,0,On,0.039518395410237946,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.4621008805079596,0,On,131.86125134352187,0,84.38531678747435,51.666666666666686,46.10666666666668,0.0,51.66639357592998,0.0,0.0,131.86125134352187,131.85205748042867,51.66639357592998,51.66639357592999,51.66639357592998,9.920878641202478,On,5931.212420991443,0.0,20.000000000000057,9.885354034985738,0.0,0.0,0.6,1,0.24246287854820306,5931.212420991443,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1443.9235168204264,20.07765633196361,6.094715787378517,10.45728806767344,5.6,6.529479366362011,0,2.0,1917.734363102385,1033.4556045783606,-809.4131857786093,1341.186257798365 +2018-01-03 13:00:00,0.13463997267644312,0.34106361561969417,0.36959890660124045,0.022439995446073852,0.05684393593661569,0.061599817766873406,0.010000000000000002,0.0,-0.4488936793563687,0.45086259860403677,0.1226710534287751,0.03951986011494357,0.3300790464862969,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.4488936793563687,0,On,896.521690699716,0,84.37810996478198,51.666666666666686,46.10666666666668,0.2632719143281972,51.666402743720724,766.2157296778252,0.0,896.521690699716,131.84079681997184,51.666402743720724,51.666402743720724,51.666402743720724,9.920878641202478,On,5804.197974494108,0.0,20.000000000000057,9.673663290823514,0.0,0.0,0.6,1,0.23727063687330405,5804.197974494108,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1444.076334723792,20.077656331963613,6.108776023325224,10.368379801394115,5.6,6.529479366362011,0,2.0,1827.9596129591228,970.6154751702154,-795.7415078198311,1373.1995114259173 +2018-01-03 13:10:00,0.14999721969905622,0.34106361561969417,0.3288533617112538,0.024999536616509367,0.05684393593661569,0.0548088936185423,0.010000000000000002,0.0,-0.4335364323337556,0.45086259860403677,0.1226710534287751,0.005879621185397974,0.3229737405258558,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.4335364323337556,0,On,133.3812394698651,0,84.38365095076578,51.666666666666686,46.10666666666668,0.0,51.66487226047596,0.0,0.0,133.3812394698651,131.84945461057154,51.66487226047597,51.664872260475974,51.66487226047596,9.920878641202478,On,5679.256379737455,0.0,20.000000000000057,9.465427299562426,0.0,0.0,0.5999999999999999,1,0.23216313160037075,5679.256379737455,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1444.2211705594286,20.077492264217653,6.097880796446304,10.301107083206333,5.6,6.529479366362011,0,2.0,1742.3855358360497,958.9040344537718,-785.7523619716505,1412.5228336163668 +2018-01-03 13:20:00,0.1672602221787587,0.34106361561969417,0.32161224404522165,0.02787670369645978,0.05684393593661569,0.053602040674203606,0.010000000000000002,0.0,-0.41627342985405313,0.45086259860403677,0.1226710534287751,0.005812378565283387,0.31579986547993827,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.41627342985405313,0,On,131.8558173834288,0,84.3857635440207,51.666666666666686,46.10666666666668,0.0,51.66639970143392,0.0,0.0,131.8558173834288,131.85275553753235,51.66639970143392,51.666399701433924,51.66639970143392,9.920878641202478,On,5553.109047896696,0.0,20.000000000000057,9.255181746494495,0.0,0.0,0.5999999999999999,1,0.22700633682919763,5553.109047896696,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1444.35447960467,20.077492264217653,6.087163377609099,10.246518134617435,5.6,6.529479366362011,0,2.0,1657.0363736026243,947.2345764128484,-777.919371699252,1458.5448932330123 +2018-01-03 13:30:00,0.21089154942118132,0.34106361561969417,0.39194338938190976,0.03514859157019688,0.05684393593661569,0.06532389823031828,0.010000000000000002,0.0,-0.3726421026116305,0.45086259860403677,0.1226710534287751,0.00581224415571611,0.38613114522619363,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.3726421026116305,0,On,131.85276825592302,0,84.38576776683209,51.666666666666686,46.10666666666668,0.0,51.6664027545969,0.0,0.0,131.85276825592302,131.85276213567514,51.6664027545969,51.6664027545969,51.6664027545969,9.920878641202478,On,6789.833025962783,0.0,20.000000000000057,11.316388376604639,0.0,0.0,0.6,1,0.27756255272701985,6789.833025962783,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1444.1475701385648,20.077492264217653,6.0763425313315516,10.19894275570668,4.6,6.529479366362011,0,2.0,1590.2830729507568,-1122.3827274133148,-1148.358324036918,1382.556207168751 +2018-01-03 13:40:00,0.22915033717356442,0.34106361561969417,0.3857144564739702,0.03819172286226073,0.05684393593661569,0.06428574274566169,0.010000000000000002,0.0,-0.3543833148592474,0.45086259860403677,0.1226710534287751,0.005812243887048236,0.3799022125869219,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.3543833148592474,0,On,131.8527621610994,0,84.38576777527189,51.666666666666686,46.10666666666668,0.0,51.66640276069979,0.0,0.0,131.8527621610994,131.85276214886233,51.66640276069979,51.666402760699796,51.66640276069979,9.920878641202478,On,6680.301813385126,0.0,20.000000000000057,11.133836355641876,0.0,0.0,0.6,1,0.27308501066522084,6680.301813385126,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1444.2692518910858,20.077492264217653,5.182428009788626,9.629037921987575,4.6,6.529479366362011,0,2.0,1517.4960138841261,637.1133219013076,-1022.1093861229597,1434.903259856237 +2018-01-03 13:50:00,0.2481304924664806,0.34106361561969417,0.3792286335695782,0.04135508207774677,0.05684393593661569,0.06320477226159636,0.010000000000000002,0.0,-0.3354031595663312,0.45086259860403677,0.1226710534287751,0.005812243886510799,0.3734163896830674,0.0,1,0.0029166666666666685,0,0,0.3381469489530275,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.081586188618042,0,On,0.0391984084028676,0.0,On,0.3832597738369336,0.28744483037770013,On,-0.3354031595663312,0,On,131.85276214890746,0,84.38576777528861,51.666666666666686,46.10666666666668,0.0,51.666402760711996,0.0,0.0,131.85276214890746,131.85276214888844,51.666402760711996,51.666402760711996,51.666402760711996,9.920878641202478,On,6566.253373890973,0.0,20.000000000000057,10.943755623151622,0.0,0.0,0.6,1,0.2684228082399938,6566.253373890973,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1444.074650633879,20.077492264217653,5.173032484757685,9.289829448975507,4.6,6.529479366362011,0,2.0,1442.9059129103734,645.9244274652317,-952.4047841504212,1490.1841227769314 +2018-01-03 14:00:00,0.26401346978269624,0.3371079528163313,0.3727628379109959,0.0440022449637827,0.05618465880272189,0.06212713965183265,0.010000000000000002,0.0,-0.3162179585997148,0.4455883815328863,0.12464304684952465,0.005812243886509857,0.36695059402448604,0.0,1,0.0029166666666666685,0,0,0.33419128614966465,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.3162179585997148,0,On,131.8527621488861,0,84.38576777528709,51.666666666666686,46.10666666666668,0.0,51.66640276071201,0.0,0.0,131.8527621488861,131.8527621488861,51.66640276071201,51.66640276071202,51.66640276071201,9.920878641202478,On,6452.5570988183035,0.0,20.000000000000057,10.75426183136384,0.0,0.0,0.6,1,0.26377500199438314,6452.5570988183035,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1443.8546513362012,20.077492264217653,5.163249474574653,9.043140618826559,4.6,6.529479366362011,0,2.0,1365.9960825545122,644.9463424690096,-903.2613414685347,1547.1170418842428 +2018-01-03 14:10:00,0.28276482198164876,0.3371079528163313,0.3665295434172438,0.04712747033027479,0.05618465880272189,0.0610882572362073,0.010000000000000002,0.0,-0.2974666064007623,0.4455883815328863,0.12464304684952465,0.0058123202275011865,0.36071722318974264,0.0,1,0.0029166666666666685,0,0,0.33419128614966465,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.2974666064007623,0,On,131.8544939706693,0,84.38687836595254,51.666666666666686,46.10666666666668,0.0,51.66640276071202,0.0,0.0,131.8544939706693,131.85449744680085,51.66640276071202,51.66640276071202,51.66640276071202,9.920878641202478,On,6342.947843827952,0.0,20.000000000000057,10.571579739713254,0.0,0.0,0.6,1,0.25929426962566415,6342.947843827952,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1443.6837747955167,20.07707652479417,5.15349667285512,8.847169929495433,4.6,6.529479366362011,0,2.0,1295.79084076232,640.5839997164843,-864.76419108884,1604.4111129085588 +2018-01-03 14:20:00,0.30029084371586756,0.3371079528163313,0.36029139880008487,0.05004847395264459,0.05618465880272189,0.06004856646668081,0.010000000000000002,0.0,-0.2799405846665435,0.4455883815328863,0.12464304684952465,0.005812320380097065,0.3544790784199878,0.0,1,0.0029166666666666685,0,0,0.33419128614966465,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.2799405846665435,0,On,131.85449743235958,0,84.38687836115956,51.666666666666686,46.10666666666668,0.0,51.666402757245734,0.0,0.0,131.85449743235958,131.8544974393118,51.66640275724574,51.66640275724575,51.666402757245734,9.920878641202478,On,6233.254642691311,0.0,20.000000000000057,10.388757737818853,0.0,0.0,0.6,1,0.2548101056104574,6233.254642691311,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1443.476995461693,20.07707652479417,5.144094453390467,8.683605113578883,4.6,6.529479366362011,0,2.0,1224.3378031168959,633.63467372153,-833.0265609190276,1660.806339220973 +2018-01-03 14:30:00,0.24927023914990865,0.3371079528163313,0.31554074408796456,0.0415450398583181,0.05618465880272189,0.05259012401466076,0.010000000000000002,0.0,-0.3309611892325024,0.4455883815328863,0.12464304684952465,0.005812320380402169,0.3097284237075624,0.0,1,0.0029166666666666685,0,0,0.33419128614966465,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.3309611892325024,0,On,131.85449743928095,0,84.38687836114741,51.666666666666686,46.10666666666668,0.0,51.66640275723881,0.0,0.0,131.85449743928095,131.85449743929283,51.66640275723881,51.666402757238814,51.66640275723881,9.920878641202478,On,5446.347196720099,0.0,20.000000000000057,9.077245327866832,0.0,0.0,0.6,1,0.22264200388711672,5446.347196720099,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1439.8849549834863,20.07707652479417,5.134685033073199,8.541381703287101,2.3,6.529479366362011,0,2.0,1200.6050582357184,-4870.411793151012,-906.9097220075714,1342.105048927775 +2018-01-03 14:40:00,0.25930527332424014,0.3371079528163313,0.31251521894947304,0.04321754555404002,0.05618465880272189,0.05208586982491217,0.010000000000000002,0.0,-0.3209261550581709,0.4455883815328863,0.12464304684952465,0.005812320380402691,0.30670289856907035,0.0,1,0.0029166666666666685,0,0,0.33419128614966465,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.3209261550581709,0,On,131.8544974392928,0,84.38687836114586,51.666666666666686,46.10666666666668,0.0,51.6664027572388,0.0,0.0,131.8544974392928,131.8544974392904,51.6664027572388,51.6664027572388,51.6664027572388,9.920878641202478,On,5393.145555878152,0.0,20.000000000000057,8.988575926463588,0.0,0.0,0.5999999999999999,1,0.22046716642279435,5393.145555878152,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1439.7108450005865,20.07707652479417,2.7671845605442917,8.249923054640485,2.3,6.529479366362011,0,2.0,1167.3100535117628,-155.96873568795831,-869.6732180997255,1381.4707891323185 +2018-01-03 14:50:00,0.26573076823621233,0.3371079528163313,0.37665750331745473,0.04428846137270205,0.05618465880272189,0.06277625055290911,0.010000000000000002,0.0,-0.3145006601461987,0.4455883815328863,0.12464304684952465,0.07322761159579458,0.3034298917216602,0.0,1,0.0029166666666666685,0,0,0.33419128614966465,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06760282476710315,0.050702118575327346,Off,0.0,0,0.0,On,0.0018864564078655075,0.0,On,0.08291820802405085,0,On,0.039838382417608294,0.0,On,0.37798555676578316,0.2834891675743373,On,-0.3145006601461987,0,On,1661.1936874983955,0,84.37243935594961,51.666666666666686,46.10666666666668,0.5265438284858884,51.6664027572388,1532.4314593556503,0.0,1661.1936874983955,131.83193649367126,51.6664027572388,51.6664027572388,51.6664027572388,9.920878641202478,On,5335.592130671465,0.0,20.000000000000057,8.89265355111911,0.0,0.0,0.5999999999999999,1,0.21811443174471495,5335.592130671465,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1439.6249621082143,20.07707652479417,2.7591282243085704,7.929666880114145,2.3,6.529479366362011,0,2.0,1131.4351511830478,-97.70322879110154,-831.0700011919635,1418.6220050222782 +2018-01-03 15:00:00,0.2887997929981028,0.344251603212907,0.3354701301006731,0.04813329883301713,0.057375267202151164,0.05591168835011218,0.010000000000000002,0.0,-0.3109879657205688,0.45511324872832054,0.13467450999035108,0.03965472070332663,0.29581540939734646,0.0,1,0.0029166666666666685,0,0,0.3413349365462403,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.0895783050540951,0,On,0.043038252491311775,0.0,On,0.3891200150271008,0.2918400112703255,On,-0.3109879657205688,0,On,899.5810497752361,0,84.37542520581657,51.666666666666686,46.10666666666668,0.26329122015103124,51.66334175409875,766.2157296778252,0.0,899.5810497752361,131.8366018840884,51.66334175409875,51.66334175409875,51.66334175409875,9.920878641202478,On,5201.697042952113,0.0,20.000000000000057,8.669495071586855,0.0,0.0,0.6,1,0.21264091535589008,5201.697042952113,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1439.5423023429657,20.077076524794172,2.756155711592954,7.591629427765299,2.3,6.529479366362011,0,3.0,1118.4901297050865,-95.664534488345,-786.2883244082634,1452.982033493675 +2018-01-03 15:10:00,0.2825735385175584,0.344251603212907,0.29821579168125234,0.047095589752926395,0.057375267202151164,0.04970263194687539,0.010000000000000002,0.0,-0.31721422020111323,0.45511324872832054,0.13467450999035108,0.0058794783693596805,0.29233631331189264,0.0,1,0.0029166666666666685,0,0,0.3413349365462403,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.0895783050540951,0,On,0.043038252491311775,0.0,On,0.3891200150271008,0.2918400112703255,On,-0.31721422020111323,0,On,133.37799963865777,0,84.37764319573077,51.666666666666686,46.10666666666668,0.0,51.66486613710725,0.0,0.0,133.37799963865777,131.84006749332931,51.66486613710726,51.66486613710727,51.66486613710725,9.920878641202478,On,5140.519689626538,0.0,20.000000000000057,8.56753281604423,0.0,0.0,0.6,1,0.21014003760334451,5140.519689626538,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1439.500072996052,20.079738041820008,2.7456427913195625,7.274888638928823,2.3,6.529479366362011,0,3.0,1076.8233934504437,-76.78104526827383,-741.708511710457,1483.8937775371428 +2018-01-03 15:20:00,0.2759032454994707,0.344251603212907,0.29619748796432915,0.04598387424991178,0.057375267202151164,0.049366247994054854,0.010000000000000002,0.0,-0.3238845132192009,0.45511324872832054,0.13467450999035108,0.005811965894364801,0.2903855220699644,0.0,1,0.0029166666666666685,0,0,0.3413349365462403,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.0895783050540951,0,On,0.043038252491311775,0.0,On,0.3891200150271008,0.2918400112703255,On,-0.3238845132192009,0,On,131.8464558009597,0,84.3797642671424,51.666666666666686,46.10666666666668,0.0,51.66639970791851,0.0,0.0,131.8464558009597,131.84338166741,51.66639970791851,51.666399707918515,51.66639970791851,9.920878641202478,On,5106.216456217472,0.0,20.000000000000057,8.510360760362454,0.0,0.0,0.6,1,0.2087377508320198,5106.216456217472,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1439.5652800386395,20.079738041820008,2.7407261147417246,7.000202411362374,2.3,6.529479366362011,0,3.0,1056.2851654985016,-69.16224613861164,-701.716670716548,1510.4342553593362 +2018-01-03 15:30:00,0.3453054959733887,0.344251603212907,0.3892553213321524,0.057550915995564784,0.057375267202151164,0.06487588688869206,0.010000000000000002,0.0,-0.2544822627452829,0.45511324872832054,0.13467450999035108,0.03951947655308723,0.34973584477906516,0.0,1,0.0029166666666666685,0,0,0.3413349365462403,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.0895783050540951,0,On,0.043038252491311775,0.0,On,0.3891200150271008,0.2918400112703255,On,-0.2544822627452829,0,On,896.5129894663883,0,84.37254900429849,51.666666666666686,46.10666666666668,0.26327191414143647,51.6664027733343,766.2157296778249,0.0,896.5129894663883,131.8321078192164,51.6664027733343,51.666402773334305,51.6664027733343,9.920878641202478,On,6149.848357487023,0.0,20.000000000000057,10.249747262478373,0.0,0.0,0.6,1,0.2514005281810482,6149.848357487023,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1431.3335934460338,20.079738041820004,2.7379089609848326,6.771872538537787,-0.3,6.529479366362011,0,3.0,1113.1007665701372,-5911.762631207288,-1008.8687173693094,782.8914649433104 +2018-01-03 15:40:00,0.34780510233078854,0.344251603212907,0.39316043022738945,0.05796751705513142,0.057375267202151164,0.06552673837123157,0.010000000000000002,0.0,-0.2519826563878831,0.45511324872832054,0.13467450999035108,0.03958685364095507,0.3535735765864344,0.0,1,0.0029166666666666685,0,0,0.3413349365462403,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.0895783050540951,0,On,0.043038252491311775,0.0,On,0.3891200150271008,0.2918400112703255,On,-0.2519826563878831,0,On,898.0414620002996,0,84.37043218640792,51.666666666666686,46.10666666666668,0.263281566702911,51.66487227789166,766.2157296778252,0.0,898.0414620002996,131.82880029126238,51.66487227789166,51.66487227789166,51.66487227789166,9.920878641202478,On,6217.332056982952,0.0,20.000000000000057,10.362220094971589,0.0,0.0,0.5999999999999999,1,0.2541592039581888,6217.332056982952,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1431.3368358218133,20.079738041820004,0.22748042513402789,6.079437549657714,-0.3,6.529479366362011,0,3.0,1169.8049036844513,-896.5374656653735,-910.7749254264735,815.0826214541106 +2018-01-03 15:50:00,0.3523550935005263,0.344251603212907,0.3624433134243602,0.05872584891675438,0.057375267202151164,0.060407218904060034,0.010000000000000002,0.0,-0.2474326652181453,0.45511324872832054,0.13467450999035108,0.0058793427116105015,0.3565639707127497,0.0,1,0.0029166666666666685,0,0,0.3413349365462403,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.00205795244494419,0.0,On,0.0895783050540951,0,On,0.043038252491311775,0.0,On,0.3891200150271008,0.2918400112703255,On,-0.2474326652181453,0,On,133.37492219571396,0,84.37764745775404,51.666666666666686,46.10666666666668,0.0,51.66486921862315,0.0,0.0,133.37492219571396,131.84007415274067,51.66486921862315,51.66486921862315,51.66486921862315,9.920878641202478,On,6269.915944738515,0.0,20.000000000000057,10.449859907897524,0.0,0.0,0.6,1,0.25630878820598046,6269.915944738515,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1431.7317320034042,20.079738041820008,0.22156034974388367,5.476476403856475,-0.3,6.529479366362011,0,3.0,1217.0290754342896,-808.2785264593015,-833.5647172458616,858.7986005342171 +2018-01-03 16:00:00,0.41333345149845013,0.3557845087178703,0.3650645876477693,0.06888890858307502,0.05929741811964505,0.060844097941294875,0.010000000000000002,0.0,-0.23063989471021704,0.47049045606827167,0.16348289014039546,0.005811965623201867,0.3592526220245674,0.0,1,0.0029166666666666685,0,0,0.35286784205120364,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.003258424704494968,0.0,On,0.10822657673821899,0,On,0.05199788869768151,0.0,On,0.3996684491694017,0.2997513368770512,On,-0.23063989471021704,0,On,131.8464496495348,0,84.37976427566277,51.666666666666686,46.10666666666668,0.0,51.666399714078075,0.0,0.0,131.8464496495348,131.84338168072307,51.666399714078075,51.66639971407808,51.666399714078075,9.920878641202478,On,6317.1939063792015,0.0,20.000000000000057,10.528656510632002,0.0,0.0,0.6,1,0.2582414707433185,6317.1939063792015,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1431.7329880031664,20.079738041820008,0.2281218256531351,4.922417158953992,-0.3,6.529479366362011,0,3.0,1308.5493698198607,-780.5753704112176,-759.7557489433502,926.5281762318838 +2018-01-03 16:10:00,0.4931336702365443,0.3557845087178703,0.4183411735536186,0.08218894503942405,0.05929741811964505,0.0697235289256031,0.010000000000000002,0.0,-0.20430886249636285,0.5239596425925116,0.16348289014039546,0.005810700099328744,0.3590612869300499,0.053469186524239945,1,0.0029166666666666685,0,0,0.35286784205120364,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.053469186524239945,0,0.053469186524239945,On,0.003258424704494968,0.0,On,0.10822657673821899,0,On,0.05199788869768151,0.0,On,0.3996684491694017,0.2997513368770512,On,-0.20430886249636285,0,On,131.8177408029181,0,84.36331723402911,51.666666666666686,46.10666666666668,0.0,51.66640277334661,0.0,0.0,131.8177408029181,131.81768317817048,51.66640277334661,51.66640277334662,51.66640277334661,9.920878641202478,On,6313.829419054513,0.0,20.000000000000057,10.523049031757521,0.0,0.0,0.6,1,0.2581039333860834,6313.829419054513,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1431.6979984509985,20.085896424852724,0.2331899041321197,4.44348108321908,-0.3,6.529479366362011,0,3.0,2354.828822370334,-775.0737418526983,-693.6291386116285,1028.9828875248074 +2018-01-03 16:20:00,0.5550313519772202,0.3557845087178703,0.3776903472465809,0.0925052253295367,0.05929741811964505,0.06294839120776348,0.010000000000000002,0.0,-0.15577847738674688,0.5373269392235716,0.16348289014039546,0.0057837813368473295,0.30507008275443365,0.06683648315529993,1,0.0029166666666666685,0,0,0.35286784205120364,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.06683648315529993,0,0.06683648315529993,On,0.003258424704494968,0.0,On,0.10822657673821899,0,On,0.05199788869768151,0.0,On,0.3996684491694017,0.2997513368770512,On,-0.15577847738674688,0,On,131.2070793688647,0,83.9717463307259,51.666666666666686,46.10666666666668,0.0,51.66640283080795,0.0,0.0,131.2070793688647,131.20585364175923,51.66640283080795,51.666402830807954,51.66640283080795,9.920878641202478,On,5364.43368717603,0.0,20.000000000000057,8.94072281196005,0.0,0.0,0.5999999999999999,1,0.2192934498468416,5364.43368717603,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1431.8028222156875,20.232477428841552,0.23332224120389328,4.051912712363251,-0.3,6.529479366362011,0,3.0,1793.58549900029,-956.3293945175405,-637.5163797786914,1032.72982459945 +2018-01-03 16:30:00,0.7933974396348393,0.403691980447487,0.40572130495865794,0.13223290660580655,0.06728199674124782,0.06762021749310965,0.010000000000000002,0.0,-0.04882979336262184,0.6012035681963939,0.23102366480106737,0.005776998471401908,0.3331078233319561,0.06683648315529993,1,0.0029166666666666685,0,0,0.4007753137808203,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.06683648315529993,0,0.06683648315529993,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,-0.04882979336262184,0,On,131.05320772105947,0,83.87385527552317,51.666666666666686,46.10666666666668,0.0,51.66640405305908,0.0,0.0,131.05320772105947,131.05289886800495,51.66640405305908,51.66640405305909,51.66640405305908,9.920878641202478,On,5857.456794222006,0.0,20.000000000000057,9.762427990370009,0.0,0.0,0.6,1,0.23944781176146077,5857.456794222006,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1421.390003372987,20.26912267983876,0.1520267378475128,3.750618885805385,-3.0,6.529479366362011,0,4.0,1827.0180499527814,-6981.9393610895195,-763.1855169033541,131.28296911123314 +2018-01-03 16:40:00,0.7466119014261294,0.403691980447487,0.3606498106842274,0.1244353169043549,0.06728199674124782,0.060108301780704566,0.010000000000000002,0.0,-0.04882979336262184,0.554418029987684,0.23102366480106737,0.005773680756309028,0.3348251849813284,0.020050944946589978,1,0.0029166666666666685,0,0,0.4007753137808203,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,On,0.020050944946589978,0,0.020050944946589978,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,On,-0.04882979336262184,0,On,130.97794420707743,0,83.82578760782793,51.666666666666686,46.10666666666668,0.0,51.66640436103628,0.0,0.0,130.97794420707743,130.97779313723115,51.66640436103628,51.666404361036285,51.66640436103628,9.920878641202478,On,5887.655339427674,0.0,20.000000000000057,9.812758899046123,0.0,0.0,0.6,1,0.2406823023982521,5887.655339427674,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1422.551722311895,20.28711652958186,-2.506048345691533,3.2362968212827266,-3.0,6.529479366362011,0,4.0,941.4179955704985,-1672.639226971829,-713.0353756358685,169.14697066715917 +2018-01-03 16:50:00,0.7753907498421613,0.403691980447487,0.4024599392989235,0.1292317916403602,0.06728199674124782,0.06707665654982058,0.010000000000000002,0.0,0.0,0.534367085041094,0.23102366480106737,0.005797225828362937,0.39666271347056054,0.0,1,0.0029166666666666685,0,0,0.4007753137808203,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.003258424704494968,0.0,On,0.15384824139402206,0,On,0.07391699870255033,0.0,On,0.46354507814222395,0.34765880860666787,Off,-0.0,0,On,131.5120723073294,0,84.16841242610678,51.666666666666686,46.10666666666668,0.0,51.66640451167771,0.0,0.0,131.5120723073294,131.51314441579186,51.66640451167772,51.666404511677726,51.66640451167771,9.920878641202478,On,6975.022930389929,0.0,20.000000000000057,11.625038217316549,0.0,0.0,0.6,1,0.2851329572444097,6975.022930389929,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1423.674915907179,20.158858151091632,-2.515666655030413,2.655269912380598,-3.0,6.529479366362011,0,4.0,1440.3790767185192,-1359.701351051174,-663.057741425754,42.97276998946588 +2018-01-03 17:00:00,1.3520512023762057,0.49894340712438057,0.4530091936826237,0.22534186706270093,0.0831572345207301,0.07550153228043728,0.010000000000000002,0.0,0.0,1.0354698506951765,0.3065813516810294,0.023309591356958065,0.4296996023256657,0.0,1,0.0029166666666666685,0,0,0.4960267404577139,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.4618470507256127,0.0658096404805412,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,Off,-0.0,0,On,528.7861392241512,0,84.31150143999082,51.666666666666686,46.10666666666668,0.13670026750074893,51.66640344260959,397.8468315964001,-0.0,528.7861392241512,131.73672099998566,51.666403442609585,51.66640344260959,51.66640344260959,9.920878641202478,On,7555.952393855126,0.0,20.000000000000057,12.593253989758544,0.0,0.0,0.5999999999999999,1,0.3088808556414949,7555.952393855126,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1421.4207036649802,20.103890274595823,-2.4202251456252206,2.0218998598518043,-3.0,6.529479366362011,0,4.0,2167.1964121787205,-1393.0714704479894,-603.1600188447301,42.88291809781586 +2018-01-03 17:10:00,1.8138982531018188,0.5647530476049217,0.4819380814504666,0.30231637551696977,0.09412550793415361,0.08032301357507776,0.010000000000000002,0.0,0.0,1.4973169014207892,0.3065813516810294,0.05434981331253513,0.4275882681379315,0.0,1,0.0029166666666666685,0,0,0.561836380938255,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.9236941014512254,0.1316192809610824,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,Off,-0.0,0,On,1232.9443064436184,0,84.20869185236137,51.666666666666686,46.10666666666668,0.3789232488756812,51.665608290576465,1102.7816203208265,0.0,1232.9443064436184,131.57608101931464,51.66560829057647,51.66560829057648,51.665608290576465,9.920878641202478,On,7518.826130475558,0.0,20.000000000000057,12.531376884125931,0.0,0.0,0.5999999999999999,1,0.307363165825347,7518.826130475558,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1420.3304992869057,20.139478003931963,-2.368878962721774,1.399270920945279,-3.0,6.529479366362011,0,4.0,2250.3073007408493,-1480.601858501896,-540.2858874498004,42.7414264372664 +2018-01-03 17:20:00,1.8138982531018188,0.5647530476049217,0.5950170143997033,0.30231637551696977,0.09412550793415361,0.09916950239995055,0.010000000000000002,0.0,0.0,1.4973169014207892,0.3065813516810294,0.16347565628112262,0.43154135811858074,0.0,1,0.0029166666666666685,0,0,0.561836380938255,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.9236941014512254,0.1316192809610824,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,Off,-0.0,0,On,3708.5017844478516,0,84.13091899633902,51.666666666666686,46.10666666666668,1.2308466294223,51.66419890384594,3582.016192802173,0.0,3708.5017844478516,131.45456093177972,51.66419890384594,51.66419890384595,51.66419890384594,9.920878641202478,On,7588.338318852623,0.0,20.000000000000057,12.64723053142104,0.0,0.0,0.6,1,0.3102047644887904,7588.338318852623,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1421.0774225023818,20.159117229686974,-2.371547849851415,0.8368804184915738,-3.0,6.529479366362011,0,4.0,2286.8733073284848,-1446.9518652634226,-481.4496455047394,42.55184937792367 +2018-01-03 17:30:00,1.5367900226664508,0.525267263316597,0.5036754591343088,0.25613167044440843,0.0875445438860995,0.08394590985571812,0.010000000000000002,0.0,0.0,1.2202086709854214,0.3065813516810294,0.00611240473237788,0.49756305440193094,0.0,1,0.0029166666666666685,0,0,0.5223505966499303,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,On,0.6465858710158577,0.09213349667275768,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,Off,-0.0,0,On,138.6620147180191,0,84.15781671368418,51.666666666666686,46.10666666666668,0.0,51.65924402577651,0.0,0.0,138.6620147180191,131.49658861513154,51.65924402577651,51.659244025776516,51.65924402577651,9.920878641202478,On,8749.281432084728,0.0,20.000000000000057,14.582135720141215,0.0,0.0,0.6,1,0.35766312360416275,8749.281432084728,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1402.5324176546364,20.15911722968697,-2.3655525323869986,0.35088071716961944,-5.8,6.529479366362011,0,4.0,2388.7083564183285,-7742.390464023705,-585.3620161117952,0.0 +2018-01-03 17:40:00,0.8902041516505932,0.43313376664383935,0.5370525404331138,0.1483673586084322,0.07218896110730655,0.0895087567388523,0.010000000000000002,0.0,0.0,0.5736227999695638,0.3065813516810294,0.022733984114823455,0.5143185563182904,0.0,1,0.0029166666666666685,0,0,0.43021709997717267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,Off,-0.0,0,On,515.728289920115,0,84.19555023896686,51.666666666666686,46.10666666666668,0.13226194712734798,51.66638913185608,384.9295947169547,-0.0,515.728289920115,131.55554724838572,51.666389131856086,51.66638913185609,51.66638913185608,9.920878641202478,On,9043.914645915836,0.0,20.000000000000057,15.073191076526395,0.0,0.0,0.6,1,0.3697074767769762,9043.914645915836,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1402.8584858403656,20.147333694233968,-5.065934033623027,-0.2904803104597584,-5.8,6.529479366362011,0,4.0,2424.920418114227,-2301.8603282743925,-525.8989186503034,0.0 +2018-01-03 17:50:00,0.8902041516505932,0.43313376664383935,0.5432747691953587,0.1483673586084322,0.07218896110730655,0.0905457948658931,0.010000000000000002,0.0,0.0,0.5736227999695638,0.3065813516810294,0.005838292359594482,0.5374364768357642,0.0,1,0.0029166666666666685,0,0,0.43021709997717267,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.006345353371911252,0.0,On,0.20279995456484726,0,On,0.09743604374427088,0.0,On,0.49636242880716014,0.37227182160537,Off,-0.0,0,On,132.44368076707076,0,84.27158221170964,51.666666666666686,46.10666666666668,0.0,51.66563442612442,0.0,0.0,132.44368076707076,131.67434720579632,51.66563442612442,51.66563442612443,51.66563442612442,9.920878641202478,On,9450.426325073902,0.0,20.000000000000057,15.750710541789838,0.0,0.0,0.6,1,0.3863253256915245,9450.426325073902,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1402.53772336172,20.119838778176952,-5.053053121321751,-0.8609032596676555,-5.8,6.529479366362011,0,4.0,2750.1018333127586,-2174.034718811512,-477.62714096514185,0.0 +2018-01-03 18:00:00,1.1629572006678905,0.4997177942749952,0.6043224572253415,0.19382620011131507,0.08328629904583253,0.10072040953755691,0.010000000000000002,0.0,0.0,0.6624015034777715,0.49055569719011904,0.054324653955884594,0.5499978032694569,0.0,1,0.0029166666666666685,0,0,0.4968011276083285,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.3256787447691636,0,On,0.15647364660410004,0.0,On,0.581921950183601,0.4364414626377007,Off,-0.0,0,On,1232.373557739153,0,84.26225121330222,51.666666666666686,46.10666666666668,0.37896413941338625,51.666401577976515,1102.9215829374173,0.0,1232.373557739153,131.65976752078473,51.666401577976515,51.66640157797652,51.666401577976515,9.920878641202478,On,9671.308038771003,0.0,20.000000000000057,16.118846731285007,0.0,0.0,0.5999999999999999,1,0.39535478077091396,9671.308038771003,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1402.0186133602476,20.119838778176952,-5.015881574437492,-1.381963320689666,-5.8,6.529479366362011,0,4.0,3181.6395405792273,-2167.5333137712505,-433.7320860357419,0.0 +2018-01-03 18:10:00,1.1629572006678905,0.4997177942749952,0.5742220403776765,0.19382620011131507,0.08328629904583253,0.09570367339627942,0.010000000000000002,0.0,0.0,0.6624015034777715,0.49055569719011904,0.026653613838373842,0.5475684265393027,0.0,1,0.0029166666666666685,0,0,0.4968011276083285,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.3256787447691636,0,On,0.15647364660410004,0.0,On,0.581921950183601,0.4364414626377007,Off,-0.0,0,On,604.6464454108907,0,84.16414204983889,51.666666666666686,46.10666666666668,0.162146637641581,51.66420004621095,471.87999191086334,-0.0,604.6464454108907,131.50647195287326,51.66420004621095,51.66420004621096,51.66420004621095,9.920878641202478,On,9628.589230514177,0.0,20.000000000000057,16.04764871752363,0.0,0.0,0.6,1,0.3936084725150435,9628.589230514177,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1401.9987477903026,20.157650979596454,-4.995743263600315,-1.847228441581073,-5.8,6.529479366362011,0,4.0,3119.6052323083522,-2194.8717339868626,-394.4558107198929,0.0 +2018-01-03 18:20:00,0.9712263985542102,0.44170140649234,0.5909330324470069,0.1618710664257017,0.07361690108205667,0.09848883874116782,0.010000000000000002,0.0,0.0,0.5850463197675647,0.3761800787866455,0.026788341436462356,0.5641446910105445,0.0,1,0.0029166666666666685,0,0,0.43878473982567334,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.24842161922065034,0,On,0.11935515374913971,0.0,On,0.5045667664733943,0.37842507485504556,Off,-0.0,0,On,607.7027875555975,0,84.16583907740336,51.666666666666686,46.10666666666668,0.16362607776604796,51.66545645464828,476.19979872453666,-0.0,607.7027875555975,131.50912355844275,51.66545645464828,51.665456454648286,51.66545645464828,9.920878641202478,On,9920.070685313685,0.0,20.000000000000057,16.533451142189477,0.0,0.0,0.5999999999999999,1,0.40552398448085725,9920.070685313685,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1402.6390945634566,20.157650979596454,-4.998939058131918,-2.2543594253950507,-5.8,6.529479366362011,0,3.0,3089.1893215740056,-2115.5534060483405,-360.2298899980708,0.0 +2018-01-03 18:30:00,0.9712263985542102,0.44170140649234,0.5798012386712647,0.1618710664257017,0.07361690108205667,0.09663353977854411,0.010000000000000002,0.0,0.0,0.5850463197675647,0.3761800787866455,0.005844302609044986,0.5739569360622196,0.0,1,0.0029166666666666685,0,0,0.43878473982567334,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.24842161922065034,0,On,0.11935515374913971,0.0,On,0.5045667664733943,0.37842507485504556,Off,-0.0,0,On,132.5800253538993,0,84.24086600137356,51.666666666666686,46.10666666666668,0.0,51.66545033731802,0.0,0.0,132.5800253538993,131.6263531271462,51.66545033731802,51.66545033731803,51.66545033731802,9.920878641202478,On,10092.611818901021,0.0,20.000000000000057,16.82101969816837,0.0,0.0,0.5999999999999999,1,0.4125773180909461,10092.611818901021,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1404.1771777989466,20.131241797978017,-4.973851635545851,-2.606452590974651,-5.6,6.529479366362011,0,3.0,3397.643758252576,-1652.6833446130038,-263.1202902580411,0.0 +2018-01-03 18:40:00,0.9712263985542102,0.44170140649234,0.649724856785404,0.1618710664257017,0.07361690108205667,0.10828747613090067,0.010000000000000002,0.0,0.0,0.5850463197675647,0.3761800787866455,0.0641641817659047,0.5855606750194994,0.0,1,0.0029166666666666685,0,0,0.43878473982567334,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.24842161922065034,0,On,0.11935515374913971,0.0,On,0.5045667664733943,0.37842507485504556,Off,-0.0,0,On,1455.5866481263456,0,84.22968136181255,51.666666666666686,46.10666666666668,0.4558315548488314,51.666401305080086,1326.6333260935808,0.0,1455.5866481263456,131.6088771278321,51.666401305080086,51.666401305080086,51.666401305080086,9.920878641202478,On,10296.655059056215,0.0,20.000000000000057,17.161091765093694,0.0,0.0,0.5999999999999999,1,0.42091843080868296,10296.655059056215,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1403.6098025178374,20.131241797978017,-4.758904734461683,-2.8159143812745575,-5.6,6.529479366362011,0,3.0,3549.7104216756634,-2029.6018055839363,-249.33905658518418,0.0 +2018-01-03 18:50:00,0.9712263985542102,0.44170140649234,0.6721661050984619,0.1618710664257017,0.07361690108205667,0.11202768418307697,0.010000000000000002,0.0,0.0,0.5850463197675647,0.3761800787866455,0.07548765730864862,0.5966784477898133,0.0,1,0.0029166666666666685,0,0,0.43878473982567334,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.08047955329417043,0.06035966497062781,Off,0.0,0,0.0,On,0.008403305816855444,0.0,On,0.24842161922065034,0,On,0.11935515374913971,0.0,On,0.5045667664733943,0.37842507485504556,Off,-0.0,0,On,1712.4636059053282,0,84.22361860340446,51.666666666666686,46.10666666666668,0.5433969812793075,51.66375328072229,1581.3798084129337,0.0,1712.4636059053282,131.59940406781948,51.66375328072229,51.6637532807223,51.66375328072229,9.920878641202478,On,10492.15294018882,0.0,20.000000000000057,17.48692156698137,0.0,0.0,0.5999999999999999,1,0.4289102165760797,10492.15294018882,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1403.2899400246663,20.13124179797802,-4.740431421696171,-3.0132947341671183,-5.6,6.529479366362011,0,3.0,3695.394579374258,-2023.1663454314821,-235.97119620337858,0.0 +2018-01-03 19:00:00,1.13656658143707,0.4726903946774679,0.6085304411463228,0.189427763572845,0.07878173244624465,0.1014217401910538,0.010000000000000002,0.0,0.0,0.6263649706810684,0.5002016107560014,0.0059416464359992194,0.6025887947103236,0.0,1,0.0029166666666666685,0,0,0.4697737280108012,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,Off,-0.0,0,On,134.78830372498567,0,84.23780770423811,51.666666666666686,46.10666666666668,0.0,51.663239136326155,0.0,0.0,134.78830372498567,131.62157453787205,51.663239136326155,51.663239136326155,51.663239136326155,9.920878641202478,On,10596.082056531588,0.0,20.000000000000057,17.66013676088598,0.0,0.0,0.6,1,0.4331587497468452,10596.082056531588,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1402.9830138075226,20.131241797978017,-4.723784594372061,-3.1920722648018875,-5.6,6.529479366362011,0,4.0,3996.526431826326,-2029.7930563438508,-223.94736178764742,0.0 +2018-01-03 19:10:00,1.13656658143707,0.4726903946774679,0.6094114222310311,0.189427763572845,0.07878173244624465,0.1015685703718385,0.010000000000000002,0.0,0.0,0.6263649706810684,0.5002016107560014,0.005798410344178421,0.6036130118868527,0.0,1,0.0029166666666666685,0,0,0.4697737280108012,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,Off,-0.0,0,On,131.53894345815,0,84.18074963355633,51.666666666666686,46.10666666666668,0.0,51.66639688516653,0.0,0.0,131.53894345815,131.53242130243177,51.66639688516653,51.666396885166535,51.66639688516653,9.920878641202478,On,10614.092164488255,0.0,20.000000000000057,17.690153607480426,0.0,0.0,0.6,1,0.43389498751885325,10614.092164488255,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1402.6888284406934,20.154235882087022,-4.714981575419744,-3.3522671217305207,-5.6,6.529479366362011,0,4.0,3991.5289919599745,-2037.3736269878514,-213.3304048675888,0.0 +2018-01-03 19:20:00,1.13656658143707,0.4726903946774679,0.6187279555954692,0.189427763572845,0.07878173244624465,0.1031213259325782,0.010000000000000002,0.0,0.0,0.6263649706810684,0.5002016107560014,0.00579812403318899,0.6129298315622802,0.0,1,0.0029166666666666685,0,0,0.4697737280108012,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,Off,-0.0,0,On,131.53244839436272,0,84.1807586287309,51.666666666666686,46.10666666666668,0.0,51.66640338882644,0.0,0.0,131.53244839436272,131.53243535739202,51.66640338882643,51.66640338882644,51.66640338882644,9.920878641202478,On,10777.92160614622,0.0,20.000000000000057,17.963202676910367,0.0,0.0,0.6,1,0.4405921946319809,10777.92160614622,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1402.8869205098815,20.154235882087022,-4.713459744701865,-3.4955169685100866,-5.6,6.529479366362011,0,4.0,4113.608168967553,-2001.1989045393275,-203.97994038522893,0.0 +2018-01-03 19:30:00,1.13656658143707,0.4726903946774679,0.7972384367126514,0.189427763572845,0.07878173244624465,0.1328730727854419,0.010000000000000002,0.0,0.0,0.6263649706810684,0.5002016107560014,0.13206803399130537,0.665170402721346,0.0,1,0.0029166666666666685,0,0,0.4697737280108012,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,Off,-0.0,0,On,2996.009013617474,0,84.15371416077834,51.666666666666686,46.10666666666668,0.9862249333644354,51.66640340182643,2870.268447682011,0.0,2996.009013617474,131.49017837621614,51.666403401826436,51.66640340182644,51.66640340182643,9.920878641202478,On,11696.533740226208,0.0,20.000000000000057,19.494222900377014,0.0,0.0,0.6,1,0.4781442710860411,11696.533740226208,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1389.5005693567396,20.154235882087022,-4.699468367760708,-3.6237785065929478,-7.2,6.529479366362011,0,4.0,4246.247030494775,-5568.7654583638705,-264.8900454386333,0.0 +2018-01-03 19:40:00,1.13656658143707,0.4726903946774679,0.6797029200864338,0.189427763572845,0.07878173244624465,0.11328382001440564,0.010000000000000002,0.0,0.0,0.6263649706810684,0.5002016107560014,0.00605052118033049,0.6736523989061034,0.0,1,0.0029166666666666685,0,0,0.4697737280108012,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.33034081269019455,0,On,0.15871355565569248,0.0,On,0.5491045995186649,0.4118284496389985,Off,-0.0,0,On,137.25816494358503,0,84.17282894797077,51.666666666666686,46.10666666666668,0.0,51.66067009438376,0.0,0.0,137.25816494358503,131.52004523120434,51.66067009438376,51.66067009438377,51.66067009438376,9.920878641202478,On,11845.68342300463,0.0,20.000000000000057,19.74280570500772,0.0,0.0,0.5999999999999999,1,0.4842413822421043,11845.68342300463,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1389.2818696308295,20.154235882087022,-6.220655493707939,-3.842732891813218,-7.2,6.529479366362011,0,4.0,4357.328028529746,-2506.633050413293,-251.51760792481826,0.0 +2018-01-03 19:50:00,0.9515611219240614,0.4208272601444883,0.6922498554409526,0.1585935203206769,0.07013787669074804,0.11537497590682544,0.010000000000000002,0.0,0.0,0.5572141246370956,0.3843469972869657,0.005798627971142829,0.6864512274698098,0.0,1,0.0029166666666666685,0,0,0.4179105934778216,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07726037116240361,0.057945278371802696,Off,0.0,0,0.0,On,0.011147242410114364,0.0,On,0.2520846725871747,0,On,0.12111508228967661,0.0,On,0.47995375347469205,0.3599653151060189,Off,-0.0,0,On,131.54388040108213,0,84.18074279627325,51.666666666666686,46.10666666666668,0.0,51.66639194168964,0.0,0.0,131.54388040108213,131.53241061917694,51.66639194168964,51.66639194168964,51.66639194168964,9.920878641202478,On,12070.741437489796,0.0,20.000000000000057,20.117902395816326,0.0,0.0,0.6,1,0.4934415609170901,12070.741437489796,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1389.2559695042914,20.154235882087022,-6.214815297582681,-4.054784344437624,-7.2,6.529479366362011,0,3.0,4283.483430180414,-2431.28893980849,-240.47139770632035,0.0 +2018-01-03 20:00:00,0.8681726204250984,0.40116030709604916,0.7100846249826462,0.1446954367375164,0.06686005118267485,0.1183474374971077,0.010000000000000002,0.0,0.0,0.5309915205725102,0.32718109985258814,0.005802813807994529,0.7042818111746517,0.0,1,0.0029166666666666685,0,0,0.3982436404293825,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.21045906614939816,0,On,0.10111589432902988,0.0,On,0.45534074047598994,0.34150555535699234,Off,-0.0,0,On,131.6388375573161,0,84.24897802014863,51.666666666666686,46.10666666666668,0.0,51.66640337894504,0.0,0.0,131.6388375573161,131.63902815648223,51.66640337894504,51.66640337894505,51.66640337894504,9.920878641202478,On,12384.279176178059,0.0,20.000000000000057,20.640465293630097,0.0,0.0,0.6,1,0.5062587148579606,12384.279176178059,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1389.2313261421386,20.12869857383484,-6.194238838409479,-4.2647593596525,-7.2,6.529479366362011,0,3.0,4456.44644048015,-2387.1751108179424,-229.0766285972425,0.0 +2018-01-03 20:10:00,0.8681726204250984,0.40116030709604916,0.722418373092475,0.1446954367375164,0.06686005118267485,0.12040306218207916,0.010000000000000002,0.0,0.0,0.5309915205725102,0.32718109985258814,0.005804947770472555,0.7166134253220025,0.0,1,0.0029166666666666685,0,0,0.3982436404293825,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.21045906614939816,0,On,0.10111589432902988,0.0,On,0.45534074047598994,0.34150555535699234,Off,-0.0,0,On,131.68724723394766,0,84.27990041756297,51.666666666666686,46.10666666666668,0.0,51.66640318888639,0.0,0.0,131.68724723394766,131.68734440244214,51.66640318888639,51.66640318888639,51.66640318888639,9.920878641202478,On,12601.121567775514,0.0,20.000000000000057,21.001869279625854,0.0,0.0,0.6,1,0.5151230459130953,12601.121567775514,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1388.6722270089558,20.117122959732903,-6.166667179720527,-4.464133254990105,-7.2,6.529479366362011,0,3.0,4627.562492733001,-2384.4859201765044,-217.80509801862596,0.0 +2018-01-03 20:20:00,1.2881121804256945,0.48410996061070244,0.8451556268320548,0.2146853634042824,0.08068499343511706,0.1408592711386758,0.010000000000000002,0.0,0.0,0.8557823980219408,0.42232978240375363,0.005804952035995715,0.7194821110164835,0.11986856377957562,1,0.0029166666666666685,0,0,0.48119329394403576,0.0,Off,0.0,0.0,On,0.2644303931907087,0.03767929032061181,0.11986856377957562,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.2747290024893251,0,On,0.13199464054026844,0.0,On,0.5157012247347119,0.3867759185510338,Off,-0.0,0,On,131.68734399881535,0,84.27990028354938,51.666666666666686,46.10666666666668,0.0,51.666403091993445,0.0,0.0,131.68734399881535,131.6873441930459,51.66640309199345,51.66640309199346,51.666403091993445,9.920878641202478,On,12651.565302010118,0.0,20.000000000000057,21.085942170016864,0.0,0.0,0.6,1,0.5171851425198458,12651.565302010118,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1388.3874596216,20.117122959732903,-6.147748409636753,-4.647256366954385,-7.2,6.529479366362011,0,4.0,5382.371146009308,-2401.6926937430876,-207.25146534072383,0.0 +2018-01-03 20:30:00,1.4643991092195003,0.5092294874911103,0.9726940411630765,0.24406651820325004,0.08487158124851837,0.1621156735271794,0.010000000000000002,0.0,0.0,1.0320693268157468,0.42232978240375363,0.036112425366955046,0.7368006761634953,0.19978093963262605,1,0.0029166666666666685,0,0,0.5063128208244436,0.0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.2747290024893251,0,On,0.13199464054026844,0.0,On,0.5157012247347119,0.3867759185510338,Off,-0.0,0,On,819.2228553209816,0,84.02514304335506,51.666666666666686,46.10666666666668,0.2368483212266461,51.66640309179977,689.3135990137838,-0.0,819.2228553209816,131.28928600524227,51.66640309179977,51.66640309179978,51.66640309179977,9.920878641202478,On,12956.099569839213,0.0,20.000000000000057,21.593499283065356,0.0,0.0,0.6,1,0.5296342422912664,12956.099569839213,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1373.3556264053648,20.21005768509131,-6.1433137346313575,-4.812165767362268,-8.8,6.529479366362011,0,4.0,5276.502477854347,-6070.836821773712,-305.01236084009696,0.0 +2018-01-03 20:40:00,1.4643991092195003,0.5092294874911103,0.9602220034356981,0.24406651820325004,0.08487158124851837,0.16003700057261633,0.010000000000000002,0.0,0.0,1.0320693268157468,0.42232978240375363,0.03616325477500576,0.7242778090280663,0.19978093963262605,1,0.0029166666666666685,0,0,0.5063128208244436,0.0,Off,0.0,0.0,On,0.4407173219845146,0.0627988172010197,0.19978093963262605,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.2747290024893251,0,On,0.13199464054026844,0.0,On,0.5157012247347119,0.3867759185510338,Off,-0.0,0,On,820.3759380168808,0,83.89592082800272,51.666666666666686,46.10666666666668,0.2368483212266461,51.66502697564926,689.2908762048395,-0.0,820.3759380168808,131.08737629375423,51.66502697564926,51.66502697564927,51.66502697564926,9.920878641202478,On,12735.894134698594,0.0,20.000000000000057,21.226490224497656,0.0,0.0,0.6,1,0.5206324328994475,12735.894134698594,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1375.0633780205612,20.25771843395183,-7.717198397822045,-5.115551720552798,-8.8,6.529479366362011,0,4.0,5073.028861919351,-2975.668299735344,-284.6033713139448,0.0 +2018-01-03 20:50:00,1.423230613275875,0.6420809132426517,0.8752307029013076,0.23720510221264582,0.10701348554044195,0.1458717838168846,0.010000000000000002,0.0,0.0,0.9909008308721214,0.42232978240375363,0.025426791239194484,0.7299353478825374,0.11986856377957562,1,0.0029166666666666685,0,0,0.639164246575985,0.0,On,0.13511843285018058,0.15797095263194932,On,0.2644303931907087,0.03767929032061181,0.11986856377957562,Off,0.0,0.0,On,0.07565078009652021,0.05673808507239014,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.2747290024893251,0,On,0.13199464054026844,0.0,On,0.5157012247347119,0.3867759185510338,Off,-0.0,0,On,576.815550574575,0,83.89821719315783,51.666666666666686,46.10666666666668,0.15298815007462788,51.66502466773105,445.23570881789897,-0.0,576.815550574575,131.09096436430912,51.66502466773106,51.66502466773107,51.66502466773105,9.920878641202478,On,12835.377806592644,0.0,20.000000000000057,21.39229634432107,0.0,0.0,0.6,1,0.5246992401125239,12835.377806592644,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1374.7061097102373,20.25771843395183,-7.743238723480641,-5.390348825316701,-8.8,6.529479366362011,0,4.0,4848.033431464342,-2859.153843620474,-268.527053698384,0.0 +2018-01-03 21:00:00,1.2410006626621846,0.8238886892678374,0.8088124233257399,0.20683344377703075,0.13731478154463955,0.13480207055428997,0.010000000000000002,0.0,0.0,0.9058556034871814,0.32514505917500325,0.05650937997121323,0.7523030433545267,0.0,1,0.0029166666666666685,0,0,0.8209720226011707,0.0,On,0.3377960821254514,0.3949273815798733,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,Off,-0.0,0,On,1281.9348227659355,0,84.00573648423436,51.666666666666686,46.10666666666668,0.39586726106721004,51.66551215874391,1152.0911835475117,0.0,1281.9348227659355,131.2589632566162,51.66551215874391,51.66551215874391,51.66551215874391,9.920878641202478,On,13228.69732849089,0.0,20.000000000000057,22.047828880818155,0.0,0.0,0.5999999999999999,1,0.5407778049488026,13228.69732849089,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1374.6476240385216,20.215228789382255,-7.733527180485475,-5.648741477927774,-8.8,6.529479366362011,0,4.0,4608.47109437386,-2774.7375380041453,-253.2708280481874,0.0 +2018-01-03 21:10:00,0.9032045805367332,0.42896130768796414,0.8968442416330942,0.1505340967561222,0.07149355128132735,0.14947404027218236,0.010000000000000002,0.0,0.0,0.5680595213617301,0.32514505917500325,0.1068476781005416,0.7899965635325525,0.0,1,0.0029166666666666685,0,0,0.42604464102129747,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,Off,-0.0,0,On,2423.876520297075,0,84.20832134601253,51.666666666666686,46.10666666666668,0.7884662468128527,51.66410084834245,2294.593137553698,0.0,2423.876520297075,131.57550210314457,51.66410084834245,51.66410084834246,51.66410084834245,9.920878641202478,On,13891.51023890668,0.0,20.000000000000057,23.152517064844467,0.0,0.0,0.6,1,0.5678730284531162,13891.51023890668,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1373.8156917907368,20.134632531077784,-7.69911504563036,-5.885816455388348,-8.8,6.529479366362011,0,4.0,5078.326376325335,-2694.227573466669,-238.99128161901257,0.0 +2018-01-03 21:20:00,0.9032045805367332,0.42896130768796414,0.8299391715636076,0.1505340967561222,0.07149355128132735,0.13832319526060127,0.010000000000000002,0.0,0.0,0.5680595213617301,0.32514505917500325,0.02813040736540382,0.8018087641982038,0.0,1,0.0029166666666666685,0,0,0.42604464102129747,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,Off,-0.0,0,On,638.1480171729496,0,84.2565765774779,51.666666666666686,46.10666666666668,0.17281994730652406,51.661815229073284,502.9127801507241,-0.0,638.1480171729496,131.65090090230922,51.661815229073284,51.661815229073284,51.661815229073284,9.920878641202478,On,14099.21912533167,0.0,20.000000000000057,23.49869854221945,0.0,0.0,0.6,1,0.5763639896475606,14099.21912533167,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1372.2037606922304,20.121704770350423,-7.641877905081266,-6.098290893437094,-8.8,6.529479366362011,0,4.0,5243.855472775782,-2754.583996469383,-226.0946011878537,0.0 +2018-01-03 21:30:00,0.9032045805367332,0.42896130768796414,0.9022777392296549,0.1505340967561222,0.07149355128132735,0.15037962320494247,0.010000000000000002,0.0,0.0,0.5680595213617301,0.32514505917500325,0.0574024475564304,0.8448752916732245,0.0,1,0.0029166666666666685,0,0,0.42604464102129747,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,Off,-0.0,0,On,1302.1943697147178,0,84.25521680479928,51.666666666666686,46.10666666666668,0.4026675086246149,51.66538940057877,1171.8784754281048,0.0,1302.1943697147178,131.64877625749887,51.66538940057877,51.665389400578775,51.66538940057877,9.920878641202478,On,14856.51242885976,0.0,20.000000000000057,24.760854048099603,0.0,0.0,0.5999999999999999,1,0.6073214906179956,14856.51242885976,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1360.541236249628,20.121704770350426,-7.623776392818536,-6.285974784944601,-9.9,6.529479366362011,0,4.0,5340.38815809718,-5194.1126619501865,-311.21359238203894,0.0 +2018-01-03 21:40:00,0.9032045805367332,0.42896130768796414,0.9534209337106317,0.1505340967561222,0.07149355128132735,0.15890348895177195,0.010000000000000002,0.0,0.0,0.5680595213617301,0.32514505917500325,0.10233960755894096,0.8510813261516907,0.0,1,0.0029166666666666685,0,0,0.42604464102129747,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,Off,-0.0,0,On,2321.6093813954076,0,84.24376642486953,51.666666666666686,46.10666666666668,0.7532224872209201,51.664060298451865,2192.0246786519883,0.0,2321.6093813954076,131.63088503885865,51.664060298451865,51.66406029845187,51.664060298451865,9.920878641202478,On,14965.640994071638,0.0,20.000000000000057,24.942734990119398,0.0,0.0,0.6,1,0.6117825728006978,14965.640994071638,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1360.349199462088,20.121704770350423,-8.658786768793577,-6.588731812761009,-9.9,6.529479366362011,0,4.0,5421.890216668745,-3104.3291576096995,-289.4706103407507,0.0 +2018-01-03 21:50:00,0.9032045805367332,0.42896130768796414,0.8847365796632563,0.1505340967561222,0.07149355128132735,0.1474560966105427,0.010000000000000002,0.0,0.0,0.5680595213617301,0.32514505917500325,0.02768627003537164,0.8570503096278846,0.0,1,0.0029166666666666685,0,0,0.42604464102129747,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07404118903063679,0.05553089177297758,Off,0.0,0,0.0,On,0.018007083893261663,0.0,On,0.20746202248587825,0,On,0.09967595279586332,0.0,On,0.49401833233109327,0.37051374924831987,Off,-0.0,0,On,628.072608280681,0,84.25695287779516,51.666666666666686,46.10666666666668,0.169420210638199,51.66201991880813,493.02183165868695,-0.0,628.072608280681,131.65148887155493,51.66201991880813,51.66201991880813,51.66201991880813,9.920878641202478,On,15070.60119124596,0.0,20.000000000000057,25.1176686520766,0.0,0.0,0.6,1,0.6160732556718432,15070.60119124596,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1360.447765398572,20.121704770350426,-8.654154975156803,-6.850296548015929,-9.9,6.529479366362011,0,4.0,5500.316347577965,-3059.314807505806,-272.52242568337147,0.0 +2018-01-03 22:00:00,0.6988398147243176,0.35402643636082015,0.8930859650043369,0.11647330245405292,0.05900440606013669,0.14884766083405615,0.010000000000000002,0.0,0.0,0.4681463595922048,0.22069345513211272,0.030222974288965556,0.8628629907153713,0.0,1,0.0029166666666666685,0,0,0.3511097696941535,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.13853001822492028,0,On,0.06655729753303233,0.0,On,0.3973243526933348,0.297993264520001,Off,-0.0,0,On,685.6186213389924,0,84.26106580512547,51.666666666666686,46.10666666666668,0.19038525342620358,51.665409566712256,554.0762130806156,-0.0,685.6186213389924,131.65791532050855,51.665409566712256,51.66540956671226,51.665409566712256,9.920878641202478,On,15172.812925536615,0.0,20.000000000000057,25.288021542561026,0.0,0.0,0.6,1,0.6202515837367439,15172.812925536615,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1360.1413829138608,20.121704770350423,-8.64430102885966,-7.085320127576477,-9.9,6.529479366362011,0,4.0,5378.773870602959,-3038.6802388646006,-257.4050298828636,0.0 +2018-01-03 22:10:00,0.6988398147243176,0.35402643636082015,0.9039567849270671,0.11647330245405292,0.05900440606013669,0.15065946415451117,0.010000000000000002,0.0,0.0,0.4681463595922048,0.22069345513211272,0.02457462494811985,0.8793821599789472,0.0,1,0.0029166666666666685,0,0,0.3511097696941535,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.13853001822492028,0,On,0.06655729753303233,0.0,On,0.3973243526933348,0.297993264520001,Off,-0.0,0,On,557.4838636250392,0,84.33693821055374,51.666666666666686,46.10666666666668,0.14618867673797775,51.66529438721002,425.45020401620496,-0.0,557.4838636250392,131.77646595399023,51.66529438721002,51.665294387210025,51.66529438721002,9.920878641202478,On,15463.290402979137,0.0,20.000000000000057,25.772150671631895,0.0,0.0,0.6,1,0.6321260539689806,15463.290402979137,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1359.8847807141115,20.09369668034606,-8.635092674721282,-7.294605769809101,-9.9,6.529479366362011,0,4.0,5619.421272920536,-2984.8017195659413,-243.8520471050885,0.0 +2018-01-03 22:20:00,0.6988398147243176,0.35402643636082015,1.0188179195295537,0.11647330245405292,0.05900440606013669,0.16980298658825893,0.010000000000000002,0.0,0.0,0.4681463595922048,0.22069345513211272,0.13370565370681586,0.8851122658227377,0.0,1,0.0029166666666666685,0,0,0.3511097696941535,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.13853001822492028,0,On,0.06655729753303233,0.0,On,0.3973243526933348,0.297993264520001,Off,-0.0,0,On,3033.1589830708704,0,84.31391682571353,51.666666666666686,46.10666666666668,0.9986559100586156,51.665550851504044,2906.387693448133,0.0,3033.1589830708704,131.7404950401774,51.665550851504044,51.66555085150405,51.665550851504044,9.920878641202478,On,15564.050112164574,0.0,20.000000000000057,25.940083520274293,0.0,0.0,0.5999999999999999,1,0.6362450244924974,15564.050112164574,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1359.0956027673258,20.093696680346063,-8.610036242332168,-7.4786780391256995,-9.9,6.529479366362011,0,4.0,5694.310176986462,-3002.8305018352344,-231.90206861835713,0.0 +2018-01-03 22:30:00,0.49533279115822143,0.29161486768553974,1.013923709912516,0.0825554651930369,0.048602477947589956,0.16898728498541932,0.010000000000000002,0.0,0.0,0.3849309346918309,0.10040185646639052,0.07348020242539412,0.9404435074871218,0.0,1,0.0029166666666666685,0,0,0.28869820101887306,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.057276834458380506,0,On,0.027518882633849905,0.0,On,0.3141089277929609,0.2355816958447206,Off,-0.0,0,On,1666.9237978011442,0,84.3200092482494,51.666666666666686,46.10666666666668,0.5266170836579172,51.660595737972905,1532.4314593556503,0.0,1666.9237978011442,131.7500144503897,51.660595737972905,51.66059573797291,51.660595737972905,9.920878641202478,On,16537.00942058888,0.0,20.000000000000057,27.561682367648135,0.0,0.0,0.6,1,0.676018766838315,16537.00942058888,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1342.1596601838555,20.093696680346063,-8.601256494317342,-7.639315544159976,-11.4,6.529479366362011,0,4.0,5583.712686972815,-6312.543478383101,-319.6988357950753,0.0 +2018-01-03 22:40:00,0.49533279115822143,0.29161486768553974,0.9625829549244905,0.0825554651930369,0.048602477947589956,0.1604304924874151,0.010000000000000002,0.0,0.0,0.3849309346918309,0.10040185646639052,0.0059496733575678815,0.9566332815669226,0.0,1,0.0029166666666666685,0,0,0.28869820101887306,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.057276834458380506,0,On,0.027518882633849905,0.0,On,0.3141089277929609,0.2355816958447206,Off,-0.0,0,On,134.97039721607902,0,84.41308261745014,51.666666666666686,46.10666666666668,0.0,51.66333028516776,0.0,0.0,134.97039721607902,131.89544158976585,51.66333028516776,51.66333028516776,51.66333028516776,9.920878641202478,On,16821.694725281188,0.0,20.000000000000057,28.036157875468646,0.0,0.0,0.6,1,0.6876564580145367,16821.694725281188,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1341.9012572611268,20.06567643485331,-10.017796745905228,-7.922016873027291,-11.4,6.529479366362011,0,4.0,5820.093766179652,-3427.8980145976807,-299.68737419755166,0.0 +2018-01-03 22:50:00,0.49533279115822143,0.29161486768553974,0.9678744886463901,0.0825554651930369,0.048602477947589956,0.16131241477439834,0.010000000000000002,0.0,0.0,0.3849309346918309,0.10040185646639052,0.005814688296320577,0.9620598003500695,0.0,1,0.0029166666666666685,0,0,0.28869820101887306,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.07082200689886999,0.05311650517415247,Off,0.0,0,0.0,On,0.015606139374160109,0.0,On,0.057276834458380506,0,On,0.027518882633849905,0.0,On,0.3141089277929609,0.2355816958447206,Off,-0.0,0,On,131.908214430597,0,84.41732350707841,51.666666666666686,46.10666666666668,0.0,51.66639652070274,0.0,0.0,131.908214430597,131.90206797981,51.66639652070274,51.66639652070275,51.66639652070274,9.920878641202478,On,16917.116078635718,0.0,20.000000000000057,28.195193464392865,0.0,0.0,0.6,1,0.6915572011286127,16917.116078635718,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1342.1773355523069,20.06567643485331,-9.999766249312085,-8.17490125170844,-11.4,6.529479366362011,0,4.0,5891.086694795082,-3402.0265232358106,-283.94101265514865,0.0 +2018-01-03 23:00:00,0.4394113140289816,0.2800819621805764,0.9731102397378082,0.07323521900483027,0.046680327030096065,0.16218503995630135,0.010000000000000002,0.0,0.0,0.3695537273518797,0.05985758667710192,0.005814418478106249,0.9672958212597019,0.0,1,0.0029166666666666685,0,0,0.2771652955139097,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.03313398272447012,0,On,0.015919353616674802,0.0,On,0.30356049365065996,0.2276703702379949,Off,-0.0,0,On,131.9020935111153,0,84.41733198408286,51.666666666666686,46.10666666666668,0.0,51.66640264972315,0.0,0.0,131.9020935111153,131.90208122512948,51.66640264972316,51.66640264972317,51.66640264972315,9.920878641202478,On,17009.187666582937,0.0,20.000000000000057,28.34864611097156,0.0,0.0,0.6,1,0.6953210087048141,17009.187666582937,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1341.8021878156594,20.06567643485331,-9.990341440836314,-8.410261673962435,-11.4,6.529479366362011,0,4.0,5904.8616169906545,-3378.424915688677,-269.15770214944257,0.0 +2018-01-03 23:10:00,0.4394113140289816,0.2800819621805764,0.9812758668515118,0.07323521900483027,0.046680327030096065,0.1635459778085853,0.010000000000000002,0.0,0.0,0.3695537273518797,0.05985758667710192,0.00581585424653536,0.9754600126049764,0.0,1,0.0029166666666666685,0,0,0.2771652955139097,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.03313398272447012,0,On,0.015919353616674802,0.0,On,0.30356049365065996,0.2276703702379949,Off,-0.0,0,On,131.93466441434668,0,84.43822706628615,51.666666666666686,46.10666666666668,0.0,51.6664026619743,0.0,0.0,131.93466441434668,131.9347297910721,51.6664026619743,51.66640266197431,51.6664026619743,9.920878641202478,On,17152.748984315935,0.0,20.000000000000057,28.587914973859892,0.0,0.0,0.6,1,0.7011896722890965,17152.748984315935,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1341.445314901627,20.057854558926866,-9.981879458823906,-8.624478144279635,-11.4,6.529479366362011,0,4.0,6018.892982165611,-3349.9413050725643,-255.4172264940002,0.0 +2018-01-03 23:20:00,0.4394113140289816,0.2800819621805764,0.986352555840001,0.07323521900483027,0.046680327030096065,0.16439209264000015,0.010000000000000002,0.0,0.0,0.3695537273518797,0.05985758667710192,0.005815857116456706,0.9805366987235443,0.0,1,0.0029166666666666685,0,0,0.2771652955139097,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.03313398272447012,0,On,0.015919353616674802,0.0,On,0.30356049365065996,0.2276703702379949,Off,-0.0,0,On,131.93472951950466,0,84.43822697611628,51.666666666666686,46.10666666666668,0.0,51.66640259678297,0.0,0.0,131.93472951950466,131.93472965018168,51.66640259678298,51.66640259678299,51.66640259678297,9.920878641202478,On,17242.0187868078,0.0,20.000000000000057,28.736697978012998,0.0,0.0,0.6,1,0.7048389452780394,17242.0187868078,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1340.9352278465005,20.057854558926866,-9.969354055888306,-8.81513079243627,-11.4,6.529479366362011,0,4.0,6085.667022298156,-3343.6746914338896,-243.05462606875045,0.0 +2018-01-03 23:30:00,0.4394113140289816,0.2800819621805764,1.022572679750209,0.07323521900483027,0.046680327030096065,0.17042877995836817,0.010000000000000002,0.0,0.0,0.3695537273518797,0.05985758667710192,0.005815857122193458,1.0167568226280155,0.0,1,0.0029166666666666685,0,0,0.2771652955139097,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.03313398272447012,0,On,0.015919353616674802,0.0,On,0.30356049365065996,0.2276703702379949,Off,-0.0,0,On,131.93472964964488,0,84.43822697593842,51.666666666666686,46.10666666666668,0.0,51.666402596652674,0.0,0.0,131.93472964964488,131.93472964990377,51.666402596652674,51.666402596652674,51.666402596652674,9.920878641202478,On,17878.923104243724,0.0,20.000000000000057,29.798205173739547,0.0,0.0,0.5999999999999999,1,0.7308750477144919,17878.923104243724,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1328.65660105272,20.057854558926866,-9.961600900956029,-8.982433662157822,-12.4,6.529479366362011,0,4.0,6160.629805245408,-5551.392886944472,-310.5551533611563,0.0 +2018-01-03 23:40:00,0.4394113140289816,0.2800819621805764,1.0273679197573988,0.07323521900483027,0.046680327030096065,0.17122798662623312,0.010000000000000002,0.0,0.0,0.3695537273518797,0.05985758667710192,0.005815857122204766,1.0215520626351942,0.0,1,0.0029166666666666685,0,0,0.2771652955139097,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.03313398272447012,0,On,0.015919353616674802,0.0,On,0.30356049365065996,0.2276703702379949,Off,-0.0,0,On,131.9347296499014,0,84.43822697593843,51.666666666666686,46.10666666666668,0.0,51.66640259665242,0.0,0.0,131.9347296499014,131.9347296499038,51.66640259665242,51.66640259665242,51.66640259665242,9.920878641202478,On,17963.243883260624,0.0,20.000000000000057,29.938739805434377,0.0,0.0,0.5999999999999999,1,0.7343220088669045,17963.243883260624,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1328.2808496506957,20.057854558926866,-10.906947521454395,-9.236869113811437,-12.4,6.529479366362011,0,4.0,6223.568971175424,-3643.2221773824285,-291.0648375386223,0.0 +2018-01-03 23:50:00,0.38370211796172626,0.25678750344966184,1.0320025618699629,0.06395035299362103,0.042797917241610306,0.17200042697832713,0.010000000000000002,0.0,0.0,0.3384944490439936,0.03520766891773262,0.005815857122204766,1.0261867047477582,0.0,1,0.0029166666666666685,0,0,0.25387083678299516,0.0,Off,0.0,0.0,Off,0.0,0.0,0.0,Off,0.0,0.0,On,0.06599323370121975,0.04949492527591479,Off,0.0,0,0.0,On,0.010804250335956998,0.0,On,0.016483740149359508,0,On,0.007919678432416108,0.0,On,0.2725012153427739,0.20437591150708034,Off,-0.0,0,On,131.9347296499014,0,84.43822697593843,51.666666666666686,46.10666666666668,0.0,51.66640259665242,0.0,0.0,131.9347296499014,131.9347296499038,51.66640259665242,51.66640259665242,51.66640259665242,9.920878641202478,On,18044.740666072514,0.0,20.000000000000057,30.074567776787525,0.0,0.0,0.6,1,0.7376535274756556,18044.740666072514,24462.352573333334,Off,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0,0,0.0,0,1326.4826500178503,20.057854558926866,-10.903963097981812,-9.443005718786914,-12.4,6.529479366362011,0,4.0,6231.094452580019,-3600.4918931239986,-276.0821074736838,0.0 diff --git a/ochre/defaults/Input Files/OCHRE.json b/ochre/defaults/Input Files/OCHRE.json new file mode 100644 index 0000000..bbd13a1 --- /dev/null +++ b/ochre/defaults/Input Files/OCHRE.json @@ -0,0 +1,368 @@ +{ + "Occupancy": { + "Number of Occupants (-)": 4.0, + "weekday_fractions": [0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061], + "weekend_fractions": [0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061], + "month_multipliers": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0] + }, + "Construction": { + "Number of Bedrooms (-)": 4, + "Number of Bathrooms (-)": 2, + "House Type": "single-family detached", + "Total Floors": 4.0, + "Indoor Floors": 3.0, + "Conditioned Floor Area (m^2)": 248.79434111999998, + "Conditioned Volume (m^3)": 606.6601213870078, + "Ceiling Height (m)": 2.4383999999999997, + "Foundation Type": "Finished Basement", + "First Floor Area (m^2)": 62.198585279999996, + "Attic Floor Area (m^2)": 62.198585279999996, + "Garage Floor Area (m^2)": 0, + "Garage Protruded Area (m^2)": 0, + "Indoor Floor Area (m^2)": 186.59575583999998, + "Number of Bedrooms, Adjusted (-)": 3.68 + }, + "Boundaries": { + "Exterior Wall": { + "Interior Zone": "Indoor", + "Exterior Zone": "Outdoor", + "Area (m^2)": [ + 68.11650892800002, + 37.848698496, + 66.249157824, + 37.848698496 + ], + "Azimuth (deg)": [ + 270, + 0, + 90, + 180 + ], + "Boundary R Value": 4.8, + "Exterior Solar Absorptivity (-)": 0.85, + "Exterior Emissivity (-)": 0.9, + "Finish Type": "wood siding", + "Construction Type": "WoodStud" + }, + "Attic Wall": { + "Interior Zone": "Attic", + "Exterior Zone": "Outdoor", + "Area (m^2)": [ + 4.3199913599999995, + 4.3199913599999995 + ], + "Azimuth (deg)": [ + 0, + 180 + ], + "Boundary R Value": 4.0, + "Exterior Solar Absorptivity (-)": 0.85, + "Exterior Emissivity (-)": 0.9, + "Finish Type": "wood siding", + "Construction Type": "WoodStud" + }, + "Foundation Wall": { + "Interior Zone": "Foundation", + "Exterior Zone": "Ground", + "Area (m^2)": [ + 25.799174207999997, + 14.334939072, + 25.799174207999997, + 14.334939072 + ], + "Azimuth (deg)": [ + 270, + 0, + 90, + 180 + ], + "Insulation Details": "Uninsulated", + "Height (m)": 2.4383999999999997, + "Construction Type": "Finished Basement" + }, + "Attic Floor": { + "Interior Zone": "Indoor", + "Exterior Zone": "Attic", + "Area (m^2)": [ + 62.198585279999996 + ], + "Boundary R Value": 20.6 + }, + "Foundation Floor": { + "Interior Zone": "Foundation", + "Exterior Zone": "Ground", + "Area (m^2)": [ + 62.198585279999996 + ], + "Insulation Details": "Uninsulated" + }, + "Attic Roof": { + "Interior Zone": "Attic", + "Exterior Zone": "Outdoor", + "Area (m^2)": [ + 34.773607872, + 34.773607872 + ], + "Azimuth (deg)": [ + 270, + 90 + ], + "Boundary R Value": 2.3, + "Exterior Solar Absorptivity (-)": 0.85, + "Exterior Emissivity (-)": 0.9, + "Finish Type": "asphalt or fiberglass shingles", + "Construction Type": "Pitched", + "Tilt (deg)": 26.56505117707799, + "Radiant Barrier": false + }, + "Rim Joist": { + "Interior Zone": "Foundation", + "Exterior Zone": "Outdoor", + "Area (m^2)": [ + 2.489801472, + 1.3842552959999999, + 2.489801472, + 1.3842552959999999 + ], + "Azimuth (deg)": [ + 270, + 0, + 90, + 180 + ], + "Boundary R Value": 3.9, + "Exterior Solar Absorptivity (-)": 0.85, + "Exterior Emissivity (-)": 0.9, + "Finish Type": "wood siding" + }, + "Window": { + "Interior Zone": "Indoor", + "Exterior Zone": "Outdoor", + "Area (m^2)": [ + 5.15611872, + 9.290303999999999, + 5.15611872, + 9.281013695999999 + ], + "Azimuth (deg)": [ + 0, + 90, + 180, + 270 + ], + "U Factor (W/m^2-K)": 0.38, + "SHGC (-)": 0.44, + "Shading Fraction (-)": 0.7 + }, + "Door": { + "Interior Zone": "Indoor", + "Exterior Zone": "Outdoor", + "Area (m^2)": [ + 1.8580607999999998 + ], + "Azimuth (deg)": [ + 90 + ], + "Boundary R Value": 5.0 + }, + "Interior Wall": { + "Area (m^2)": [ + 186.59575583999998 + ], + "Interior Zone": "Indoor", + "Exterior Zone": "Indoor", + "Insulation Level": "Standard" + }, + "Indoor Furniture": { + "Area (m^2)": [ + 74.638302336 + ], + "Interior Zone": "Indoor", + "Exterior Zone": "Indoor", + "Insulation Level": "Standard" + }, + "Foundation Furniture": { + "Area (m^2)": [ + 24.879434112 + ], + "Interior Zone": "Foundation", + "Exterior Zone": "Foundation", + "Insulation Level": "Standard" + } + }, + "Zones": { + "Indoor": { + "Zone Area (m^2)": 186.59575583999998, + "Volume (m^3)": 454.9950910402559, + "ELA stack coefficient (L/s/cm^4/K)": 0.000268931575688997, + "ELA wind coefficient (L/s/cm^4/(m/s))": 0.00017712110373510295, + "Infiltration Method": "ASHRAE", + "inf_f_t": 0.6795803782001975, + "inf_sft": 0.4757062647401383, + "inf_n_i": 0.65, + "inf_c": 0.19696030768156073, + "inf_Cs": 0.12411460236981756, + "inf_Cw": 0.14935713017546384 + }, + "Attic": { + "Zone Area (m^2)": 62.198585279999996, + "Volume (m^3)": 45.706393291233574, + "Vented": true, + "Infiltration Method": "ELA", + "ELA (cm^2)": 2073.0788473824, + "ELA stack coefficient (L/s/cm^4/K)": 0.00010215213070974475, + "ELA wind coefficient (L/s/cm^4/(m/s))": 7.563121523966859e-05 + }, + "Foundation": { + "Zone Type": "Finished Basement", + "Zone Area (m^2)": 62.198585279999996, + "Volume (m^3)": 151.66503034675196, + "Vented": false, + "Infiltration Method": null + } + }, + "Equipment": { + "HVAC Heating": { + "Equipment Name": "WallFurnace", + "Fuel": "Natural gas", + "Capacity (W)": 24462.352573333334, + "EIR (-)": 1.6666666666666667, + "Rated Efficiency": "0.6 AFUE", + "SHR (-)": null, + "Conditioned Space Fraction (-)": 1.0, + "Number of Speeds (-)": 1, + "Rated Auxiliary Power (W)": 0.0, + "Weekday Setpoints (C)": [20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057], + "Weekend Setpoints (C)": [20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057, 20.000000000000057] + }, + "HVAC Cooling": { + "Equipment Name": "room air conditioner", + "Fuel": "Electricity", + "Capacity (W)": 1869.5006177777777, + "EIR (-)": 0.3188916968680725, + "Rated Efficiency": "10.7 EER", + "SHR (-)": 0.65, + "Conditioned Space Fraction (-)": 0.2, + "Number of Speeds (-)": 1, + "Rated Auxiliary Power (W)": 0, + "Weekday Setpoints (C)": [22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285], + "Weekend Setpoints (C)": [22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285, 22.222222222222285] + }, + "Water Heating": { + "Equipment Name": "storage water heater", + "Fuel": "Natural gas", + "Zone": "Foundation", + "Setpoint Temperature (C)": 51.666666666666686, + "UA (W/K)": 4.174338563113251, + "Efficiency (-)": 0.7740560188279427, + "Energy Factor (-)": 0.59, + "Tank Volume (L)": 143.84564779199997, + "Tank Height (m)": 1.2191999999999998, + "Capacity (W)": 11136.702222222222, + "weekday_fractions": [0.012, 0.006, 0.004, 0.005, 0.01, 0.034, 0.078, 0.087, 0.08, 0.067, 0.056, 0.047, 0.04, 0.035, 0.033, 0.031, 0.039, 0.051, 0.06, 0.06, 0.055, 0.048, 0.038, 0.026], + "weekend_fractions": [0.012, 0.006, 0.004, 0.005, 0.01, 0.034, 0.078, 0.087, 0.08, 0.067, 0.056, 0.047, 0.04, 0.035, 0.033, 0.031, 0.039, 0.051, 0.06, 0.06, 0.055, 0.048, 0.038, 0.026], + "month_multipliers": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], + "Fixture Average Water Draw (L/day)": 259.53132510700146 + }, + "Clothes Washer": { + "Annual Electric Energy (kWh)": 37.85005100215684, + "Average Water Draw (L/day)": 18.395385203661274, + "Convective Gain Fraction (-)": 0.2700000000000001, + "Radiative Gain Fraction (-)": 0, + "Latent Gain Fraction (-)": 0.030000000000000027, + "weekday_fractions": [0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.06, 0.049, 0.052, 0.05, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017], + "weekend_fractions": [0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.06, 0.049, 0.052, 0.05, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017], + "month_multipliers": [1.011, 1.002, 1.022, 1.02, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011] + }, + "Clothes Dryer": { + "Annual Electric Energy (kWh)": 90.37643216162446, + "Annual Gas Energy (therms)": 40.96841135399718, + "Convective Gain Fraction (-)": 0.1335213042822171, + "Radiative Gain Fraction (-)": 0, + "Latent Gain Fraction (-)": 0.016478695717782932, + "weekday_fractions": [0.01, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024], + "weekend_fractions": [0.01, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024], + "month_multipliers": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0] + }, + "Dishwasher": { + "Annual Electric Energy (kWh)": 127.45439109857826, + "Average Water Draw (L/day)": 9.445110548052545, + "Convective Gain Fraction (-)": 0.3, + "Radiative Gain Fraction (-)": 0, + "Latent Gain Fraction (-)": 0.29999999999999993, + "weekday_fractions": [0.015, 0.007, 0.005, 0.003, 0.003, 0.01, 0.02, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.09, 0.067, 0.044, 0.031], + "weekend_fractions": [0.015, 0.007, 0.005, 0.003, 0.003, 0.01, 0.02, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.09, 0.067, 0.044, 0.031], + "month_multipliers": [1.097, 1.097, 0.991, 0.987, 0.991, 0.89, 0.896, 0.896, 0.89, 1.085, 1.085, 1.097] + }, + "Refrigerator": { + "Annual Electric Energy (kWh)": 703.24, + "Convective Gain Fraction (-)": 1.0, + "Radiative Gain Fraction (-)": 0, + "Latent Gain Fraction (-)": 0, + "weekday_fractions": [0.04, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.04, 0.041, 0.041, 0.04, 0.04, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.05, 0.048, 0.047, 0.046, 0.044, 0.041], + "month_multipliers": [0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837] + }, + "Cooking Range": { + "Annual Electric Energy (kWh)": 32.536, + "Annual Gas Energy (therms)": 32.536, + "Convective Gain Fraction (-)": 0.6381527439104869, + "Radiative Gain Fraction (-)": 0, + "Latent Gain Fraction (-)": 0.16184725608951306, + "weekday_fractions": [0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.05, 0.057, 0.046, 0.057, 0.044, 0.092, 0.15, 0.117, 0.06, 0.035, 0.025, 0.016, 0.011], + "weekend_fractions": [0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.05, 0.057, 0.046, 0.057, 0.044, 0.092, 0.15, 0.117, 0.06, 0.035, 0.025, 0.016, 0.011], + "month_multipliers": [1.097, 1.097, 0.991, 0.987, 0.991, 0.89, 0.896, 0.896, 0.89, 1.085, 1.085, 1.097] + }, + "Exterior Lighting": { + "Annual Electric Energy (kWh)": 50.10625, + "Convective Gain Fraction (-)": 1, + "Radiative Gain Fraction (-)": 0, + "Latent Gain Fraction (-)": 0, + "weekday_fractions": [0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063], + "weekend_fractions": [0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059], + "month_multipliers": [1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248] + }, + "Indoor Lighting": { + "Annual Electric Energy (kWh)": 707.6989189189189, + "Convective Gain Fraction (-)": 1, + "Radiative Gain Fraction (-)": 0, + "Latent Gain Fraction (-)": 0 + }, + "Basement Lighting": { + "Annual Electric Energy (kWh)": 340.01675675675676, + "Convective Gain Fraction (-)": 1, + "Radiative Gain Fraction (-)": 0, + "Latent Gain Fraction (-)": 0 + }, + "MELs": { + "Annual Electric Energy (kWh)": 2855.6801, + "Convective Gain Fraction (-)": 0.93, + "Radiative Gain Fraction (-)": 0, + "Latent Gain Fraction (-)": 0.021, + "weekday_fractions": [0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036], + "weekend_fractions": [0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036], + "month_multipliers": [1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248] + }, + "PV": { + "capacity": 5, + "tilt": 20, + "azimuth": 180 + } + }, + "Location": { + "loc": "LOCATION", + "city": "Denver Intl Ap", + "state-prov": "CO", + "country": "USA", + "data_type": "TMY3", + "WMO_code": "725650", + "latitude": 39.83, + "longitude": -104.65, + "TZ": -7.0, + "altitude": 1650.0, + "timezone": -7.0, + "Weather Station": "G0800310", + "Average Wind Speed (m/s)": 3.916529680365298, + "Average Ambient Temperature (C)": 10.875342465753425, + "Average Ground Temperature (C)": 10.820501311970599 + } +} \ No newline at end of file diff --git a/ochre/defaults/Input Files/OCHRE_complete b/ochre/defaults/Input Files/OCHRE_complete new file mode 100644 index 0000000..e69de29 diff --git a/ochre/defaults/Input Files/OCHRE_hourly.csv b/ochre/defaults/Input Files/OCHRE_hourly.csv new file mode 100644 index 0000000..2bef912 --- /dev/null +++ b/ochre/defaults/Input Files/OCHRE_hourly.csv @@ -0,0 +1,73 @@ +Time,Total Electric Power (kW),Total Reactive Power (kVAR),Total Gas Power (therms/hour),Total Electric Energy (kWh),Total Reactive Energy (kVARh),Total Gas Energy (therms),HVAC Cooling Electric Power (kW),HVAC Heating Electric Power (kW),PV Electric Power (kW),Other Electric Power (kW),Lighting Electric Power (kW),Water Heating Gas Power (therms/hour),HVAC Heating Gas Power (therms/hour),Other Gas Power (therms/hour),Grid Voltage (-),HVAC Cooling Reactive Power (kVAR),HVAC Heating Reactive Power (kVAR),PV Reactive Power (kVAR),Other Reactive Power (kVAR),Lighting Reactive Power (kVAR),Clothes Washer Electric Power (kW),Clothes Washer Reactive Power (kVAR),Clothes Dryer Electric Power (kW),Clothes Dryer Reactive Power (kVAR),Clothes Dryer Gas Power (therms/hour),Dishwasher Electric Power (kW),Dishwasher Reactive Power (kVAR),Refrigerator Electric Power (kW),Refrigerator Reactive Power (kVAR),Cooking Range Electric Power (kW),Cooking Range Reactive Power (kVAR),Cooking Range Gas Power (therms/hour),Exterior Lighting Electric Power (kW),Exterior Lighting Reactive Power (kVAR),Indoor Lighting Electric Power (kW),Indoor Lighting Reactive Power (kVAR),Basement Lighting Electric Power (kW),Basement Lighting Reactive Power (kVAR),MELs Electric Power (kW),MELs Reactive Power (kVAR),PV P Setpoint (kW),PV Q Setpoint (kW),Water Heating Delivered (W),Water Heating COP (-),Water Heating Total Sensible Heat Gain (W),Water Heating Deadband Upper Limit (C),Water Heating Deadband Lower Limit (C),Hot Water Delivered (L/min),Hot Water Outlet Temperature (C),Hot Water Delivered (W),Hot Water Unmet Demand (kW),Hot Water Heat Injected (W),Hot Water Heat Loss (W),Hot Water Average Temperature (C),Hot Water Maximum Temperature (C),Hot Water Minimum Temperature (C),Hot Water Mains Temperature (C),HVAC Heating Delivered (W),HVAC Heating Duct Losses (W),HVAC Heating Setpoint (C),HVAC Heating Main Power (kW),HVAC Heating Fan Power (kW),HVAC Heating Latent Gains (W),HVAC Heating COP (-),HVAC Heating SHR (-),HVAC Heating Speed (-),HVAC Heating Capacity (W),HVAC Heating Max Capacity (W),HVAC Cooling Delivered (W),HVAC Cooling Duct Losses (W),HVAC Cooling Setpoint (C),HVAC Cooling Main Power (kW),HVAC Cooling Fan Power (kW),HVAC Cooling Latent Gains (W),HVAC Cooling COP (-),HVAC Cooling SHR (-),HVAC Cooling Speed (-),HVAC Cooling Capacity (W),HVAC Cooling Max Capacity (W),Temperature - Indoor (C),Temperature - Foundation (C),Temperature - Attic (C),Temperature - Outdoor (C),Temperature - Ground (C),Unmet HVAC Load (C),Occupancy (Persons),Net Sensible Heat Gain - Indoor (W),Net Sensible Heat Gain - Foundation (W),Net Sensible Heat Gain - Attic (W),Window Transmitted Solar Gain (W) +2018-01-01 00:00:00,0.3791770942655053,0.2555803101502493,1.2078457060718375,0.3791770942655052,0.2555803101502493,1.2078457060718375,0.010000000000000002,0.0,0.0,0.33688485797811024,0.03229223628739501,0.005817118464022066,1.2020285876078154,0.0,1.0,0.0029166666666666685,0.0,0.0,0.2526636434835826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06438364263533634,0.04828773197650224,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,0.0,0.0,131.9633436251358,0.0,84.45654727467893,51.666666666666686,46.10666666666668,0.0,51.66640255083993,0.0,0.0,131.9633436251358,131.9633551166858,51.66640255083993,51.66640255083993,51.66640255083993,10.042356980382465,21136.791225452525,0.0,20.000000000000057,35.22798537575421,0.0,0.0,0.6,1.0,0.8640539033230173,21136.791225452525,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1258.0995046281269,20.05099649949748,-14.159399478463882,-8.394907273473299,-18.0,6.529479366362011,0.0,4.0,5908.658634636727,-9846.898330667716,-851.7828527754926,0.0 +2018-01-01 01:00:00,0.3775675031996218,0.2543731168508367,1.2241120571931672,0.37756750319962185,0.2543731168508367,1.224112057193167,0.010000000000000002,0.0,0.0,0.3352752669122268,0.03229223628739501,0.005817406306948043,1.218294650886219,0.0,1.0,0.0029166666666666685,0.0,0.0,0.25145645018417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06277405156945293,0.04708053867708969,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,0.0,0.0,131.96987344143326,0.0,84.46071920640621,51.666666666666686,46.10666666666668,0.0,51.66640252662908,0.0,0.0,131.96987344143326,131.9698737600097,51.66640252662908,51.66640252662909,51.66640252662908,10.042356980382465,21422.818019756847,0.0,20.000000000000057,35.70469669959474,0.0,0.0,0.6,1.0,0.8757464334444302,21422.818019756847,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1264.557756839013,20.049434762606015,-15.75917378795607,-12.950199170918404,-17.3,6.529479366362011,0.0,4.0,6499.469008487064,-4633.122752214033,-373.0269271946,0.0 +2018-01-01 02:00:00,0.3759579121337384,0.25316592355142414,1.218938869735968,0.3759579121337384,0.2531659235514241,1.2189388697359678,0.010000000000000002,0.0,0.0,0.33366567584634343,0.03229223628739501,0.005817448285363264,1.2131214214506045,0.0,1.0,0.0029166666666666685,0.0,0.0,0.25024925688475746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06116446050356953,0.04587334537767714,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,0.0,0.0,131.97082573629658,0.0,84.46132867511874,51.666666666666686,46.10666666666668,0.0,51.66640252472305,0.0,0.0,131.97082573629658,131.97082605487302,51.66640252472305,51.66640252472305,51.66640252472305,10.042356980382465,21331.850573833155,0.0,20.000000000000057,35.55308428972192,0.0,0.0,0.6,1.0,0.8720277622474965,21331.850573833155,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1279.1719432624225,20.049206612599306,-14.394814262629865,-14.064055248494133,-15.950000000000001,6.529479366362011,0.0,4.0,7099.293741834449,-4161.729908272332,-199.20184253434914,0.0 +2018-01-01 03:00:00,0.37434832106785504,0.2519587302520116,1.2074687408390095,0.374348321067855,0.2519587302520116,1.2074687408390092,0.010000000000000002,0.0,0.0,0.33205608478046,0.03229223628739501,0.005817490263778694,1.2016512505752306,0.0,1.0,0.0029166666666666685,0.0,0.0,0.2490420635853449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05955486943768611,0.04466615207826457,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,0.0,0.0,131.9717780311647,0.0,84.4619381438333,51.666666666666686,46.10666666666668,0.0,51.66640252281701,0.0,0.0,131.9717780311647,131.97177834973954,51.66640252281701,51.66640252281701,51.66640252281701,10.042356980382465,21130.156030448343,0.0,20.000000000000057,35.21692671741391,0.0,0.0,0.6,1.0,0.8637826622400393,21130.156030448343,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1290.9909648129483,20.0489784625926,-13.241177057604512,-13.913451064818139,-14.850000000000001,6.529479366362011,0.0,4.0,7484.326057846491,-3904.3460028747104,-145.53187718691595,0.0 +2018-01-01 04:00:00,0.3933537477458023,0.26569515198752536,1.1861485484409433,0.39335374774580234,0.26569515198752536,1.186148548440943,0.010000000000000002,0.0,0.0,0.350371313761145,0.03298243398465735,0.005817114685975203,1.180331433754968,0.0,1.0,0.0029166666666666685,0.0,0.0,0.2627784853208587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05794527837180271,0.04345895877885201,0.0,0.0,0.0,0.007888817705619396,0.0,0.016949946941462603,0.0,0.00814366933757535,0.0,0.2924260353893423,0.21931952654200668,0.0,0.0,131.96325791883646,0.0,84.4564828372881,51.666666666666686,46.10666666666668,0.0,51.666402536076816,0.0,0.0,131.96325791883646,131.96325443326268,51.666402536076816,51.66640253607682,51.666402536076816,10.042356980382465,20755.26268619636,0.0,20.000000000000057,34.59210447699393,0.0,0.0,0.6,1.0,0.8484573437479552,20755.26268619636,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1303.5943351145431,20.051020613399945,-12.198538347046593,-13.421252947385861,-13.700000000000001,6.529479366362011,0.0,3.0,7679.156303461529,-3347.3297226483282,-122.26160886850066,0.0 +2018-01-01 05:00:00,0.44121553976951383,0.2845944298258145,1.13200052085614,0.4412155397695137,0.2845944298258145,1.1320005208561397,0.010000000000000002,0.0,0.0,0.37557035087886387,0.05564518889064987,0.005816036518840207,1.1261844843372997,0.0,1.0,0.0029166666666666685,0.0,0.0,0.28167776315914783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05794527837180271,0.04345895877885201,0.0,0.0,0.0,0.006345353371911252,0.0,0.03330048515022123,0.0,0.01599935036851739,0.0,0.3176250725070612,0.23821880438029583,0.0,0.0,131.93879932460277,0.0,84.44082572847462,51.666666666666686,46.10666666666668,0.0,51.66640257940889,0.0,0.0,131.93879932460277,131.93879020074158,51.66640257940889,51.666402579408896,51.66640257940889,10.042356980382465,19803.12828844957,0.0,20.000000000000057,33.005213814082616,0.0,0.0,0.6,1.0,0.809534905896057,19803.12828844957,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1323.6143708741458,20.056881730835432,-10.691476582620297,-12.646915275139198,-12.049999999999999,6.529479366362011,0.0,3.0,7731.14340669451,-2673.97903811546,-88.60998947483246,0.0 +2018-01-01 06:00:00,1.0539382845073273,0.5475315481118257,1.2340007413296752,1.0539382845073273,0.5475315481118256,1.2340007413296752,0.010000000000000002,0.0,0.0,0.9383502554617215,0.1055880290456059,0.037262020629108585,1.0269249220128345,0.16981379868773216,1.0,0.0029166666666666685,0.0,0.0,0.544614881445159,0.0,0.16326810636063485,0.19088156776360543,0.37460972368683737,0.05337899462086674,0.16981379868773216,0.0,0.0,0.06116446050356953,0.04587334537767714,0.0,0.0,0.0,0.006002361297753889,0.0,0.06726698000344689,0.0,0.03231868774440513,0.0,0.33930796491067977,0.2544809736830097,0.0,0.0,845.3018213155134,0.0,84.175166862801,51.666666666666686,46.10666666666668,0.24607943427466314,51.6652700903729,714.0742752318171,0.0,845.3018213155134,131.52369822312656,51.6652700903729,51.66527009037291,51.6652700903729,10.042356980382465,18057.721675319553,0.0,20.000000000000057,30.09620279219926,0.0,0.0,0.6,1.0,0.7381841800041942,18057.721675319553,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1342.9483435250484,20.153223701007345,-9.100319102000931,-11.483826594261268,-10.4,6.529479366362011,0.0,3.0,7893.7950886924655,-2395.3503369066484,-67.4574145095453,0.0 +2018-01-01 07:00:00,1.0089713290395548,0.3891415397225377,1.1812046892023962,1.0089713290395548,0.3891415397225377,1.1812046892023962,0.010000000000000002,0.0,-0.0015681897870958418,0.8719520631243164,0.12858745570233435,0.03939741867231185,0.9420263308974582,0.19978093963262608,1.0,0.0029166666666666685,0.0,0.0,0.386224873055871,0.0,0.0,0.0,0.4407173219845146,0.0627988172010197,0.19978093963262608,0.0,0.0,0.06438364263533634,0.04828773197650224,0.0,0.0,0.0,0.0058308652606752056,0.0,0.08291820802405085,0.0,0.039838382417608294,0.0,0.3668510985044655,0.2751383238783491,-0.0015681897870958418,0.0,893.7440642394848,0.0,84.06292317843125,51.666666666666686,46.10666666666668,0.2626313837408311,51.66458350473493,762.1005945515868,0.0,893.7440642394848,131.34831746629882,51.664583504734935,51.664583504734935,51.66458350473493,10.042356980382465,16564.84220952248,0.0,20.000000000000057,27.608070349204137,0.0,0.0,0.6,1.0,0.6771565473870239,16564.84220952248,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1363.112322351035,20.19471621985369,-7.626141595794857,-10.180384840744981,-8.7,6.529479366362011,0.0,3.0,7557.378178618881,-1678.8834094029673,-33.197191006279404,34.33852255640937 +2018-01-01 08:00:00,0.6184380242770061,0.3318258313575894,1.0156434135533778,0.6184380242770061,0.33182583135758936,1.0156434135533778,0.010000000000000002,0.0,-0.12686598070694605,0.6527368923511234,0.08256711263282876,0.011404544397816753,0.8843703053759855,0.11986856377957562,1.0,0.0029166666666666685,0.0,0.0,0.32890916469092274,0.0,0.0,0.0,0.26443039319070877,0.03767929032061181,0.11986856377957562,0.0,0.0,0.06599323370121975,0.04949492527591479,0.0,0.0,0.0,0.005659369223596524,0.0,0.05194875683434511,0.0,0.024958986574887123,0.0,0.3223132654591949,0.2417349490943961,-0.12686598070694605,0.0,258.7160327858677,0.0,84.17202851917095,51.666666666666686,46.10666666666668,0.04383220615164959,51.66614783729637,127.19623134073636,0.0,258.7160327858677,131.5187945612046,51.66614783729637,51.666147837296386,51.66614783729637,10.042356980382465,15551.003281812764,0.0,20.000000000000057,25.918338803021275,0.0,0.0,0.6,1.0,0.6357116812536288,15551.003281812764,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1382.7083710365512,20.156922967478376,-5.7877429486569545,-8.493016466812948,-6.800000000000001,6.529479366362011,0.0,1.0,7042.85161349825,-1180.8203705588046,-5.114494032313764,279.3773010835925 +2018-01-01 09:00:00,0.16983023582511403,0.29414654103697757,0.8096492675179232,0.16983023582511403,0.29414654103697757,0.8096492675179232,0.010000000000000002,0.0,-0.31215788920348553,0.38830649916041465,0.0836816258681849,0.011421656851096425,0.7982276106668268,0.0,1.0,0.0029166666666666685,0.0,0.0,0.2912298743703109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.0,0.0,0.0,0.004801889038203111,0.0,0.05328077624035396,0.0,0.02559896058962782,0.0,0.3223132654591949,0.2417349490943961,-0.31215788920348553,0.0,259.1042347051481,0.0,84.42112213992309,51.666666666666686,46.10666666666668,0.0438322071985004,51.66614806431027,127.19623134073636,0.0,259.1042347051481,131.90800334362982,51.66614806431027,51.66614806431027,51.66614806431027,10.042356980382465,14036.247166661662,0.0,20.000000000000057,23.393745277769437,0.0,0.0,0.6,1.0,0.5737897499671688,14036.247166661662,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1403.2619953375279,20.063677173997092,-3.7570136758499992,-5.907621632276762,-4.05,6.529479366362011,0.0,1.0,6549.326871110203,61.735742092770806,48.09215041303352,924.4022486671244 +2018-01-01 10:00:00,-0.008664504140201548,0.2867128414730124,0.6378878120619027,-0.008664504140201548,0.28671284147301235,0.6378878120619027,0.010000000000000002,0.0,-0.4689893393023831,0.37839489974179447,0.07192993542038714,0.00581488115501053,0.6320729309068921,0.0,1.0,0.0029166666666666685,0.0,0.0,0.2837961748063457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06438364263533634,0.04828773197650224,0.0,0.0,0.0,0.003772912815731015,0.0,0.04603792072018084,0.0,0.022119101884475287,0.0,0.3140112571064581,0.23550844282984348,-0.4689893393023831,0.0,131.91258949665948,0.0,84.42405721034676,51.666666666666686,46.10666666666668,0.0,51.66640264086118,0.0,0.0,131.91258949665948,131.91258939116682,51.666402640861186,51.666402640861186,51.66640264086118,10.042356980382465,11114.538969848369,0.0,20.000000000000057,18.524231616413946,0.0,0.0,0.6,1.0,0.45435282385572523,11114.538969848369,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1425.0907449415333,20.063158903529985,-0.6204952712345005,-1.447571157825915,-0.40000000000000013,6.529479366362011,0.0,0.8333333333333334,5553.415132384546,710.8293298911467,-51.49228027234515,1308.3646470337032 +2018-01-01 11:00:00,-0.28490962147034615,0.2555803101502493,0.5542380578588352,-0.2849096214703461,0.2555803101502493,0.5542380578588352,0.010000000000000002,0.0,-0.6587703385864122,0.33688485797811024,0.02697585913795585,0.03600626856609971,0.5182317892927354,0.0,1.0,0.0029166666666666685,0.0,0.0,0.2526636434835826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06438364263533634,0.04828773197650224,0.0,0.0,0.0,0.0025724405561802378,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,-0.6587703385864122,0.0,816.8146515898628,0.0,84.45414888501337,51.666666666666686,46.10666666666668,0.2360941607808497,51.66528588895679,685.1098598141251,0.0,816.8146515898628,131.95960763283338,51.66528588895679,51.66528588895679,51.66528588895679,10.042356980382465,9112.725978067272,0.0,20.000000000000057,15.187876630112122,0.0,0.0,0.6,1.0,0.3725204250388064,9112.725978067272,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1435.662761468817,20.04889968259026,2.4336202340378286,3.5957259552379597,2.1,6.529479366362011,0.0,0.0,4490.628652953077,1093.2030342855026,-63.29984657067877,1282.0513811698713 +2018-01-01 12:00:00,-0.23928137421129161,0.3064881925977078,0.5148255861842621,-0.23928137421129161,0.30648819259770776,0.5148255861842621,0.010000000000000002,0.0,-0.7372817570518136,0.4047620345747216,0.08323834826580044,0.07264060896217112,0.442184977222091,0.0,1.0,0.0029166666666666685,0.0,0.0,0.30357152593104114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06760282476710315,0.05070211857532734,0.0,0.0,0.0,0.00205795244494419,0.0,0.054834798880697616,0.0,0.02634559694015863,0.0,0.33715920980761843,0.2528694073557138,-0.7372817570518136,0.0,1647.877329798478,0.0,84.4116456956883,51.666666666666686,46.10666666666668,0.5225451791171783,51.66364332889864,1516.25983709354,0.0,1647.877329798478,131.893196399513,51.66364332889864,51.66364332889864,51.66364332889864,10.042356980382465,7775.498555467176,0.0,20.000000000000057,12.959164259111958,0.0,0.0,0.6,1.0,0.31785571449670497,7775.498555467176,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1439.9794686206867,20.06102834175441,3.6703499960479764,7.187178054875763,3.6,6.529479366362011,0.0,1.1666666666666667,3603.4604432021893,1067.5189537221972,-358.0246764253612,1222.4993526903388 +2018-01-01 13:00:00,-0.0037029181260867703,0.34106361561969417,0.4423653020923575,-0.0037029181260867725,0.34106361561969417,0.4423653020923575,0.010000000000000002,0.0,-0.5872365701588986,0.4508625986040367,0.1226710534287751,0.03757817843323195,0.4047871236591256,0.0,1.0,0.0029166666666666685,0.0,0.0,0.3381469489530275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06760282476710315,0.05070211857532734,0.0,0.0,0.0,0.0018864564078655075,0.0,0.081586188618042,0.0,0.0391984084028676,0.0,0.3832597738369336,0.28744483037770013,-0.5872365701588986,0.0,852.4739704136176,0.0,84.37618310003887,51.666666666666686,46.10666666666668,0.2481598142712135,51.664431391401905,720.1056483311531,0.0,852.4739704136176,131.83778609381073,51.664431391401905,51.66443139140191,51.664431391401905,10.042356980382465,7117.884725655041,0.0,20.000000000000057,11.863141209425068,0.0,0.0,0.6,1.0,0.290973024949952,7117.884725655041,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1442.282652796377,20.07751960884198,4.463296452353929,8.288285307049515,3.85,6.529479366362011,0.0,2.5,2874.797101754726,675.098899222046,-626.5922914621443,1271.2321436208074 +2018-01-01 14:00:00,0.17617036523815596,0.35688626683314556,0.38851771520903394,0.17617036523815593,0.3568862668331455,0.3885177152090339,0.010000000000000002,0.0,-0.45483556708178297,0.4719594668886386,0.14904646543130026,0.0241450362949953,0.36437267891403863,0.0,1.0,0.0029166666666666685,0.0,0.0,0.3539696001664789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06760282476710315,0.05070211857532734,0.0,0.0,0.0,0.0018864564078655075,0.0,0.09940194817341036,0.0,0.0477580608500244,0.0,0.40435664212153544,0.3032674815911515,-0.45483556708178297,0.0,547.7384964986255,0.0,84.36927192305349,51.666666666666686,46.10666666666668,0.14332817396230102,51.66557033460351,415.9114866062173,0.0,547.7384964986255,131.82698737977105,51.66557033460351,51.66557033460352,51.66557033460351,10.042356980382465,6407.226352072167,0.0,20.000000000000057,10.678710586786943,0.0,0.0,0.6,1.0,0.2619219199324578,6407.226352072167,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1443.5011705113936,20.081769367524398,4.00086574307283,7.681077102312396,3.5999999999999996,6.529479366362011,0.0,3.0,2295.5677434886716,882.9513234960722,-603.1888215349401,1364.130376932184 +2018-01-01 15:00:00,0.40154617607789445,0.38776389404989836,0.3294969307863926,0.40154617607789445,0.3877638940498983,0.32949693078639253,0.010000000000000002,0.0,-0.3138296136518097,0.5164714606687406,0.18890432906096352,0.005809135953731153,0.3203459706748964,0.003341824157764996,1.0,0.0029166666666666685,0.0,0.0,0.3848472273832317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.003341824157764996,0.0,0.003341824157764996,0.00205795244494419,0.0,0.12620883871933844,0.0,0.060637537896680895,0.0,0.4471364028097559,0.3353523021073168,-0.3138296136518097,0.0,131.78225761923338,0.0,84.34064118666265,51.666666666666686,46.10666666666668,0.0,51.666402896079525,0.0,0.0,131.78225761923338,131.78225185416036,51.666402896079525,51.666402896079525,51.666402896079525,10.042356980382465,5633.048973939559,0.0,20.000000000000057,9.388414956565933,0.0,0.0,0.6,1.0,0.23027421246802748,5633.048973939559,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1444.1891381377943,20.094385058633527,3.819963357380368,7.295395873149445,3.0500000000000003,6.529479366362011,0.0,3.0,1975.7164345069941,-88.88858176886436,-571.9948043751898,1264.068603115389 +2018-01-01 16:00:00,0.7496909557905765,0.403691980447487,0.3652850448963865,0.7496909557905765,0.40369198044748694,0.3652850448963866,0.010000000000000002,0.0,-0.09253627720688462,0.6012035681963939,0.23102366480106737,0.03378251162945344,0.2646660501116332,0.06683648315529993,1.0,0.0029166666666666685,0.0,0.0,0.4007753137808203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07082200689886999,0.05311650517415247,0.06683648315529993,0.0,0.06683648315529993,0.0032584247044949674,0.0,0.15384824139402206,0.0,0.07391699870255033,0.0,0.46354507814222395,0.34765880860666787,-0.09253627720688462,0.0,766.3679566180482,0.0,83.87907450794543,51.666666666666686,46.10666666666668,0.2189339190249446,51.665134020295376,635.3081607706621,0.0,766.3679566180482,131.06105391866473,51.665134020295376,51.665134020295376,51.665134020295376,10.042356980382465,4653.958402776322,0.0,20.000000000000057,7.756597337960536,0.0,0.0,0.6,1.0,0.1902498293581808,4653.958402776322,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1441.9262828468525,20.264270526351783,1.6673221994116867,5.756803490015186,0.8000000000000002,6.529479366362011,0.0,3.0,2152.1760214381043,-1195.0749217190098,-539.119540112974,733.2104307745122 +2018-01-01 17:00:00,1.134309880961859,0.49523244570028374,0.4335634632148729,1.134309880961859,0.49523244570028374,0.43356346321487294,0.010000000000000002,0.0,0.0,0.7255378368607884,0.3987720441010707,0.02555418314973072,0.35461294452422965,0.053396335540912575,1.0,0.0029166666666666685,0.0,0.0,0.49231577903361706,0.0,0.0,0.0,0.04407173219845145,0.006279881720101969,0.019978093963262604,0.0,0.0,0.07726037116240361,0.057945278371802696,0.033418241577649964,0.0,0.033418241577649964,0.006345353371911252,0.0,0.265071861795761,0.0,0.12735482893339842,0.0,0.5707874919222834,0.4280906189417124,0.0,0.0,579.7054801108444,0.0,83.897571549305,51.666666666666686,46.10666666666668,0.1547297587617251,51.66589378764477,449.0040394853084,0.0,579.7054801108444,131.08995554578905,51.66589378764477,51.665893787644784,51.66589378764477,10.042356980382465,6235.608579965928,0.0,20.000000000000057,10.39268096660988,0.0,0.0,0.6,1.0,0.25490633254805717,6235.608579965928,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1438.8754048804606,20.258396818674967,-0.6600673584612345,2.7750320884482,-1.4000000000000001,6.529479366362011,0.0,4.0,2321.4374983022794,-1240.5495207105475,-518.5731631475493,121.78647353016555 +2018-01-01 18:00:00,1.639196696444739,0.7300793316887804,0.6199046587591558,1.6391966964447389,0.7300793316887803,0.6199046587591558,0.010000000000000002,0.0,0.0,1.1577036023218656,0.47149309412287344,0.03155195120615769,0.5017809670455269,0.0865717405074713,1.0,0.0029166666666666685,0.0,0.0,0.7271626650221137,0.0,0.16326810636063485,0.19088156776360543,0.19097750619328965,0.027212820787108533,0.0865717405074713,0.15394901690853757,0.021936546826847068,0.08047955329417043,0.06035966497062781,0.0,0.0,0.0,0.008403305816855444,0.0,0.3128025571777447,0.0,0.15028723112827333,0.0,0.5690294195652332,0.4267720646739248,0.0,0.0,715.7669221992847,0.0,83.9964463644392,51.666666666666686,46.10666666666668,0.20142821667316654,51.66521885868019,584.5072454675279,0.0,715.7669221992847,131.24444744443625,51.66521885868019,51.66521885868019,51.66521885868019,10.042356980382465,8823.450332786424,0.0,20.000000000000057,14.705750554644041,0.0,0.0,0.6,1.0,0.3606950846749286,8823.450332786424,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1428.7448701419569,20.220556556143215,-2.425395098051782,-0.4880467804650946,-3.6,6.529479366362011,0.0,3.8333333333333335,3099.5892598915366,-2244.939266194644,-468.9541535575129,0.0 +2018-01-01 19:00:00,1.4752544186358527,0.5209507976965314,0.6791690213820042,1.4752544186358525,0.5209507976965314,0.6791690213820042,0.010000000000000002,0.0,0.0,0.9650528078798511,0.5002016107560014,0.06816306480854094,0.6110059565734632,0.0,1.0,0.0029166666666666685,0.0,0.0,0.5180341310298647,0.0,0.0,0.0,0.0,0.0,0.0,0.33868783719878265,0.04826040301906356,0.07726037116240361,0.057945278371802696,0.0,0.0,0.0,0.011147242410114366,0.0,0.33034081269019455,0.0,0.15871355565569248,0.0,0.5491045995186649,0.4118284496389985,0.0,0.0,1546.30269256242,0.0,84.10696956734087,51.666666666666686,46.10666666666668,0.48783186887586644,51.66425632524241,1415.57211410116,0.0,1546.30269256242,131.41713994897012,51.66425632524241,51.66425632524243,51.66425632524241,10.042356980382465,10744.091675309532,0.0,20.000000000000057,17.90681945884922,0.0,0.0,0.6,1.0,0.43920925606402134,10744.091675309532,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1418.6204429497557,20.175753572477273,-4.320634041426483,-3.002970861756216,-5.3,6.529479366362011,0.0,4.0,3786.205071607654,-1927.906494919507,-357.36084337049334,0.0 +2018-01-01 20:00:00,1.0236817872349857,0.44643067029009065,0.7397689371304644,1.0236817872349857,0.4464306702900906,0.7397689371304643,0.010000000000000002,0.0,0.0,0.5913520048312322,0.4223297824037536,0.0734244481912587,0.6663444889392057,0.0,1.0,0.0029166666666666685,0.0,0.0,0.44351400362342397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07565078009652021,0.05673808507239014,0.0,0.0,0.0,0.015606139374160109,0.0,0.2747290024893251,0.0,0.13199464054026844,0.0,0.5157012247347119,0.3867759185510338,0.0,0.0,1665.6589937227552,0.0,84.19609373531466,51.666666666666686,46.10666666666668,0.5284999699382907,51.66271745915381,1533.4854896964232,0.0,1665.6589937227552,131.55639646142916,51.66271745915381,51.66271745915381,51.66271745915381,10.042356980382465,11717.179185370711,0.0,20.000000000000057,19.528631975617852,0.0,0.0,0.6,1.0,0.47898823918283845,11717.179185370711,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1413.4790660114188,20.141178115181614,-4.795837109630596,-4.278048466962261,-5.849999999999999,6.529479366362011,0.0,4.0,4451.462927789292,-2011.4417102311752,-223.1367611137546,0.0 +2018-01-01 21:00:00,0.9032045805367334,0.42896130768796414,0.7573943074839501,0.9032045805367332,0.42896130768796414,0.7573943074839502,0.010000000000000002,0.0,0.0,0.5680595213617301,0.32514505917500325,0.05536579449127365,0.7020285129926765,0.0,1.0,0.0029166666666666685,0.0,0.0,0.42604464102129747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07404118903063679,0.05553089177297758,0.0,0.0,0.0,0.018007083893261663,0.0,0.20746202248587822,0.0,0.09967595279586332,0.0,0.4940183323310932,0.37051374924831987,0.0,0.0,1255.9921907588093,0.0,84.24643407891931,51.666666666666686,46.10666666666668,0.38747203150893456,51.66414346326971,1124.3478012620199,0.0,1255.9921907588093,131.63505324831144,51.66414346326971,51.66414346326971,51.66414346326971,10.042356980382465,12344.656580066692,0.0,20.000000000000057,20.574427633444486,0.0,0.0,0.6,1.0,0.5046389771000084,12344.656580066692,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1409.7516182433017,20.124515068925444,-5.080582058320075,-4.8536243095628455,-6.099999999999999,6.529479366362011,0.0,4.0,4953.03920490358,-1854.9272538918133,-169.21863151039653,0.0 +2018-01-01 22:00:00,0.6988398147243174,0.3540264363608201,0.8163325317762502,0.6988398147243174,0.3540264363608201,0.8163325317762502,0.010000000000000002,0.0,0.0,0.4681463595922048,0.22069345513211278,0.06302711237612661,0.7533054194001236,0.0,1.0,0.0029166666666666685,0.0,0.0,0.3511097696941534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07082200689886999,0.05311650517415247,0.0,0.0,0.0,0.015606139374160109,0.0,0.1385300182249203,0.0,0.06655729753303233,0.0,0.39732435269333477,0.297993264520001,0.0,0.0,1429.7918358774714,0.0,84.3073548761305,51.666666666666686,46.10666666666668,0.4471960409572533,51.66337276739196,1297.6282227453114,0.0,1429.7918358774714,131.7302419939539,51.66337276739197,51.66337276739197,51.66337276739196,10.042356980382465,13246.323376176946,0.0,20.000000000000057,22.077205626961582,0.0,0.0,0.6,1.0,0.5414983426662284,13246.323376176946,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1408.6762404683222,20.10069971580452,-5.007505862204039,-5.2814029884524665,-6.099999999999999,6.529479366362011,0.0,3.5,5278.474075956051,-1793.7475962438891,-156.4155901082406,0.0 +2018-01-01 23:00:00,0.4760368457390105,0.29531858927501103,0.8458379829272071,0.4760368457390105,0.29531858927501103,0.8458379829272071,0.010000000000000002,0.0,0.0,0.38986923014445923,0.07616761559455128,0.005814323981240789,0.8400236589459663,0.0,1.0,0.0029166666666666685,0.0,0.0,0.29240192260834436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.0,0.0,0.0,0.010804250335956998,0.0,0.04415089322833498,0.0,0.021212472030259305,0.0,0.3238759964432395,0.24290699733242957,0.0,0.0,131.89994981705004,0.0,84.41517538939853,51.666666666666686,46.10666666666668,0.0,51.66640143150537,0.0,0.0,131.89994981705004,131.89871154593519,51.66640143150537,51.666401431505385,51.66640143150537,10.042356980382465,14771.200025214925,0.0,20.000000000000057,24.618666708691546,0.0,0.0,0.6,1.0,0.6038339927009787,14771.200025214925,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1410.2024898223683,20.06648310555285,-4.520466378852643,-5.485628564298236,-5.55,6.529479366362011,0.0,3.6666666666666665,5533.945578758449,-1159.5015602122428,-84.44499664100732,0.0 +2018-01-02 00:00:00,0.4677173251371897,0.27667717843485107,0.9104282875003545,0.46771732513718967,0.27667717843485107,0.9104282875003545,0.010000000000000002,0.0,0.0,0.41625531944330935,0.04146200569388039,0.005795010820970454,0.8533919729269875,0.05124130375239661,1.0,0.0029166666666666685,0.0,0.0,0.2737605117681844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06438364263533634,0.04828773197650224,0.05124130375239661,0.0,0.05124130375239661,0.007888817705619396,0.0,0.022677630387300654,0.0,0.010895557600960339,0.0,0.3006303730555763,0.22547277979168215,0.0,0.0,131.46182409879205,0.0,84.13540656031681,51.666666666666686,46.10666666666668,0.0,51.66640329254687,0.0,0.0,131.46182409879205,131.461572750495,51.666403292546875,51.666403292546875,51.66640329254687,10.011674398445251,15006.272023140931,0.0,20.000000000000057,25.010453371901548,0.0,0.0,0.6,1.0,0.6134435344333735,15006.272023140931,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1411.7490250496974,20.171212962855687,-3.7197352908982153,-5.091912056183292,-5.0,6.529479366362011,0.0,4.0,5988.516803273619,-1450.5889477882329,-78.03098765427653,0.0 +2018-01-02 01:00:00,0.4034790336434357,0.27151432233207573,0.9173102823633861,0.4034790336434356,0.27151432233207573,0.9173102823633861,0.010000000000000002,0.0,0.0,0.3581302075538788,0.035348826089556806,0.04138645485046173,0.8759238275129243,0.0,1.0,0.0029166666666666685,0.0,0.0,0.26859765566540905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06277405156945293,0.04708053867708969,0.0,0.0,0.0,0.007888817705619396,0.0,0.018548370228673224,0.0,0.008911638155264185,0.0,0.2953561559844259,0.22151711698831936,0.0,0.0,938.866037650103,0.0,84.37631850205842,51.666666666666686,46.10666666666668,0.2778513475143419,51.66522419312546,807.465967595921,0.0,938.866037650103,131.83799765946628,51.66522419312546,51.66522419312546,51.66522419312546,9.980991816508038,15402.478162674599,0.0,20.000000000000057,25.670796937791,0.0,0.0,0.6,1.0,0.6296401017236993,15402.478162674599,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1407.5923064310157,20.077571261473704,-3.91339526752804,-5.008247720789856,-5.3,6.529479366362011,0.0,4.0,5590.970353468911,-1675.0173973119674,-133.4266773056435,0.0 +2018-01-02 02:00:00,0.39588273218030684,0.2681095385863505,0.8924526005908574,0.3958827321803068,0.26810953858635045,0.8924526005908573,0.010000000000000002,0.0,0.0,0.35359049589291186,0.03229223628739501,0.027090027940619408,0.865362572650238,0.0,1.0,0.0029166666666666685,0.0,0.0,0.2651928719196838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06116446050356953,0.04587334537767714,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2924260353893423,0.21931952654200668,0.0,0.0,614.5466502105136,0.0,84.4474648203178,51.666666666666686,46.10666666666668,0.16592051941512284,51.66500021255063,482.15981863294104,0.0,614.5466502105136,131.9491637817466,51.66500021255063,51.66500021255063,51.66500021255063,9.980991816508038,15216.766240834493,0.0,20.000000000000057,25.36127706805749,0.0,0.0,0.6,1.0,0.6220483575820278,15216.766240834493,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1403.6309985924843,20.051969726780566,-4.116364025033598,-5.2548046718678885,-5.3,6.529479366362011,0.0,4.0,5814.271465508443,-1277.500390735637,-99.7919059811303,0.0 +2018-01-02 03:00:00,0.3913430205193398,0.26470475484062517,0.9257793031474923,0.3913430205193398,0.26470475484062517,0.9257793031474921,0.010000000000000002,0.0,0.0,0.3490507842319448,0.03229223628739501,0.04763371208699139,0.8781455910605009,0.0,1.0,0.0029166666666666685,0.0,0.0,0.2617880881739585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05955486943768611,0.04466615207826457,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2894959147942587,0.21712193609569394,0.0,0.0,1080.5872280500605,0.0,84.4461118937177,51.666666666666686,46.10666666666668,0.32690068432485336,51.665883178756786,950.0234300560661,0.0,1080.5872280500605,131.9470498339339,51.665883178756786,51.665883178756786,51.665883178756786,9.980991816508038,15441.546245365464,0.0,20.000000000000057,25.73591040894244,0.0,0.0,0.6,1.0,0.6312371714484426,15441.546245365464,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1395.6170024021733,20.05128311351113,-4.276092667746873,-5.213527319636328,-5.8500000000000005,6.529479366362011,0.0,4.0,5871.351012402388,-2196.60629973936,-176.00340132919317,0.0 +2018-01-02 04:00:00,0.38304623887388695,0.2582233444700622,0.9218105628316741,0.383046238873887,0.2582233444700622,0.9218105628316741,0.010000000000000002,0.0,0.0,0.3404089037378608,0.03263733513602618,0.06467406462004723,0.8571364982116269,0.0,1.0,0.0029166666666666685,0.0,0.0,0.2553066778033955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05794527837180271,0.04345895877885201,0.0,0.0,0.0,0.007888817705619396,0.0,0.016716843545411055,0.0,0.008031673884995729,0.0,0.2824636253660581,0.2118477190245435,0.0,0.0,1467.153516964573,0.0,84.44163210022371,51.666666666666686,46.10666666666668,0.4594848046751217,51.663728472750186,1335.2118054450675,0.0,1467.153516964573,131.94005015659954,51.663728472750186,51.66372847275019,51.663728472750186,9.980991816508038,15072.116754286106,0.0,20.000000000000057,25.120194590476842,0.0,0.0,0.6,1.0,0.6161352105895316,15072.116754286106,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1390.8171186428854,20.050485872273416,-5.048070223008818,-5.9412402096399255,-6.1499999999999995,6.529479366362011,0.0,3.5,5926.842656897196,-1365.1516836314424,-135.5617485719958,0.0 +2018-01-02 05:00:00,0.42389395215059444,0.2762435861298263,0.8376615965174438,0.4238939521505944,0.27624358612982625,0.8376615965174437,0.010000000000000002,0.0,0.0,0.3644358926175462,0.04945805953304817,0.021834709199875763,0.8158268873175679,0.0,1.0,0.0029166666666666685,0.0,0.0,0.2733269194631596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05794527837180271,0.04345895877885201,0.0,0.0,0.0,0.006345353371911252,0.0,0.02912127426386846,0.0,0.013991431897268454,0.0,0.30649061424574353,0.2298679606843076,0.0,0.0,495.3279275502114,0.0,84.4423297559171,51.666666666666686,46.10666666666668,0.12465350961339237,51.664552160440444,362.2604959015608,0.0,495.3279275502114,131.94114024362045,51.664552160440444,51.66455216044045,51.664552160440444,9.980991816508038,14345.717540428734,0.0,20.000000000000057,23.90952923404789,0.0,0.0,0.6,1.0,0.5864406335172828,14345.717540428734,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1392.3056825760366,20.054082915199928,-4.561608172025271,-5.766917463337342,-5.849999999999999,6.529479366362011,0.0,4.0,6006.225895178384,-1788.708285158613,-96.93007467036402,0.0 +2018-01-02 06:00:00,0.6928281353350028,0.35337604790328286,0.7936980951040177,0.6928281353350028,0.35337604790328286,0.7936980951040177,0.010000000000000002,0.0,0.0,0.5018113579457267,0.181016777389276,0.011411986543292972,0.7477539255971531,0.03453218296357163,1.0,0.0029166666666666685,0.0,0.0,0.3504593812366162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06116446050356953,0.04587334537767714,0.03453218296357163,0.0,0.03453218296357163,0.006002361297753889,0.0,0.11821672228328535,0.0,0.05679769380823672,0.0,0.40611471447858555,0.30458603585893906,0.0,0.0,258.88486042911774,0.0,84.11693118310262,51.666666666666686,46.10666666666668,0.043855701194743656,51.66614838427063,127.45203597430191,0.0,258.88486042911774,131.43270497359785,51.66614838427063,51.66614838427063,51.66614838427063,9.980991816508038,13148.704428747167,0.0,20.000000000000057,21.914507381245283,0.0,0.0,0.6,1.0,0.5375077637904994,13148.704428747167,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1395.7355602287762,20.177547530546665,-4.405684737247163,-5.686424271777915,-5.25,6.529479366362011,0.0,4.0,6169.4826883071655,-905.6048369168739,-63.691315945168334,0.0 +2018-01-02 07:00:00,0.6604618944460009,0.36150416966252097,0.7455607818385422,0.6604618944460009,0.36150416966252097,0.7455607818385422,0.010000000000000002,0.0,-0.005542067436211336,0.4781166706611393,0.17788729122107294,0.011439553557451645,0.7341212282810906,0.0,1.0,0.0029166666666666685,0.0,0.0,0.3585875029958543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06438364263533634,0.04828773197650224,0.0,0.0,0.0,0.0058308652606752056,0.0,0.11621869317427207,0.0,0.05583773278612567,0.0,0.4137330280258029,0.3102997710193521,-0.005542067436211336,0.0,259.51022767660277,0.0,84.35389461171755,51.666666666666686,46.10666666666668,0.04385570280266599,51.665892744152494,127.45203597430191,0.0,259.51022767660277,131.80296033080867,51.665892744152494,51.6658927441525,51.665892744152494,9.980991816508038,12908.983443755575,0.0,20.000000000000057,21.51497240625929,0.0,0.0,0.6,1.0,0.5277081754527483,12908.983443755575,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1405.3343530821712,20.088710088411656,-2.76751101723687,-4.993512045184402,-3.6,6.529479366362011,0.0,3.0,5972.8116621978115,-421.44176339894216,-15.867125569556686,113.57320421254225 +2018-01-02 08:00:00,0.5318828204623087,0.35018509741795123,0.725410720686679,0.5318828204623087,0.35018509741795123,0.7254107206866791,0.010000000000000002,0.0,-0.1028351025131417,0.46302457433504624,0.16169334864040422,0.0440100822941906,0.6814006383924885,0.0,1.0,0.0029166666666666685,0.0,0.0,0.34726843075128455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.0,0.0,0.0,0.005659369223596524,0.0,0.10539603550045018,0.0,0.050637943916357536,0.0,0.39703134063382645,0.29777350547536974,-0.1028351025131417,0.0,998.3839333303198,0.0,84.3522082801514,51.666666666666686,46.10666666666668,0.29845544572458854,51.66543079903229,867.3481940219423,0.0,998.3839333303198,131.80032543773657,51.66543079903229,51.6654307990323,51.66543079903229,9.980991816508038,11981.930532330423,0.0,20.000000000000057,19.969884220550707,0.0,0.0,0.6,1.0,0.4898110472576563,11981.930532330423,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1412.0307612972904,20.086492458295503,-1.4077385490161698,-3.7059923381918964,-2.25,6.529479366362011,0.0,2.5,5742.5278413148,-244.66587873721429,-0.14135032832746694,383.92617595094043 +2018-01-02 09:00:00,0.2484213659598817,0.31282605983063544,0.6019209437461068,0.24842136595988168,0.31282605983063544,0.6019209437461068,0.010000000000000002,0.0,-0.28558769366223463,0.41321252421862514,0.11079653540349114,0.01146482058594874,0.590456123160158,0.0,1.0,0.0029166666666666685,0.0,0.0,0.30990939316396876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.0,0.0,0.0,0.004801889038203111,0.0,0.07159604307297564,0.0,0.03439860329231238,0.0,0.3472192905174054,0.260414467888054,-0.28558769366223463,0.0,260.08341895413474,0.0,84.39477248183948,51.666666666666686,46.10666666666668,0.04386051599696525,51.665383721643586,127.4520359743019,0.0,260.08341895413474,131.8668320028742,51.665383721643586,51.66538372164359,51.665383721643586,9.980991816508038,10382.737924614397,0.0,20.000000000000057,17.304563207690663,0.0,0.0,0.6,1.0,0.4244374245481495,10382.737924614397,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1422.042127495377,20.07314428734613,-0.23957893462368185,-1.5730179288524155,0.25000000000000017,6.529479366362011,0.0,2.5,5258.229002942859,695.9995669085844,49.92506996930688,868.5665812295588 +2018-01-02 10:00:00,0.45163429319613196,0.3477807148046827,0.47051995034913685,0.45163429319613196,0.3477807148046827,0.47051995034913685,0.010000000000000002,0.0,-0.4106158133947065,0.7715694503658752,0.08068065622496325,0.01940022876532102,0.45111972158381586,0.0,1.0,0.0029166666666666685,0.0,0.0,0.344864048138016,0.0,0.0,0.0,0.0,0.0,0.0,0.38487254227134393,0.054841367067117675,0.06438364263533634,0.04828773197650224,0.0,0.0,0.0,0.003772912815731015,0.0,0.05194875683434511,0.0,0.024958986574887123,0.0,0.3223132654591949,0.2417349490943961,-0.4106158133947065,0.0,440.1008971706908,0.0,84.3945717963917,51.666666666666686,46.10666666666668,0.10619030114560997,51.666152526091686,308.6021519057924,0.0,440.1008971706908,131.86651843186203,51.666152526091686,51.6661525260917,51.666152526091686,9.980991816508038,7932.609482922241,0.0,20.000000000000057,13.221015804870403,0.0,0.0,0.6,1.0,0.3242782745094461,7932.609482922241,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1431.3202640392872,20.072978516407492,2.9160589679253657,2.63932559992968,3.9,6.529479366362011,0.0,2.0,4491.591994369053,1305.0016642804014,64.80097371415071,1305.2354051233522 +2018-01-02 11:00:00,0.1028240135461181,0.3500491489962992,0.3198817208976683,0.10282401354611809,0.3500491489962992,0.3198817208976683,0.010000000000000002,0.0,-0.585103520464754,0.5501335112370959,0.12779402277377633,0.0125991347508978,0.3072825861467705,0.0,1.0,0.0029166666666666685,0.0,0.0,0.3471324823296325,0.0,0.0,0.0,0.0,0.0,0.0,0.10776431183597629,0.015355582778792946,0.06438364263533634,0.04828773197650224,0.0,0.0,0.0,0.0025724405561802378,0.0,0.08458323228156191,0.0,0.040638349936034164,0.0,0.3779855567657832,0.2834891675743373,-0.585103520464754,0.0,285.8157279751436,0.0,84.36103452970875,51.666666666666686,46.10666666666668,0.05286532711428674,51.66572785191453,153.63381969703406,0.0,285.8157279751436,131.81411645266994,51.66572785191453,51.66572785191454,51.66572785191453,9.980991816508038,5403.338936827785,0.0,20.000000000000057,9.005564894712975,0.0,0.0,0.6,1.0,0.22088386309655358,5403.338936827785,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1433.6159559937598,20.08585960599804,4.295107627687361,7.783379235506433,7.25,6.529479366362011,0.0,3.0,3406.470657530664,1071.7802799036806,-4.753878656714399,1218.7934167280291 +2018-01-02 12:00:00,-0.0019761399367075327,0.34106361561969417,0.2247074565633648,-0.0019761399367075293,0.34106361561969417,0.22470745656336477,0.010000000000000002,0.0,-0.5866672847169728,0.4508625986040367,0.12382854617622857,0.00581223181188316,0.21889522475148163,0.0,1.0,0.0029166666666666685,0.0,0.0,0.3381469489530275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06760282476710315,0.05070211857532734,0.0,0.0,0.0,0.00205795244494419,0.0,0.08225219832104642,0.0,0.039518395410237946,0.0,0.3832597738369336,0.28744483037770013,-0.5866672847169728,0.0,131.85248823180467,0.0,84.38559194072766,51.666666666666686,46.10666666666668,0.0,51.66640276043819,0.0,0.0,131.85248823180467,131.85248740738697,51.66640276043819,51.66640276043819,51.66640276043819,9.980991816508038,3849.1120040899873,0.0,20.000000000000057,6.415186673483312,0.0,0.0,0.6,1.0,0.15734839862810024,3849.1120040899873,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1431.1997968631097,20.077558086131003,4.45483896836321,11.84296655735971,9.15,6.529479366362011,0.0,3.0,2577.0346317493354,760.253454063415,-99.07637087389793,1046.235252664355 +2018-01-02 13:00:00,0.00332562515478795,0.34106361561969417,0.19100809691457762,0.003325625154787952,0.34106361561969417,0.1910080969145776,0.010000000000000002,0.0,-0.5802080268780239,0.4508625986040367,0.1226710534287751,0.022655449979124095,0.1683526469354535,0.0,1.0,0.0029166666666666685,0.0,0.0,0.3381469489530275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06760282476710315,0.05070211857532734,0.0,0.0,0.0,0.0018864564078655075,0.0,0.081586188618042,0.0,0.0391984084028676,0.0,0.3832597738369336,0.28744483037770013,-0.5802080268780239,0.0,513.9467158985964,0.0,84.38138642722531,51.666666666666686,46.10666666666668,0.13156871899186498,51.66589257628319,382.3561079229057,0.0,513.9467158985964,131.84591629253953,51.66589257628319,51.6658925762832,51.66589257628319,9.980991816508038,2960.357837752197,0.0,20.000000000000057,4.933929729586995,0.0,0.0,0.6,1.0,0.12101689029612443,2960.357837752197,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1430.607640532921,20.07751960884198,4.196486788675571,13.524415120561292,9.4,6.529479366362011,0.0,2.5,1918.1658071547306,584.0595498762833,-228.05444136119345,1055.6814900044208 +2018-01-02 14:00:00,0.011043408619908204,0.3371079528163314,0.13290754381253117,0.011043408619908202,0.3371079528163313,0.13290754381253117,0.010000000000000002,0.0,-0.5691880197625029,0.4455883815328863,0.12464304684952465,0.005823537622446573,0.1270840061900846,0.0,1.0,0.0029166666666666685,0.0,0.0,0.3341912861496647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06760282476710315,0.05070211857532734,0.0,0.0,0.0,0.0018864564078655075,0.0,0.08291820802405085,0.0,0.039838382417608294,0.0,0.3779855567657832,0.2834891675743373,-0.5691880197625029,0.0,132.10896445341987,0.0,84.38634044555806,51.666666666666686,46.10666666666668,0.0,51.666147664422716,0.0,0.0,132.10896445341987,131.8536569461845,51.666147664422716,51.666147664422716,51.666147664422716,9.980991816508038,2234.679053914765,0.0,20.000000000000057,3.724465089857942,0.0,0.0,0.6,1.0,0.09135176378541826,2234.679053914765,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1429.8401166560122,20.077145814698085,3.8912253323923327,13.92018617532212,9.700000000000001,6.529479366362011,0.0,2.0,1405.1575905268771,440.7071517680911,-262.6096586556804,1184.4612068734039 +2018-01-02 15:00:00,0.38450938739093815,0.3660077486314026,0.12336232822143099,0.38450938739093815,0.3660077486314026,0.12336232822143099,0.010000000000000002,0.0,-0.2914524197009572,0.5041723875662381,0.1617894195256573,0.01142463386939841,0.0918867494054426,0.020050944946589978,1.0,0.0029166666666666685,0.0,0.0,0.36309108196473594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.020050944946589978,0.0,0.020050944946589978,0.00205795244494419,0.0,0.10789357188671678,0.0,0.051837895193996335,0.0,0.41812820891842833,0.3135961566888212,-0.2914524197009572,0.0,259.1717693946327,0.0,84.30048322755167,51.666666666666686,46.10666666666668,0.0438557028765768,51.66614770142931,127.45203597430191,0.0,259.1717693946327,131.71950504304948,51.66614770142931,51.66614770142932,51.66614770142931,9.980991816508038,1615.7611046784775,0.0,20.000000000000057,2.6929351744641292,0.0,0.0,0.6,1.0,0.0660509286600601,1615.7611046784775,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1433.300477614327,20.10883615360904,3.5651160819753245,13.862892703403874,8.9,6.529479366362011,0.0,2.5,1239.5146578342226,318.7833241402775,-358.7437620770272,1169.5034369952766 +2018-01-02 16:00:00,0.7198122483617738,0.403691980447487,0.10083360118211704,0.7198122483617737,0.40369198044748694,0.10083360118211702,0.010000000000000002,0.0,-0.08676886028619414,0.5655574438469005,0.23102366480106737,0.00578629742828949,0.06385694494802091,0.031190358805806635,1.0,0.0029166666666666685,0.0,0.0,0.4007753137808203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07082200689886999,0.05311650517415247,0.031190358805806635,0.0,0.031190358805806635,0.0032584247044949674,0.0,0.15384824139402206,0.0,0.07391699870255033,0.0,0.46354507814222395,0.34765880860666787,-0.08676886028619414,0.0,131.26415777316873,0.0,84.00918317335065,51.666666666666686,46.10666666666668,0.0,51.66640412920924,0.0,0.0,131.26415777316873,131.26434870836036,51.66640412920924,51.66640412920924,51.66640412920924,9.980991816508038,1122.8775484846526,0.0,20.000000000000057,1.8714625808077543,0.0,0.0,0.6,1.0,0.04590227146463064,1122.8775484846526,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1442.6408589379314,20.218463962605277,3.162136890999298,12.002756197917547,7.25,6.529479366362011,0.0,3.0,763.4411910650492,223.18910307952657,-365.83544701983647,643.7327854412266 +2018-01-02 17:00:00,0.9436733381748331,0.43313376664383935,0.20896112612592344,0.943673338174833,0.4331337666438393,0.2089611261259234,0.010000000000000002,0.0,0.0,0.6270919864938037,0.3065813516810294,0.03684525514620212,0.11864668445548136,0.05346918652423994,1.0,0.0029166666666666685,0.0,0.0,0.43021709997717267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07726037116240361,0.057945278371802696,0.05346918652423994,0.0,0.05346918652423994,0.006345353371911252,0.0,0.20279995456484726,0.0,0.09743604374427088,0.0,0.49636242880716014,0.37227182160537,0.0,0.0,835.8473522391083,0.0,83.96214014328994,51.666666666666686,46.10666666666668,0.24271747407401004,51.66570464021181,705.3694689371418,0.0,835.8473522391083,131.19084397389054,51.6657046402118,51.66570464021181,51.66570464021181,9.980991816508038,2086.3149385810393,0.0,20.000000000000057,3.4771915643017324,0.0,0.0,0.6,1.0,0.08528676595297514,2086.3149385810393,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1444.5053855503181,20.233223989071252,3.2320802052597233,9.407765444832126,5.8500000000000005,6.529479366362011,0.0,3.0,1581.8115949084224,414.74820854805904,-320.09253351751414,110.3285064699636 +2018-01-02 18:00:00,1.0061077480238967,0.4320320085285642,0.2820269025191248,1.0061077480238967,0.43203200852856416,0.28202690251912477,0.010000000000000002,0.0,0.0,0.6389902723044968,0.35711747571939995,0.03213932700385851,0.18305109235996633,0.06683648315529993,1.0,0.0029166666666666685,0.0,0.0,0.42911534186189754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08047955329417043,0.06035966497062781,0.06683648315529993,0.0,0.06683648315529993,0.008403305816855444,0.0,0.23554543162923147,0.0,0.11316873827331299,0.0,0.4916742358550265,0.3687556768912697,0.0,0.0,729.0917452553186,0.0,83.75057674870237,51.666666666666686,46.10666666666668,0.20586969193133287,51.6652585450126,598.2827847428606,0.0,729.0917452553186,130.86027616984745,51.66525854501261,51.66525854501261,51.6652585450126,9.980991816508038,3218.8192216822777,0.0,20.000000000000057,5.364698702803797,0.0,0.0,0.6,1.0,0.13158257007509352,3218.8192216822777,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1447.4079763213474,20.312567549663875,2.7068506662852063,6.600113338030412,3.0500000000000003,6.529479366362011,0.0,4.0,1974.4702853146189,-516.9563338156636,-364.94991947122753,0.0 +2018-01-02 19:00:00,0.7838857262306121,0.36896412561150876,0.39391125613050426,0.783885726230612,0.3689641256115087,0.3939112561305042,0.010000000000000002,0.0,0.0,0.5058863407678696,0.26799938546274255,0.04108502116539874,0.33500317279035885,0.01782306217474665,1.0,0.0029166666666666685,0.0,0.0,0.3660474589448421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07726037116240361,0.057945278371802696,0.01782306217474665,0.0,0.01782306217474665,0.011147242410114366,0.0,0.1734955276326526,0.0,0.08335661541997559,0.0,0.4108029074307193,0.3081021805730394,0.0,0.0,932.0279102837477,0.0,84.09450502277697,51.666666666666686,46.10666666666668,0.27544563829268265,51.664624185145264,800.452733870351,0.0,932.0279102837477,131.397664098089,51.66462418514527,51.66462418514527,51.664624185145264,9.980991816508038,5890.785124525081,0.0,20.000000000000057,9.817975207541803,0.0,0.0,0.6,1.0,0.2408102453296617,5890.785124525081,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1444.7888493925927,20.18277963487369,1.192706633436113,3.5721736849929244,0.55,6.529479366362011,0.0,4.0,2284.4536454426257,-569.376655636854,-328.226175663892,0.0 +2018-01-02 20:00:00,0.7115844311410067,0.35545042581274516,0.5112457784438478,0.7115844311410067,0.3554504258127451,0.5112457784438478,0.010000000000000002,0.0,0.0,0.47004501219477146,0.23153941894623523,0.054644011929460695,0.45660176651438705,0.0,1.0,0.0029166666666666685,0.0,0.0,0.3525337591460785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07565078009652021,0.05673808507239014,0.0,0.0,0.0,0.015606139374160109,0.0,0.14585612495796896,0.0,0.07007715461410616,0.0,0.39439423209825125,0.29579567407368834,0.0,0.0,1239.618303787751,0.0,84.31990199077926,51.666666666666686,46.10666666666668,0.381041069939259,51.6636004620669,1107.2817093640408,0.0,1239.618303787751,131.74984686059258,51.6636004620669,51.66360046206691,51.6636004620669,9.980991816508038,8029.007222860054,0.0,20.000000000000057,13.381678704766756,0.0,0.0,0.6,1.0,0.3282189314699257,8029.007222860054,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1437.7165593322886,20.09679208699531,0.08885240670097681,1.5065013134027856,-0.85,6.529479366362011,0.0,4.0,3093.7170997951835,-1162.102568415611,-285.8077842601203,0.0 +2018-01-02 21:00:00,0.5253704621244262,0.30457768842666577,0.5504525853637104,0.5253704621244262,0.30457768842666577,0.5504525853637104,0.010000000000000002,0.0,0.0,0.40221469567999896,0.1131557664444272,0.03385868495378921,0.5165939004099213,0.0,1.0,0.0029166666666666685,0.0,0.0,0.3016610217599991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07404118903063679,0.05553089177297758,0.0,0.0,0.0,0.018007083893261663,0.0,0.06426993633992698,0.0,0.030878746211238556,0.0,0.3281735066493621,0.24613012998702152,0.0,0.0,768.0959748175333,0.0,84.3885147954688,51.666666666666686,46.10666666666668,0.21927851462373205,51.66614767041915,637.2601798715095,0.0,768.0959748175333,131.85705436792,51.66614767041915,51.66614767041916,51.66614767041915,9.980991816508038,9083.924903181498,0.0,20.000000000000057,15.139874838635832,0.0,0.0,0.6,1.0,0.37134306179054827,9083.924903181498,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1435.0453461549648,20.074084160340146,-0.737412918332384,-0.14007329686642744,-1.4000000000000001,6.529479366362011,0.0,4.0,3628.414574237186,-524.8059145379934,-187.39796965083406,0.0 +2018-01-02 22:00:00,0.4443327856779005,0.2760119755167196,0.5306410805810496,0.44433278567790047,0.27601197551671963,0.5306410805810496,0.010000000000000002,0.0,0.0,0.36412707846673736,0.07020570721116312,0.011478218879569816,0.5191628617014798,0.0,1.0,0.0029166666666666685,0.0,0.0,0.2730953088500529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07082200689886999,0.05311650517415247,0.0,0.0,0.0,0.015606139374160109,0.0,0.03688028730387,0.0,0.017719280533133007,0.0,0.2933050715678674,0.21997880367590048,0.0,0.0,260.38736387738913,0.0,84.42504000293549,51.666666666666686,46.10666666666668,0.04385570302577912,51.66512718919472,127.4520359743019,0.0,260.38736387738913,131.9141250045867,51.66512718919472,51.66512718919473,51.66512718919472,9.980991816508038,9129.09820358861,0.0,20.000000000000057,15.215163672647684,0.0,0.0,0.6,1.0,0.37318970758112346,9129.09820358861,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1438.7793127889918,20.061681099357262,0.1403574413439377,-0.5659467477941649,-0.25000000000000006,6.529479366362011,0.0,4.0,4063.1584747450593,169.92994909352373,-86.54303454581397,0.0 +2018-01-02 23:00:00,0.3837021179617263,0.25678750344966184,0.5389109002697327,0.3837021179617262,0.25678750344966184,0.5389109002697327,0.010000000000000002,0.0,0.0,0.3384944490439936,0.03520766891773262,0.005817211380226801,0.5330936888895059,0.0,1.0,0.0029166666666666685,0.0,0.0,0.25387083678299516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.0,0.0,0.0,0.010804250335956998,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,0.0,0.0,131.96545146136597,0.0,84.45789015394725,51.666666666666686,46.10666666666668,0.0,51.66640253706087,0.0,0.0,131.96545146136597,131.96545336554257,51.66640253706087,51.66640253706087,51.66640253706087,9.980991816508038,9374.06158375011,0.0,20.000000000000057,15.623435972916852,0.0,0.0,0.6,1.0,0.3832036005387672,9374.06158375011,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1440.4139647926713,20.050493797832694,1.1906465633859333,-0.2378911432129538,0.3,6.529479366362011,0.0,4.0,4336.4942538867845,-413.68928204413027,-65.08628250814822,0.0 +2018-01-03 00:00:00,0.3791770942655053,0.2555803101502493,0.5760538311733122,0.3791770942655052,0.2555803101502493,0.5760538311733122,0.010000000000000002,0.0,0.0,0.33688485797811024,0.03229223628739501,0.01143549868082625,0.5646183324924859,0.0,1.0,0.0029166666666666685,0.0,0.0,0.2526636434835826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06438364263533634,0.04828773197650224,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,0.0,0.0,259.418241398382,0.0,84.45837204460186,51.666666666666686,46.10666666666668,0.04385570313561201,51.666147436733354,127.45203597430191,0.0,259.418241398382,131.96620631969043,51.66614743673335,51.666147436733354,51.666147436733354,9.950935228855258,9928.399323436539,0.0,20.000000000000057,16.547332205727567,0.0,0.0,0.6,1.0,0.4058644520666255,9928.399323436539,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1435.7650322295183,20.049731786832623,0.6367071481832679,-0.15288984157669597,-0.3,6.529479366362011,0.0,4.0,4481.796530214111,-592.5708553883914,-93.18213034392666,0.0 +2018-01-03 01:00:00,0.3775675031996218,0.2543731168508367,0.6012326759211873,0.37756750319962185,0.2543731168508367,0.6012326759211873,0.010000000000000002,0.0,0.0,0.3352752669122268,0.03229223628739501,0.005817406306948095,0.5954152696142393,0.0,1.0,0.0029166666666666685,0.0,0.0,0.25145645018417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06277405156945293,0.04708053867708969,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,0.0,0.0,131.96987344143446,0.0,84.46071920640647,51.666666666666686,46.10666666666668,0.0,51.66640252662908,0.0,0.0,131.96987344143446,131.96987376001007,51.66640252662908,51.66640252662909,51.66640252662908,9.920878641202478,10469.940878302014,0.0,20.000000000000057,17.449901463836692,0.0,0.0,0.6,1.0,0.42800220653002136,10469.940878302014,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1433.1780241118768,20.049434762606015,0.2820706013758289,-0.48391685726928696,-0.6,6.529479366362011,0.0,4.0,4593.751309405449,-459.86402585559944,-88.26495411820561,0.0 +2018-01-03 02:00:00,0.3759579121337384,0.25316592355142414,0.6261018279558835,0.3759579121337384,0.2531659235514241,0.6261018279558835,0.010000000000000002,0.0,0.0,0.33366567584634343,0.03229223628739501,0.005817448285363264,0.6202843796705203,0.0,1.0,0.0029166666666666685,0.0,0.0,0.25024925688475746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06116446050356953,0.04587334537767714,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,0.0,0.0,131.97082573629658,0.0,84.46132867511874,51.666666666666686,46.10666666666668,0.0,51.66640252472305,0.0,0.0,131.97082573629658,131.97082605487302,51.66640252472305,51.66640252472305,51.66640252472305,9.920878641202478,10907.245941294343,0.0,20.000000000000057,18.178743235490572,0.0,0.0,0.6,1.0,0.4458788625745034,10907.245941294343,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1430.6642401614827,20.04920661259931,0.15566406322638823,-0.6547154417579821,-0.85,6.529479366362011,0.0,4.0,4691.874464624852,-702.2435291813349,-87.74352420975019,0.0 +2018-01-03 03:00:00,0.37434832106785504,0.2519587302520116,0.6513298161738755,0.374348321067855,0.2519587302520116,0.6513298161738755,0.010000000000000002,0.0,0.0,0.33205608478046,0.03229223628739501,0.005817490263778694,0.6455123259100969,0.0,1.0,0.0029166666666666685,0.0,0.0,0.2490420635853449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05955486943768611,0.04466615207826457,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,0.0,0.0,131.9717780311647,0.0,84.4619381438333,51.666666666666686,46.10666666666668,0.0,51.66640252281701,0.0,0.0,131.9717780311647,131.97177834973954,51.66640252281701,51.66640252281701,51.66640252281701,9.920878641202478,11350.860875423386,0.0,20.000000000000057,18.918101459038976,0.0,0.0,0.6,1.0,0.46401346074118305,11350.860875423386,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1427.2303352931458,20.0489784625926,-0.34439404726276046,-1.0494007319589613,-1.4000000000000001,6.529479366362011,0.0,4.0,4779.869246308429,-881.6085025338251,-121.59856818786737,0.0 +2018-01-03 04:00:00,0.3727387300019716,0.25075153695259905,0.7107000896104229,0.3727387300019716,0.25075153695259905,0.7107000896104227,0.010000000000000002,0.0,0.0,0.3304464937145766,0.03229223628739501,0.039607204910832194,0.6710928846995907,0.0,1.0,0.0029166666666666685,0.0,0.0,0.2478348702859324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05794527837180271,0.04345895877885201,0.0,0.0,0.0,0.007888817705619396,0.0,0.016483740149359508,0.0,0.007919678432416108,0.0,0.2725012153427739,0.20437591150708034,0.0,0.0,898.5031375939138,0.0,84.4546060349693,51.666666666666686,46.10666666666668,0.2637491788127573,51.665889654423665,767.5670801710841,0.0,898.5031375939138,131.96032192963952,51.665889654423665,51.665889654423665,51.665889654423665,9.920878641202478,11800.67624266019,0.0,20.000000000000057,19.667793737766985,0.0,0.0,0.6,1.0,0.4824015272972653,11800.67624266019,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1425.3201957691097,20.048750312585895,-0.7040576895872491,-1.5057596572356313,-1.7,6.529479366362011,0.0,4.0,4869.123012920524,-750.3457729565249,-106.8673296816553,0.0 +2018-01-03 05:00:00,0.41812008961095465,0.27345997156449686,0.7027776036814769,0.4181200896109546,0.27345997156449686,0.7027776036814769,0.010000000000000002,0.0,0.0,0.3607244065304403,0.04739568308051426,0.016226468271147605,0.6865511354103293,0.0,1.0,0.0029166666666666685,0.0,0.0,0.2705433048978302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05794527837180271,0.04345895877885201,0.0,0.0,0.0,0.006345353371911252,0.0,0.027728203968417537,0.0,0.013322125740185478,0.0,0.30277912815863767,0.22708434611897818,0.0,0.0,368.1030430326289,0.0,84.4440204616233,51.666666666666686,46.10666666666668,0.08079243967631644,51.66490853047387,235.13498582705742,0.0,368.1030430326289,131.9437819712864,51.66490853047387,51.66490853047389,51.66490853047387,9.920878641202478,12072.498245358009,0.0,20.000000000000057,20.120830408930015,0.0,0.0,0.6,1.0,0.49351337771651466,12072.498245358009,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1426.5750664102407,20.054082915199928,-0.4790147681518803,-1.64195090716467,-1.4000000000000001,6.529479366362011,0.0,3.8333333333333335,4960.134693494282,-440.4044918193128,-48.707003679998316,0.0 +2018-01-03 06:00:00,0.4688129546077257,0.2865692983353771,0.7094720382647367,0.4688129546077256,0.2865692983353771,0.7094720382647367,0.010000000000000002,0.0,0.0,0.378203508891614,0.08060944571611166,0.03153313586335428,0.6779389024013825,0.0,1.0,0.0029166666666666685,0.0,0.0,0.2836526316687104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06116446050356953,0.04587334537767714,0.0,0.0,0.0,0.006002361297753889,0.0,0.05039473419400146,0.0,0.024212350224356315,0.0,0.3170390483880445,0.2377792862910333,0.0,0.0,715.3400896423844,0.0,84.42321519277755,51.666666666666686,46.10666666666668,0.20059174681072456,51.665588490695846,583.7834130878668,0.0,715.3400896423844,131.91127373871493,51.665588490695846,51.665588490695846,51.665588490695846,9.920878641202478,11921.058443533218,0.0,20.000000000000057,19.86843073922203,0.0,0.0,0.6,1.0,0.487322648457307,11921.058443533218,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1425.7287295954645,20.06099349107124,-0.07734636306448646,-1.3451443802607308,-1.1,6.529479366362011,0.0,3.0,5011.651094377092,-590.9723594581063,-48.5644254132204,0.0 +2018-01-03 07:00:00,0.4659456509489684,0.29118127538051486,0.6782002807330789,0.46594565094896834,0.29118127538051486,0.6782002807330789,0.010000000000000002,0.0,-0.007694780853091789,0.3843528116184644,0.07928762018359574,0.0116743499228886,0.6665259308101904,0.0,1.0,0.0029166666666666685,0.0,0.0,0.2882646087138482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06438364263533634,0.04828773197650224,0.0,0.0,0.0,0.0058308652606752056,0.0,0.04961772287382962,0.0,0.023839032049090905,0.0,0.31996916898312805,0.23997687673734594,-0.007694780853091789,0.0,264.8366644073869,0.0,84.4253283631024,51.666666666666686,46.10666666666668,0.04555253529552064,51.665782990911715,132.5674833887031,0.0,264.8366644073869,131.9145755673475,51.665782990911715,51.665782990911715,51.665782990911715,9.920878641202478,11720.369707614605,0.0,20.000000000000057,19.53394951269101,0.0,0.0,0.6,1.0,0.47911866499672245,11720.369707614605,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1425.8208478331064,20.061894651644227,0.059442005201590126,-1.114258510513742,-0.8500000000000001,6.529479366362011,0.0,2.5,5005.408874706056,-325.3068925580326,-42.83634920380731,52.9514209806491 +2018-01-03 08:00:00,0.46332376076671994,0.31282605983063544,0.6007739272292666,0.4633237607667199,0.31282605983063544,0.6007739272292666,0.010000000000000002,0.0,-0.0855404088760842,0.42992164500745017,0.10894252463535392,0.005805120672634555,0.5782596857678072,0.016709120788824982,1.0,0.0029166666666666685,0.0,0.0,0.30990939316396876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.016709120788824982,0.0,0.016709120788824982,0.005659369223596524,0.0,0.06976451638971347,0.0,0.033518639022043925,0.0,0.3472192905174054,0.260414467888054,-0.0855404088760842,0.0,131.69116957927358,0.0,84.28234763477667,51.666666666666686,46.10666666666668,0.0,51.666403082746825,0.0,0.0,131.69116957927358,131.69116817933855,51.666403082746825,51.66640308274683,51.666403082746825,9.920878641202478,10168.272517123993,0.0,20.000000000000057,16.947120861873323,0.0,0.0,0.6,1.0,0.41567026256536477,10168.272517123993,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1433.0490177817535,20.116206811473592,0.8087899871192009,-0.3796285050213033,1.3499999999999999,6.529479366362011,0.0,1.5,4928.722115105901,644.6626350635851,102.90693129652472,331.6812630524454 +2018-01-03 09:00:00,0.32878319452922494,0.33150557862429336,0.4977001896233076,0.3287831945292249,0.33150557862429336,0.4977001896233076,0.010000000000000002,0.0,-0.2572467996864081,0.43811854927683563,0.13791144493879737,0.02270015768648108,0.47500003193682655,0.0,1.0,0.0029166666666666685,0.0,0.0,0.3285889119576267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.0,0.0,0.0,0.004801889038203111,0.0,0.08991130990559731,0.0,0.04319824599499695,0.0,0.37212531557561596,0.27909398668171187,-0.2572467996864081,0.0,514.9609256976802,0.0,84.38627397696489,51.666666666666686,46.10666666666668,0.131637565997958,51.66563645285368,383.1078648389125,0.0,514.9609256976802,131.85355308900765,51.6656364528537,51.6656364528537,51.66563645285368,9.920878641202478,8352.527228252342,0.0,20.000000000000057,13.920878713753902,0.0,0.0,0.6,1.0,0.3414441519151972,8352.527228252342,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1438.7694205464798,20.07555474043269,3.965099245325575,2.435013131081021,4.45,6.529479366362011,0.0,2.0,4483.798271815715,1471.4221081873077,170.41083470623454,720.7721796982609 +2018-01-03 10:00:00,0.11784688307015999,0.29916585400211765,0.40469411984353587,0.11784688307015997,0.2991658540021176,0.4046941198435358,0.010000000000000002,0.0,-0.3766244936029131,0.3949989164472681,0.08947246022580496,0.017072421007072684,0.38762169883646314,0.0,1.0,0.0029166666666666685,0.0,0.0,0.29624918733545097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06438364263533634,0.04828773197650224,0.0,0.0,0.0,0.003772912815731015,0.0,0.057887343352801233,0.0,0.027812204057272725,0.0,0.33061527381193173,0.24796145535894873,-0.3766244936029131,0.0,387.2937733352603,0.0,84.40834468591953,51.666666666666686,46.10666666666668,0.08775891672735325,51.6658910002482,255.40524322594172,0.0,387.2937733352603,131.88803857174926,51.6658910002482,51.665891000248216,51.6658910002482,9.920878641202478,6816.043318126725,0.0,20.000000000000057,11.360072196877875,0.0,0.0,0.6,1.0,0.2786340069988594,6816.043318126725,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1439.7824756485377,20.067874990304784,5.621748406284374,5.706980826963907,5.849999999999999,6.529479366362011,0.0,1.1666666666666667,3746.159371565964,1341.303786189544,-30.111468378584103,1051.0183986254021 +2018-01-03 11:00:00,0.16869224100195868,0.3346935662175062,0.33643408704401917,0.16869224100195868,0.33469356621750623,0.3364340870440191,0.010000000000000002,0.0,-0.4627122849253338,0.49361050315351607,0.12779402277377633,0.0057914127494715474,0.279401370542151,0.05124130375239661,1.0,0.0029166666666666685,0.0,0.0,0.33177689955083955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06438364263533634,0.04828773197650224,0.05124130375239661,0.0,0.05124130375239661,0.0025724405561802378,0.0,0.08458323228156191,0.0,0.040638349936034164,0.0,0.3779855567657832,0.2834891675743373,-0.4627122849253338,0.0,131.3802006028061,0.0,84.08315211728242,51.666666666666686,46.10666666666668,0.0,51.666403431914944,0.0,0.0,131.3802006028061,131.3799251832538,51.666403431914944,51.66640343191495,51.666403431914944,9.920878641202478,4913.068206645327,0.0,20.000000000000057,8.188447011075548,0.0,0.0,0.6,1.0,0.20084201598831974,4913.068206645327,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1443.6201177150276,20.190774006228022,5.966056673710924,8.789874793614375,6.3999999999999995,6.529479366362011,0.0,2.0,3246.4096320973335,959.1036649008079,-204.3952790761605,1259.368360793084 +2018-01-03 12:00:00,0.08428523646083803,0.34106361561969417,0.3833089598412314,0.08428523646083802,0.34106361561969417,0.3833089598412314,0.010000000000000002,0.0,-0.5004059083194273,0.4508625986040367,0.12382854617622857,0.0676692800617928,0.3156396797794386,0.0,1.0,0.0029166666666666685,0.0,0.0,0.3381469489530275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06760282476710315,0.05070211857532734,0.0,0.0,0.0,0.00205795244494419,0.0,0.08225219832104642,0.0,0.039518395410237946,0.0,0.3832597738369336,0.28744483037770013,-0.5004059083194273,0.0,1535.1010148563553,0.0,84.30322284805008,51.666666666666686,46.10666666666668,0.48224425159038464,51.66359438847968,1403.3774872494205,0.0,1535.1010148563553,131.72378570007825,51.66359438847968,51.66359438847969,51.66359438847968,9.920878641202478,5550.292299822923,0.0,20.000000000000057,9.25048716637154,0.0,0.0,0.6,1.0,0.2268911905829268,5550.292299822923,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1444.4763947592685,20.101988253462473,5.9149091428010605,10.482099395323822,6.1499999999999995,6.529479366362011,0.0,2.0,2009.0774517128866,1065.2971314251952,-657.8615203904866,1336.8871889685477 +2018-01-03 13:00:00,0.19001163226924742,0.34106361561969417,0.36282516529719566,0.1900116322692474,0.34106361561969417,0.36282516529719566,0.010000000000000002,0.0,-0.39352201976356443,0.4508625986040367,0.1226710534287751,0.011441431965816679,0.35138373333137896,0.0,1.0,0.0029166666666666685,0.0,0.0,0.3381469489530275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06760282476710315,0.05070211857532734,0.0,0.0,0.0,0.0018864564078655075,0.0,0.081586188618042,0.0,0.0391984084028676,0.0,0.3832597738369336,0.28744483037770013,-0.39352201976356443,0.0,259.5528400198233,0.0,84.38413796282684,51.666666666666686,46.10666666666668,0.04387865238803287,51.666147163606546,127.70262161297086,0.0,259.5528400198233,131.85021556691694,51.66614716360655,51.66614716360655,51.666147163606546,9.920878641202478,6178.8252692278575,0.0,20.000000000000057,10.298042115379763,0.0,0.0,0.6,1.0,0.25258507948918446,6178.8252692278575,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1444.19057625857,20.07751960884198,5.787603870543081,10.00563585764794,5.1,6.529479366362011,0.0,2.0,1629.677753690509,506.2348513316767,-913.714289300172,1425.3184713462026 +2018-01-03 14:00:00,0.27022923603176224,0.3371079528163314,0.3507162077472028,0.27022923603176224,0.3371079528163313,0.3507162077472028,0.010000000000000002,0.0,-0.3100021923506488,0.4455883815328863,0.12464304684952465,0.017048189475117926,0.33366801827208487,0.0,1.0,0.0029166666666666685,0.0,0.0,0.3341912861496647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06760282476710315,0.05070211857532734,0.0,0.0,0.0,0.0018864564078655075,0.0,0.08291820802405085,0.0,0.039838382417608294,0.0,0.3779855567657832,0.2834891675743373,-0.3100021923506488,0.0,386.74407265481403,0.0,84.38428676344034,51.666666666666686,46.10666666666668,0.08775730474764808,51.6664027583977,255.40524322594172,0.0,386.74407265481403,131.85044806787553,51.6664027583977,51.6664027583977,51.6664027583977,9.920878641202478,5867.307411434547,0.0,20.000000000000057,9.778845685724246,0.0,0.0,0.6,1.0,0.23985049654752177,5867.307411434547,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1441.706030614283,20.07714581469808,4.353639736457716,8.549147883323768,3.4499999999999997,6.529479366362011,0.0,2.0,1230.912498227376,-534.1531236205079,-868.1175057959439,1492.4220561826912 +2018-01-03 15:00:00,0.3154570448033059,0.344251603212907,0.3457904124550261,0.3154570448033059,0.344251603212907,0.34579041245502606,0.010000000000000002,0.0,-0.28433071391536574,0.45511324872832054,0.13467450999035108,0.022721972978783988,0.32306843947624214,0.0,1.0,0.0029166666666666685,0.0,0.0,0.3413349365462403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.0,0.0,0.0,0.00205795244494419,0.0,0.0895783050540951,0.0,0.043038252491311775,0.0,0.3891200150271008,0.2918400112703255,-0.28433071391536574,0.0,515.4558131462093,0.0,84.3755768861917,51.666666666666686,46.10666666666668,0.13164078349922978,51.66512531149561,383.1078648389125,0.0,515.4558131462093,131.83683888467453,51.66512531149561,51.66512531149561,51.66512531149561,9.920878641202478,5680.921591334102,0.0,20.000000000000057,9.468202652223503,0.0,0.0,0.6,1.0,0.2322312040227453,5680.921591334102,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1435.5016361081514,20.079294455649034,1.9049123922528308,6.699084495018078,0.9999999999999999,6.529479366362011,0.0,3.0,1125.255572390485,-1309.6977415378656,-830.4869778128187,1150.6804588869654 +2018-01-03 16:00:00,0.6294830941025574,0.3797382445826787,0.3883211938982963,0.6294830941025574,0.37973824458267863,0.3883211938982962,0.010000000000000002,0.0,-0.1147311368864284,0.5369609535182545,0.1972532774707314,0.0057923920192419695,0.34799661891548267,0.03453218296357163,1.0,0.0029166666666666685,0.0,0.0,0.376821577916012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07082200689886999,0.05311650517415247,0.03453218296357163,0.0,0.03453218296357163,0.0032584247044949674,0.0,0.13103740906612052,0.0,0.06295744370011593,0.0,0.4316067636558128,0.3237050727418595,-0.1147311368864284,0.0,131.40241567613066,0.0,84.09714719164594,51.666666666666686,46.10666666666668,0.0,51.666403040667625,0.0,0.0,131.40241567613066,131.4017924869468,51.666403040667625,51.666403040667625,51.666403040667625,9.920878641202478,6119.2653461082255,0.0,20.000000000000057,10.198775576847043,0.0,0.0,0.6,1.0,0.2501503208967277,6119.2653461082255,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1427.1417417103187,20.18553487600442,-0.6958423819808809,3.8433327623341715,-1.6500000000000001,6.529479366362011,0.0,3.5,1610.9631355720473,-2087.7097409823295,-705.0299835497744,555.2739330206665 +2018-01-03 17:00:00,1.3828410057579135,0.5033307164897499,0.5189945097159291,1.3828410057579132,0.5033307164897499,0.5189945097159291,0.010000000000000002,0.0,0.0,1.066259654076884,0.3065813516810294,0.04596995702623527,0.4730245526896939,0.0,1.0,0.0029166666666666685,0.0,0.0,0.5004140498230832,0.0,0.0,0.0,0.0,0.0,0.0,0.4926368541073202,0.07019694984591061,0.07726037116240361,0.057945278371802696,0.0,0.0,0.0,0.006345353371911252,0.0,0.20279995456484726,0.0,0.09743604374427088,0.0,0.49636242880716014,0.37227182160537,0.0,0.0,1042.8443692534709,0.0,84.21267690884198,51.666666666666686,46.10666666666668,0.3131220154876797,51.66457970346483,911.2623732393923,0.0,1042.8443692534709,131.5823076700656,51.66457970346483,51.664579703464845,51.66457970346483,9.920878641202478,8317.789874376294,0.0,20.000000000000057,13.862983123960495,0.0,0.0,0.6,1.0,0.3400241186713826,8317.789874376294,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1411.792875385165,20.138129201718773,-3.2741986075883642,0.5762580577218105,-4.3999999999999995,6.529479366362011,0.0,4.0,2378.0179380155614,-2756.4851175538192,-535.6306045877517,21.362698985500987 +2018-01-03 18:00:00,1.035136665925437,0.4610402024198918,0.6118616217675259,1.035136665925437,0.46104020241989174,0.6118616217675259,0.010000000000000002,0.0,0.0,0.6108313810043003,0.41430528492113666,0.04221045848571985,0.5696511632818061,0.0,1.0,0.0029166666666666685,0.0,0.0,0.4581235357532251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08047955329417043,0.06035966497062781,0.0,0.0,0.0,0.008403305816855444,0.0,0.27417399440348805,0.0,0.13172798470079317,0.0,0.5303518277101299,0.3977638707825973,0.0,0.0,957.5588450152023,0.0,84.21439971785584,51.666666666666686,46.10666666666668,0.283994231824859,51.66527716699269,826.5024180132219,0.0,957.5588450152023,131.58499955914974,51.66527716699269,51.665277166992695,51.66527716699269,9.920878641202478,10016.897962124154,0.0,20.000000000000057,16.694829936873592,0.0,0.0,0.5999999999999999,1.0,0.40948220054042056,10016.897962124154,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1402.9555626759095,20.138144355217317,-4.913958614645572,-2.3198688156803526,-5.699999999999999,6.529479366362011,0.0,3.3333333333333335,3338.8638089606807,-2030.5683249058127,-322.8080549667182,0.0 +2018-01-03 19:00:00,1.1057323381849018,0.4640465389219713,0.6676435052021436,1.1057323381849018,0.4640465389219713,0.6676435052021434,0.010000000000000002,0.0,0.0,0.6148398296737396,0.48089250851116216,0.02690922732602422,0.6407342778761193,0.0,1.0,0.0029166666666666685,0.0,0.0,0.4611298722553046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07726037116240361,0.057945278371802696,0.0,0.0,0.0,0.011147242410114366,0.0,0.31729812267302454,0.0,0.15244714342802315,0.0,0.537579458511336,0.4031845938835019,0.0,0.0,610.4451257566066,0.0,84.18443364525795,51.666666666666686,46.10666666666668,0.1643708222274059,51.66491747470315,478.3780746136685,0.0,610.4451257566066,131.53817757071553,51.66491747470315,51.66491747470317,51.66491747470315,9.920878641202478,11266.842404647783,0.0,20.000000000000057,18.778070674412973,0.0,0.0,0.6,1.0,0.46057885769048584,11266.842404647783,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1396.0995285416595,20.15040353473552,-5.2145275122575,-3.5935253496477144,-6.3999999999999995,6.529479366362011,0.0,3.8333333333333335,4164.7870136597985,-2762.5088394094473,-233.02279301837282,0.0 +2018-01-03 20:00:00,1.2294143754984612,0.4911617438379455,0.8476342287345431,1.229414375498461,0.4911617438379455,0.847634228734543,0.010000000000000002,0.0,0.0,0.8288008206117627,0.39061355488669847,0.01918586416593635,0.7218985300978727,0.10654983447073389,1.0,0.0029166666666666685,0.0,0.0,0.4882450771712788,0.0,0.02251973880836343,0.026328492105324886,0.23504923839174108,0.0334927025072105,0.10654983447073389,0.0,0.0,0.07565078009652021,0.05673808507239014,0.0,0.0,0.0,0.015606139374160109,0.0,0.2533056903760161,0.0,0.12170172513652226,0.0,0.4955810633151379,0.3716857974863534,0.0,0.0,435.23796211708606,0.0,84.10467663096277,51.666666666666686,46.10666666666668,0.10444746542132001,51.66594406583416,303.973364006087,0.0,435.23796211708606,131.41355723587932,51.66594406583416,51.66594406583417,51.66594406583416,9.920878641202478,12694.05625951569,0.0,20.000000000000057,21.156760432526152,0.0,0.0,0.6,1.0,0.5189221364323565,12694.05625951569,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1381.5693544848098,20.181406507715938,-6.6854008806168,-4.782369215804793,-8.0,6.529479366362011,0.0,3.6666666666666665,4943.990808410083,-3179.8354483111775,-252.045996301503,0.0 +2018-01-03 21:00:00,0.9595039275576417,0.4947825379512764,0.8793385148543308,0.9595039275576418,0.4947825379512763,0.8793385148543307,0.010000000000000002,0.0,0.0,0.6243588683826387,0.32514505917500325,0.06315263176465027,0.8161858830896804,0.0,1.0,0.0029166666666666685,0.0,0.0,0.49186587128460973,0.0,0.05629934702090857,0.06582123026331221,0.0,0.0,0.0,0.0,0.0,0.07404118903063679,0.05553089177297758,0.0,0.0,0.0,0.018007083893261663,0.0,0.20746202248587822,0.0,0.09967595279586332,0.0,0.4940183323310932,0.37051374924831987,0.0,0.0,1432.639286604461,0.0,84.20442841919812,51.666666666666686,46.10666666666668,0.44707727694505345,51.663816308999735,1301.0870144984522,0.0,1432.639286604461,131.5694194049971,51.663816308999735,51.66381630899974,51.663816308999735,9.920878641202478,14352.030217817766,0.0,20.000000000000057,23.920050363029613,0.0,0.0,0.6,1.0,0.5866986903566693,14352.030217817766,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1367.0008796052962,20.139446733643624,-8.001873044661004,-6.226308662079126,-9.35,6.529479366362011,0.0,4.0,5198.874610969811,-3263.5509558343147,-265.2605565435358,0.0 +2018-01-03 22:00:00,0.5970863029412695,0.32282065202317994,0.960040303824059,0.5970863029412694,0.32282065202317994,0.960040303824059,0.010000000000000002,0.0,0.0,0.42653864714201783,0.16054765579925162,0.04562463617053064,0.9144156676535283,0.0,1.0,0.0029166666666666685,0.0,0.0,0.31990398535651327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07082200689886999,0.05311650517415247,0.0,0.0,0.0,0.015606139374160109,0.0,0.09790342634165039,0.0,0.04703809008344112,0.0,0.3557166402431478,0.2667874801823608,0.0,0.0,1035.0106462471203,0.0,84.34372270236179,51.666666666666686,46.10666666666668,0.3103078206467857,51.66442955821162,903.0575949834339,0.0,1035.0106462471203,131.7870667224403,51.66442955821162,51.66442955821162,51.66442955821162,9.920878641202478,16079.328944197687,0.0,20.000000000000057,26.79888157366281,0.0,0.0,0.6,1.0,0.6573091813632811,16079.328944197687,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1350.8933365654311,20.08902461351587,-9.084708239241294,-7.599139600901164,-10.65,6.529479366362011,0.0,4.0,5664.566411409584,-3694.7967460803943,-272.7477280423475,0.0 +2018-01-03 23:00:00,0.4301264480177724,0.27619955239209065,1.0037803039678153,0.43012644801777233,0.27619955239209065,1.0037803039678153,0.010000000000000002,0.0,0.0,0.36437718096723204,0.05574926705054037,0.005815616867950218,0.9979646870998651,0.0,1.0,0.0029166666666666685,0.0,0.0,0.273282885725424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06599323370121975,0.04949492527591479,0.0,0.0,0.0,0.010804250335956998,0.0,0.03035894229528502,0.0,0.014586074419298352,0.0,0.2983839472660123,0.22378796044950913,0.0,0.0,131.92927939906906,0.0,84.43474449238343,51.666666666666686,46.10666666666668,0.0,51.66640261640632,0.0,0.0,131.92927939906906,131.9292882693491,51.66640261640632,51.66640261640632,51.66640261640632,9.920878641202478,17548.47718188059,0.0,20.000000000000057,29.247461969800984,0.0,0.0,0.6,1.0,0.7173667017215003,17548.47718188059,24462.352573333334,0.0,0.0,22.222222222222285,0.010000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,1334.6004718808422,20.059158204914606,-10.28568107932346,-8.91869651757242,-11.9,6.529479366362011,0.0,4.0,6104.119141742546,-3811.1913116076717,-274.22194218094256,0.0 diff --git a/ochre/defaults/Input Files/OCHRE_metrics.csv b/ochre/defaults/Input Files/OCHRE_metrics.csv new file mode 100644 index 0000000..f8ca8ab --- /dev/null +++ b/ochre/defaults/Input Files/OCHRE_metrics.csv @@ -0,0 +1,50 @@ +Metric,Value +Total Electric Energy (kWh),36.94357870239805 +Total Gas Energy (therms),46.80872882276418 +Average Electric Power (kW),0.5131052597555285 +Peak Electric Power (kW),2.0866513021191158 +Peak Electric Power - 15 min avg (kW),2.0866513021191158 +Peak Electric Power - 30 min avg (kW),1.8139422558346352 +Peak Electric Power - 1 hour avg (kW),1.639196696444739 +HVAC Cooling Electric Energy (kWh),0.7200000000000003 +HVAC Heating Electric Energy (kWh),0.0 +PV Electric Energy (kWh),-10.050851070732477 +Other Electric Energy (kWh),35.488715330249434 +Lighting Electric Energy (kWh),10.785714442881087 +Water Heating Gas Energy (therms),1.8120151943885987 +HVAC Heating Gas Energy (therms),43.81292797861603 +Other Gas Energy (therms),1.1837856497595611 +Average Temperature - Indoor (C),20.104956071842523 +Average Temperature - Foundation (C),-1.7855062391481507 +Average Temperature - Attic (C),-0.42931393619515507 +"Component Load - Ducts, Heating (kWh)",-0.0 +"Component Load - Ducts, Cooling (kWh)",-0.0 +Unmet Heating Load (C-hours),0.0 +Unmet Cooling Load (C-hours),0.0 +Total HVAC Heating Delivered (kWh),770.4182090234453 +Average HVAC Heating COP (-),0.6 +Average HVAC Heating SHR (-),1.0 +Average HVAC Heating Duct Efficiency (-),1.0 +Total HVAC Cooling Delivered (kWh),0.0 +Average HVAC Cooling COP (-),0.0 +Total Water Heating Delivered (kWh),41.106191188985704 +Average Water Heating COP (-),0.0 +Total Hot Water Unmet Demand (kWh),0.0 +Total Hot Water Delivered (gal/day),57.49915766495085 +Total Hot Water Delivered (kWh),31.621648248470336 +Clothes Washer Electric Energy (kWh),0.40535529855054175 +Clothes Dryer Electric Energy (kWh),1.5498559156455427 +Dishwasher Electric Energy (kWh),1.4779105623219604 +Refrigerator Electric Energy (kWh),4.833601970847876 +Cooking Range Electric Energy (kWh),0.4812226787181594 +Exterior Lighting Electric Energy (kWh),0.5144881112360474 +Indoor Lighting Electric Energy (kWh),6.937889677167392 +Basement Lighting Electric Energy (kWh),3.33333665447765 +MELs Electric Energy (kWh),26.740768904165353 +Clothes Dryer Gas Energy (therms),0.7025629710414016 +Cooking Range Gas Energy (therms),0.4812226787181594 +Clothes Washer Cycles,3.0 +Clothes Dryer Cycles,3.0 +Dishwasher Cycles,3.0 +Cooking Range Cycles,8.0 +PV Cycles,3.0 diff --git a/defaults/Input Files/sample_resstock_properties.xml b/ochre/defaults/Input Files/sample_resstock_properties.xml similarity index 100% rename from defaults/Input Files/sample_resstock_properties.xml rename to ochre/defaults/Input Files/sample_resstock_properties.xml diff --git a/defaults/Input Files/sample_resstock_schedule.csv b/ochre/defaults/Input Files/sample_resstock_schedule.csv similarity index 100% rename from defaults/Input Files/sample_resstock_schedule.csv rename to ochre/defaults/Input Files/sample_resstock_schedule.csv diff --git a/defaults/OSW Templates/Minimal_building.csv b/ochre/defaults/OSW Templates/Minimal_building.csv similarity index 100% rename from defaults/OSW Templates/Minimal_building.csv rename to ochre/defaults/OSW Templates/Minimal_building.csv diff --git a/defaults/OSW Templates/Minimal_building.osw b/ochre/defaults/OSW Templates/Minimal_building.osw similarity index 100% rename from defaults/OSW Templates/Minimal_building.osw rename to ochre/defaults/OSW Templates/Minimal_building.osw diff --git a/defaults/OSW Templates/walls_R7.osw b/ochre/defaults/OSW Templates/walls_R7.osw similarity index 100% rename from defaults/OSW Templates/walls_R7.osw rename to ochre/defaults/OSW Templates/walls_R7.osw diff --git a/defaults/Other/widget_pdf.csv b/ochre/defaults/Other/widget_pdf.csv similarity index 100% rename from defaults/Other/widget_pdf.csv rename to ochre/defaults/Other/widget_pdf.csv diff --git a/defaults/Other/widget_schedule.csv b/ochre/defaults/Other/widget_schedule.csv similarity index 100% rename from defaults/Other/widget_schedule.csv rename to ochre/defaults/Other/widget_schedule.csv diff --git a/defaults/PV/test_pv_schedule.csv b/ochre/defaults/PV/test_pv_schedule.csv similarity index 100% rename from defaults/PV/test_pv_schedule.csv rename to ochre/defaults/PV/test_pv_schedule.csv diff --git a/defaults/Simple Schedule Parameters.csv b/ochre/defaults/Simple Schedule Parameters.csv similarity index 100% rename from defaults/Simple Schedule Parameters.csv rename to ochre/defaults/Simple Schedule Parameters.csv diff --git a/ochre/defaults/Variable names and units.csv b/ochre/defaults/Variable names and units.csv new file mode 100644 index 0000000..ffabde2 --- /dev/null +++ b/ochre/defaults/Variable names and units.csv @@ -0,0 +1,164 @@ +Category,OCHRE Name,OCHRE Units,OS-HPXML Name,OS-HPXML Units,Eplus Detailed Name,Eplus Detailed Units,Verbosity,Include in Docs,Category Priority,Description,Notes +Dwelling,Total Electric Power (kW),kW,Fuel Use: Electricity: Total,kW,Electricity:Facility [J](Hourly),J/hour,1,TRUE,1,Total dwelling real electric power, +Dwelling,Total Electric Energy (kWh),kWh,,,,,1,TRUE,1,Total dwelling real electric energy for 1 time step, +Dwelling,Total Gas Power (therms/hour),therms/hour,Fuel Use: Natural Gas: Total,kBtu/hour,,,1,TRUE,1,Total dwelling gas power, +Dwelling,Total Gas Energy (therms),therms,,,,,1,TRUE,1,Total dwelling gas energy consumption for 1 time step, +Dwelling,Total Reactive Power (kVAR),kVAR,,,,,1,TRUE,1,Total dwelling reactive power, +Dwelling,Total Reactive Energy (kVARh),kVARh,,,,,1,TRUE,1,Total dwelling reactive energy for 1 time step, +Dwelling,Grid Voltage (-),p.u.,,,,,5,TRUE,1,Per-unit grid voltage, +All, Electric Power (kW),kW,,,,,2,TRUE,2,Real electric power of all equipment within the end use, +All, Gas Power (therms/hour),therms/hour,,,,,2,TRUE,2,Gas power of all equipment within the end use, +All, Reactive Power (kVAR),kVAR,,,,,5,TRUE,2,Reactive electric power of all equipment within the end use, +All, Mode,N/A,,,,,6,TRUE,2,Current mode of equipment operation, +All, Electric Power (kW),kW,,,,,6,TRUE,2,Real electric power of the equipment (Lighting and Other equipment only), +All, Gas Power (therms/hour),therms/hour,,,,,6,TRUE,2,Gas power of the equipment, +All, Reactive Power (kVAR),kVAR,,,,,6,TRUE,2,Reactive electric power of the equipment, +HVAC,HVAC Delivered (W),W,,,,,3,TRUE,3,HVAC sensible heat gain delivered to indoor zone, +HVAC,HVAC Setpoint (C),degC,,,,,6,TRUE,3,HVAC temperature setpoint, +HVAC,HVAC Main Power (kW),kW,,,,,6,TRUE,3,"HVAC electric or gas power excluding fan, peripherals, and backup element", +HVAC,HVAC ER Power (kW),kW,,,,,6,TRUE,3,HVAC backup element power (ASHPHeater only), +HVAC,HVAC Fan Power (kW),kW,,,,,6,TRUE,3,HVAC fan and peripherals power, +HVAC,HVAC Latent Gains (W),W,,,,,6,TRUE,3,HVAC latent heat gain delivered to indoor zone, +HVAC,HVAC Capacity (W),W,,,,,6,TRUE,3,HVAC heat capacity of main unit, +HVAC,HVAC Max Capacity (W),W,,,,,6,TRUE,3,HVAC maximum heat capacity of main unit, +HVAC Heating,HVAC Heating Electric Power (kW),kW,"['End Use: Electricity: Heating', 'End Use: Electricity: Heating Fans/Pumps']",kW,BASEBOARD:Baseboard Electricity Energy [J](Hourly),J/hour,2,FALSE,4,, +HVAC Heating,HVAC Heating Gas Power (therms/hour),therms/hour,End Use: Natural Gas: Heating,kBtu/hour,,,2,FALSE,4,, +HVAC Heating,HVAC Heating Main Power (kW),kW,End Use: Electricity: Heating,kW,BASEBOARD:Baseboard Electricity Energy [J](Hourly),J/hour,,FALSE,4,, +HVAC Heating,HVAC Heating ER Power (kW),kW,,,,,,FALSE,4,, +HVAC Heating,HVAC Heating Fan Power (kW),kW,End Use: Electricity: Heating Fans/Pumps,kW,,,,FALSE,4,, +HVAC Heating,HVAC Heating Delivered (W),W,Load: Heating: Delivered,kBtu/hour,BASEBOARD:Baseboard Total Heating Energy [J](Hourly),J/hour,,FALSE,4,, +HVAC Heating,HVAC Heating Duct Losses (W),W,Component Load: Heating: Ducts,kBtu/hour,,,,FALSE,4,, +HVAC Heating,HVAC Heating Capacity (W),W,,,,,,FALSE,4,, +HVAC Heating,HVAC Heating Setpoint (C),degC,Temperature: Heating Setpoint,degF,,,,FALSE,4,, +HVAC Cooling,HVAC Cooling Electric Power (kW),kW,"['End Use: Electricity: Cooling', 'End Use: Electricity: Cooling Fans/Pumps']",kW,"['CENTRAL AC CLG COIL:Cooling Coil Electricity Energy [J](Hourly), 'CENTRAL AC CLG COIL:Cooling Coil Crankcase Heater Electricity Energy [J](Hourly)']",J/hour,2,FALSE,5,, +HVAC Cooling,HVAC Cooling Main Power (kW),kW,End Use: Electricity: Cooling,kW,CENTRAL AC CLG COIL:Cooling Coil Electricity Energy [J](Hourly),J/hour,,FALSE,5,, +HVAC Cooling,HVAC Cooling Fan Power (kW),kW,End Use: Electricity: Cooling Fans/Pumps,kW,EMS:central ac supply fan clg disaggregate [J](Hourly),J/hour,,FALSE,5,, +HVAC Cooling,HVAC Cooling Delivered (kW),kW,Load: Cooling: Delivered,kBtu/hour,CENTRAL AC CLG COIL:Cooling Coil Total Cooling Energy [J](Hourly),J/hour,,FALSE,5,, +HVAC Cooling,HVAC Cooling Latent Gains (W),W,,,,,,FALSE,5,, +HVAC Cooling,HVAC Cooling Duct Losses (W),W,Component Load: Cooling: Ducts,kBtu/hour,,,,FALSE,5,, +HVAC Cooling,HVAC Cooling Capacity (W),W,,,,,,FALSE,5,, +HVAC Cooling,HVAC Cooling Setpoint (C),degC,Temperature: Cooling Setpoint,degF,,,,FALSE,5,, +Water Heating,Water Heating Electric Power (kW),kW,End Use: Electricity: Hot Water,kW,,,2,FALSE,6,, +Water Heating,Water Heating Gas Power (therms/hour),therms/hour,End Use: Natural Gas: Hot Water,kBtu/hour,,,2,FALSE,6,, +HVAC,HVAC COP (-),unitless,,,,,6,TRUE,3,HVAC coefficient of performance of main unit, +HVAC,HVAC SHR (-),unitless,,,,,6,TRUE,3,HVAC sensible heat ratio, +HVAC,HVAC Speed (-),unitless,,,,,6,TRUE,3,HVAC speed index. Fractions indicate the relative time in adjacent speeds, +HVAC,HVAC Duct Losses (W),W,,,,,6,TRUE,3,Heat gains to duct zone due to duct losses, +Water Heating,Water Heating Delivered (W),W,,,,,3,TRUE,6,Heat delivered by water heater to tank, +Water Heating,Water Heating COP (-),unitless,,,,,6,TRUE,6,Water heater coefficient of performance, +Water Heating,Water Heating Total Sensible Heat Gain (W),W,,,,,6,TRUE,6,Sensible heat gain from water tank to envelope zone, +Water Heating,Water Heating Deadband Upper Limit (C),C,,,,,6,TRUE,6,Upper temperature limit for water heater deadband control, +Water Heating,Water Heating Deadband Lower Limit (C),C,,,,,6,TRUE,6,Lower temperature limit for water heater deadband control, +Water Heating,Water Heating Heat Pump Max Capacity (W),W,,,,,6,TRUE,6,Maximum capacity of HPWH heat pump element, +Water Heating,Water Heating Heat Pump On Fraction (-),unitless,,,,,6,TRUE,6,Fraction of time HPWH heat pump element is on, +Water Heating,Water Heating Heat Pump COP (-),unitless,,,,,6,TRUE,6,HPWH heat pump coefficient of performance, +Hot Water,Hot Water Delivered (L/min),L/min,"['Hot Water: Clothes Washer', 'Hot Water: Dishwasher', 'Hot Water: Fixtures', 'Hot Water: Distribution Waste']",gallon/hour,,,3,TRUE,7,Hot water draw volumetric flow rate, +Hot Water,Hot Water Delivered (W),W,Load: Hot Water: Delivered,kBtu/hour,,,3,TRUE,7,Hot water draw heat flow rate, +Hot Water,Hot Water Unmet Demand (kW),kW,,,,,3,TRUE,7,"Unmet hot water demand, based on flow rate and desired temperature", +Hot Water,Hot Water Outlet Temperature (C),degC,,,,,3,TRUE,7,Hot water outlet temperature, +Hot Water,Hot Water Heat Injected (W),W,,,,,6,TRUE,7,Water tank heat gains from water heater, +Hot Water,Hot Water Heat Loss (W),W,,,,,6,TRUE,7,Water tank heat losses to envelope zone, +EV,EV Electric Power (kW),kW,End Use: Electricity: Electric Vehicle Charging,kW,,,2,FALSE,8,, +Hot Water,Hot Water Average Temperature (C),degC,,,,,6,TRUE,7,Water tank average temperature, +Hot Water,Hot Water Maximum Temperature (C),degC,,,,,6,TRUE,7,Water tank maximum temperature, +Hot Water,Hot Water Minimum Temperature (C),degC,,,,,6,TRUE,7,Water tank minimum temperature, +Hot Water,Hot Water Mains Temperature (C),degC,,,,,6,TRUE,7,Water mains temperature, +EV,EV SOC (-),unitless,,,,,3,TRUE,8,EV state of charge, +EV,EV Parked,N/A,,,,,3,TRUE,8,True if EV is parked at home, +PV,PV Electric Power (kW),kW,End Use: Electricity: PV,kW,,,2,FALSE,9,, +EV,EV Unmet Load (kW),kW,,,,,3,TRUE,8,"Unmet EV demand, determined at parking End Time. Negative value", +EV,EV Start Time,N/A,,,,,6,TRUE,8,"If parked, time that EV arrived. If away, next time that EV will arrive", +Battery,Battery Electric Power (kW),kW,,,,,2,FALSE,10,, +EV,EV End Time,N/A,,,,,6,TRUE,8,Next time that EV will depart, +EV,EV Remaining Charge Time (min),minutes,,,,,7,TRUE,8,"Estimated time to fully charge, based on SOC and max charge rate", +PV,PV P Setpoint (kW),kW,,,,,6,TRUE,9,PV real power setpoint, +PV,PV Q Setpoint (kW),kVAR,,,,,6,TRUE,9,PV reactive power setpoint, +Battery,Battery SOC (-),unitless,,,,,3,TRUE,10,Battery state of charge, +Battery,Battery Setpoint (kW),kW,,,,,6,TRUE,10,Battery real power setpoint, +Battery,Battery Degradation State Q1,unitless,,,,,9,FALSE,10,, +Battery,Battery Degradation State Q2,unitless,,,,,9,FALSE,10,, +Battery,Battery Degradation State Q3,unitless,,,,,9,FALSE,10,, +Gas Generator,Gas Generator Electric Power (kW),kW,End Use: Electricity: Generator,kW,,,2,FALSE,11,, +Gas Generator,Generator Gas Power (therms/hour),therms/hour,End Use: Natural Gas: Generator,kBtu/hour,,,2,FALSE,11,, +Lighting,Lighting Electric Power (kW),kW,"['End Use: Electricity: Lighting Interior', 'End Use: Electricity: Lighting Garage', 'End Use: Electricity: Lighting Exterior']",kW,,,2,FALSE,12,, +Lighting,Indoor Lighting Electric Power (kW),kW,,,,,6,FALSE,12,,"Only Indoor Lighting for OCHRE, ResStock/E+ include Basement Lighting" +Lighting,Basement Lighting Electric Power (kW),kW,,,,,6,FALSE,12,, +Lighting,Garage Lighting Electric Power (kW),kW,End Use: Electricity: Lighting Garage,kW,,,6,FALSE,12,, +Lighting,Exterior Lighting Electric Power (kW),kW,End Use: Electricity: Lighting Exterior,kW,,,6,FALSE,12,, +Battery,Battery Efficiency (-),unitless,,,,,6,TRUE,10,Battery efficiency, +Other,Other Electric Power (kW),kW,"['End Use: Electricity: Mech Vent', 'End Use: Electricity: Refrigerator', 'End Use: Electricity: Dishwasher', 'End Use: Electricity: Clothes Washer', 'End Use: Electricity: Clothes Dryer', 'End Use: Electricity: Range/Oven', 'End Use: Electricity: Ceiling Fan', 'End Use: Electricity: Pool Pump', 'End Use: Electricity: Pool Heater', 'End Use: Electricity: Hot Tub Pump', 'End Use: Electricity: Hot Tub Heater', 'End Use: Electricity: Well Pump', 'End Use: Electricity: Television', 'End Use: Electricity: Plug Loads']",kW,,,2,FALSE,13,, +Other,Other Gas Power (therms/hour),therms/hour,,,,,2,FALSE,13,, +Other,Clothes Dryer Gas Power (therms/hour),therms/hour,End Use: Natural Gas: Clothes Dryer,kBtu/hour,,,2,FALSE,13,, +Other,Cooking Range Gas Power (therms/hour),therms/hour,End Use: Natural Gas: Range/Oven,kBtu/hour,,,2,FALSE,13,, +Other,MGLs Gas Power (therms/hour),therms/hour,"['End Use: Natural Gas: Grill', 'End Use: Natural Gas: Lighting', 'End Use: Natural Gas: Fireplace']",kBtu/hour,,,2,FALSE,13,, +Battery,Battery Energy to Discharge (kWh),kWh,,,,,6,TRUE,10,"Estimated energy available for discharge, based on SOC and max discharge rate", +Battery,Battery Nominal Capacity (kWh),kWh,,,,,9,TRUE,10,"Nominal battery capacity, including degradation model", +Battery,Battery Actual Capacity (kWh),kWh,,,,,9,TRUE,10,"Actual battery capacity, including degradation and temperature models", +Other,Clothes Washer Electric Power (kW),kW,End Use: Electricity: Clothes Washer,kW,,,6,FALSE,13,, +Other,Clothes Dryer Electric Power (kW),kW,End Use: Electricity: Clothes Dryer,kW,,,6,FALSE,13,, +Other,Dishwasher Electric Power (kW),kW,End Use: Electricity: Dishwasher,kW,,,6,FALSE,13,, +Other,Refrigerator Electric Power (kW),kW,End Use: Electricity: Refrigerator,kW,,,6,FALSE,13,, +Other,Cooking Range Electric Power (kW),kW,End Use: Electricity: Range/Oven,kW,,,6,FALSE,13,, +Other,MELs Electric Power (kW),kW,End Use: Electricity: Plug Loads,kW,,,6,FALSE,13,, +Other,TV Electric Power (kW),kW,End Use: Electricity: Television,kW,,,6,FALSE,13,, +Other,Well Pump Electric Power (kW),kW,End Use: Electricity: Well Pump,kW,,,6,FALSE,13,, +Other,Pool Pump Electric Power (kW),kW,End Use: Electricity: Pool Pump,kW,,,6,FALSE,13,, +Other,Pool Heater Electric Power (kW),kW,End Use: Electricity: Pool Heater,kW,,,6,FALSE,13,, +Other,Hot Tub Pump Electric Power (kW),kW,End Use: Electricity: Hot Tub Pump,kW,,,6,FALSE,13,, +Other,Hot Tub Heater Electric Power (kW),kW,End Use: Electricity: Hot Tub Heater,kW,,,6,FALSE,13,, +Other,Ceiling Fan Electric Power (kW),kW,End Use: Electricity: Ceiling Fan,kW,,,6,FALSE,13,, +Other,Ventilation Fan Electric Power (kW),kW,End Use: Electricity: Mech Vent,kW,,,6,FALSE,13,, +Envelope,Temperature - (C),degC,,,,,1,TRUE,14,Temperature of envelope zone, +Envelope,Temperature - Indoor (C),degC,Temperature: Living Space,degF,LIVING SPACE:Zone Mean Air Temperature [C](Hourly),degC,1,FALSE,14,, +Envelope,Temperature - Garage (C),degC,Temperature: Garage,degF,,,1,FALSE,14,, +Envelope,Temperature - Foundation (C),degC,"['Temperature: Crawlspace - Vented', 'Temperature: Basement - Vented']",degF,,,1,FALSE,14,, +Envelope,Temperature - Attic (C),degC,"['Temperature: Attic - Vented', 'Temperature: Attic - Unvented']",degF,"['ATTIC - VENTED:Zone Mean Air Temperature [C](Hourly), 'ATTIC - UNVENTED:Zone Mean Air Temperature [C](Hourly)']",degC,1,FALSE,14,, +Envelope,Unmet HVAC Load (C),degC,,,,,1,TRUE,14,"Absolute difference between Indoor temperature and thermal comfort limit (positive if hot, negative if cold)","Compare to ""Unmet Hours| Heating"" and ""Unmet Hours| Cooling""" +Envelope,Occupancy (Persons),Persons,,,,,4,TRUE,14,Number of current occupants, +Envelope,Net Sensible Heat Gain - (W),W,,,,,4,TRUE,14,"Net sensible heat injected into zone. Includes heat gains from infiltration, ventilation, radiation, HVAC, other equipment, and occupants", +Envelope,Window Transmitted Solar Gain (W),W,,,LIVING SPACE:Zone Windows Total Transmitted Solar Radiation Rate [W](Hourly),W,4,TRUE,14,Heat gains from solar transmitted through windows to Indoor zone, +Envelope,Infiltration Flow Rate - (m^3/s),m^3/s,,,,,7,TRUE,14,Infiltration flow rate between zone and outdoors, +Envelope,Infiltration Flow Rate - Indoor (m^3/s),m^3/s,Airflow: Infiltration,cubic_feet/min,"['LIVING SPACE:Zone Infiltration Current Density Volume Flow Rate [m3/s](Hourly)', 'EMS:infil_flow_act_timeseries_outvar [M^3/S](Hourly)']",m^3/s,7,FALSE,14,, +Envelope,Infiltration Flow Rate - Foundation (m^3/s),m^3/s,,,,,7,FALSE,14,, +Envelope,Infiltration Flow Rate - Garage (m^3/s),m^3/s,,,,,7,FALSE,14,, +Envelope,Infiltration Flow Rate - Attic (m^3/s),m^3/s,,,"['ATTIC - VENTED:Zone Infiltration Current Density Volume Flow Rate [m3/s](Hourly)', 'ATTIC - UNVENTED:Zone Infiltration Current Density Volume Flow Rate [m3/s](Hourly)']",m^3/s,7,FALSE,14,, +Envelope,Forced Ventilation Flow Rate - Indoor (m^3/s),m^3/s,"['Airflow: Mechanical Ventilation', 'Airflow: Whole House Fan']",cubic_feet/min,,,7,TRUE,14,Mecahnical ventilation flow rate , +Envelope,Natural Ventilation Flow Rate - Indoor (m^3/s),m^3/s,Airflow: Natural Ventilation,cubic_feet/min,"['EMS:Qfan_timeseries_outvar [M^3/S](Hourly)', 'EMS:natural_vent_flow_act_timeseries_outvar [M^3/S](Hourly)', 'EMS:whole_house_fan_flow_act_timeseries_outvar [M^3/S](Hourly)']",m^3/s,7,TRUE,14,Natural ventilation flow rate (open windows), +Envelope,Infiltration Heat Gain - (W),W,,,,,7,TRUE,14,Infiltration heat gain into zone, +Envelope,Infiltration Heat Gain - Indoor (W),W,"['~Component Load: Heating: Infiltration', 'Component Load: Cooling: Infiltration']",kBtu/hour,"['LIVING SPACE:Zone Infiltration Sensible Heat Loss Energy [J](Hourly)', '~LIVING SPACE:Zone Infiltration Sensible Heat Gain Energy [J](Hourly)']",J/hour,7,FALSE,14,, +Envelope,Infiltration Heat Gain - Foundation (W),W,,,,,7,FALSE,14,, +Envelope,Infiltration Heat Gain - Garage (W),W,,,,,7,FALSE,14,, +Envelope,Infiltration Heat Gain - Attic (W),W,,,"['ATTIC - VENTED:Zone Infiltration Sensible Heat Loss Energy [J](Hourly)', '~ATTIC - VENTED:Zone Infiltration Sensible Heat Gain Energy [J](Hourly)']",J/hour,7,FALSE,14,, +Envelope,Forced Ventilation Heat Gain - Indoor (W),W,"['~Component Load: Heating: Mechanical Ventilation', 'Component Load: Cooling: Mechanical Ventilation']",kBtu/hour,,,7,TRUE,14,Heat gain from mechanical ventilation, +Envelope,Natural Ventilation Heat Gain - Indoor (W),W,"['~Component Load: Heating: Natural Ventilation', 'Component Load: Cooling: Natural Ventilation']",kBtu/hour,,,7,TRUE,14,Heat gain from natural ventilation, +Envelope,Occupancy Heat Gain - Indoor (W),W,,,OCCUPANTS:People Sensible Heating Rate [W](Hourly),W,7,TRUE,14,Heat gain from occupancy, +Envelope,Internal Heat Gain - Indoor (W),W,"['~Component Load: Heating: Internal Gains', 'Component Load: Cooling: Internal Gains', '~Component Load: Heating: Lighting', 'Component Load: Cooling: Lighting']",kBtu/hour,,,7,TRUE,14,Heat gain from non-HVAC equipment, +Envelope,Radiation Heat Gain - Indoor (W),W,,,,,7,TRUE,14,Heat gain from radiation. Includes transmitted solar and internal radiation to zone, +Envelope,Net Latent Heat Gain - Indoor (W),W,,,,,7,TRUE,14,"Net latent heat injected into zone. Includes heat gains from infiltration, ventilation, HVAC, other equipment, and occupants", +Envelope,Relative Humidity - Indoor (-),unitless,,,,,7,TRUE,14,Relative humidity of zone, +Envelope,Humidity Ratio - Indoor (-),unitless,,,,,7,TRUE,14,Humidity ratio of zone, +Envelope,Wet Bulb - Indoor (C),W,,,,,7,TRUE,14,Wet bulb temperature in zone, +Envelope,Air Density - Indoor (kg/m^3),unitless,,,,,7,TRUE,14,Air density of zone, +Envelope, Ext. Solar Gain (W),W,,,,,8,TRUE,14,Solar heat gain on external boundary surface, +Envelope, Ext. LWR Gain (W),W,,,,,8,TRUE,14,Long wave radiation heat gain on external boundary surface, +Envelope, Ext. Surface Temperature (C),degC,,,,,8,TRUE,14,External boundary surface temperature, +Envelope, Ext. Film Coefficient (m^2-K/W),m^2-K/W,,,,,8,TRUE,14,Film coefficient of external boundary surface, +Envelope, LWR Gain (W),W,,,,,8,TRUE,14,Long wave radiation heat gain on internal boundary surface, +Envelope, Surface Temperature (C),C,,,,,8,TRUE,14,Internal boundary surface temperature, +Envelope, Film Coefficient (m^2-K/W),m^2-K/W,,,,,8,TRUE,14,Film coefficient of internal boundary surface, +Schedule,Temperature - Outdoor (C),degC,Weather: Drybulb Temperature,degF,Environment:Site Outdoor Air Drybulb Temperature [C](Hourly),degC,1,FALSE,15,, +Schedule,Temperature - Ground (C),degC,,,,,1,FALSE,15,, +Schedule,Ambient Humidity Ratio (-),unitless,,,,,,,15,, +Schedule,Ambient Relative Humidity (-),unitless,Weather: Relative Humidity,percent,Environment:Site Outdoor Air Relative Humidity [%](Hourly),percent,,,15,, +Schedule,Wind Speed (m/s),m/s,Weather: Wind Speed,mph,Environment:Site Wind Speed [m/s](Hourly),m/s,,,15,, +Schedule,DNI (W/m^2),W/m^2,Weather: Diffuse Solar Radiation,Btu/(hour*ft^2),Environment:Site Direct Solar Radiation Rate per Area [W/m2](Hourly),W/m^2,,,15,, +Schedule,DHI (W/m^2),W/m^2,Weather: Direct Solar Radiation,Btu/(hour*ft^2),Environment:Site Diffuse Solar Radiation Rate per Area [W/m2](Hourly),W/m^2,,,15,, +Schedule,GHI (W/m^2),W/m^2,,,,,,,15,, +EBM, EBM Energy (kWh),kWh,,,,,N/A,TRUE,16,Energy state of equivalent battery model (EBM), +EBM, EBM Min Energy (kWh),kWh,,,,,N/A,TRUE,16,Minimum energy constraint, +EBM, EBM Max Energy (kWh),kWh,,,,,N/A,TRUE,16,Maximum energy constraint, +EBM, EBM Max Power (kW),kW,,,,,N/A,TRUE,16,Maximum power constraint, +EBM, EBM Efficiency (-),unitless,,,,,N/A,TRUE,16,Input/output power efficiency, +EBM, EBM Baseline Power (kW),kW,,,,,N/A,TRUE,16,Power to maintain constant energy state, +EBM, EBM Max Discharge Power (kW),kW,,,,,N/A,TRUE,16,Minimum power constraint (negative for discharge), +EBM, EBM Discharge Efficiency (-),unitless,,,,,N/A,TRUE,16,Input/output power efficiency while discharging, diff --git a/defaults/Water Heating/default_paramters.csv b/ochre/defaults/Water Heating/default_paramters.csv similarity index 100% rename from defaults/Water Heating/default_paramters.csv rename to ochre/defaults/Water Heating/default_paramters.csv diff --git a/defaults/Weather/CA_RIVERSIDE_MUNI_722869_12.epw b/ochre/defaults/Weather/CA_RIVERSIDE_MUNI_722869_12.epw similarity index 100% rename from defaults/Weather/CA_RIVERSIDE_MUNI_722869_12.epw rename to ochre/defaults/Weather/CA_RIVERSIDE_MUNI_722869_12.epw diff --git a/defaults/Weather/CO_FORT-COLLINS-LOVELAND-AP_724769S_18.epw b/ochre/defaults/Weather/CO_FORT-COLLINS-LOVELAND-AP_724769S_18.epw similarity index 100% rename from defaults/Weather/CO_FORT-COLLINS-LOVELAND-AP_724769S_18.epw rename to ochre/defaults/Weather/CO_FORT-COLLINS-LOVELAND-AP_724769S_18.epw diff --git a/defaults/Weather/FortCollins_NSRDB.csv b/ochre/defaults/Weather/FortCollins_NSRDB.csv similarity index 100% rename from defaults/Weather/FortCollins_NSRDB.csv rename to ochre/defaults/Weather/FortCollins_NSRDB.csv diff --git a/defaults/Weather/USA_CO_Denver.Intl.AP.725650_TMY3.epw b/ochre/defaults/Weather/USA_CO_Denver.Intl.AP.725650_TMY3.epw similarity index 100% rename from defaults/Weather/USA_CO_Denver.Intl.AP.725650_TMY3.epw rename to ochre/defaults/Weather/USA_CO_Denver.Intl.AP.725650_TMY3.epw diff --git a/defaults/ZIP Parameters.csv b/ochre/defaults/ZIP Parameters.csv similarity index 100% rename from defaults/ZIP Parameters.csv rename to ochre/defaults/ZIP Parameters.csv diff --git a/ochre/utils/__init__.py b/ochre/utils/__init__.py index e02d14b..6bb87d2 100644 --- a/ochre/utils/__init__.py +++ b/ochre/utils/__init__.py @@ -1,4 +1,5 @@ -from .base import main_path, default_input_path, nested_update, load_csv, import_hpxml, save_json +from .base import main_path, default_input_path, OCHREException, \ + nested_update, load_csv, import_hpxml, save_json from .units import convert # import .envelope import x diff --git a/ochre/utils/base.py b/ochre/utils/base.py index 3246d45..d89bde3 100644 --- a/ochre/utils/base.py +++ b/ochre/utils/base.py @@ -7,12 +7,15 @@ import xmltodict this_path = os.path.dirname(__file__) -main_path = os.path.abspath(os.path.join(this_path, os.pardir, os.pardir)) +main_path = os.path.abspath(os.path.join(this_path, os.pardir)) default_input_path = os.path.join(main_path, 'defaults') # TODO: add exception classes, print functions here +class OCHREException(Exception): + pass + def nested_update(d_old, d_new): # https://stackoverflow.com/questions/3232943/update-value-of-a-nested-dictionary-of-varying-depth @@ -87,7 +90,7 @@ def convert_hpxml_element(obj, use_sys_id): return obj else: - raise Exception(f'Unknown HPXML object type ({type(obj)}: {obj}') + raise OCHREException(f'Unknown HPXML object type ({type(obj)}: {obj}') def import_hpxml(hpxml_file, use_sys_id=False, **house_args): diff --git a/ochre/utils/envelope.py b/ochre/utils/envelope.py index 9aecc45..a4c730c 100644 --- a/ochre/utils/envelope.py +++ b/ochre/utils/envelope.py @@ -3,7 +3,7 @@ import pandas as pd import pvlib -from ochre.utils import load_csv, convert +from ochre.utils import OCHREException, load_csv, convert # List of utility functions for OCHRE Envelope @@ -24,7 +24,7 @@ def get_boundary_tilt(name): - # get boundary tilt (i.e. orientation) based on boundary name (0-90 degrees) + # get boundary tilt based on boundary name (0-90 degrees) if any([x in name for x in ['Floor', 'Ceiling']]): tilt = 0 # horizontal elif any([x in name for x in ['Wall', 'Rim Joist', 'Window', 'Door', 'Furniture']]): @@ -32,7 +32,7 @@ def get_boundary_tilt(name): elif 'Roof' in name: tilt = None # tilt should already be defined else: - raise Exception('Unknown boundary name:', name) + raise OCHREException('Unknown boundary name:', name) return tilt @@ -57,7 +57,7 @@ def calculate_plane_irradiance(df, tilt, panel_azimuth, window_data=None, albedo if na_times.any(): large_ghi = df.loc[na_times, 'GHI (W/m^2)'] > 10 if large_ghi.any(): - raise Exception(f'Solar calculation is returning NA. First instance is: {large_ghi.idxmax()}') + raise OCHREException(f'Solar calculation is returning NA. First instance is: {large_ghi.idxmax()}') irr = irr.fillna(0) # Limit sky diffuse to DHI+GHI, based on simple Sandia model: @@ -136,7 +136,7 @@ def calculate_solar_irradiance(weather, weather_timezone, location, boundaries, azimuths = bd.get('Azimuth (deg)', default_azimuth) window_data = bd if bd_name == 'Window' else None if len(areas) != len(azimuths): - raise Exception(f'Number of areas and azimuths for {bd_name} are not equal.' + raise OCHREException(f'Number of areas and azimuths for {bd_name} are not equal.' f' Areas: {areas}, Azimuths: {azimuths}') irr = sum([calculate_plane_irradiance(weather, tilt, az, window_data) * area @@ -215,11 +215,11 @@ def get_boundary_rc_values(all_bd_properties, raise_error=False, **house_args): if len(bd_choices) == 0: keys = ['Construction Type', 'Finish Type', 'Insulation Details'] p = {key: val for key, val in bd_properties.items() if key in keys} - raise Exception(f'Cannot find material properties for {bd_name} with properties: {p}') + raise OCHREException(f'Cannot find material properties for {bd_name} with properties: {p}') elif len(bd_choices) == 1: bd_data = bd_choices.iloc[0].to_dict() elif r_value is None: - raise Exception(f'Boundary R Value must be specified for {bd_name} with properties: {bd_properties}') + raise OCHREException(f'Boundary R Value must be specified for {bd_name} with properties: {bd_properties}') else: # Find row with closest Boundary R Value r_options = bd_choices['Boundary R Value'] @@ -231,11 +231,11 @@ def get_boundary_rc_values(all_bd_properties, raise_error=False, **house_args): # Check for reasonable difference in R value (print warning if above R0.5) if r_value is not None: if r_value == 0: - raise Exception(f'{bd_name} R value is zero, double check inputs') + raise OCHREException(f'{bd_name} R value is zero, double check inputs') error_abs = abs(r_closest - r_value) error_pct = error_abs / r_value if raise_error and error_abs > 1 and error_pct > 0.15: - raise Exception(f'{bd_name} R value ({r_value:0.2f}) does not match closest option: {bd_type},' + raise OCHREException(f'{bd_name} R value ({r_value:0.2f}) does not match closest option: {bd_type},' f' R={r_closest:0.2f}') elif error_abs > 0.5 and error_pct > 0.10: print(f'WARNING: {bd_name} R value ({r_value:0.2f}) is far from closest match: {bd_type},' @@ -245,7 +245,7 @@ def get_boundary_rc_values(all_bd_properties, raise_error=False, **house_args): df = materials.loc[(materials['Boundary Name'] == bd_name) & (materials['Boundary Type'] == bd_type)] if not len(df): - raise Exception(f'Cannot find boundary properties for {bd_name} with type: {bd_type}') + raise OCHREException(f'Cannot find boundary properties for {bd_name} with type: {bd_type}') # Create RC parameters label = bd_properties['Boundary Label'] @@ -442,7 +442,7 @@ def get_slab_insulation(floor, name=None): elif not r_perimeter and not r_under: insulation = 'Uninsulated' else: - raise Exception(f'Unknown slab insulation parameters for {name}: {floor}') + raise OCHREException(f'Unknown slab insulation parameters for {name}: {floor}') return insulation diff --git a/ochre/utils/equipment.py b/ochre/utils/equipment.py index 1bb67cf..2812e63 100644 --- a/ochre/utils/equipment.py +++ b/ochre/utils/equipment.py @@ -2,7 +2,7 @@ import numpy as np import psychrolib -from ochre.utils import load_csv, convert +from ochre.utils import OCHREException, load_csv, convert psychrolib.SetUnitSystem(psychrolib.SI) @@ -73,7 +73,7 @@ def get_duct_info(ducts, zones, boundaries, construction, location, **kwargs): else: zone_type = 'unins_basement' else: - raise Exception('Unknown duct location: {duct_location}') + raise OCHREException('Unknown duct location: {duct_location}') return { 'Zone Type': zone_type, @@ -86,6 +86,10 @@ def get_duct_info(ducts, zones, boundaries, construction, location, **kwargs): def update_equipment_properties(properties, schedule, zip_parameters_file='ZIP Parameters.csv', **kwargs): all_equipment = properties['equipment'] + + # add location properties to PV if it exists + if 'PV' in all_equipment: + all_equipment['PV']['location'] = properties['location'] # split heat pump equipment into heater and cooler for heat_pump_name, short_name in [('Air Source Heat Pump', 'ASHP'), @@ -102,10 +106,10 @@ def update_equipment_properties(properties, schedule, zip_parameters_file='ZIP P named = {key: val for key, val in all_equipment.items() if key in names_by_type.values()} if len(named) > 1: eq_names = list(named.keys()) - raise IOError(f'Only 1 {end_use} equipment is allowed, but multiple were included in inputs: {eq_names}') + raise OCHREException(f'Only 1 {end_use} equipment is allowed, but multiple were included in inputs: {eq_names}') # Get equipment name from named dict and from generic (using name and fuel) - eq_name, eq_data = list(named.items())[0] if named else None, {} + eq_name, eq_data = list(named.items())[0] if named else (None, {}) eq_type = generic.get('Equipment Name') eq_fuel = generic.get('Fuel') if eq_fuel not in ['Electricity', 'Natural gas', None]: @@ -113,7 +117,7 @@ def update_equipment_properties(properties, schedule, zip_parameters_file='ZIP P eq_fuel = 'Natural gas' generic_name = names_by_type.get((eq_type, eq_fuel)) if generic_name is None and eq_type is not None: - raise Exception(f'Unknown {end_use} type ({eq_type}) and fuel ({eq_fuel}) combo.') + raise OCHREException(f'Unknown {end_use} type ({eq_type}) and fuel ({eq_fuel}) combo.') # compare names from generic and named dicts if generic_name is None and eq_name is None: @@ -196,7 +200,7 @@ def calculate_duct_dse(hvac, ducts, climate_file='ASHRAE152_climate_data.csv', capacity = convert(hvac.capacity_list[4], 'W', 'Btu/hour') fan_flow = convert(hvac.flow_rate_list[4], 'm^3/s', 'cubic_feet/min') else: - raise Exception(f'Unknown number of speeds for {hvac.name}: {hvac.n_speeds}') + raise OCHREException(f'Unknown number of speeds for {hvac.name}: {hvac.n_speeds}') # Other inputs ambient_temp = 68 if hvac.is_heater else 78 @@ -418,7 +422,7 @@ def calculate_duct_dse(hvac, ducts, climate_file='ASHRAE152_climate_data.csv', if 1 < dse <= 1.1: print(f'WARNING: {hvac_type} DSE slightly above 1.0 ({dse}). Setting to 1.0') elif not (0 < dse <= 1): - raise Exception(f'{hvac_type} DSE out of bounds: {dse}') + raise OCHREException(f'{hvac_type} DSE out of bounds: {dse}') elif dse < 0.4: print(f'WARNING: Low {hvac_type} DSE: {dse}') diff --git a/ochre/utils/hpxml.py b/ochre/utils/hpxml.py index 68fc491..2a48d08 100644 --- a/ochre/utils/hpxml.py +++ b/ochre/utils/hpxml.py @@ -1,7 +1,7 @@ import math import pandas as pd -from ochre.utils import convert, nested_update, import_hpxml +from ochre.utils import OCHREException, convert, nested_update, import_hpxml from ochre.utils.units import pitch2deg import ochre.utils.envelope as utils_envelope @@ -117,7 +117,7 @@ def get_boundaries_by_wall(boundaries, ext_walls, gar_walls, attic_walls): attic_bd[name] = boundary attic_walls[wall]['Area'] -= boundary['Area'] else: - raise IOError(f'Unknown attached wall for {name}: {wall}') + raise OCHREException(f'Unknown attached wall for {name}: {wall}') return ext_bd, gar_bd, attic_bd @@ -200,7 +200,7 @@ def parse_hpxml_boundary(bd_name, bd_data): out[key] = [bd[key] for bd in bd_data] else: if not all([bd[key] == val for bd in bd_data]): - raise Exception(f'{bd_name} {key} values in HPXML are not all equal: {[bd[key] for bd in bd_data]}') + raise OCHREException(f'{bd_name} {key} values in HPXML are not all equal: {[bd[key] for bd in bd_data]}') # Consolidate areas and azimuths (e.g. if multiple windows per wall) if 'Area (m^2)' in out and out.get('Azimuth (deg)') is not None: @@ -255,7 +255,7 @@ def parse_hpxml_boundaries(hpxml, return_boundary_dicts=False, **kwargs): # no foundation zone for slab or pier+beam foundations foundation_name = None else: - raise IOError(f'Unknown foundation type: {foundation_type}') + raise OCHREException(f'Unknown foundation type: {foundation_type}') construction_dict = { 'Number of Bedrooms (-)': n_beds, @@ -387,7 +387,7 @@ def parse_hpxml_boundaries(hpxml, return_boundary_dicts=False, **kwargs): if len(main_floor_areas) == 1: first_floor_area = main_floor_areas[0] # area of first (lowest above grade) floor. Excludes garage else: - raise IOError(f'Unable to parse multiple floor areas: {main_floor_areas}') + raise OCHREException(f'Unable to parse multiple floor areas: {main_floor_areas}') # Get attic and top floor area - should have only 1 attic floor boundary option (plus maybe 'Garage Ceiling') top_floor_options = ['Attic Floor', 'Roof', 'Adjacent Ceiling'] @@ -396,7 +396,7 @@ def parse_hpxml_boundaries(hpxml, return_boundary_dicts=False, **kwargs): if len(top_floor_areas) == 1: top_floor_area = top_floor_areas[0] # area of first (lowest above grade) floor. Excludes garage else: - raise IOError(f'Unable to parse multiple attic floor areas: {top_floor_areas}') + raise OCHREException(f'Unable to parse multiple attic floor areas: {top_floor_areas}') attic_floor_area = top_floor_area + sum(boundaries.get('Garage Ceiling', {}).get('Area (m^2)', [])) if 'Garage Floor' in boundaries: @@ -426,8 +426,8 @@ def parse_hpxml_boundaries(hpxml, return_boundary_dicts=False, **kwargs): if az == azimuth]) for azimuth in set(attached_wall_azimuths)]) garage_area_in_main = a1 * a2 / garage_wall_height ** 2 else: - raise IOError('Invalid geometry. Cannot parse more than 3 garage walls.') - assert 0 < garage_area_in_main / garage_floor_area < 1.001 # should be close to 50% for ResStock cases + raise OCHREException('Invalid geometry. Cannot parse more than 3 garage walls.') + assert 0 <= garage_area_in_main / garage_floor_area < 1.001 # should be close to 50% for ResStock cases else: garage_floor_area = 0 garage_area_in_main = 0 @@ -539,7 +539,7 @@ def parse_hpxml_zones(hpxml, boundaries, construction): low, med, high = tuple(sorted(attic_wall_areas)) third_gable_area = low if med - low > high - med else high else: - raise Exception('Unable to calculate attic area, likely an issue with gable walls.') + raise OCHREException('Unable to calculate attic area, likely an issue with gable walls.') # Get attic properties # tan(roof_tilt) = height / (width / 2) @@ -586,7 +586,7 @@ def parse_hpxml_zones(hpxml, boundaries, construction): 'Air Changes (1/hour)': 0.1, }) else: - raise Exception(f'Cannot parse Attic infiltration rate from properties: {attic}') + raise OCHREException(f'Cannot parse Attic infiltration rate from properties: {attic}') # Add foundation zone if construction['Foundation Type'] is not None: @@ -707,7 +707,7 @@ def parse_hpxml_envelope(hpxml, occupancy, **house_args): elif house_type in ['single-family attached', 'apartment unit']: n_bedrooms_adj = max(-1.47 + 1.69 * n_occupants, 0) else: - raise Exception(f'Unknown house type: {house_type}') + raise OCHREException(f'Unknown house type: {house_type}') construction['Number of Bedrooms, Adjusted (-)'] = n_bedrooms_adj return boundaries, zones, construction @@ -740,7 +740,7 @@ def parse_hvac(hvac_type, hvac_all): system = hvac_all.get('HVACPlant', {}).get(f'{hvac_type}System') heat_pump = hvac_all.get('HVACPlant', {}).get('HeatPump') if system and heat_pump: - raise IOError(f'HVAC {hvac_type} system and heat pump cannot both be specified.') + raise OCHREException(f'HVAC {hvac_type} system and heat pump cannot both be specified.') elif not system and not heat_pump: return None has_heat_pump = bool(heat_pump) @@ -766,7 +766,7 @@ def parse_hvac(hvac_type, hvac_all): elif efficiency['Units'] in ['EER', 'SEER', 'HSPF']: eir = 1 / convert(efficiency['Value'], 'Btu/hour', 'W') else: - raise IOError(f'Unknown inputs for HVAC {hvac_type} efficiency: {efficiency}') + raise OCHREException(f'Unknown inputs for HVAC {hvac_type} efficiency: {efficiency}') efficiency_string = f"{efficiency['Value']} {efficiency['Units']}" # Get number of speeds @@ -848,7 +848,7 @@ def parse_hvac(hvac_type, hvac_all): # assumes efficiency units are in Percent or AFUE out.update({ 'Supplemental Heater EIR (-)': 1 / heat_pump.get('BackupAnnualHeatingEfficiency', {}).get('Value'), - 'Supplemental Heater Capacity (W)': backup_capacity, + 'Supplemental Heater Capacity (W)': convert(backup_capacity, 'Btu/hour', 'W'), 'Supplemental Heater Cut-in Temperature (C)': convert(heat_pump.get('BackupHeatingSwitchoverTemperature'), 'degF', 'degC'), }) @@ -937,7 +937,7 @@ def parse_water_heater(water_heater, water, construction, solar_fraction=0): volume = None if energy_factor is None and uniform_energy_factor is None: - raise Exception('Energy Factor or Uniform Energy Factor input required for Water Heater.') + raise OCHREException('Energy Factor or Uniform Energy Factor input required for Water Heater.') # calculate UA and eta_c for each water heater type if water_heater_type == 'instantaneous water heater': @@ -1006,7 +1006,7 @@ def parse_water_heater(water_heater, water, construction, solar_fraction=0): eta_c = 1.0 else: - raise Exception(f'Unknown water heater type: {water_heater_type}') + raise OCHREException(f'Unknown water heater type: {water_heater_type}') # Increase insulation from tank jacket (reduces UA) if tank_jacket_r: @@ -1019,10 +1019,10 @@ def parse_water_heater(water_heater, water, construction, solar_fraction=0): ua *= (1.0 - solar_fraction) if ua < 0.0: - raise Exception('A negative water heater standby loss coefficient (UA) was calculated.' + raise OCHREException('A negative water heater standby loss coefficient (UA) was calculated.' ' Double check water heater inputs.') if eta_c > 1.0: - raise Exception('A water heater heat source (either burner or element) efficiency of > 1 has been calculated.' + raise OCHREException('A water heater heat source (either burner or element) efficiency of > 1 has been calculated.' ' Double check water heater inputs.') wh = { @@ -1069,7 +1069,7 @@ def parse_water_heater(water_heater, water, construction, solar_fraction=0): distribution_type = distribution.get('SystemType', {}) distribution_r = distribution.get('PipeInsulation', {}).get('PipeRValue', 0) if len(distribution_type) != 1: - raise IOError(f'Warning: Cannot handle multiple water distribution types: {distribution_type}') + raise OCHREException(f'Cannot handle multiple water distribution types: {distribution_type}') elif 'Standard' in distribution_type: distribution_factor = 0.9 if distribution_r >= 3 else 1.0 total_sqft = convert(construction['Conditioned Floor Area (m^2)'], 'm^2', 'ft^2') @@ -1152,7 +1152,7 @@ def parse_clothes_dryer(clothes_dryer, clothes_washer, n_bedrooms): elif fuel_type in ['propane', 'fuel oil']: print(f'WARNING: Converting clothes dryer fuel from {fuel_type} to natural gas.') else: - raise Exception(f'Invalid fuel type for clothes dryer: {fuel_type}') + raise OCHREException(f'Invalid fuel type for clothes dryer: {fuel_type}') is_electric = fuel_type == 'electricity' is_vented = clothes_dryer.get('Vented', True) multiplier = clothes_dryer.get('extension', {}).get('UsageMultiplier', 1) @@ -1284,7 +1284,7 @@ def parse_cooking_range(range_dict, oven_dict, n_bedrooms): elif fuel_type in ['propane', 'fuel oil']: print(f'WARNING: Converting cooking range fuel from {fuel_type} to natural gas.') else: - raise Exception(f'Invalid fuel type for cooking range: {fuel_type}') + raise OCHREException(f'Invalid fuel type for cooking range: {fuel_type}') is_electric = fuel_type == 'electricity' is_induction = range_dict.get('IsInduction', False) is_convection = oven_dict.get('IsConvection', False) @@ -1354,7 +1354,7 @@ def parse_lighting(location, df_lights, floor_area, extension=None): grg_adj = f_inc * e_inc + f_flr * e_flr + f_led * e_led annual_kwh = 100.0 * grg_adj else: - raise Exception(f'Unknown lighting location: {location}') + raise OCHREException(f'Unknown lighting location: {location}') else: # Annual kWh specified @@ -1381,9 +1381,9 @@ def parse_mel(mel, load_name, is_gas=None): fuel_type = 'Gas' if is_gas else 'Electric' load_units = 'therm' if is_gas else 'kWh' if mel['Load']['Units'] != f'{load_units}/year': - raise Exception(f'Invalid load units for {load_name}:', mel['Load']['Units']) + raise OCHREException(f'Invalid load units for {load_name}:', mel['Load']['Units']) if is_gas and mel.get('FuelType', 'natural gas') != 'natural gas': - raise Exception(f'Invalid fuel type for MGL:', mel['FuelLoadType']) + raise OCHREException(f'Invalid fuel type for MGL:', mel['FuelLoadType']) # TODO: use default annual load values from OS-HPXML mel_load = mel['Load']['Value'] * mel.get('extension', {}).get('UsageMultiplier', 1) @@ -1547,7 +1547,7 @@ def parse_hpxml_equipment(hpxml, occupancy, construction): else: print('WARNING: Skipping garage lighting, since no garage is modeled.') else: - raise IOError(f'Unknown lighting location: {loc}') + raise OCHREException(f'Unknown lighting location: {loc}') # Get plug loads and fuel loads, some strange behavior depending on number of MELs/MGLs misc_loads = hpxml.get('MiscLoads', {}) diff --git a/ochre/utils/schedule.py b/ochre/utils/schedule.py index d00ebd9..a927ee0 100644 --- a/ochre/utils/schedule.py +++ b/ochre/utils/schedule.py @@ -6,18 +6,16 @@ import collections.abc import xmltodict # import re +import numba # required for array-based psychrolib import psychrolib import pytz import pvlib -from ochre.utils import main_path, default_input_path, load_csv, convert +from ochre.utils import OCHREException, default_input_path, load_csv, convert from ochre.utils.envelope import calculate_solar_irradiance # List of variables and functions for loading and parsing schedule files -header_file = os.path.join(default_input_path, 'PV', 'sam_weather_header.csv') -default_sam_weather_file = os.path.join(default_input_path, 'PV', 'SAM_weather_{}.csv') # placeholder for house name - # TODO: move to simple schedule parameters file? SCHEDULE_NAMES = { 'Occupancy': { @@ -95,7 +93,7 @@ def set_annual_index(df, start_year, offset=None, timezone=None): end_time = dt.datetime(start_year + 1, 1, 1) duration = end_time - start_time # 365 or 366 days if duration.days != 365: - raise Exception('Cannot parse data for a leap year.') + raise OCHREException('Cannot parse data for a leap year.') if n % 8760 == 0 and 525600 % n == 0: init_time_res = dt.timedelta(minutes=525600 // n) df.index = pd.date_range(start_time, end_time, freq=init_time_res, inclusive='left') @@ -103,7 +101,7 @@ def set_annual_index(df, start_year, offset=None, timezone=None): init_time_res = dt.timedelta(minutes=525600 // (n - 1)) df.index = pd.date_range(start_time, end_time, freq=init_time_res) else: - raise IOError(f'File length of {n} is incompatible for annual input') + raise OCHREException(f'File length of {n} is incompatible for annual input') # shift times by offset, update year and re-sort index if necessary if offset is not None: @@ -120,44 +118,8 @@ def set_annual_index(df, start_year, offset=None, timezone=None): return df -def create_sam_weather_file(df_input, location, sam_weather_file=None, **kwargs): - # Convert weather data to SAM readable format - if sam_weather_file is None: - sam_weather_file = default_sam_weather_file.format(kwargs['main_sim_name']) - - # load header file - header = pd.read_csv(header_file) - - # update params - header['Latitude'] = location['latitude'] - header['Longitude'] = location['longitude'] - header['Time Zone'] = location['timezone'] - header['Elevation'] = location['Altitude'] - header['Local Time Zone'] = location['timezone'] - - # build main weather data - df = df_input.loc[:, ['DNI (W/m^2)', 'GHI (W/m^2)', 'DHI (W/m^2)', 'Wind Speed (m/s)']] - df['Year'] = df.index.year - df['Month'] = df.index.month - df['Day'] = df.index.day - df['Hour'] = df.index.hour - df['Minute'] = df.index.minute - df['Temperature'] = df_input['Ambient Dry Bulb (C)'] - - # Re-order columns - columns = ['Year', 'Month', 'Day', 'Hour', 'Minute', - 'DNI (W/m^2)', 'GHI (W/m^2)', 'DHI (W/m^2)', 'Temperature', 'Wind Speed (m/s)'] - df = df.loc[:, columns] - df.columns = [col[:col.index('(') - 1] if '(' in col else col for col in df.columns] - - # Save new weather data to csv, with header - header.to_csv(sam_weather_file, index=False) - df.to_csv(sam_weather_file, mode='a', index=False) - - # FUTURE: could get epw file from API, ResStock uses https://data.nrel.gov/system/files/156/BuildStock_TMY3_FIPS.zip -def import_weather(weather_file=None, weather_path=None, weather_station=None, weather_metadata=None, - create_sam_file=None, **kwargs): +def import_weather(weather_file=None, weather_path=None, weather_station=None, weather_metadata=None, **kwargs): # get weather station and weather file name if weather_file is not None and weather_station is not None: if weather_station not in weather_file: @@ -167,7 +129,7 @@ def import_weather(weather_file=None, weather_path=None, weather_station=None, w # take weather file from HPXML Weather Station name weather_file = weather_station + '.epw' elif weather_file is None and weather_station is None: - raise Exception('Must define a weather file.') + raise OCHREException('Must define a weather file.') # get weather file path if not os.path.isabs(weather_file): @@ -175,10 +137,6 @@ def import_weather(weather_file=None, weather_path=None, weather_station=None, w weather_path = os.path.join(default_input_path, 'Weather') weather_file = os.path.join(weather_path, weather_file) - if create_sam_file is None: - pv = kwargs.get('Equipment', {}).get('PV') - create_sam_file = pv is not None and 'equipment_schedule_file' not in pv - start_year = kwargs['start_time'].year ext = os.path.splitext(weather_file)[-1] if weather_metadata is not None: @@ -192,14 +150,14 @@ def import_weather(weather_file=None, weather_path=None, weather_station=None, w if df.index.tzinfo is None: weather_timezone = weather_metadata.get('timezone') if weather_timezone is None: - raise IOError('Timezone must be specified either in weather_metadata.') + raise OCHREException('Timezone must be specified either in weather_metadata.') tz = dt.timezone(dt.timedelta(hours=weather_timezone)) df = df.tz_localize(tz) # check that lat/lon is in weather_metadata missing = [data for data in ['latitude', 'longitude'] if data not in weather_metadata] if missing: - raise IOError(f'Missing required location data (must be specified in house Location parameters): {missing}') + raise OCHREException(f'Missing required location data (must be specified in house Location parameters): {missing}') location = weather_metadata elif ext == '.epw': offset = dt.timedelta(minutes=30) @@ -234,7 +192,7 @@ def import_weather(weather_file=None, weather_path=None, weather_station=None, w # Set sky temperature to NaN df['sky_temperature'] = np.nan else: - raise IOError(f'Unknown weather file extension: {ext}') + raise OCHREException(f'Unknown weather file extension: {ext}') # check for leap day if ((df.index.month == 2) & (df.index.day == 29)).any(): @@ -300,13 +258,6 @@ def import_weather(weather_file=None, weather_path=None, weather_station=None, w df['Ambient Humidity Ratio (-)'].values, df['Ambient Pressure (kPa)'].values * 1000) - # If creating a PV profile, interpolate weather and save SAM file - if create_sam_file: - year_start = dt.datetime(start_year, 1, 1, tzinfo=df.index.tzinfo) - duration = dt.timedelta(days=365) - df_sam = resample_and_reindex(df, kwargs['time_res'], year_start, duration, interpolate=True, offset=offset) - create_sam_weather_file(df_sam, location, **kwargs) - return df, location @@ -369,7 +320,7 @@ def convert_schedule_column(s_hpxml, ochre_name, properties, category='Power'): out = pd.concat([out, s_gas], axis=1) if out is None: - raise Exception(f'Could not determine max value for {s_hpxml.name} schedule ({ochre_name}).') + raise OCHREException(f'Could not determine max value for {s_hpxml.name} schedule ({ochre_name}).') elif category == 'Water': if ochre_name == 'Water Heating': @@ -428,7 +379,7 @@ def import_occupancy_schedule(occupancy, equipment, start_time, schedule_input_f # create a constant setpoint schedule df_norm[hpxml_name] = ochre_dict['Setpoint Temperature (C)'] else: - raise IOError(f'Must specify {ochre_name} setpoints in schedule input file or include parameters ' + raise OCHREException(f'Must specify {ochre_name} setpoints in schedule input file or include parameters ' '"Weekday/Weekend Setpoints (C)" or "Setpoint Temperature (C)".') # Add occupancy/power/water draw simple schedules @@ -444,6 +395,7 @@ def import_occupancy_schedule(occupancy, equipment, start_time, schedule_input_f if schedules_to_merge: df_to_merge = pd.concat(schedules_to_merge, axis=1) df_norm = df_norm.join(df_to_merge, on=[df_norm.index.month, df_norm.index.hour, df_norm.index.weekday < 5]) + df_norm = df_norm.drop(columns=['key_0', 'key_1', 'key_2'], errors='ignore') # Calculate max value for each column and add to new DataFrame schedule_data = [] @@ -468,7 +420,7 @@ def import_occupancy_schedule(occupancy, equipment, start_time, schedule_input_f # Schedule is not used in OCHRE continue else: - raise IOError(f'Unknown column in schedule file: {hpxml_name}') + raise OCHREException(f'Unknown column in schedule file: {hpxml_name}') schedule = pd.concat(schedule_data, axis=1) @@ -509,7 +461,7 @@ def resample_and_reindex(df, time_res, start_time=None, duration=None, interpola # remove last time step before duplicating annual df = df.iloc[:-1] if len(df) % 8760 != 0: - raise Exception(f'Simulation spans multiple years ({start_year}-{end_year}). Must provide annual data.') + raise OCHREException(f'Simulation spans multiple years ({start_year}-{end_year}). Must provide annual data.') print(f'Simulation spans multiple years ({start_year}-{end_year}). Duplicating time series data.') df = pd.concat([df] * (end_year - start_year + 1), axis=0) @@ -523,7 +475,7 @@ def resample_and_reindex(df, time_res, start_time=None, duration=None, interpola first_row.index -= 2 * init_time_res df = pd.concat([first_row, df], axis=0) else: - raise Exception(f'Start of input data ({df.index[0]}) is after the required start time ({start_time})') + raise OCHREException(f'Start of input data ({df.index[0]}) is after the required start time ({start_time})') if df.index[-1] >= end_time: pass @@ -532,7 +484,7 @@ def resample_and_reindex(df, time_res, start_time=None, duration=None, interpola last_row.index += 2 * init_time_res df = pd.concat([df, last_row]) else: - raise Exception(f'End of input data ({df.index[-1]}) is before the required end time ({end_time})') + raise OCHREException(f'End of input data ({df.index[-1]}) is before the required end time ({end_time})') # shorten df before resampling (improves speed) df = df.loc[start_time - 2 * init_time_res: end_time + 2 * init_time_res] @@ -578,7 +530,7 @@ def load_schedule(properties, schedule=None, time_zone=None, **house_args): # Check that all columns are different duplicates = [col for col in df_weather.columns if col in df_occupancy.columns] if duplicates: - raise Exception(f'Duplicate column names found in weather and schedule inputs: {duplicates}') + raise OCHREException(f'Duplicate column names found in weather and schedule inputs: {duplicates}') # resample weather and occupancy schedules using simulation parameters weather_tz = df_weather.index.tzinfo @@ -608,7 +560,7 @@ def load_schedule(properties, schedule=None, time_zone=None, **house_args): setpoint_diff = schedule['HVAC Cooling Setpoint (C)'] - schedule['HVAC Heating Setpoint (C)'] if setpoint_diff.min() < 1: # if min(setpoint_diff) < 0: - # raise Exception('ERROR: Cooling setpoint is equal or less than heating setpoint in schedule file') + # raise OCHREException('ERROR: Cooling setpoint is equal or less than heating setpoint in schedule file') print('WARNING: Cooling setpoint is within 1C of heating setpoint in schedule file.' ' Separating setpoints by at least 1C.') setpoint_avg = (schedule['HVAC Cooling Setpoint (C)'] + schedule['HVAC Heating Setpoint (C)']) / 2 @@ -620,7 +572,7 @@ def load_schedule(properties, schedule=None, time_zone=None, **house_args): check = schedule.drop(columns=['airmass', 'Sky Temperature (C)']) bad_cols = check.columns[check.isna().any()] first_na = check.isna().any(axis=1).idxmax() - raise Exception(f'Missing data found in schedule columns {bad_cols}. See time step {first_na}') + raise OCHREException(f'Missing data found in schedule columns {bad_cols}. See time step {first_na}') # update time zone, if specified if time_zone == 'DST': @@ -639,7 +591,7 @@ def load_schedule(properties, schedule=None, time_zone=None, **house_args): # Use specified time zone time_zone = pytz.timezone(time_zone) elif time_zone is not None: - raise IOError(f'Unknown time zone parameter: {time_zone}') + raise OCHREException(f'Unknown time zone parameter: {time_zone}') schedule.index = schedule.index.tz_localize(time_zone) return schedule, location diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..501b9cb --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,57 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "ochre-nrel" +dynamic = ["version"] +dependencies = [ + "numpy ~= 1.26", + "pandas >=1.4, < 3.0", + "scipy ~= 1.11", + "matplotlib ~= 3.8", + "pint ~= 0.23", + "pvlib ~= 0.10.4", + "nrel-pysam ~= 5.1", + "psychrolib ~= 2.5", + "numba ~= 0.59", # required for psychrolib + "xmltodict ~= 0.13.0", + "pyarrow ~= 15.0", + "fastparquet >= 2024.0", + "rainflow ~= 3.2", + "pytz >= 2024.0", + "python-dateutil ~= 2.9", +] +requires-python = ">=3.9" +authors = [ + { name="Jeff Maguire", email="Jeff.Maguire@nrel.gov" }, + { name="Michael Blonsky", email="Michael.Blonsky@nrel.gov" }, +] +description = "A residential energy modeling tool designed to model flexible loads and DERs" +readme = "README.md" +keywords = [ + "building energy modeling", + "demand flexibility", + "residential buildings", + "grid-interactive buildings", +] +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: BSD License", + "Operating System :: OS Independent", + "Development Status :: 4 - Beta", + "Intended Audience :: Science/Research", +] + +[project.urls] +Homepage = "https://www.nrel.gov/grid/ochre.html" +Documentation = "https://ochre-docs-final.readthedocs.io/en/latest/" +Repository = "https://github.com/NREL/OCHRE.git" +Issues = "https://github.com/NREL/OCHRE/issues" +Changelog = "https://github.com/NREL/OCHRE/blob/main/changelog.md" + +[tool.hatch.version] +path = "ochre/__init__.py" + +[tool.hatch.build.targets.wheel] +packages = ["ochre"] diff --git a/setup.py b/setup.py deleted file mode 100644 index 270a831..0000000 --- a/setup.py +++ /dev/null @@ -1,60 +0,0 @@ -import io -import os -import re - -try: - from setuptools import setup -except ImportError: - from distutils.core import setup - -requirements = [ - 'numpy', - 'pandas>=1.4.0', - 'scipy', - 'matplotlib', - 'pint', - 'pvlib', - 'NREL-PySAM', - 'psychrolib', - 'numba', # required for psychrolib - 'xmltodict', - 'pyarrow', - 'fastparquet', - 'rainflow', - 'pytz', - 'python-dateutil', - # 'h5py', -] - - -# Read the version from the __init__.py file without importing it -def read(*names, **kwargs): - with io.open( - os.path.join(os.path.dirname(__file__), *names), - encoding=kwargs.get("encoding", "utf8") - ) as fp: - return fp.read() - - -def find_version(*file_paths): - version_file = read(*file_paths) - version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", - version_file, re.M) - if version_match: - return version_match.group(1) - raise RuntimeError("Unable to find version string.") - - -setup(name='ochre-nrel', - version=find_version('ochre', '__init__.py'), - description='A residential energy model with flexible loads and DERs for building-to-grid co-simulation', - author='Jeff Maguire', - author_email='Jeff.Maguire@nrel.gov', - maintainer='Michael Blonsky', - maintainer_email='Michael.Blonsky@nrel.gov', - url='https://github.com/NREL/OCHRE', - packages=['ochre', 'ochre.utils', 'ochre.Equipment', 'ochre.Models'], - python_requires='>=3.9', - install_requires=requirements, - package_data={'ochre': ['../defaults/*', '../defaults/*/*']}, - ) diff --git a/test/__init__.py b/test/__init__.py index b643de8..ee14294 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -2,6 +2,6 @@ from ochre.utils import main_path -test_path = os.path.join(main_path, 'test') +test_path = os.path.join(main_path, os.pardir, 'test') test_output_path = os.path.join(test_path, 'outputs') diff --git a/test/test_dwelling/test_dwelling.py b/test/test_dwelling/test_dwelling.py index 3db394a..076b4b4 100644 --- a/test/test_dwelling/test_dwelling.py +++ b/test/test_dwelling/test_dwelling.py @@ -202,7 +202,7 @@ def test_simulate(self): self.assertEqual(len(df), 96) # self.assertEqual(len(df.columns), 159) self.assertTrue((df['Total Electric Power (kW)'] > 0).all()) - self.assertAlmostEqual(df['Water Heating Delivered (kW)'].mean(), 0.27, places=1) + self.assertAlmostEqual(df['Water Heating Delivered (W)'].mean(), 0.27, places=1) # check time series outputs self.assertEqual(len(hourly), 24) diff --git a/test/test_equipment/test_hvac.py b/test/test_equipment/test_hvac.py index 8745602..caf0e7c 100644 --- a/test/test_equipment/test_hvac.py +++ b/test/test_equipment/test_hvac.py @@ -218,12 +218,12 @@ def test_run_duty_cycle_control(self): self.hvac.mode = 'Off' mode = self.hvac.run_duty_cycle_control(update_args_inside, {'Duty Cycle': 0.5}) self.assertEqual(mode, 'On') - self.assertEqual(self.hvac.duty_cycle_capacity, 2500) + self.assertEqual(self.hvac.ext_capacity, 2500) self.hvac.mode = 'Off' mode = self.hvac.run_duty_cycle_control(update_args_inside, {'Duty Cycle': 0}) self.assertEqual(mode, 'Off') - self.assertEqual(self.hvac.duty_cycle_capacity, 0) + self.assertEqual(self.hvac.ext_capacity, 0) def test_update_internal_control(self): mode = self.hvac.update_internal_control(update_args_heat) @@ -529,7 +529,7 @@ def test_run_duty_cycle_control(self): mode = self.hvac.run_duty_cycle_control(update_args_inside, {'Duty Cycle': 0.5}) self.assertEqual(mode, 'On') self.assertAlmostEqual(self.hvac.capacity_max, 6010, places=-1) - self.assertAlmostEqual(self.hvac.duty_cycle_capacity, 3000, places=-1) + self.assertAlmostEqual(self.hvac.ext_capacity, 3000, places=-1) def test_update_capacity(self): # Capacity should follow ideal update diff --git a/test/test_equipment/test_pv.py b/test/test_equipment/test_pv.py index e5f3939..63ca1b8 100644 --- a/test/test_equipment/test_pv.py +++ b/test/test_equipment/test_pv.py @@ -10,18 +10,14 @@ init_args.update({ 'capacity': 10, 'tilt': 20, - 'orientation': 180, - 'include_inverter': True, + 'azimuth': 180, 'time_res': dt.timedelta(minutes=15), - 'sam_weather_file': os.path.join(default_input_path, 'Weather', 'sample_SAM_weather.csv'), }) scheduled_init_args = equip_init_args.copy() scheduled_init_args.update({ - 'include_inverter': True, 'time_res': dt.timedelta(minutes=15), 'equipment_schedule_file': 'test_pv_schedule.csv', - }) diff --git a/test/test_equipment/test_waterheater.py b/test/test_equipment/test_waterheater.py index 2277f43..4087a6b 100644 --- a/test/test_equipment/test_waterheater.py +++ b/test/test_equipment/test_waterheater.py @@ -140,7 +140,7 @@ def test_generate_results(self): results = self.wh.generate_results(3) self.assertEqual(len(results), 5) - self.assertIn('Water Heating Delivered (kW)', results) + self.assertIn('Water Heating Delivered (W)', results) results = self.wh.generate_results(6) self.assertEqual(len(results), 16)